-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathjsonrpc_handler.py
More file actions
493 lines (429 loc) · 17.2 KB
/
jsonrpc_handler.py
File metadata and controls
493 lines (429 loc) · 17.2 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
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
"""JSON-RPC handler for A2A server requests."""
import logging
from collections.abc import AsyncIterable, Awaitable, Callable
from typing import Any
from google.protobuf.json_format import MessageToDict
from jsonrpc.jsonrpc2 import JSONRPC20Response
from a2a.server.context import ServerCallContext
from a2a.server.jsonrpc_models import (
InternalError as JSONRPCInternalError,
)
from a2a.server.jsonrpc_models import (
JSONRPCError,
)
from a2a.server.request_handlers.request_handler import RequestHandler
from a2a.types.a2a_pb2 import (
AgentCard,
CancelTaskRequest,
CreateTaskPushNotificationConfigRequest,
DeleteTaskPushNotificationConfigRequest,
GetExtendedAgentCardRequest,
GetTaskPushNotificationConfigRequest,
GetTaskRequest,
ListTaskPushNotificationConfigRequest,
ListTasksRequest,
SendMessageRequest,
SendMessageResponse,
SubscribeToTaskRequest,
Task,
)
from a2a.utils import proto_utils
from a2a.utils.errors import (
A2AException,
AuthenticatedExtendedCardNotConfiguredError,
ContentTypeNotSupportedError,
InternalError,
InvalidAgentResponseError,
InvalidParamsError,
InvalidRequestError,
MethodNotFoundError,
PushNotificationNotSupportedError,
ServerError,
TaskNotCancelableError,
TaskNotFoundError,
UnsupportedOperationError,
)
from a2a.utils.helpers import maybe_await, validate
from a2a.utils.telemetry import SpanKind, trace_class
logger = logging.getLogger(__name__)
EXCEPTION_MAP: dict[type[A2AException], type[JSONRPCError]] = {
TaskNotFoundError: JSONRPCError,
TaskNotCancelableError: JSONRPCError,
PushNotificationNotSupportedError: JSONRPCError,
UnsupportedOperationError: JSONRPCError,
ContentTypeNotSupportedError: JSONRPCError,
InvalidAgentResponseError: JSONRPCError,
AuthenticatedExtendedCardNotConfiguredError: JSONRPCError,
InternalError: JSONRPCInternalError,
InvalidParamsError: JSONRPCError,
InvalidRequestError: JSONRPCError,
MethodNotFoundError: JSONRPCError,
}
ERROR_CODE_MAP: dict[type[A2AException], int] = {
TaskNotFoundError: -32001,
TaskNotCancelableError: -32002,
PushNotificationNotSupportedError: -32003,
UnsupportedOperationError: -32004,
ContentTypeNotSupportedError: -32005,
InvalidAgentResponseError: -32006,
AuthenticatedExtendedCardNotConfiguredError: -32007,
InvalidParamsError: -32602,
InvalidRequestError: -32600,
MethodNotFoundError: -32601,
}
def _build_success_response(
request_id: str | int | None, result: Any
) -> dict[str, Any]:
"""Build a JSON-RPC success response dict."""
return JSONRPC20Response(result=result, _id=request_id).data
def _build_error_response(
request_id: str | int | None, error: Exception
) -> dict[str, Any]:
"""Build a JSON-RPC error response dict."""
jsonrpc_error: JSONRPCError
if isinstance(error, A2AException):
error_type = type(error)
model_class = EXCEPTION_MAP.get(error_type, JSONRPCInternalError)
code = ERROR_CODE_MAP.get(error_type, -32603)
jsonrpc_error = model_class(
code=code,
message=str(error),
)
else:
jsonrpc_error = JSONRPCInternalError(message=str(error))
error_dict = jsonrpc_error.model_dump(exclude_none=True)
return JSONRPC20Response(error=error_dict, _id=request_id).data
@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,
extended_agent_card: AgentCard | None = None,
extended_card_modifier: Callable[
[AgentCard, ServerCallContext], Awaitable[AgentCard] | AgentCard
]
| None = None,
card_modifier: Callable[[AgentCard], Awaitable[AgentCard] | AgentCard]
| None = None,
):
"""Initializes the JSONRPCHandler.
Args:
agent_card: The AgentCard describing the agent's capabilities.
request_handler: The underlying `RequestHandler` instance to delegate requests to.
extended_agent_card: An optional, distinct Extended AgentCard to be served
extended_card_modifier: An optional callback to dynamically modify
the extended agent card before it is served. It receives the
call context.
card_modifier: An optional callback to dynamically modify the public
agent card before it is served.
"""
self.agent_card = agent_card
self.request_handler = request_handler
self.extended_agent_card = extended_agent_card
self.extended_card_modifier = extended_card_modifier
self.card_modifier = card_modifier
def _get_request_id(
self, context: ServerCallContext | None
) -> str | int | None:
"""Get the JSON-RPC request ID from the context."""
if context is None:
return None
return context.state.get('request_id')
async def on_message_send(
self,
request: SendMessageRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'message/send' JSON-RPC method.
Args:
request: The incoming `SendMessageRequest` proto message.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
try:
task_or_message = await self.request_handler.on_message_send(
request, context
)
if isinstance(task_or_message, Task):
response = SendMessageResponse(task=task_or_message)
else:
response = SendMessageResponse(message=task_or_message)
result = MessageToDict(response)
return _build_success_response(request_id, result)
except ServerError as e:
return _build_error_response(
request_id, 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: SendMessageRequest,
context: ServerCallContext | None = None,
) -> AsyncIterable[dict[str, Any]]:
"""Handles the 'message/stream' JSON-RPC method.
Yields response objects as they are produced by the underlying handler's stream.
Args:
request: The incoming `SendMessageRequest` object (for streaming).
context: Context provided by the server.
Yields:
Dict representations of JSON-RPC responses containing streaming events.
"""
try:
async for event in self.request_handler.on_message_send_stream(
request, context
):
# Wrap the event in StreamResponse for consistent client parsing
stream_response = proto_utils.to_stream_response(event)
result = MessageToDict(
stream_response, preserving_proto_field_name=False
)
yield _build_success_response(
self._get_request_id(context), result
)
except ServerError as e:
yield _build_error_response(
self._get_request_id(context),
e.error if e.error else InternalError(),
)
async def on_cancel_task(
self,
request: CancelTaskRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'tasks/cancel' JSON-RPC method.
Args:
request: The incoming `CancelTaskRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
try:
task = await self.request_handler.on_cancel_task(request, context)
except ServerError as e:
return _build_error_response(
request_id, e.error if e.error else InternalError()
)
if task:
result = MessageToDict(task, preserving_proto_field_name=False)
return _build_success_response(request_id, result)
return _build_error_response(request_id, TaskNotFoundError())
async def on_subscribe_to_task(
self,
request: SubscribeToTaskRequest,
context: ServerCallContext | None = None,
) -> AsyncIterable[dict[str, Any]]:
"""Handles the 'SubscribeToTask' JSON-RPC method.
Yields response objects as they are produced by the underlying handler's stream.
Args:
request: The incoming `SubscribeToTaskRequest` object.
context: Context provided by the server.
Yields:
Dict representations of JSON-RPC responses containing streaming events.
"""
try:
async for event in self.request_handler.on_subscribe_to_task(
request, context
):
# Wrap the event in StreamResponse for consistent client parsing
stream_response = proto_utils.to_stream_response(event)
result = MessageToDict(
stream_response, preserving_proto_field_name=False
)
yield _build_success_response(
self._get_request_id(context), result
)
except ServerError as e:
yield _build_error_response(
self._get_request_id(context),
e.error if e.error else InternalError(),
)
async def get_push_notification_config(
self,
request: GetTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'tasks/pushNotificationConfig/get' JSON-RPC method.
Args:
request: The incoming `GetTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
try:
config = (
await self.request_handler.on_get_task_push_notification_config(
request, context
)
)
result = MessageToDict(config, preserving_proto_field_name=False)
return _build_success_response(request_id, result)
except ServerError as e:
return _build_error_response(
request_id, 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: CreateTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'tasks/pushNotificationConfig/set' JSON-RPC method.
Requires the agent to support push notifications.
Args:
request: The incoming `CreateTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
Raises:
ServerError: If push notifications are not supported by the agent
(due to the `@validate` decorator).
"""
request_id = self._get_request_id(context)
try:
# Pass the full request to the handler
result_config = await self.request_handler.on_create_task_push_notification_config(
request, context
)
result = MessageToDict(
result_config, preserving_proto_field_name=False
)
return _build_success_response(request_id, result)
except ServerError as e:
return _build_error_response(
request_id, e.error if e.error else InternalError()
)
async def on_get_task(
self,
request: GetTaskRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'tasks/get' JSON-RPC method.
Args:
request: The incoming `GetTaskRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
try:
task = await self.request_handler.on_get_task(request, context)
except ServerError as e:
return _build_error_response(
request_id, e.error if e.error else InternalError()
)
if task:
result = MessageToDict(task, preserving_proto_field_name=False)
return _build_success_response(request_id, result)
return _build_error_response(request_id, TaskNotFoundError())
async def list_tasks(
self,
request: ListTasksRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'tasks/list' JSON-RPC method.
Args:
request: The incoming `ListTasksRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
try:
response = await self.request_handler.on_list_tasks(
request, context
)
result = MessageToDict(response, preserving_proto_field_name=False)
return _build_success_response(request_id, result)
except ServerError as e:
return _build_error_response(
request_id, e.error if e.error else InternalError()
)
async def list_push_notification_config(
self,
request: ListTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'ListTaskPushNotificationConfig' JSON-RPC method.
Args:
request: The incoming `ListTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
try:
response = await self.request_handler.on_list_task_push_notification_config(
request, context
)
# response is a ListTaskPushNotificationConfigResponse proto
result = MessageToDict(response, preserving_proto_field_name=False)
return _build_success_response(request_id, result)
except ServerError as e:
return _build_error_response(
request_id, e.error if e.error else InternalError()
)
async def delete_push_notification_config(
self,
request: DeleteTaskPushNotificationConfigRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'tasks/pushNotificationConfig/delete' JSON-RPC method.
Args:
request: The incoming `DeleteTaskPushNotificationConfigRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
try:
await self.request_handler.on_delete_task_push_notification_config(
request, context
)
return _build_success_response(request_id, None)
except ServerError as e:
return _build_error_response(
request_id, e.error if e.error else InternalError()
)
async def get_authenticated_extended_card(
self,
request: GetExtendedAgentCardRequest,
context: ServerCallContext | None = None,
) -> dict[str, Any]:
"""Handles the 'agent/authenticatedExtendedCard' JSON-RPC method.
Args:
request: The incoming `GetExtendedAgentCardRequest` object.
context: Context provided by the server.
Returns:
A dict representing the JSON-RPC response.
"""
request_id = self._get_request_id(context)
if not self.agent_card.capabilities.extended_agent_card:
raise ServerError(
error=AuthenticatedExtendedCardNotConfiguredError(
message='Authenticated card not supported'
)
)
base_card = self.extended_agent_card
if base_card is None:
base_card = self.agent_card
card_to_serve = base_card
if self.extended_card_modifier and context:
card_to_serve = await maybe_await(
self.extended_card_modifier(base_card, context)
)
elif self.card_modifier:
card_to_serve = await maybe_await(self.card_modifier(base_card))
result = MessageToDict(card_to_serve, preserving_proto_field_name=False)
return _build_success_response(request_id, result)