forked from anki/vector-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.py
More file actions
412 lines (324 loc) · 17.8 KB
/
events.py
File metadata and controls
412 lines (324 loc) · 17.8 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
# Copyright (c) 2018 Anki, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License in the file LICENSE.txt or at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Event handler used to make functions subscribe to robot events.
"""
__all__ = ['EventHandler', 'Events']
import asyncio
from concurrent.futures import CancelledError
from enum import Enum
import threading
from typing import Callable
import uuid
from .connection import Connection
from . import util
from .messaging import protocol
class Events(Enum):
"""List of events available."""
# Robot
robot_state = "robot_state" #: Robot event containing changes to the robot's state.
mirror_mode_disabled = "mirror_mode_disabled" # : Robot event triggered when mirror mode (camera feed displayed on robot's face) is automatically disabled due to SDK no longer having control of the robot.
vision_modes_auto_disabled = "vision_modes_auto_disabled" # : Robot event triggered when all vision modes are automatically disabled due to the SDK no longer having control of the robot.
# Objects
object_available = "object_available" #: After the ConnectCube process is started, all available light cubes in range will broadcast an availability message through the Robot.
object_connection_state = "object_connection_state" # : Robot event for an object with the ability to connect to the robot digitally changing its connection state.
object_moved = "object_moved" #: Robot event triggered when an object starts moving.
object_stopped_moving = "object_stopped_moving" #: Robot event triggered when an object stops moving.
object_up_axis_changed = "object_up_axis_changed" #: Robot event triggered when an object's orientation changed.
object_tapped = "object_tapped" #: Robot event triggered when an object is tapped.
robot_observed_object = "robot_observed_object" #: Robot event triggered when an object is observed by the robot.
cube_connection_lost = "cube_connection_lost" #: Robot event triggered when an object's subscribed connection has been lost.
robot_observed_face = "robot_observed_face" #: Robot event for when a face is observed by the robot.
robot_changed_observed_face_id = "robot_changed_observed_face_id" # : Robot event for when a known face changes its id.
wake_word = "wake_word" #: Robot event triggered when Vector hears "Hey Vector"
user_intent = "user_intent" #: Robot event triggered after Vector processes voice commands
# Audio
audio_send_mode_changed = "audio_send_mode_changed" #: Robot event containing changes to the robot's audio stream source data processing mode.
# Generated by SDK
object_observed = "object_observed" #: Python event triggered in response to robot_observed_object with sdk metadata.
object_appeared = "object_appeared" #: Python event triggered when an object first receives robot_observed_object.
object_disappeared = "object_disappeared" #: Python event triggered when an object has not received a robot_observed_object for a specified time.
object_finished_move = "object_finished_move" #: Python event triggered in response to object_stopped_moving with duration data.
nav_map_update = "nav_map_update" #: Python event containing nav map data.
new_raw_camera_image = "new_raw_camera_image" #: Python event containing a raw camera image
new_camera_image = "new_camera_image" #: Python event containing a processed camera image (:class:`anki_vector.camera.CameraImage` instance)
class _EventCallback:
def __init__(self, callback, *args, _on_connection_thread: bool = False, **kwargs):
self._extra_args = args
self._extra_kwargs = kwargs
self._callback = callback
self._on_connection_thread = _on_connection_thread
@property
def on_connection_thread(self):
return self._on_connection_thread
@property
def callback(self):
return self._callback
@property
def extra_args(self):
return self._extra_args
@property
def extra_kwargs(self):
return self._extra_kwargs
def __eq__(self, other):
other_cb = other
if hasattr(other, "callback"):
other_cb = other.callback
return other_cb == self.callback
def __hash__(self):
return self._callback.__hash__()
class EventHandler:
"""Listen for Vector events."""
def __init__(self, robot):
self.logger = util.get_class_logger(__name__, self)
self._robot = robot
self._conn = None
self._conn_id = None
self.listening_for_events = False
self.event_future = None
self._thread: threading.Thread = None
self._loop: asyncio.BaseEventLoop = None
self.subscribers = {}
self._done_signal: asyncio.Event = None
def start(self, connection: Connection):
"""Start listening for events. Automatically called by the :class:`anki_vector.robot.Robot` class.
:param connection: A reference to the connection from the SDK to the robot.
:param loop: The loop to run the event task on.
"""
self._conn = connection
self.listening_for_events = True
self._thread = threading.Thread(target=self._run_thread, daemon=True, name="Event Stream Handler Thread")
self._thread.start()
def _run_thread(self):
try:
self._loop = asyncio.new_event_loop()
asyncio.set_event_loop(self._loop)
self._done_signal = asyncio.Event(loop=self._loop)
# create an event stream handler on the connection thread
self.event_future = asyncio.run_coroutine_threadsafe(self._handle_event_stream(), self._conn.loop)
async def wait_until_done():
return await self._done_signal.wait()
self._loop.run_until_complete(wait_until_done())
finally:
self._loop.close()
def close(self):
"""Stop listening for events. Automatically called by the :class:`anki_vector.robot.Robot` class.
"""
self.listening_for_events = False
try:
self.event_future.cancel()
self.event_future.result()
except CancelledError:
pass
self._loop.call_soon_threadsafe(self._done_signal.set)
self._thread.join(timeout=5)
self._thread = None
def _notify(self, event_callback, event_name, event_data):
loop = self._loop
thread = self._thread
# For high priority events that shouldn't be blocked by user callbacks
# they will run directly on the connection thread. This should typically
# be used when setting robot properties from events.
if event_callback.on_connection_thread:
loop = self._conn.loop
thread = self._conn.thread
callback = event_callback.callback
args = event_callback.extra_args
kwargs = event_callback.extra_kwargs
if asyncio.iscoroutinefunction(callback):
callback = callback(self._robot, event_name, event_data, *args, **kwargs)
elif not asyncio.iscoroutine(callback):
async def call_async(fn, *args, **kwargs):
fn(*args, **kwargs)
callback = call_async(callback, self._robot, event_name, event_data, *args, **kwargs)
if threading.current_thread() is thread:
future = asyncio.ensure_future(callback, loop=loop)
else:
future = asyncio.run_coroutine_threadsafe(callback, loop=loop)
future.add_done_callback(self._done_callback)
def _done_callback(self, completed_future):
exc = completed_future.exception()
if exc:
self.logger.error("Event callback exception: %s", exc)
if isinstance(exc, TypeError) and "positional arguments but" in str(exc):
self.logger.error("The subscribed function may be missing parameters in its definition. Make sure it has robot, event_type and event positional parameters.")
async def dispatch_event_by_name(self, event_data, event_name: str):
"""Dispatches event to event listeners by name.
.. testcode::
import anki_vector
def event_listener(robot, name, msg):
print(name) # will print 'my_event'
print(msg) # will print 'my_event dispatched'
with anki_vector.Robot() as robot:
robot.events.subscribe_by_name(event_listener, event_name='my_event')
robot.conn.run_coroutine(robot.events.dispatch_event_by_name('my_event dispatched', event_name='my_event'))
:param event_data: Data to accompany the event.
:param event_name: The name of the event that will result in func being called.
"""
if not event_name:
self.logger.error('Bad event_name in dispatch_event.')
if event_name in self.subscribers.keys():
subscribers = self.subscribers[event_name].copy()
for callback in subscribers:
self._notify(callback, event_name, event_data)
async def dispatch_event(self, event_data, event_type: Events):
"""Dispatches event to event listeners."""
if not event_type:
self.logger.error('Bad event_type in dispatch_event.')
event_name = event_type.value
await self.dispatch_event_by_name(event_data, event_name)
def _unpackage_event(self, enum_key: str, event):
event_key = event.WhichOneof(enum_key)
event_data = getattr(event, event_key)
if getattr(event_data, 'WhichOneof'):
# Object events are automatically unpackaged into their sub-event classes.
try:
return self._unpackage_event('object_event_type', event_data)
except ValueError:
pass
except TypeError:
pass
return event_key, event_data
async def _handle_event_stream(self):
self._conn_id = bytes(uuid.uuid4().hex, "utf-8")
try:
req = protocol.EventRequest(connection_id=self._conn_id)
async for evt in self._conn.grpc_interface.EventStream(req):
if not self.listening_for_events:
break
try:
unpackaged_event_key, unpackaged_event_data = self._unpackage_event('event_type', evt.event)
await self.dispatch_event_by_name(unpackaged_event_data, unpackaged_event_key)
except TypeError:
self.logger.warning('Unknown Event type')
except CancelledError:
self.logger.debug('Event handler task was cancelled. This is expected during disconnection.')
def subscribe_by_name(self, func: Callable, event_name: str, *args, **kwargs):
"""Receive a method call when the specified event occurs.
.. testcode::
import anki_vector
def event_listener(robot, name, msg):
print(name) # will print 'my_event'
print(msg) # will print 'my_event dispatched'
with anki_vector.Robot() as robot:
robot.events.subscribe_by_name(event_listener, event_name='my_event')
robot.conn.run_coroutine(robot.events.dispatch_event_by_name('my_event dispatched', event_name='my_event'))
:param func: A method implemented in your code that will be called when the event is fired.
:param event_name: The name of the event that will result in func being called.
:param args: Additional positional arguments to this function will be passed through to the callback in the provided order.
:param kwargs: Additional keyword arguments to this function will be passed through to the callback.
"""
if not event_name:
self.logger.error('Bad event_name in subscribe.')
if event_name not in self.subscribers.keys():
self.subscribers[event_name] = set()
self.subscribers[event_name].add(_EventCallback(func, *args, **kwargs))
def subscribe(self, func: Callable, event_type: Events, *args, **kwargs):
"""Receive a method call when the specified event occurs.
.. testcode::
import anki_vector
from anki_vector.events import Events
from anki_vector.util import degrees
import threading
said_text = False
def on_robot_observed_face(robot, event_type, event, evt):
print("Vector sees a face")
global said_text
if not said_text:
said_text = True
robot.behavior.say_text("I see a face!")
evt.set()
with anki_vector.Robot(enable_face_detection=True) as robot:
# If necessary, move Vector's Head and Lift to make it easy to see his face
robot.behavior.set_head_angle(degrees(45.0))
robot.behavior.set_lift_height(0.0)
evt = threading.Event()
robot.events.subscribe(on_robot_observed_face, Events.robot_observed_face, evt)
print("------ waiting for face events, press ctrl+c to exit early ------")
try:
if not evt.wait(timeout=5):
print("------ Vector never saw your face! ------")
except KeyboardInterrupt:
pass
robot.events.unsubscribe(on_robot_observed_face, Events.robot_observed_face)
:param func: A method implemented in your code that will be called when the event is fired.
:param event_type: The enum type of the event that will result in func being called.
:param args: Additional positional arguments to this function will be passed through to the callback in the provided order.
:param kwargs: Additional keyword arguments to this function will be passed through to the callback.
"""
if not event_type:
self.logger.error('Bad event_type in subscribe.')
event_name = event_type.value
self.subscribe_by_name(func, event_name, *args, **kwargs)
def unsubscribe_by_name(self, func: Callable, event_name: str):
"""Unregister a previously subscribed method from an event.
.. testcode::
import anki_vector
def event_listener(name, msg):
print(name) # will print 'my_event'
print(msg) # will print 'my_event dispatched'
with anki_vector.Robot() as robot:
robot.events.subscribe_by_name(event_listener, event_name='my_event')
robot.conn.run_coroutine(robot.events.dispatch_event_by_name('my_event dispatched', event_name='my_event'))
:param func: The method you no longer wish to be called when an event fires.
:param event_name: The name of the event for which you no longer want to receive a method call.
"""
if not event_name:
self.logger.error('Bad event_key in unsubscribe.')
if event_name in self.subscribers.keys():
event_subscribers = self.subscribers[event_name]
if func in event_subscribers:
event_subscribers.remove(func)
if not event_subscribers:
self.subscribers.pop(event_name, None)
else:
self.logger.error(f"The function '{func.__name__}' is not subscribed to '{event_name}'")
else:
self.logger.error(f"Cannot unsubscribe from event_type '{event_name}'. "
"It has no subscribers.")
def unsubscribe(self, func: Callable, event_type: Events):
"""Unregister a previously subscribed method from an event.
.. testcode::
import anki_vector
from anki_vector.events import Events
from anki_vector.util import degrees
import threading
said_text = False
def on_robot_observed_face(robot, event_type, event, evt):
print("Vector sees a face")
global said_text
if not said_text:
said_text = True
robot.behavior.say_text("I see a face!")
evt.set()
with anki_vector.Robot(enable_face_detection=True) as robot:
# If necessary, move Vector's Head and Lift to make it easy to see his face
robot.behavior.set_head_angle(degrees(45.0))
robot.behavior.set_lift_height(0.0)
evt = threading.Event()
robot.events.subscribe(on_robot_observed_face, Events.robot_observed_face, evt)
print("------ waiting for face events, press ctrl+c to exit early ------")
try:
if not evt.wait(timeout=5):
print("------ Vector never saw your face! ------")
except KeyboardInterrupt:
pass
robot.events.unsubscribe(on_robot_observed_face, Events.robot_observed_face)
:param func: The enum type of the event you no longer wish to be called when an event fires.
:param event_type: The name of the event for which you no longer want to receive a method call.
"""
if not event_type:
self.logger.error('Bad event_type in unsubscribe.')
event_name = event_type.value
self.unsubscribe_by_name(func, event_name)