-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
263 lines (237 loc) · 13.1 KB
/
Copy path__init__.py
File metadata and controls
263 lines (237 loc) · 13.1 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
# NEON AI (TM) SOFTWARE, Software Development Kit & Application Framework
# All trademark and other rights reserved by their respective owners
# Copyright 2008-2025 Neongecko.com Inc.
# Contributors: Daniel McKnight, Guy Daniels, Elon Gasper, Richard Leeds,
# Regina Bloomstine, Casimiro Ferreira, Andrii Pernatii, Kirill Hrymailo
# BSD-3 License
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
from threading import Lock
from ovos_utils.log import LOG
from ovos_utils import classproperty
from ovos_utils.process_utils import RuntimeRequirements
from neon_utils.skills.neon_skill import NeonSkill
from neon_utils.signal_utils import check_for_signal
from ovos_workshop.decorators import intent_handler
from ovos_workshop.intents import IntentBuilder
class CommunicationSkill(NeonSkill):
def __init__(self, **kwargs):
super(CommunicationSkill, self).__init__(**kwargs)
self.query_replies = {}
self.query_extensions = {}
self.lock = Lock()
@classproperty
def runtime_requirements(self):
return RuntimeRequirements(network_before_load=False,
internet_before_load=False,
gui_before_load=False,
requires_internet=True,
requires_network=True,
requires_gui=False,
no_internet_fallback=True,
no_network_fallback=False,
no_gui_fallback=True)
def initialize(self):
self.add_event("communication:request.call.response",
self.handle_place_call_response)
self.add_event("communication:request.message.response",
self.handle_send_message_response)
@intent_handler("call.intent")
def handle_place_call(self, message):
if self.neon_in_request(message):
# TODO: Move hesitation to user preference DM
if check_for_signal('CORE_useHesitation', -1):
self.speak_dialog("one_moment")
utt = message.data.get("utterance")
request = message.data.get("contact")
# TODO: This should use a UID, rather than the requested contact DM
self.query_replies[request] = []
self.query_extensions[request] = []
self.bus.emit(message.forward("communication:request.call",
data={"utterance": utt,
"request": request}))
# Give skills one second to reply to this request
self.schedule_event(self._place_call_timeout, 1,
data={"request": request},
name="PlaceCallTimeout")
@intent_handler(IntentBuilder("SendMessageIntent")
.optionally("neon").require("draft").require("message"))
def handle_send_message(self, message):
if self.neon_in_request(message):
if check_for_signal('CORE_useHesitation', -1):
self.speak_dialog("one_moment")
utt = message.data.get("utterance")
# TODO: This should use a UID, rather than the request utterance DM
request = utt.replace(message.data.get("neon", ""), "").strip()
self.query_replies[request] = []
self.query_extensions[request] = []
self.bus.emit(message.forward("communication:request.message",
data={"utterance": utt,
"request": request}))
# Give skills one second to reply to this request
self.schedule_event(self._send_message_timeout, 1,
data={"request": request},
name="SendMessageTimeout")
def handle_place_call_response(self, message):
with self.lock:
request = message.data["request"]
skill_id = message.data["skill_id"]
# Skill has requested more time to complete search
if "searching" in message.data and request in self.query_extensions:
# Manage requests for time to complete searches
if message.data["searching"]:
# extend the timeout by 5 seconds
self.cancel_scheduled_event("PlaceCallTimeout")
LOG.debug(f"Timeout in 5s for {skill_id}")
self.schedule_event(self._place_call_timeout, 5,
data={"request": request},
name='PlaceCallTimeout')
# TODO: Perhaps block multiple extensions?
if skill_id not in self.query_extensions[request]:
self.query_extensions[request].append(skill_id)
else:
LOG.debug(f"{skill_id} has a response")
# Search complete, don't wait on this skill any longer
if skill_id in self.query_extensions[request]:
self.query_extensions[request].remove(skill_id)
if not self.query_extensions[request]:
self.cancel_scheduled_event("PlaceCallTimeout")
self.schedule_event(self._place_call_timeout, 1,
data={"request": request},
name='PlaceCallTimeout')
elif request in self.query_replies:
# Collect all replies until the timeout
self.query_replies[request].append(message.data)
# Search complete, don't wait on this skill any longer
if skill_id in self.query_extensions[request]:
self.query_extensions[request].remove(skill_id)
if not self.query_extensions[request]:
self.cancel_scheduled_event("PlaceCallTimeout")
self.schedule_event(self._place_call_timeout, 0,
data={"request": request},
name='PlaceCallTimeout')
def handle_send_message_response(self, message):
with self.lock:
request = message.data["request"]
skill_id = message.data["skill_id"]
# Skill has requested more time to complete search
if "searching" in message.data and request in self.query_extensions:
# Manage requests for time to complete searches
if message.data["searching"]:
# extend the timeout by 5 seconds
self.cancel_scheduled_event("SendMessageTimeout")
LOG.debug(f"Timeout in 5s for {skill_id}")
self.schedule_event(self._send_message_timeout, 5,
data={"request": request},
name='SendMessageTimeout')
# TODO: Perhaps block multiple extensions?
if skill_id not in self.query_extensions[request]:
self.query_extensions[request].append(skill_id)
else:
LOG.debug(f"{skill_id} has a response")
# Search complete, don't wait on this skill any longer
if skill_id in self.query_extensions[request]:
self.query_extensions[request].remove(skill_id)
if not self.query_extensions[request]:
self.cancel_scheduled_event("SendMessageTimeout")
self.schedule_event(self._send_message_timeout, 1,
data={"request": request},
name='SendMessageTimeout')
elif request in self.query_replies:
# Collect all replies until the timeout
self.query_replies[request].append(message.data)
# Search complete, don't wait on this skill any longer
if skill_id in self.query_extensions[request]:
self.query_extensions[request].remove(skill_id)
if not self.query_extensions[request]:
self.cancel_scheduled_event("SendMessageTimeout")
self.schedule_event(self._send_message_timeout, 0,
data={"request": request},
name='SendMessageTimeout')
def _place_call_timeout(self, message):
with self.lock:
# Prevent any late-comers from retriggering this query handler
request = message.data["request"]
self.query_extensions[request] = []
# Look at any replies that arrived before the timeout
# Find response(s) with the highest confidence
best = None
ties = []
LOG.debug(f"CommonMessage Resolution for: {request}")
for handler in self.query_replies[request]:
LOG.debug(f'{handler["conf"]} using {handler["skill_id"]}')
if not best or handler["conf"] > best["conf"]:
best = handler
ties = []
elif handler["conf"] == best["conf"]:
ties.append(handler)
if best:
if ties:
# TODO: Ask user to pick between ties or do it automagically
pass
LOG.info(f"match={best}")
# invoke best match
send_data = {"skill_id": best["skill_id"],
"request": best["request"],
"skill_data": best["skill_data"]}
self.bus.emit(message.forward("communication:place.call", send_data))
else:
LOG.info(" No matches")
self.speak_dialog("cant_send", private=True)
if request in self.query_replies:
del self.query_replies[request]
if request in self.query_extensions:
del self.query_extensions[request]
def _send_message_timeout(self, message):
with self.lock:
# Prevent any late-comers from retriggering this query handler
request = message.data["request"]
self.query_extensions[request] = []
# Look at any replies that arrived before the timeout
# Find response(s) with the highest confidence
best = None
ties = []
LOG.debug(f"CommonMessage Resolution for: {request}")
for handler in self.query_replies[request]:
LOG.debug(f'{handler["conf"]} using {handler["skill_id"]}')
if not best or handler["conf"] > best["conf"]:
best = handler
ties = []
elif handler["conf"] == best["conf"]:
ties.append(handler)
if best:
if ties:
# TODO: Ask user to pick between ties or do it automagically
pass
LOG.info(f"match={best}")
# invoke best match
send_data = {"skill_id": best["skill_id"],
"request": best["request"],
"skill_data": best["skill_data"]}
self.bus.emit(message.forward("communication:send.message", send_data))
else:
LOG.info(" No matches")
self.speak_dialog("cant_send", private=True)
if request in self.query_replies:
del self.query_replies[request]
if request in self.query_extensions:
del self.query_extensions[request]