-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsg.go
216 lines (181 loc) · 4 KB
/
msg.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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package main
import (
"json"
"io"
"fmt"
"os"
)
const (
MSG_LOGIN = iota
MSG_DATA
MSG_CLOSE
MSG_WINDOW
MSG_MAX
)
type MessageType int
type Message struct {
mtype MessageType
params map[string]interface{}
}
func (m *Message) Type() MessageType {
return m.mtype
}
type ParamIntError string
type ParamStringError string
func (e ParamIntError) String() string {
return fmt.Sprintf("no integer parameter named '%s'", string(e))
}
func (e ParamStringError) String() string {
return fmt.Sprintf("no string parameter named '%s'", string(e))
}
func (m *Message) ParamInt(name string) (int, os.Error) {
if vi, ok := m.params[name]; ok {
if v, ok := vi.(float64); ok {
return int(v), nil
}
}
return 0, ParamIntError(name)
}
func (m *Message) ParamString(name string) (string, os.Error) {
if vi, ok := m.params[name]; ok {
if v, ok := vi.(string); ok {
return v, nil
}
}
return "", ParamStringError(name)
}
type MessageDecoder struct {
msg map[string]interface{}
d *json.Decoder
}
func NewMessageDecoder(r io.Reader) *MessageDecoder {
return &MessageDecoder{
msg: make(map[string]interface{}),
d: json.NewDecoder(r),
}
}
type InvalidMessageError struct{}
func (e InvalidMessageError) String() string {
return "invalid message type"
}
func (md *MessageDecoder) DecodeNext() (*Message, os.Error) {
if err := md.d.Decode(&md.msg); err != nil {
return nil, err
}
if mt, ok := md.msg["t"]; ok {
m := &Message{params: md.msg}
mt, ok := mt.(float64)
if ok && mt < MSG_MAX {
m.mtype = MessageType(int(mt))
return m, nil
} else {
return nil, &InvalidMessageError{}
}
}
return nil, &InvalidMessageError{}
}
type LoginHandler interface {
HandleLogin(*string) os.Error
}
type LoginHandlerFunc func(*string) os.Error
func (f LoginHandlerFunc) HandleLogin(un *string) os.Error {
return f(un)
}
type DataHandler interface {
HandleData([]byte) os.Error
}
type DataHandlerFunc func([]byte) os.Error
func (f DataHandlerFunc) HandleData(data []byte) os.Error {
return f(data)
}
type WindowHandler interface {
HandleWindow(int, int) os.Error
}
type WindowHandlerFunc func(w, h int) os.Error
func (f WindowHandlerFunc) HandleWindow(w, h int) os.Error {
return f(w, h)
}
type CloseHandler interface {
HandleClose() os.Error
}
type CloseHandlerFunc func() os.Error
func (f CloseHandlerFunc) HandleClose() os.Error {
return f()
}
type MessageProcessor struct {
d *MessageDecoder
flogin LoginHandler
fdata DataHandler
fwindow WindowHandler
fclose CloseHandler
}
func NewMessageProcessor(r io.Reader) *MessageProcessor {
return &MessageProcessor{d: NewMessageDecoder(r)}
}
func (p *MessageProcessor) HandleLogin(h LoginHandler) {
p.flogin = h
}
func (p *MessageProcessor) HandleData(h DataHandler) {
p.fdata = h
}
func (p *MessageProcessor) HandleClose(h CloseHandler) {
p.fclose = h
}
func (p *MessageProcessor) HandleWindow(h WindowHandler) {
p.fwindow = h
}
func (p *MessageProcessor) ProcessNext() os.Error {
msg, err := p.d.DecodeNext()
if err != nil {
return err
}
switch(msg.Type()) {
case MSG_LOGIN:
if p.flogin != nil {
username, err := msg.ParamString("u")
if err != nil {
return p.flogin.HandleLogin(nil)
} else {
return p.flogin.HandleLogin(&username)
}
}
case MSG_DATA:
if p.fdata != nil {
b, err := msg.ParamString("b")
if err != nil {
return err
}
return p.fdata.HandleData([]byte(b))
}
case MSG_CLOSE:
if p.fclose != nil {
return p.fclose.HandleClose()
}
case MSG_WINDOW:
if p.fwindow != nil {
w, err := msg.ParamInt("w")
if err != nil {
return err
}
h, err := msg.ParamInt("h")
if err != nil {
return err
}
return p.fwindow.HandleWindow(w, h)
}
}
return nil
}
func NewDataMessage(data []byte) *Message {
m := &Message{mtype: MSG_DATA, params: make(map[string]interface{})}
m.params["b"] = string(data)
return m
}
func (m *Message) Encode() ([]byte, os.Error) {
msg := make(map[string]interface{})
for k, v := range m.params {
msg[k] = v
}
msg["t"] = m.mtype
return json.Marshal(msg)
}