Evstigneev Denis
38c5fe8b5a
All checks were successful
test / test (push) Successful in 42s
## Pull Request template Please, go through these steps before clicking submit on this PR. 1. Give a descriptive title to your PR. 2. Provide a description of your changes. 3. Make sure you have some relevant tests. 4. Put `closes #XXXX` in your comment to auto-close the issue that your PR fixes (if applicable). **PLEASE REMOVE THIS TEMPLATE BEFORE SUBMITTING** Reviewed-on: #369 Co-authored-by: Evstigneev Denis <danteevstigneev@yandex.ru> Co-committed-by: Evstigneev Denis <danteevstigneev@yandex.ru>
79 lines
1.6 KiB
Go
79 lines
1.6 KiB
Go
package net
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
// HostPort format addr and port suitable for dial
|
|
func HostPort(addr string, port interface{}) string {
|
|
host := addr
|
|
if strings.Count(addr, ":") > 0 {
|
|
host = fmt.Sprintf("[%s]", addr)
|
|
}
|
|
// when port is blank or 0, host is a queue name
|
|
if v, ok := port.(string); ok && v == "" {
|
|
return host
|
|
} else if v, ok := port.(int); ok && v == 0 && net.ParseIP(host) == nil {
|
|
return host
|
|
}
|
|
|
|
return fmt.Sprintf("%s:%v", host, port)
|
|
}
|
|
|
|
// Listen takes addr:portmin-portmax and binds to the first available port
|
|
// Example: Listen("localhost:5000-6000", fn)
|
|
func Listen(addr string, fn func(string) (net.Listener, error)) (net.Listener, error) {
|
|
if strings.Count(addr, ":") == 1 && strings.Count(addr, "-") == 0 {
|
|
return fn(addr)
|
|
}
|
|
|
|
// host:port || host:min-max
|
|
host, ports, err := net.SplitHostPort(addr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// try to extract port range
|
|
prange := strings.Split(ports, "-")
|
|
|
|
// single port
|
|
if len(prange) < 2 {
|
|
return fn(addr)
|
|
}
|
|
|
|
// we have a port range
|
|
|
|
// extract min port
|
|
minPort, err := strconv.Atoi(prange[0])
|
|
if err != nil {
|
|
return nil, errors.New("unable to extract port range")
|
|
}
|
|
|
|
// extract max port
|
|
maxPort, err := strconv.Atoi(prange[1])
|
|
if err != nil {
|
|
return nil, errors.New("unable to extract port range")
|
|
}
|
|
|
|
// range the ports
|
|
for port := minPort; port <= maxPort; port++ {
|
|
// try bind to host:port
|
|
ln, err := fn(HostPort(host, port))
|
|
if err == nil {
|
|
return ln, nil
|
|
}
|
|
|
|
// hit max port
|
|
if port == maxPort {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// why are we here?
|
|
return nil, fmt.Errorf("unable to bind to %s", addr)
|
|
}
|