-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
81 lines (69 loc) · 1.54 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
package main
import (
"bufio"
"bytes"
"fmt"
"github.com/jfen9/logoServer/service"
"net"
"os"
"strings"
)
func main() {
port := ":8124"
tcpAddr, err := net.ResolveTCPAddr("tcp4", port)
checkError(err)
listener, err := net.ListenTCP("tcp", tcpAddr)
checkError(err)
for {
conn, err := listener.Accept()
if err != nil {
fmt.Println(err)
continue
}
// run as a goroutine
go handleClient(conn)
}
}
func closeConnection(c net.Conn) {
if err := c.Close(); err != nil {
fmt.Println(err)
}
}
func handleClient(conn net.Conn) {
// close connection on exit
defer closeConnection(conn)
// initiating handshake
if _, err := conn.Write([]byte("hello\n")); err != nil {
fmt.Println(err)
}
// buffer for receiving incoming data from socket
var buf = make([]byte, 512)
// initializing a handler to work with the current connection
handler := service.NewHandler()
for moreData := true; moreData; {
n, err := conn.Read(buf[0:])
if err != nil {
fmt.Println(err.Error())
return
}
reader := bufio.NewScanner(bytes.NewReader(buf[0:n]))
for reader.Scan() {
cmd := strings.TrimSpace(reader.Text())
response := handler.Handle(cmd)
if _, err2 := conn.Write([]byte(response)); err2 != nil {
fmt.Println("writing to connection error:", err2)
return
}
if cmd == "quit" { moreData = false }
}
if err := reader.Err(); err != nil {
fmt.Println("reading standard input:", err)
}
}
}
func checkError(err error) {
if err != nil {
fmt.Fprintf(os.Stderr, "Fatal error: %s", err.Error())
os.Exit(1)
}
}