Concurrent TCP Checker
This commit is contained in:
parent
ce742af518
commit
2d9369c3f0
|
@ -4,48 +4,210 @@ import (
|
||||||
"flag"
|
"flag"
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
|
"os"
|
||||||
|
"os/signal"
|
||||||
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/tevino/tcp-shaker"
|
"github.com/tevino/tcp-shaker"
|
||||||
)
|
)
|
||||||
|
|
||||||
func parseFlag() (addr string, timeout time.Duration) {
|
// Counter is an atomic counter for multiple metrics.
|
||||||
var timeoutMS int
|
type Counter struct {
|
||||||
// Flag definition
|
counters map[int]*uint64
|
||||||
flag.IntVar(&timeoutMS, "timeout", 1000, "Timeout for the whole process(domain resolving is included)")
|
|
||||||
flag.StringVar(&addr, "addr", "google.com:80", "TCP address to test")
|
|
||||||
// Parse flags
|
|
||||||
flag.Parse()
|
|
||||||
if _, err := net.ResolveTCPAddr("tcp", addr); err != nil {
|
|
||||||
log.Fatalf("Can not resolve '%s': %s", addr, err)
|
|
||||||
}
|
|
||||||
timeout = time.Duration(timeoutMS) * time.Millisecond
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
// NewCounter creates Counter with given IDs.
|
||||||
// Parse flag
|
func NewCounter(ids ...int) *Counter {
|
||||||
addr, timeout := parseFlag()
|
counter := &Counter{}
|
||||||
log.Printf("Checking %s with timeout %s", addr, timeout)
|
counter.Declare(ids...)
|
||||||
// Create checker
|
return counter
|
||||||
s := tcp.NewChecker(true)
|
}
|
||||||
// Init checker
|
|
||||||
if err := s.InitChecker(); err != nil {
|
// Declare declares the ID of counters.
|
||||||
log.Fatal("Initializing failed:", err)
|
// NOTE: This must be called before counting, and should only be called once.
|
||||||
|
func (c *Counter) Declare(ids ...int) {
|
||||||
|
c.counters = make(map[int]*uint64, len(ids))
|
||||||
|
for _, id := range ids {
|
||||||
|
var i uint64
|
||||||
|
c.counters[id] = &i
|
||||||
}
|
}
|
||||||
// Check addr
|
}
|
||||||
err := s.CheckAddr(addr, timeout)
|
|
||||||
// Print error
|
// Inc increases the counter of given ID by one and returns the new value.
|
||||||
|
func (c *Counter) Inc(i int) uint64 {
|
||||||
|
return atomic.AddUint64(c.counters[i], 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Count returns the value of counter with given ID.
|
||||||
|
func (c *Counter) Count(i int) uint64 {
|
||||||
|
return atomic.LoadUint64(c.counters[i])
|
||||||
|
}
|
||||||
|
|
||||||
|
// Available counter names.
|
||||||
|
const (
|
||||||
|
CRequest int = iota
|
||||||
|
CSucceed
|
||||||
|
CErrConnect
|
||||||
|
CErrTimeout
|
||||||
|
CErrOther
|
||||||
|
)
|
||||||
|
|
||||||
|
// Config contains all available options.
|
||||||
|
type Config struct {
|
||||||
|
Addr string
|
||||||
|
Timeout time.Duration
|
||||||
|
Requests int
|
||||||
|
Concurrency int
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseConfig() *Config {
|
||||||
|
var conf Config
|
||||||
|
var timeoutMS int
|
||||||
|
// Flag definition
|
||||||
|
flag.IntVar(&timeoutMS, "t", 1000, "Timeout in millisecond for the whole checking process(domain resolving is included)")
|
||||||
|
flag.StringVar(&conf.Addr, "a", "google.com:80", "TCP address to test")
|
||||||
|
flag.IntVar(&conf.Requests, "n", 1, "Number of requests to perform")
|
||||||
|
flag.IntVar(&conf.Concurrency, "c", 1, "Number of checks to perform simultaneously")
|
||||||
|
// Parse flags
|
||||||
|
flag.Parse()
|
||||||
|
if _, err := net.ResolveTCPAddr("tcp", conf.Addr); err != nil {
|
||||||
|
log.Fatalf("Can not resolve '%s': %s", conf.Addr, err)
|
||||||
|
}
|
||||||
|
conf.Timeout = time.Duration(timeoutMS) * time.Millisecond
|
||||||
|
return &conf
|
||||||
|
}
|
||||||
|
|
||||||
|
func setupSignal(exit chan bool) {
|
||||||
|
c := make(chan os.Signal, 1)
|
||||||
|
signal.Notify(c, os.Interrupt)
|
||||||
|
<-c
|
||||||
|
close(exit)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ConcurrentChecker wrapper of tcp.Checker with concurrent checking capacibilities.
|
||||||
|
type ConcurrentChecker struct {
|
||||||
|
conf *Config
|
||||||
|
counter *Counter
|
||||||
|
checker *tcp.Checker
|
||||||
|
queue chan bool
|
||||||
|
closed chan bool
|
||||||
|
wg sync.WaitGroup
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewConcurrentChecker creates a checker.
|
||||||
|
func NewConcurrentChecker(conf *Config) *ConcurrentChecker {
|
||||||
|
return &ConcurrentChecker{
|
||||||
|
conf: conf,
|
||||||
|
counter: NewCounter(CRequest, CSucceed, CErrConnect, CErrTimeout, CErrOther),
|
||||||
|
checker: tcp.NewChecker(true),
|
||||||
|
queue: make(chan bool),
|
||||||
|
closed: make(chan bool),
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Count returns the count of given ID.
|
||||||
|
func (cc *ConcurrentChecker) Count(i int) uint64 {
|
||||||
|
return cc.counter.Count(i)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Launch initialize the checker.
|
||||||
|
func (cc *ConcurrentChecker) Launch() error {
|
||||||
|
if err := cc.checker.InitChecker(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
for i := 0; i < cc.conf.Concurrency; i++ {
|
||||||
|
go cc.worker()
|
||||||
|
}
|
||||||
|
cc.wg.Add(cc.conf.Requests)
|
||||||
|
go func() {
|
||||||
|
for i := 0; i < cc.conf.Requests; i++ {
|
||||||
|
cc.queue <- true
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cc *ConcurrentChecker) doCheck() {
|
||||||
|
err := cc.checker.CheckAddr(cc.conf.Addr, cc.conf.Timeout)
|
||||||
|
cc.counter.Inc(CRequest)
|
||||||
switch err {
|
switch err {
|
||||||
case tcp.ErrTimeout:
|
case tcp.ErrTimeout:
|
||||||
log.Fatalf("Connect to '%s' timed out", addr)
|
cc.counter.Inc(CErrTimeout)
|
||||||
case nil:
|
case nil:
|
||||||
log.Printf("Connect to '%s' succeeded", addr)
|
cc.counter.Inc(CSucceed)
|
||||||
default:
|
default:
|
||||||
if e, ok := err.(*tcp.ErrConnect); ok {
|
if _, ok := err.(*tcp.ErrConnect); ok {
|
||||||
log.Fatalf("Connect to '%s' failed: %s", addr, e)
|
cc.counter.Inc(CErrConnect)
|
||||||
} else {
|
} else {
|
||||||
log.Fatalf("Error occurred while connecting to '%s': %s", addr, err)
|
cc.counter.Inc(CErrOther)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait returns a chan which is closed when all checks are done.
|
||||||
|
func (cc *ConcurrentChecker) Wait() chan bool {
|
||||||
|
c := make(chan bool)
|
||||||
|
go func() {
|
||||||
|
cc.wg.Wait()
|
||||||
|
close(c)
|
||||||
|
}()
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stop stops the workers.
|
||||||
|
func (cc *ConcurrentChecker) Stop() {
|
||||||
|
close(cc.closed)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cc *ConcurrentChecker) worker() {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-cc.queue:
|
||||||
|
cc.doCheck()
|
||||||
|
cc.wg.Done()
|
||||||
|
case <-cc.closed:
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
defer func() {
|
||||||
|
if err := recover(); err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
log.SetFlags(0)
|
||||||
|
conf := parseConfig()
|
||||||
|
|
||||||
|
log.Printf(`Checking %s with the following configurations:
|
||||||
|
Timeout: %s
|
||||||
|
Requests: %d
|
||||||
|
Concurrency: %d`, conf.Addr, conf.Timeout, conf.Requests, conf.Concurrency)
|
||||||
|
|
||||||
|
checker := NewConcurrentChecker(conf)
|
||||||
|
defer checker.Stop()
|
||||||
|
|
||||||
|
var exit = make(chan bool)
|
||||||
|
go setupSignal(exit)
|
||||||
|
startedAt := time.Now()
|
||||||
|
|
||||||
|
if err := checker.Launch(); err != nil {
|
||||||
|
log.Fatal("Initializing failed: ", err)
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
case <-exit:
|
||||||
|
case <-checker.Wait():
|
||||||
|
}
|
||||||
|
|
||||||
|
duration := time.Now().Sub(startedAt)
|
||||||
|
|
||||||
|
log.Println("")
|
||||||
|
log.Printf("Finished %d/%d checks in %s\n", checker.Count(CRequest), conf.Requests, duration)
|
||||||
|
log.Printf(" Succeed: %d\n", checker.Count(CSucceed))
|
||||||
|
log.Printf(" Errors: connect %d, timeout %d, other %d\n", checker.Count(CErrConnect), checker.Count(CErrTimeout), checker.Count(CErrOther))
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue