-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.coffee
294 lines (254 loc) · 6.11 KB
/
app.coffee
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
segHandler = require 'segfault-handler'
segHandler.registerHandler()
console.log(process.env.MOCK_MAC)
if process.env.MOCK_MAC
xcorr = require './lib/mock_xcorr'
thermald = null
else
xcorr = require './build/Release/xcorr'
thermald = require './lib/thermald'
request = require 'superagent'
bcrypt = require 'bcrypt-nodejs'
require('superagent-cache')(request, {
cacheServiceConfig: {},
cacheModuleConfig: [
{
type: 'node-cache'
defaultExpiration: 7200
}
]
})
config = require './config'
_ = require 'lodash'
fs = require 'fs'
console.log('Starting up...')
#TO-DO: load from file
dbimages = {}
getMac = (cb) ->
fs.readFile '/sys/class/net/eth0/address', (err, data) ->
if err
cb(err)
else
cb(null, data.toString().trim())
getMac (err, myMacAddress) ->
registerWithServer = (status = 'Idle', cb = null) ->
console.log('Registering...')
request.get('http://ipinfo.io/json').end (err, loc) ->
location = loc.body or {}
request.post(hubUrl + 'api/devices')
.send({
resinId: process.env.RESIN_DEVICE_UUID
macAddress: myMacAddress
secret: bcrypt.hashSync(myMacAddress + config.secret)
location
status
}).end (err, res) ->
if err
console.log(err)
else
console.log(res.body)
if(cb?)
cb()
if process.env.MOCK_MAC
myMacAddress = process.env.MOCK_MAC
hubUrl = config.hubUrl or 'http://localhost:8080/'
hubImagesUrl = config.hubImagesUrl or 'http://parallellocalypse.s3-website-us-east-1.amazonaws.com'
registerWithServer "Idle", ->
if thermald?
thermald.start ->
console.log("Temperature beyond limits. Gracefully crashing.")
registerWithServer "Overheating", ->
process.exit(0)
pubnub = require('pubnub')({
origin: 'resin.pubnub.com'
publish_key: config.publish_key
subscribe_key: config.subscribe_key
uuid: myMacAddress
})
console.log('Subscribing...')
pubnub.subscribe({
channel: 'work',
heartbeat: 20,
state: {
status: 'Started'
chunkId: null
},
message: (m) -> console.log(m)
})
processWork = (work) ->
console.log('Starting task.')
startTime = Date.now()
pubnub.state({
channel: 'work'
state: {
status: 'Working'
chunkId: work.chunkId
}
})
pubnub.publish({
channel: 'working'
message: {
device: myMacAddress
progress: 0
}
})
targetImage = work.targetImage
results = []
amountDone = 0
whenDone = ->
console.log('Done!')
theResult = _.max(results, 'value')
theResult.device = myMacAddress
theResult.elapsedTime = Date.now() - startTime
console.log(theResult)
pubnub.publish({
channel: 'working'
message: {
device: myMacAddress
progress: 100
}
})
pubnub.state({
channel: 'work'
state: {
status: 'Idle'
chunkId: null
}
})
pubnub.publish({
channel: 'results'
message: theResult
})
whenDone2 = (theResult) ->
console.log('Done!')
console.log(theResult)
pubnub.publish({
channel: 'working'
message: {
device: myMacAddress
progress: 100
}
})
pubnub.state({
channel: 'work'
state: {
status: 'Idle'
chunkId: null
}
})
pubnub.publish({
channel: 'results'
message: theResult
})
progress = 0
onProgress = (amountDone, totalSize) ->
percent = amountDone * 100 / totalSize
if Math.floor(percent / 10) > Math.floor(progress / 10)
pubnub.publish({
channel: 'working'
message: {
device: myMacAddress
progress: percent
}
})
progress = percent
correlate = (ind, img, image1) ->
image2 = dbimages[img.uuid]
xcorr image1, image2.data, (result) ->
results[ind] = {
value: result
name: image2.image.personName
imageId: image2.image.id
imageUrl: image2.image.path
chunkId: work.chunkId
}
amountDone += 1
onProgress(amountDone, work.workSize)
if(amountDone == work.workSize)
whenDone()
correlate2 = (images, image1) ->
onProgress(0, images.length)
imgArray = []
for i in [0...images.length]
if ! dbimages[images[i].uuid]?
console.log("Image not in cache - can't do it")
process.exit(1)
imgArray[i] = dbimages[images[i].uuid].data
xcorr image1, imgArray, (res) ->
theResult = {}
theResult.value = _.max(res)
theResult.device = myMacAddress
theResult.elapsedTime = Date.now() - startTime
ind = _.indexOf(res, theResult.value)
theImage = dbimages[images[ind].uuid]
theResult.name = theImage.image.personName
theResult.imageId = theImage.image.id
theResult.imageUrl = theImage.image.path
theResult.chunkId = work.chunkId
whenDone2(theResult)
console.log('Getting:')
console.log(hubImagesUrl + work.targetImage)
request.get(hubImagesUrl + work.targetImage).end (req, res) ->
image1 = res.body
correlate2(work.images, image1)
#_.each work.images, (img, ind) ->
# correlate(ind, img, image1)
pubnub.subscribe({
channel: myMacAddress
message: processWork
})
semaphore = 0
pageCount = 0
warmCache = (data) ->
if semaphore < 1
pageCount += 1
warm(data, pageCount)
else
warmPartial = _.partial warmCache, data
setTimeout(warmPartial, 100)
warm = (data, pageCount) ->
semaphore += 1
pubData = data
pubnub.state({
channel: 'work'
state: {
status: 'Warming up'
}
})
console.log("Warming cache")
images = data.images
saveImage = (img, ind, data) ->
dbimages[img.uuid] = {
image: img
data: data
}
if ind == (images.length - 1)
console.log('Done')
console.log(pageCount)
console.log(pubData.nPages)
semaphore -= 1
if pageCount == pubData.nPages
console.log('Warmup done')
pubnub.state({
channel: 'work'
state: {
status: 'Idle'
}
})
pageCount = 0
getImage = (ind) ->
img = images[ind]
request.get(hubImagesUrl + img.path).end (err, res) ->
if err
request.get(hubImagesUrl + img.path).end (err, res) ->
if err
throw err
saveImage(img, ind, res.body)
saveImage(img, ind, res.body)
for ind in [0...images.length]
getImage(ind)
pubnub.subscribe({
channel: 'images'
message: warmCache
})
console.log('Ready.')