-
Notifications
You must be signed in to change notification settings - Fork 429
Expand file tree
/
Copy pathjsonrpc_handler.py
More file actions
397 lines (358 loc) · 13.9 KB
/
jsonrpc_handler.py
File metadata and controls
397 lines (358 loc) · 13.9 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
import logging
from collections.abc import AsyncIterable
from a2a.server.context import ServerCallContext
from a2a.server.request_handlers.request_handler import RequestHandler
from a2a.server.request_handlers.response_helpers import prepare_response_object
from a2a.types import (
AgentCard,
CancelTaskRequest,
CancelTaskResponse,
CancelTaskSuccessResponse,
DeleteTaskPushNotificationConfigRequest,
DeleteTaskPushNotificationConfigResponse,
DeleteTaskPushNotificationConfigSuccessResponse,
GetTaskPushNotificationConfigRequest,
GetTaskPushNotificationConfigResponse,
GetTaskPushNotificationConfigSuccessResponse,
GetTaskRequest,
GetTaskResponse,
GetTaskSuccessResponse,
InternalError,
JSONRPCErrorResponse,
ListTaskPushNotificationConfigRequest,
ListTaskPushNotificationConfigResponse,
ListTaskPushNotificationConfigSuccessResponse,
Message,
SendMessageRequest,
SendMessageResponse,
SendMessageSuccessResponse,
SendStreamingMessageRequest,
SendStreamingMessageResponse,
SendStreamingMessageSuccessResponse,
SetTaskPushNotificationConfigRequest,
SetTaskPushNotificationConfigResponse,
SetTaskPushNotificationConfigSuccessResponse,
Task,
TaskArtifactUpdateEvent,
TaskNotFoundError,
TaskPushNotificationConfig,
TaskResubscriptionRequest,
TaskStatusUpdateEvent,
)
from a2a.utils.errors import ServerError
from a2a.utils.helpers import validate
from a2a.utils.telemetry import SpanKind, trace_class
logger = logging.getLogger(__name__)
@trace_class(kind=SpanKind.SERVER)
class JSONRPCHandler:
"""Maps incoming JSON-RPC requests to the appropriate request handler method and formats responses."""
def __init__(
self,
agent_card: AgentCard,
request_handler: RequestHandler,
):
"""Initializes the JSONRPCHandler.
Args:
agent_card: The AgentCard describing the agent's capabilities.
request_handler: The underlying `RequestHandler` instance to delegate requests to.
"""
self.agent_card = agent_card
self.request_handler = request_handler
async def on_message_send(
self,
request: SendMessageRequest,
context: ServerCallContext | None = None,
) -> SendMessageResponse:
"""Handles the 'message/send' JSON-RPC method.
Args:
request: The incoming `SendMessageRequest` object.
context: Context provided by the server.
Returns:
A `SendMessageResponse` object containing the result (Task or Message)
or a JSON-RPC error response if a `ServerError` is raised by the handler.
"""
# TODO: Wrap in error handler to return error states
try:
task_or_message = await self.request_handler.on_message_send(
request.params, context
)
return prepare_response_object(
request.id,
task_or_message,
(Task, Message),
SendMessageSuccessResponse,
SendMessageResponse,
)
except ServerError as e:
return SendMessageResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
@validate(
lambda self: self.agent_card.capabilities.streaming,
'Streaming is not supported by the agent',
)
async def on_message_send_stream(
self,
request: SendStreamingMessageRequest,
context: ServerCallContext | None = None,
) -> AsyncIterable[SendStreamingMessageResponse]:
"""Handles the 'message/stream' JSON-RPC method.
Yields response objects as they are produced by the underlying handler's stream.
Args:
request: The incoming `SendStreamingMessageRequest` object.
context: Context provided by the server.
Yields:
`SendStreamingMessageResponse` objects containing streaming events
(Task, Message, TaskStatusUpdateEvent, TaskArtifactUpdateEvent)
or JSON-RPC error responses if a `ServerError` is raised.
"""
try:
async for event in self.request_handler.on_message_send_stream(
request.params, context
):
yield prepare_response_object(
request.id,
event,
(
Task,
Message,
TaskArtifactUpdateEvent,
TaskStatusUpdateEvent,
),
SendStreamingMessageSuccessResponse,
SendStreamingMessageResponse,
)
except ServerError as e:
yield SendStreamingMessageResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
async def on_cancel_task(
self,
request: CancelTaskRequest,
context: ServerCallContext | None = None,
) -> CancelTaskResponse:
"""Handles the 'tasks/cancel' JSON-RPC method.
Args:
request: The incoming `CancelTaskRequest` object.
context: Context provided by the server.
Returns:
A `CancelTaskResponse` object containing the updated Task or a JSON-RPC error.
"""
try:
task = await self.request_handler.on_cancel_task(
request.params, context
)
if task:
return prepare_response_object(
request.id,
task,
(Task,),
CancelTaskSuccessResponse,
CancelTaskResponse,
)
raise ServerError(error=TaskNotFoundError())
except ServerError as e:
return CancelTaskResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
async def on_resubscribe_to_task(
self,
request: TaskResubscriptionRequest,
context: ServerCallContext | None = None,
) -> AsyncIterable[SendStreamingMessageResponse]:
"""Handles the 'tasks/resubscribe' JSON-RPC method.
Yields response objects as they are produced by the underlying handler's stream.
Args:
request: The incoming `TaskResubscriptionRequest` object.
context: Context provided by the server.
Yields:
`SendStreamingMessageResponse` objects containing streaming events
or JSON-RPC error responses if a `ServerError` is raised.
"""
try:
async for event in self.request_handler.on_resubscribe_to_task(
request.params, context
):
yield prepare_response_object(
request.id,
event,
(
Task,
Message,
TaskArtifactUpdateEvent,
TaskStatusUpdateEvent,
),
SendStreamingMessageSuccessResponse,
SendStreamingMessageResponse,
)
except ServerError as e:
yield SendStreamingMessageResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
async def get_push_notification_config(
self,
request: GetTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> GetTaskPushNotificationConfigResponse:
"""Handles the 'tasks/pushNotificationConfig/get' JSON-RPC method.
Args:
request: The incoming `GetTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A `GetTaskPushNotificationConfigResponse` object containing the config or a JSON-RPC error.
"""
try:
config = (
await self.request_handler.on_get_task_push_notification_config(
request.params, context
)
)
return prepare_response_object(
request.id,
config,
(TaskPushNotificationConfig,),
GetTaskPushNotificationConfigSuccessResponse,
GetTaskPushNotificationConfigResponse,
)
except ServerError as e:
return GetTaskPushNotificationConfigResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
@validate(
lambda self: self.agent_card.capabilities.push_notifications,
'Push notifications are not supported by the agent',
)
async def set_push_notification_config(
self,
request: SetTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> SetTaskPushNotificationConfigResponse:
"""Handles the 'tasks/pushNotificationConfig/set' JSON-RPC method.
Requires the agent to support push notifications.
Args:
request: The incoming `SetTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A `SetTaskPushNotificationConfigResponse` object containing the config or a JSON-RPC error.
Raises:
ServerError: If push notifications are not supported by the agent
(due to the `@validate` decorator).
"""
try:
config = (
await self.request_handler.on_set_task_push_notification_config(
request.params, context
)
)
return prepare_response_object(
request.id,
config,
(TaskPushNotificationConfig,),
SetTaskPushNotificationConfigSuccessResponse,
SetTaskPushNotificationConfigResponse,
)
except ServerError as e:
return SetTaskPushNotificationConfigResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
async def on_get_task(
self,
request: GetTaskRequest,
context: ServerCallContext | None = None,
) -> GetTaskResponse:
"""Handles the 'tasks/get' JSON-RPC method.
Args:
request: The incoming `GetTaskRequest` object.
context: Context provided by the server.
Returns:
A `GetTaskResponse` object containing the Task or a JSON-RPC error.
"""
try:
task = await self.request_handler.on_get_task(
request.params, context
)
if task:
return prepare_response_object(
request.id,
task,
(Task,),
GetTaskSuccessResponse,
GetTaskResponse,
)
raise ServerError(error=TaskNotFoundError())
except ServerError as e:
return GetTaskResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
async def list_push_notification_config(
self,
request: ListTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> ListTaskPushNotificationConfigResponse:
"""Handles the 'tasks/pushNotificationConfig/list' JSON-RPC method.
Args:
request: The incoming `ListTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A `ListTaskPushNotificationConfigResponse` object containing the config or a JSON-RPC error.
"""
try:
config = await self.request_handler.on_list_task_push_notification_config(
request.params, context
)
return prepare_response_object(
request.id,
config,
(list,),
ListTaskPushNotificationConfigSuccessResponse,
ListTaskPushNotificationConfigResponse,
)
except ServerError as e:
return ListTaskPushNotificationConfigResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)
async def delete_push_notification_config(
self,
request: DeleteTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> DeleteTaskPushNotificationConfigResponse:
"""Handles the 'tasks/pushNotificationConfig/list' JSON-RPC method.
Args:
request: The incoming `DeleteTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A `DeleteTaskPushNotificationConfigResponse` object containing the config or a JSON-RPC error.
"""
try:
(
await self.request_handler.on_delete_task_push_notification_config(
request.params, context
)
)
return DeleteTaskPushNotificationConfigResponse(
root=DeleteTaskPushNotificationConfigSuccessResponse(
id=request.id, result=None
)
)
except ServerError as e:
return DeleteTaskPushNotificationConfigResponse(
root=JSONRPCErrorResponse(
id=request.id, error=e.error if e.error else InternalError()
)
)