-
Notifications
You must be signed in to change notification settings - Fork 124
/
server.go
110 lines (82 loc) · 2.06 KB
/
server.go
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright 2015 Nevio Vesic
// Please check out LICENSE file for more information about what you CAN and what you CANNOT do!
// Basically in short this is a free software for you to do whatever you want to do BUT copyright must be included!
// I didn't write all of this code so you could say it's yours.
// MIT License
package goesl
import (
"fmt"
"net"
"os"
"os/signal"
"syscall"
)
// OutboundServer - In case you need to start server, this Struct have it covered
type OutboundServer struct {
net.Listener
Addr string `json:"address"`
Proto string
Conns chan SocketConnection
}
// Start - Will start new outbound server
func (s *OutboundServer) Start() error {
Notice("Starting Freeswitch Outbound Server @ (address: %s) ...", s.Addr)
var err error
s.Listener, err = net.Listen(s.Proto, s.Addr)
if err != nil {
Error(ECouldNotStartListener, err)
return err
}
quit := make(chan bool)
go func() {
for {
Warning("Waiting for incoming connections ...")
c, err := s.Accept()
if err != nil {
Error(EListenerConnection, err)
quit <- true
break
}
conn := SocketConnection{
Conn: c,
err: make(chan error),
m: make(chan *Message),
}
Notice("Got new connection from: %s", conn.OriginatorAddr())
go conn.Handle()
s.Conns <- conn
}
}()
<-quit
// Stopping server itself ...
s.Stop()
return err
}
// Stop - Will close server connection once SIGTERM/Interrupt is received
func (s *OutboundServer) Stop() {
Warning("Stopping Outbound Server ...")
s.Close()
}
// NewOutboundServer - Will instanciate new outbound server
func NewOutboundServer(addr string) (*OutboundServer, error) {
if len(addr) < 2 {
addr = os.Getenv("GOESL_OUTBOUND_SERVER_ADDR")
if addr == "" {
return nil, fmt.Errorf(EInvalidServerAddr, addr)
}
}
server := OutboundServer{
Addr: addr,
Proto: "tcp",
Conns: make(chan SocketConnection),
}
sig := make(chan os.Signal, 1)
signal.Notify(sig, os.Interrupt)
signal.Notify(sig, syscall.SIGTERM)
go func() {
<-sig
server.Stop()
os.Exit(1)
}()
return &server, nil
}