1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
//go:build windows
// +build windows
package utils
import (
"fmt"
"net"
"os"
"strings"
"syscall"
)
// CreateListener crates socket listener based on DSN definition.
func CreateListener(address string) (net.Listener, error) {
dsn := strings.Split(address, "://")
switch len(dsn) {
case 1:
// assume, that there is no prefix here [127.0.0.1:8000]
return createTCPListener(dsn[0])
case 2:
// we got two part here, first part is the transport, second - address
// [tcp://127.0.0.1:8000] OR [unix:///path/to/unix.socket] OR [error://path]
// where error is wrong transport name
switch dsn[0] {
case "unix":
// check of file exist. If exist, unlink
if fileExists(dsn[1]) {
err := syscall.Unlink(dsn[1])
if err != nil {
return nil, fmt.Errorf("error during the unlink syscall: error %v", err)
}
}
return net.Listen(dsn[0], dsn[1])
case "tcp":
return createTCPListener(dsn[1])
// not an tcp or unix
default:
return nil, fmt.Errorf("invalid Protocol ([tcp://]:6001, unix://file.sock), address: %s", address)
}
// wrong number of split parts
default:
return nil, fmt.Errorf("wrong number of parsed protocol parts, address: %s", address)
}
}
func createTCPListener(addr string) (net.Listener, error) {
listener, err := net.Listen("tcp", addr)
if err != nil {
return nil, err
}
return listener, nil
}
// fileExists checks if a file exists and is not a directory before we
// try using it to prevent further errors.
func fileExists(filename string) bool {
info, err := os.Stat(filename)
if os.IsNotExist(err) {
return false
}
return !info.IsDir()
}
|