actionmcp 0.28.0 → 0.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,80 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ActionMCP
4
- module JsonRpc
5
- # Represents a JSON-RPC response.
6
- Response = Data.define(:id, :result, :error) do
7
- # Initializes a new Response.
8
- #
9
- # @param id [String, Numeric] The request identifier.
10
- # @param result [Object, nil] The result data (optional).
11
- # @param error [Object, nil] The error data (optional).
12
- # @raise [ArgumentError] if neither result nor error is provided, or if both are provided.
13
- def initialize(id:, result: nil, error: nil)
14
- validate_presence_of_result_or_error!(result, error)
15
- validate_absence_of_both_result_and_error!(result, error)
16
- result, error = transform_value_to_hash!(result, error)
17
-
18
- super(id: id, result: result, error: error)
19
- end
20
-
21
- # Returns a hash representation of the response.
22
- #
23
- # @return [Hash] The hash representation.
24
- def to_h
25
- {
26
- jsonrpc: "2.0",
27
- id: id,
28
- result: result,
29
- error: error
30
- }.compact
31
- end
32
-
33
- def is_error?
34
- error.present?
35
- end
36
-
37
- private
38
-
39
- # Validates that either result or error is present.
40
- #
41
- # @param result [Object, nil] The result data.
42
- # @param error [Object, nil] The error data.
43
- # @raise [ArgumentError] if neither result nor error is provided.
44
- def validate_presence_of_result_or_error!(result, error)
45
- raise ArgumentError, "Either result or error must be provided." if result.nil? && error.nil?
46
- end
47
-
48
- # Validates that both result and error are not present simultaneously.
49
- #
50
- # @param result [Object, nil] The result data.
51
- # @param error [Object, nil] The error data.
52
- # @raise [ArgumentError] if both result and error are provided.
53
- def validate_absence_of_both_result_and_error!(result, error)
54
- raise ArgumentError, "Both result and error cannot be provided simultaneously." if result && error
55
- end
56
-
57
- def transform_value_to_hash!(result, error)
58
- result = if result.is_a?(String)
59
- begin
60
- MultiJson.load(result)
61
- rescue StandardError
62
- result
63
- end
64
- else
65
- result
66
- end
67
- error = if error.is_a?(String)
68
- begin
69
- MultiJson.load(error)
70
- rescue StandardError
71
- error
72
- end
73
- else
74
- error
75
- end
76
- [ result, error ]
77
- end
78
- end
79
- end
80
- end
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ActionMCP
4
- # Module for handling JSON-RPC communication.
5
- module JsonRpc
6
- end
7
- end