forked from fossasia/visdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
527 lines (411 loc) · 16.2 KB
/
server.py
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
# Copyright 2017-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
"""Server"""
from __future__ import print_function
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import math
import json
import logging
import os
import inspect
import time
import getpass
import argparse
import copy
from os.path import expanduser
from zmq.eventloop import ioloop
ioloop.install() # Needs to happen before any tornado imports!
import tornado.ioloop
import tornado.web
import tornado.websocket
import tornado.escape
logging.getLogger().setLevel(logging.INFO)
parser = argparse.ArgumentParser(description='Start the visdom server.')
parser.add_argument('-port', metavar='port', type=int, default=8097,
help='port to run the server on.')
parser.add_argument('-env_path', metavar='env_path', type=str,
default='%s/.visdom/' % expanduser("~"),
help='path to serialized session to reload (end with /).')
FLAGS = parser.parse_args()
def get_rand_id():
return str(hex(int(time.time() * 10000000))[2:])
def ensure_dir_exists(path):
"""Make sure the parent dir exists for path so we can write a file."""
try:
os.makedirs(os.path.dirname(path))
except OSError as e1:
assert e1.errno == 17 # errno.EEXIST
pass
def get_path(filename):
"""Get the path to an asset."""
cwd = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
return os.path.join(cwd, filename)
def escape_eid(eid):
"""Replace slashes with underscores, to avoid recognizing them
as directories.
"""
return eid.replace('/', '_')
def extract_eid(args):
"""Extract eid from args. If eid does not exist in args,
it returns 'main'."""
eid = 'main' if args.get('eid') is None else args.get('eid')
return escape_eid(eid)
tornado_settings = {
"autoescape": None,
"debug": "/dbg/" in __file__,
"static_path": get_path('static'),
"template_path": get_path('static'),
"compiled_template_cache": False
}
def serialize_env(state, eids):
l = [i for i in eids if i in state]
for i in l:
p = '%s/%s.json' % (FLAGS.env_path, i)
open(p, 'w').write(json.dumps(state[i]))
return l
def serialize_all(state):
serialize_env(state, list(state.keys()))
class Application(tornado.web.Application):
def __init__(self):
state = {}
subs = {}
# reload state
ensure_dir_exists(FLAGS.env_path)
l = [i for i in os.listdir(FLAGS.env_path) if '.json' in i]
for i in l:
p = os.path.join(FLAGS.env_path, i)
f = tornado.escape.json_decode(open(p, 'r').read())
eid = i.replace('.json', '')
state[eid] = {'jsons': f['jsons'], 'reload': f['reload']}
if 'main' not in state and 'main.json' not in l:
state['main'] = {'jsons': {}, 'reload': {}}
serialize_env(state, ['main'])
handlers = [
(r"/events", PostHandler, dict(state=state, subs=subs)),
(r"/update", UpdateHandler, dict(state=state, subs=subs)),
(r"/close", CloseHandler, dict(state=state, subs=subs)),
(r"/socket", SocketHandler, dict(state=state, subs=subs)),
(r"/env/(.*)", EnvHandler, dict(state=state, subs=subs)),
(r"/save", SaveHandler, dict(state=state, subs=subs)),
(r"/error/(.*)", ErrorHandler),
(r"/(.*)", IndexHandler, dict(state=state)),
]
super(Application, self).__init__(handlers, **tornado_settings)
class SocketHandler(tornado.websocket.WebSocketHandler):
def initialize(self, state, subs):
self.state = state
self.subs = subs
def check_origin(self, origin):
return True
def open(self):
self.sid = str(hex(int(time.time() * 10000000))[2:])
if self not in list(self.subs.values()):
self.eid = 'main'
self.subs[self.sid] = self
print('Opened new socket from ip:', self.request.remote_ip)
self.write_message(
json.dumps({'command': 'register', 'data': self.sid}))
def on_message(self, message):
print('from web client: ', message)
msg = tornado.escape.json_decode(tornado.escape.to_basestring(message))
cmd = msg.get('cmd')
if cmd == 'close':
if 'data' in msg and 'eid' in msg:
print('closing pane ', msg['data'])
self.state[msg['eid']]['jsons'].pop(msg['data'], None)
elif cmd == 'save':
# save localStorage pane metadata
if 'data' in msg and 'eid' in msg:
msg['eid'] = escape_eid(msg['eid'])
self.state[msg['eid']] = copy.deepcopy(self.state[msg['prev_eid']])
self.state[msg['eid']]['reload'] = msg['data']
self.eid = msg['eid']
serialize_env(self.state, [self.eid])
def on_close(self):
if self in list(self.subs.values()):
self.subs.pop(self.sid, None)
class BaseHandler(tornado.web.RequestHandler):
def __init__(self, *request, **kwargs):
self.include_host = True
super(BaseHandler, self).__init__(*request, **kwargs)
def write_error(self, status_code, **kwargs):
logging.error("ERROR: %s: %s" % (status_code, kwargs))
if self.settings.get("debug") and "exc_info" in kwargs:
logging.error("rendering error page")
import traceback
exc_info = kwargs["exc_info"]
# exc_info is a tuple consisting of:
# 1. The class of the Exception
# 2. The actual Exception that was thrown
# 3. The traceback opbject
try:
params = dict(
error=exc_info[1],
trace_info=traceback.format_exception(*exc_info),
request=self.request.__dict__
)
self.render("error.html", **params)
logging.error("rendering complete")
except Exception as e:
logging.error(e)
def pane(args):
""" Build a pane dict structure for sending to client """
if args.get('win') is None:
uid = 'pane_' + get_rand_id()
else:
uid = args['win']
opts = args['opts']
return {
'command': 'pane',
'id': str(uid),
'title': opts.get('title', ''),
'inflate': opts.get('inflate', True),
'width': opts.get('width'),
'height': opts.get('height'),
'contentID': get_rand_id(), # to detected updated panes
}
def broadcast(self, msg, eid):
for s in self.subs:
if self.subs[s].eid == eid:
self.subs[s].write_message(msg)
def register_pane(self, p, eid):
# in case env doesn't exist
self.state[eid] = self.state.get(eid, {'jsons': {}, 'reload': {}})
env = self.state[eid]['jsons']
if p['id'] in env:
p['i'] = env[p['id']]['i']
else:
p['i'] = len(env)
env[p['id']] = p
broadcast(self, p, eid)
self.write(p['id'])
class PostHandler(BaseHandler):
def initialize(self, state, subs):
self.state = state
self.subs = subs
def post(self):
args = tornado.escape.json_decode(tornado.escape.to_basestring(self.request.body))
ptype = args['data'][0]['type']
p = pane(args)
eid = extract_eid(args)
if ptype in ['image', 'text']:
p.update(dict(content=args['data'][0]['content'], type=ptype))
else:
p['content'] = dict(data=args['data'], layout=args['layout'])
p['type'] = 'plot'
register_pane(self, p, eid)
class UpdateHandler(BaseHandler):
def initialize(self, state, subs):
self.state = state
self.subs = subs
def update(self, p, args):
pdata = p['content']['data']
new_data = args['data']
name = args.get('name')
append = args.get('append')
idxs = list(range(len(pdata)))
if name is not None:
assert len(new_data['x']) == 1
idxs = [i for i in idxs if pdata[i]['name'] == name]
# inject new trace
if len(idxs) == 0:
idx = len(pdata)
pdata.append(dict(pdata[0])) # plot is not empty, clone an entry
pdata[idx]['name'] = name
idxs = [idx]
append = False
if 'marker' in new_data:
pdata[idx]['marker']['color'] = new_data['marker']
for n, idx in enumerate(idxs): # update traces
if all([math.isnan(i) or i is None for i in new_data['x'][n]]):
continue
pdata[idx]['x'] = (pdata[idx]['x'] + new_data['x'][n]) if append \
else new_data['x'][n]
pdata[idx]['y'] = (pdata[idx]['y'] + new_data['y'][n]) if append \
else new_data['y'][n]
return p
def post(self):
args = tornado.escape.json_decode(tornado.escape.to_basestring(self.request.body))
eid = extract_eid(args)
if args['win'] not in self.state[eid]['jsons']:
self.write('win does not exist')
return
p = self.state[eid]['jsons'][args['win']]
if not p['content']['data'][0]['type'] == 'scatter':
self.write('win is not scatter')
return
p = self.update(p, args)
p['contentID'] = get_rand_id()
broadcast(self, p, eid)
self.write(p['id'])
class CloseHandler(BaseHandler):
def initialize(self, state, subs):
self.state = state
self.subs = subs
def post(self):
args = tornado.escape.json_decode(tornado.escape.to_basestring(self.request.body))
eid = extract_eid(args)
win = args.get('win')
keys = list(self.state[eid]['jsons'].keys()) if win is None else [win]
for win in keys:
self.state[eid]['jsons'].pop(win, None)
broadcast(
self, json.dumps({'command': 'close', 'data': win}), eid
)
def load_env(state, eid, socket):
""" load an environment to a client by socket """
env = {}
if eid in state:
env = state.get(eid)
else:
p = os.path.join(FLAGS.env_path, eid.strip(), '.json')
if os.path.exists(p):
env = tornado.escape.json_decode(open(p, 'r').read())
state[eid] = env
if 'reload' in env:
socket.write_message(
json.dumps({'command': 'reload', 'data': env['reload']})
)
jsons = list(env.get('jsons', {}).values())
panes = sorted(jsons, key=lambda k: ('i' not in k, k.get('i', None)))
for v in panes:
socket.write_message(v)
socket.write_message(json.dumps({'command': 'layout'}))
socket.eid = eid
def gather_envs(state):
items = [i.replace('.json', '') for i in os.listdir(FLAGS.env_path)
if '.json' in i]
return sorted(list(set(items + list(state.keys()))))
class EnvHandler(BaseHandler):
def initialize(self, state, subs):
self.state = state
self.subs = subs
def get(self, eid):
items = gather_envs(self.state)
active = 'main' if eid not in items else eid
self.render(
'index.html',
user=getpass.getuser(),
items=[active],
active_item=active
)
def post(self, args):
sid = tornado.escape.json_decode(tornado.escape.to_basestring(self.request.body))['sid']
load_env(self.state, args, self.subs[sid])
class SaveHandler(BaseHandler):
def initialize(self, state, subs):
self.state = state
self.subs = subs
def post(self):
envs = tornado.escape.json_decode(tornado.escape.to_basestring(self.request.body))['data']
envs = [escape_eid(eid) for eid in envs]
ret = serialize_env(self.state, envs) # this ignores invalid env ids
self.write(json.dumps(ret))
class IndexHandler(BaseHandler):
def initialize(self, state):
self.state = state
def get(self, args, **kwargs):
items = gather_envs(self.state)
self.render(
'index.html',
user=getpass.getuser(),
items=items,
active_item='main'
)
class ErrorHandler(BaseHandler):
def get(self, text):
error_text = text or "test error"
raise Exception(error_text)
# function that downloads and installs javascript, css, and font dependencies:
def download_scripts(proxies=None, install_dir=None):
# location in which to download stuff:
if install_dir is None:
import visdom
install_dir = os.path.dirname(visdom.__file__)
# all files that need to be downloaded:
b = 'https://unpkg.com/'
bb = '%[email protected]/dist/' % b
ext_files = {
'%[email protected]/dist/jquery.min.js' % b: 'jquery.min.js',
'%[email protected]/dist/js/bootstrap.min.js' % b: 'bootstrap.min.js',
'%[email protected]/css/styles.css' % b: 'react-resizable-styles.css',
'%[email protected]/css/styles.css' % b: 'react-grid-layout-styles.css',
'%[email protected]/dist/react.min.js' % b: 'react-react.min.js',
'%[email protected]/dist/react-dom.min.js' % b: 'react-dom.min.js',
'%[email protected]' % b: 'classnames',
'%[email protected]' % b: 'layout_bin_packer',
'https://cdn.rawgit.com/STRML/react-grid-layout/0.14.0/dist/' +
'react-grid-layout.min.js': 'react-grid-layout.min.js',
'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_SVG':
'mathjax-MathJax.js',
'https://cdn.rawgit.com/plotly/plotly.js/master/dist/plotly.min.js':
'plotly-plotly.min.js',
'%scss/bootstrap.min.css' % bb: 'bootstrap.min.css',
'%sfonts/glyphicons-halflings-regular.eot' % bb:
'glyphicons-halflings-regular.eot',
'%sfonts/glyphicons-halflings-regular.eot?#iefix' % bb:
'glyphicons-halflings-regular.eot?#iefix',
'%sfonts/glyphicons-halflings-regular.woff2' % bb:
'glyphicons-halflings-regular.woff2',
'%sfonts/glyphicons-halflings-regular.woff' % bb:
'glyphicons-halflings-regular.woff',
'%sfonts/glyphicons-halflings-regular.ttf' % bb:
'glyphicons-halflings-regular.ttf',
'%sfonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular' % bb:
'glyphicons-halflings-regular.svg#glyphicons_halflingsregular',
}
# make sure all relevant folders exist:
dir_list = [
'%s' % install_dir,
'%s/static' % install_dir,
'%s/static/js' % install_dir,
'%s/static/css' % install_dir,
'%s/static/fonts' % install_dir,
]
for directory in dir_list:
if not os.path.exists(directory):
os.makedirs(directory)
# set up proxy handler:
from six.moves.urllib import request
from six.moves.urllib.error import HTTPError, URLError
handler = request.ProxyHandler(proxies) if proxies is not None \
else request.BaseHandler()
opener = request.build_opener(handler)
request.install_opener(opener)
# download files one-by-one:
for (key, val) in ext_files.items():
# set subdirectory:
sub_dir = 'fonts'
if '.js' in key:
sub_dir = 'js'
if '.css' in key:
sub_dir = 'css'
# download file:
filename = '%s/static/%s/%s' % (install_dir, sub_dir, val)
if not os.path.exists(filename):
req = request.Request(key, headers={'User-Agent': 'Chrome/30.0.0.0'})
try:
data = opener.open(req).read()
with open(filename, 'wb') as fwrite:
fwrite.write(data)
except (HTTPError, URLError) as exc:
print('Error {} while downloading {}'.format(exc.code, key))
def main():
print("It's Alive!")
app = Application()
app.listen(FLAGS.port, max_buffer_size=1024 ** 3)
logging.info("Application Started")
if "HOSTNAME" in os.environ:
hostname = os.environ["HOSTNAME"]
else:
hostname = "localhost"
print("You can navigate to http://%s:%s" % (hostname, FLAGS.port))
ioloop.IOLoop.instance().start()
if __name__ == "__main__":
download_scripts()
main()