-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbridge_hooks.py
50 lines (43 loc) · 1.54 KB
/
bridge_hooks.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
from flask import Flask, request
import http.client
import argparse
import sys
import traceback
from PythonBridge import bridge_globals
def serialize(obj):
return bridge_globals.msg_service.serializer.serialize(obj)
def deserialize(text):
return bridge_globals.msg_service.serializer.deserialize(text)
def observer(commandId, observerId):
return lambda obj: notify_observer(obj, commandId, observerId)
#### NOTIFICATION FUNCTIONS
def notify(obj, notificationId):
bridge_globals.logger.log("PYTHON: Notify " + str(notificationId))
data = {}
data["type"] = "EVAL"
data["id"] = notificationId
data["value"] = serialize(obj)
bridge_globals.msg_service.send_async_message(data)
def notify_observer(obj, commandId, observerId):
bridge_globals.logger.log("PYTHON: Notify observer " + str(commandId) + " " + str(observerId))
data = {}
data["type"] = "CALLBACK"
data["commandId"] = commandId
data["observerId"] = observerId
data["value"] = serialize(obj)
rawValue = bridge_globals.msg_service.send_sync_message(data)['value']
return deserialize(rawValue)
def notify_error(ex, command):
bridge_globals.logger.log("Error on command: " + str(command.command_id()))
bridge_globals.logger.log("Exception: " + str(ex))
data = {}
data["type"] = "ERR"
data["errMsg"] = str(ex)
data["trace"] = traceback.format_exc(100)
data["commandId"] = command.command_id()
return bridge_globals.msg_service.send_sync_message(data)
def bridge_inspect(obj):
if hasattr(obj,'__dict__'):
return obj.__dict__
else:
return {}