-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
146 lines (120 loc) · 2.55 KB
/
main.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package main
import (
"NumberApp/fileWriter"
"NumberApp/processor"
"NumberApp/reporting"
"bufio"
"fmt"
"net"
"os"
"strconv"
"sync"
)
const maxConnections = 100
const dataLength = 9
const terminationSignalMessage = "terminate"
//const terminationSignalLen = len(terminationSignalMessage)
var wg sync.WaitGroup
var gracefulStopFlag = gracefulStop{}
type gracefulStop struct {
stop bool
sync.Mutex
}
func (g *gracefulStop) isStopped() bool {
g.Lock()
defer g.Unlock()
return g.stop
}
func (g *gracefulStop) setStopped() {
g.Lock()
g.stop = true
g.Unlock()
}
func main() {
ln, err := net.Listen("tcp", ":8888")
fmt.Println("Listening localhost 8888")
if err != nil {
panic(err)
}
go processor.MessagesProcessor()
fileWriter.InitWriter()
run(ln)
wg.Wait()
handleTermination(ln)
}
func run(ln net.Listener) {
limit := make(chan struct{}, maxConnections)
for {
limit <- struct{}{}
if gracefulStopFlag.isStopped() {
return
}
conn, err := ln.Accept()
if err != nil {
fmt.Println(err)
return
}
go func() {
wg.Add(1)
handleConnection(conn)
<-limit
wg.Done()
}()
}
}
func handleConnection(connection net.Conn) {
fmt.Println("Started a new routine")
reader := bufio.NewReader(connection)
for {
message, err := reader.ReadBytes('\n')
if err != nil {
fmt.Printf("Network event happend: %s\n", err.Error())
break
}
err = checkFormat(message)
if err != nil {
fmt.Printf("Invalid format: %s\n", err.Error())
break
}
i, err := convertToInt(message)
if err != nil {
if isTerminationSignal(message) {
gracefulStopFlag.setStopped()
fmt.Println("Termination signal received")
_ = connection.Close()
return
}
fmt.Printf("Invalid format: %s\n", err.Error())
break
}
processor.AddMessageToQueue(i, message)
if gracefulStopFlag.isStopped() {
fmt.Println("Graceful stop routine")
_ = connection.Close()
return
}
}
_ = connection.Close()
fmt.Println("Routine closed")
}
func convertToInt(message []byte) (int, error) {
s := string(message[0 : len(message)-1])
return strconv.Atoi(s)
}
func checkFormat(message []byte) error {
if len(message) != dataLength+1 {
return fmt.Errorf("length should be %d, line %s", dataLength, message)
}
return nil
}
func isTerminationSignal(message []byte) bool {
return string(message[0:len(message)-1]) == terminationSignalMessage
}
func handleTermination(listener net.Listener) {
fmt.Println("Terminating")
_ = listener.Close()
processor.CloseMessagesProcessor()
fileWriter.ShutDown()
reporting.PrintReport()
os.Exit(0)
}