Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.rb
More file actions
Latest commit
executable file
·432 lines (313 loc) · 8.54 KB
/
Copy pathserver.rb
File metadata and controls
executable file
·432 lines (313 loc) · 8.54 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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
#!/usr/bin/env ruby
require'rubygems'
require'active_record'
require'eventmachine'
require'json'
dbpath='../BioBoardSite/db/dev.sqlite'
$outputs =[]
classProject < ActiveRecord::Base
end
classProbe < ActiveRecord::Base
belongs_to:probe_type
end
classProbeType < ActiveRecord::Base
has_many:probes
end
classMeasurement < ActiveRecord::Base
end
classProtocolException < Exception
end
classJSONPHandler
defself.header
"GET /data.js HTTP/1.1"
end
defself.type
:output
end
definitialize(connection)
@state=:initializing# :initializing or :ready
@connection=connection
@req_end="\r\n\r\n"
@data=''
@headers={
'Content-Type'=>'text/javascript; charset=UTF-8',
'Cache-Control'=>'max-age=0, must-revalidate'
}
# EM.add_periodic_timer(5) do
# send_data("ping\n") # keep-alive ping
# end
puts"Initialized JSONP connection"
end
defready?
if@state == :ready
returntrue
end
false
end
defoutput(str)
send_response(str)ifready?
end
defsend_init_response
@connection.send_data("HTTP/1.1 200 OK\r\n")
@headers.each_pairdo |key,value|
@connection.send_data("#{key}: #{value}\r\n")
end
@connection.send_data("\r\n")
puts"jsonp init response sent"
end
defsend_response(str)
@connection.send_data("parseResponse(#{str.to_json});\r\n")
@connection.send_data("\r\n\r\n")
@connection.close_connection_after_writing
cleanup
end
defhandle(ndata)
puts"-------jsonp data"
@data += ndata
if@data.index(@req_end)
puts"==== jsonp got double newline"
send_init_response
@state=:ready
end
end
defhandle_error(str='')
puts"error: #{str}"
@connection.close_connection
cleanup
end
defcleanup
$outputs.delete(self)
end
end
classBioBoardHandler
defself.header
"!BIOBOARD:0.1"
end
defself.type
:input
end
definitialize(connection)
@connection=connection
@project=nil
@probes=[]
# The phase of communications:
# :initialized - Header received, waiting for project ID message
# :project_identified - The project ID packet has been received, waiting for probe enumeration
# :ready - Probe enumeration completed, ready for data
@phase=:initialized
# The state of low-level data reception:
# :ready - Ready for new msg
# :in_progress - Currently receiving a message
# :error - Badness
@state=:ready
@data=''
@schar='@'
@echar="$"
end
deffind_probe_by_arduino_name(arduino_name)
@probes.eachdo |probe|
ifprobe.arduino_name == arduino_name
returnprobe
end
end
returnnil
end
defhandle_data(msg)
m=Measurement.new
probe_type,arduino_probe_name,m.value=msg.split(':')
probe=find_probe_by_arduino_name(arduino_probe_name)
m.probe_id=probe.id
m.time=Time.now
m.save!
output(msg)
puts"saved!"
end
defhandle_msg(msg)
msg=msg[(@schar.length)..(-1-@echar.length)]# start start and end
puts"Got message: " + msg
if@phase == :ready
handle_data(msg)
elsif@phase == :project_identified
handle_probe_enumeration(msg)
elsif@phase == :initialized
handle_project_id(msg)
end
end
defhandle_probe_enumeration(msg)
ifmsg == 'PREND'
if@probes.length <= 0
handle_error('probe enumeration incomplete: no probes')
return
end
puts"Probe enumeration complete"
@phase=:ready
else
puts"Enumerating a probe ======================"
label,probe_type_name,arduino_name=msg.split(':')
iflabel != 'PR'
handle_error('probe enumeration error: invalid message')
return
end
probe=Probe.joins(:probe_type).where(["probe_types.name = ? and arduino_name = ? and project_id = ?",probe_type_name,arduino_name,@project.id]).find(:first)
ifprobe
puts"probe find: #{probe.id} with project: #{probe.project_id}"
end
if !probe
probe_type=ProbeType.find_by_name(probe_type_name)
if !probe_type
handle_error("probe enumeration error: unknown probe type")
return
end
probe=Probe.new
probe.project_id=@project.id
probe.probe_type_id=probe_type.id
probe.arduino_name=arduino_name
probe.save!
puts"Probe created: #{probe.project_id}"
end
@probes << probe
end
end
defhandle_project_id(msg)
label,project_name=msg.split(':')
iflabel != 'PROJ'
handle_error("invalid project identification message: #{label}")
return
end
ifproject_name == ''
handle_error('invalid project identification: no project name given')
return
end
@project=Project.find_by_name(project_name)
if !@project
handle_error('invalid project identification: project not found')
return
end
puts"Project identified: #{@project.name} - #{@project.name}"
@phase=:project_identified
end
defoutput(str)
$outputs.eachdo |output|
output.output(str)
end
end
defhandle_error(str='')
puts"error: #{str}"
@connection.close_connection
@state=:error
end
defhandle(ndata)
begin
ndata=ndata.gsub("\n",'')
ndata=ndata.gsub("\r",'')
while(ndata.length > 0)
if@state == :error
return
elsif@state == :ready
ifndata[0..0] != @schar
handle_error("wrong start char: #{ndata[0..0]}")
return
end
index=ndata.index(@echar)
if !index
@data=ndata
@state=:in_progress
else
@data=ndata[0..index]
ndata=ndata[index+1..-1]
handle_msg(@data)
@state=:ready
end
elsif@state == :in_progress
index=ndata.index(@echar)
if !index
@data += ndata
else
@data += ndata[0..index]
ndata=ndata[index+1..-1]
handle_msg(@data)
@state=:ready
end
end
end
rescueProtocolException=>e
handle_error("Exception: #{e}")
return
end
end
end
classMessageConnection < EM::Connection
attr_accessor:options
defpost_init
@reset_char='!'
@state=:header# :header (waiting for header) or :handling (got header, data sent to handler)
@handlers=[BioBoardHandler,JSONPHandler]
@longest_header_length=0
@handlers.eachdo |handler|
ifhandler.header.length > @longest_header_length
@longest_header_length=handler.header.length
end
end
@data=''
puts"new connection"
end
defhandler_from_header
@handlers.eachdo |handler|
ifhandler.header == @data[0..(handler.header.length-1)]
h=handler.new(self)
ifhandler.type == :output
$outputs << h
end
returnh,@data[handler.header.length..-1]
end
end
raise"invalid header"
end
defreceive_data(ndata)
begin
puts"got: " + ndata.inspect
# reset when a reset char is encountered
ifndata.index(@reset_char)
ndata=ndata[ndata.index(@reset_char)..-1]
@state=:header
end
if@state == :header
if !ndata || (ndata == '')
puts"error: connection closed before header received"
close_connection
return
end
@data += ndata
@handler,ndata=handler_from_header
if !@handler && @data.length >= @longest_header_length
puts"error: header invalid"
close_connection
end
if@handler
@state=:handling
@data=''
end
end
if@state == :handling
@handler.handle(ndata)
end
end
rescueException=>e
puts"exception: #{e}"
close_connection
end
end
ActiveRecord::Base.establish_connection(
:adapter=>'sqlite3',
:database=>dbpath,
:pool=>5,
:timeout=>5000)
EM::rundo
# ip = '10.0.0.2'
ip='127.0.0.1'
port=9090
EM::start_server(ip,port,MessageConnection)do |con|
con.options={}
end
puts'running echo server on ' + port.to_s
end