-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.go
More file actions
executable file
·172 lines (150 loc) · 4.68 KB
/
client.go
File metadata and controls
executable file
·172 lines (150 loc) · 4.68 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Copyright 2017 The Advanced Terminal Processor Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"bytes"
"fmt"
"log"
"net/http"
"time"
"github.com/gorilla/websocket"
)
const (
// Time allowed to write a message to the peer.
writeWait = 10 * time.Second
// Time allowed to read the next pong message from the peer.
pongWait = 60 * time.Second
// Send pings to peer with this period. Must be less than pongWait.
pingPeriod = (pongWait * 9) / 10
// Maximum message size allowed from peer.
maxMessageSize = 4096
// The service created for the client.
clientService = "/myhome/michael/Chimirror-Server/animal"
)
var (
newline = []byte{'\n'}
space = []byte{' '}
)
var upgrader = websocket.Upgrader{
ReadBufferSize: 65536,
WriteBufferSize: 65536,
}
// Client maintains communication between the websocket connection and the hub.
type Client struct {
hub *Hub
// The websocket connection.
conn *websocket.Conn
// Buffered channel of outbound messages.
send chan []byte
// Buffered channels of child I/O.
stdInTochild chan []byte
stdErrFromchild chan string
stdOutFromchild chan string
closeChild chan bool
// Unique Client Data
socketkey []string
socketOrigin []string
socketaddr string
socketproto string
}
// readPump pumps messages from the websocket connection to the hub.
//
// The application runs readPump in a per-connection goroutine. The application
// ensures that there is at most one reader on a connection by executing all
// reads from this goroutine.
func (c *Client) readPump() {
defer func() {
c.hub.unregister <- c
}()
c.conn.SetReadLimit(maxMessageSize)
c.conn.SetReadDeadline(time.Now().Add(pongWait))
c.conn.SetPongHandler(func(string) error { c.conn.SetReadDeadline(time.Now().Add(pongWait)); return nil })
//fmt.Println("readPump: starting infinant loop")
for {
//fmt.Println("readPump: wait for messages from c.conn.ReadMessage()")
_, message, err := c.conn.ReadMessage()
if err != nil {
//fmt.Println("readPump: websocket.IsUnexpectedCloseError")
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway) {
log.Printf("error: %v", err)
}
break
}
message = bytes.TrimSpace(bytes.Replace(message, newline, space, -1))
fmt.Printf("readPump: Sending to child: [%v]\n", string(message))
c.stdInTochild <- message
}
}
// writePump sends messages from the child to the client browser.
//
func (c *Client) writePump() {
ticker := time.NewTicker(pingPeriod)
defer func() {
ticker.Stop()
c.conn.Close()
}()
for {
select {
case message, ok := <-c.send:
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
if !ok {
fmt.Println("writePump: Sending websocket.CloseMessage to the client browser.")
c.conn.WriteMessage(websocket.CloseMessage, []byte{})
return
}
//fmt.Println("writePump: c.conn.NextWriter(websocket.TextMessage)")
w, err := c.conn.NextWriter(websocket.TextMessage)
if err != nil {
fmt.Printf("ERROR NextWriter: %v\n", err)
return
}
//fmt.Println("========================================================")
fmt.Printf("writePump: sending to client, %s\n", string(message))
w.Write(message)
// Add queued messages to the current websocket message.
// n := len(c.send)
// for i := 0; i < n; i++ {
// w.Write(newline)
// w.Write(<-c.send)
// }
if err := w.Close(); err != nil {
return
}
case <-ticker.C:
//fmt.Println("writePump: case <-ticker.C:")
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
if err := c.conn.WriteMessage(websocket.PingMessage, []byte{}); err != nil {
return
}
}
}
}
// clientWs handles websocket requests from the peer.
func clientWs(hub *Hub, w http.ResponseWriter, r *http.Request) {
conn, err := upgrader.Upgrade(w, r, nil)
if err != nil {
log.Println(err)
return
}
fmt.Println("clientWs: setting up new client")
client := &Client{
hub: hub,
conn: conn,
send: make(chan []byte, 65536),
stdInTochild: make(chan []byte, 65536),
stdErrFromchild: make(chan string, 65536),
stdOutFromchild: make(chan string, 65536),
closeChild: make(chan bool),
socketkey: []string(r.Header["Sec-Websocket-Key"]),
socketOrigin: []string(r.Header["Origin"]),
socketaddr: string(r.RemoteAddr),
socketproto: string(r.Proto),
}
client.hub.register <- client
go client.writePump()
go createProcess(hub, client, clientService)
fmt.Println("clientWs: client.readPump(), is listening for data from the client web browser")
client.readPump()
fmt.Println("clientWs: client.readPump(), stopped listening to the client web browser")
}