contrast-agent 6.7.0 → 6.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (221) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -2
  3. data/.simplecov +0 -1
  4. data/Rakefile +0 -1
  5. data/ext/cs__assess_array/cs__assess_array.c +41 -10
  6. data/ext/cs__assess_array/cs__assess_array.h +4 -1
  7. data/lib/contrast/agent/assess/policy/trigger_method.rb +2 -2
  8. data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +1 -1
  9. data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -1
  10. data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +1 -1
  11. data/lib/contrast/agent/excluder.rb +52 -34
  12. data/lib/contrast/agent/exclusion_matcher.rb +21 -9
  13. data/lib/contrast/agent/middleware.rb +4 -4
  14. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -0
  15. data/lib/contrast/agent/protect/input_analyzer/input_analyzer.rb +146 -127
  16. data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +20 -0
  17. data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
  18. data/lib/contrast/agent/protect/rule/base.rb +45 -53
  19. data/lib/contrast/agent/protect/rule/base_service.rb +48 -24
  20. data/lib/contrast/agent/protect/rule/bot_blocker/bot_blocker_input_classification.rb +98 -0
  21. data/lib/contrast/agent/protect/rule/bot_blocker.rb +81 -0
  22. data/lib/contrast/agent/protect/rule/cmd_injection.rb +18 -1
  23. data/lib/contrast/agent/protect/rule/cmdi/cmdi_backdoors.rb +8 -5
  24. data/lib/contrast/agent/protect/rule/cmdi/cmdi_base_rule.rb +22 -22
  25. data/lib/contrast/agent/protect/rule/cmdi/cmdi_chained_command.rb +69 -0
  26. data/lib/contrast/agent/protect/rule/cmdi/cmdi_dangerous_path.rb +68 -0
  27. data/lib/contrast/agent/protect/rule/cmdi/cmdi_input_classification.rb +2 -58
  28. data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
  29. data/lib/contrast/agent/protect/rule/deserialization.rb +3 -14
  30. data/lib/contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification.rb +2 -2
  31. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +0 -11
  32. data/lib/contrast/agent/protect/rule/no_sqli/no_sqli_input_classification.rb +29 -34
  33. data/lib/contrast/agent/protect/rule/no_sqli.rb +25 -18
  34. data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_input_classification.rb +61 -0
  35. data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_semantic_security_bypass.rb +114 -0
  36. data/lib/contrast/agent/protect/rule/path_traversal.rb +38 -12
  37. data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +33 -15
  38. data/lib/contrast/agent/protect/rule/sqli/sqli_base_rule.rb +0 -14
  39. data/lib/contrast/agent/protect/rule/sqli/sqli_input_classification.rb +2 -62
  40. data/lib/contrast/agent/protect/rule/sqli.rb +70 -0
  41. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_input_classification.rb +39 -63
  42. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +6 -33
  43. data/lib/contrast/agent/protect/rule/xss/reflected_xss_input_classification.rb +58 -0
  44. data/lib/contrast/agent/protect/rule/xss.rb +14 -20
  45. data/lib/contrast/agent/protect/rule/xxe.rb +4 -24
  46. data/lib/contrast/agent/reporting/attack_result/rasp_rule_sample.rb +18 -39
  47. data/lib/contrast/agent/reporting/attack_result/response_type.rb +9 -9
  48. data/lib/contrast/agent/reporting/details/ip_denylist_details.rb +10 -2
  49. data/lib/contrast/agent/reporting/details/virtual_patch_details.rb +8 -2
  50. data/lib/contrast/agent/reporting/input_analysis/details/bot_blocker_details.rb +27 -0
  51. data/lib/contrast/agent/reporting/input_analysis/details/protect_rule_details.rb +15 -0
  52. data/lib/contrast/agent/reporting/input_analysis/input_analysis.rb +1 -2
  53. data/lib/contrast/agent/reporting/input_analysis/input_analysis_result.rb +16 -2
  54. data/lib/contrast/agent/reporting/masker/masker.rb +2 -0
  55. data/lib/contrast/agent/reporting/reporter.rb +1 -14
  56. data/lib/contrast/agent/reporting/reporting_events/application_activity.rb +15 -12
  57. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_activity.rb +3 -3
  58. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample.rb +1 -2
  59. data/lib/contrast/agent/reporting/reporting_events/application_update.rb +0 -2
  60. data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +0 -1
  61. data/lib/contrast/agent/reporting/reporting_events/finding.rb +4 -4
  62. data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +0 -5
  63. data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +0 -1
  64. data/lib/contrast/agent/reporting/reporting_events/poll.rb +1 -11
  65. data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +0 -1
  66. data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +0 -1
  67. data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +2 -2
  68. data/lib/contrast/agent/reporting/reporting_utilities/response.rb +1 -1
  69. data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +0 -3
  70. data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +1 -0
  71. data/lib/contrast/agent/reporting/settings/code_exclusion.rb +6 -1
  72. data/lib/contrast/agent/reporting/settings/exclusion_base.rb +18 -0
  73. data/lib/contrast/agent/reporting/settings/exclusions.rb +2 -1
  74. data/lib/contrast/agent/reporting/settings/input_exclusion.rb +9 -3
  75. data/lib/contrast/agent/reporting/settings/protect.rb +15 -15
  76. data/lib/contrast/agent/request.rb +2 -14
  77. data/lib/contrast/agent/request_context.rb +6 -9
  78. data/lib/contrast/agent/request_context_extend.rb +9 -148
  79. data/lib/contrast/agent/thread_watcher.rb +3 -18
  80. data/lib/contrast/agent/version.rb +1 -1
  81. data/lib/contrast/agent.rb +0 -11
  82. data/lib/contrast/agent_lib/api/command_injection.rb +46 -0
  83. data/lib/contrast/agent_lib/api/init.rb +101 -0
  84. data/lib/contrast/agent_lib/api/input_tracing.rb +267 -0
  85. data/lib/contrast/agent_lib/api/method_tempering.rb +29 -0
  86. data/lib/contrast/agent_lib/api/panic.rb +87 -0
  87. data/lib/contrast/agent_lib/api/path_semantic_file_security_bypass.rb +40 -0
  88. data/lib/contrast/agent_lib/interface.rb +260 -0
  89. data/lib/contrast/agent_lib/interface_base.rb +118 -0
  90. data/lib/contrast/agent_lib/return_types/eval_result.rb +44 -0
  91. data/lib/contrast/agent_lib/test.rb +29 -0
  92. data/lib/contrast/api/communication/connection_status.rb +5 -5
  93. data/lib/contrast/components/agent.rb +0 -14
  94. data/lib/contrast/components/app_context.rb +0 -2
  95. data/lib/contrast/components/app_context_extend.rb +0 -25
  96. data/lib/contrast/components/config.rb +1 -18
  97. data/lib/contrast/components/protect.rb +4 -1
  98. data/lib/contrast/components/ruby_component.rb +1 -1
  99. data/lib/contrast/components/settings.rb +37 -89
  100. data/lib/contrast/config/protect_rule_configuration.rb +7 -7
  101. data/lib/contrast/config/protect_rules_configuration.rb +20 -58
  102. data/lib/contrast/configuration.rb +1 -10
  103. data/lib/contrast/extension/assess/array.rb +9 -0
  104. data/lib/contrast/extension/delegator.rb +2 -0
  105. data/lib/contrast/framework/manager.rb +3 -1
  106. data/lib/contrast/framework/rails/railtie.rb +0 -1
  107. data/lib/contrast/framework/rails/support.rb +0 -1
  108. data/lib/contrast/tasks/config.rb +1 -8
  109. data/lib/contrast/utils/duck_utils.rb +1 -0
  110. data/lib/contrast/utils/input_classification_base.rb +156 -0
  111. data/lib/contrast/utils/os.rb +0 -20
  112. data/lib/contrast/utils/response_utils.rb +0 -16
  113. data/lib/contrast/utils/stack_trace_utils.rb +3 -15
  114. data/lib/contrast/utils/string_utils.rb +10 -7
  115. data/lib/contrast.rb +2 -3
  116. data/resources/protect/policy.json +1 -2
  117. data/ruby-agent.gemspec +2 -5
  118. metadata +42 -112
  119. data/exe/contrast_service +0 -23
  120. data/lib/contrast/agent/protect/rule/cmdi/cmdi_worth_watching.rb +0 -64
  121. data/lib/contrast/agent/protect/rule/sqli/sqli_worth_watching.rb +0 -118
  122. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_matcher.rb +0 -45
  123. data/lib/contrast/agent/reaction_processor.rb +0 -47
  124. data/lib/contrast/agent/service_heartbeat.rb +0 -35
  125. data/lib/contrast/api/communication/messaging_queue.rb +0 -128
  126. data/lib/contrast/api/communication/response_processor.rb +0 -90
  127. data/lib/contrast/api/communication/service_lifecycle.rb +0 -77
  128. data/lib/contrast/api/communication/socket.rb +0 -44
  129. data/lib/contrast/api/communication/socket_client.rb +0 -130
  130. data/lib/contrast/api/communication/speedracer.rb +0 -138
  131. data/lib/contrast/api/communication/tcp_socket.rb +0 -32
  132. data/lib/contrast/api/communication/unix_socket.rb +0 -28
  133. data/lib/contrast/api/communication.rb +0 -20
  134. data/lib/contrast/api/decorators/address.rb +0 -59
  135. data/lib/contrast/api/decorators/agent_startup.rb +0 -56
  136. data/lib/contrast/api/decorators/application_settings.rb +0 -43
  137. data/lib/contrast/api/decorators/application_startup.rb +0 -56
  138. data/lib/contrast/api/decorators/bot_blocker.rb +0 -37
  139. data/lib/contrast/api/decorators/http_request.rb +0 -137
  140. data/lib/contrast/api/decorators/input_analysis.rb +0 -18
  141. data/lib/contrast/api/decorators/instrumentation_mode.rb +0 -35
  142. data/lib/contrast/api/decorators/ip_denylist.rb +0 -37
  143. data/lib/contrast/api/decorators/message.rb +0 -67
  144. data/lib/contrast/api/decorators/rasp_rule_sample.rb +0 -52
  145. data/lib/contrast/api/decorators/response_type.rb +0 -17
  146. data/lib/contrast/api/decorators/server_features.rb +0 -25
  147. data/lib/contrast/api/decorators/user_input.rb +0 -51
  148. data/lib/contrast/api/decorators/virtual_patch.rb +0 -34
  149. data/lib/contrast/api/decorators.rb +0 -22
  150. data/lib/contrast/api/dtm.pb.rb +0 -363
  151. data/lib/contrast/api/settings.pb.rb +0 -500
  152. data/lib/contrast/api.rb +0 -16
  153. data/lib/contrast/components/contrast_service.rb +0 -88
  154. data/lib/contrast/components/service.rb +0 -55
  155. data/lib/contrast/tasks/service.rb +0 -84
  156. data/lib/contrast/utils/input_classification.rb +0 -73
  157. data/lib/protobuf/code_generator.rb +0 -129
  158. data/lib/protobuf/decoder.rb +0 -28
  159. data/lib/protobuf/deprecation.rb +0 -117
  160. data/lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb +0 -79
  161. data/lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb +0 -360
  162. data/lib/protobuf/descriptors.rb +0 -3
  163. data/lib/protobuf/encoder.rb +0 -11
  164. data/lib/protobuf/enum.rb +0 -365
  165. data/lib/protobuf/exceptions.rb +0 -9
  166. data/lib/protobuf/field/base_field.rb +0 -380
  167. data/lib/protobuf/field/base_field_object_definitions.rb +0 -504
  168. data/lib/protobuf/field/bool_field.rb +0 -64
  169. data/lib/protobuf/field/bytes_field.rb +0 -67
  170. data/lib/protobuf/field/double_field.rb +0 -25
  171. data/lib/protobuf/field/enum_field.rb +0 -56
  172. data/lib/protobuf/field/field_array.rb +0 -102
  173. data/lib/protobuf/field/field_hash.rb +0 -122
  174. data/lib/protobuf/field/fixed32_field.rb +0 -25
  175. data/lib/protobuf/field/fixed64_field.rb +0 -28
  176. data/lib/protobuf/field/float_field.rb +0 -43
  177. data/lib/protobuf/field/int32_field.rb +0 -21
  178. data/lib/protobuf/field/int64_field.rb +0 -34
  179. data/lib/protobuf/field/integer_field.rb +0 -23
  180. data/lib/protobuf/field/message_field.rb +0 -51
  181. data/lib/protobuf/field/sfixed32_field.rb +0 -27
  182. data/lib/protobuf/field/sfixed64_field.rb +0 -28
  183. data/lib/protobuf/field/signed_integer_field.rb +0 -29
  184. data/lib/protobuf/field/sint32_field.rb +0 -21
  185. data/lib/protobuf/field/sint64_field.rb +0 -21
  186. data/lib/protobuf/field/string_field.rb +0 -51
  187. data/lib/protobuf/field/uint32_field.rb +0 -21
  188. data/lib/protobuf/field/uint64_field.rb +0 -21
  189. data/lib/protobuf/field/varint_field.rb +0 -77
  190. data/lib/protobuf/field.rb +0 -74
  191. data/lib/protobuf/generators/base.rb +0 -85
  192. data/lib/protobuf/generators/enum_generator.rb +0 -39
  193. data/lib/protobuf/generators/extension_generator.rb +0 -27
  194. data/lib/protobuf/generators/field_generator.rb +0 -193
  195. data/lib/protobuf/generators/file_generator.rb +0 -262
  196. data/lib/protobuf/generators/group_generator.rb +0 -122
  197. data/lib/protobuf/generators/message_generator.rb +0 -104
  198. data/lib/protobuf/generators/option_generator.rb +0 -17
  199. data/lib/protobuf/generators/printable.rb +0 -160
  200. data/lib/protobuf/generators/service_generator.rb +0 -50
  201. data/lib/protobuf/lifecycle.rb +0 -33
  202. data/lib/protobuf/logging.rb +0 -39
  203. data/lib/protobuf/message/fields.rb +0 -233
  204. data/lib/protobuf/message/serialization.rb +0 -85
  205. data/lib/protobuf/message.rb +0 -241
  206. data/lib/protobuf/optionable.rb +0 -72
  207. data/lib/protobuf/tasks/compile.rake +0 -80
  208. data/lib/protobuf/tasks.rb +0 -1
  209. data/lib/protobuf/varint.rb +0 -20
  210. data/lib/protobuf/varint_pure.rb +0 -31
  211. data/lib/protobuf/version.rb +0 -3
  212. data/lib/protobuf/wire_type.rb +0 -10
  213. data/lib/protobuf.rb +0 -91
  214. data/proto/dynamic_discovery.proto +0 -46
  215. data/proto/google/protobuf/compiler/plugin.proto +0 -183
  216. data/proto/google/protobuf/descriptor.proto +0 -911
  217. data/proto/rpc.proto +0 -71
  218. data/service_executables/.gitkeep +0 -0
  219. data/service_executables/VERSION +0 -1
  220. data/service_executables/linux/contrast-service +0 -0
  221. data/service_executables/mac/contrast-service +0 -0
@@ -1,102 +0,0 @@
1
- module Protobuf
2
- module Field
3
- class FieldArray < Array
4
-
5
- ##
6
- # Attributes
7
- #
8
-
9
- attr_reader :field
10
-
11
- ##
12
- # Constructor
13
- #
14
-
15
- def initialize(field)
16
- @field = field
17
- end
18
-
19
- ##
20
- # Public Instance Methods
21
- #
22
-
23
- def []=(nth, val)
24
- super(nth, normalize(val)) unless val.nil?
25
- end
26
-
27
- def <<(val)
28
- super(normalize(val)) unless val.nil?
29
- end
30
-
31
- def push(val)
32
- super(normalize(val)) unless val.nil?
33
- end
34
-
35
- def replace(val)
36
- raise_type_error(val) unless val.is_a?(Array)
37
- val.map! { |v| normalize(v) }
38
- super(val)
39
- end
40
-
41
- # Return a hash-representation of the given values for this field type.
42
- # The value in this case would be an array.
43
- def to_hash_value
44
- map do |value|
45
- value.respond_to?(:to_hash_value) ? value.to_hash_value : value
46
- end
47
- end
48
-
49
- # Return a hash-representation of the given values for this field type
50
- # that is safe to convert to JSON.
51
- # The value in this case would be an array.
52
- def to_json_hash_value
53
- if field.respond_to?(:json_encode)
54
- map do |value|
55
- field.json_encode(value)
56
- end
57
- else
58
- map do |value|
59
- value.respond_to?(:to_json_hash_value) ? value.to_json_hash_value : value
60
- end
61
- end
62
- end
63
-
64
- def to_s
65
- "[#{field.name}]"
66
- end
67
-
68
- def unshift(val)
69
- super(normalize(val)) unless val.nil?
70
- end
71
-
72
- private
73
-
74
- ##
75
- # Private Instance Methods
76
- #
77
-
78
- def normalize(value)
79
- value = value.to_proto if value.respond_to?(:to_proto)
80
- fail TypeError, "Unacceptable value #{value} for field #{field.name} of type #{field.type_class}" unless field.acceptable?(value)
81
-
82
- if field.is_a?(::Protobuf::Field::EnumField)
83
- field.type_class.fetch(value)
84
- elsif field.is_a?(::Protobuf::Field::MessageField) && value.is_a?(field.type_class)
85
- value
86
- elsif field.is_a?(::Protobuf::Field::MessageField) && value.respond_to?(:to_hash)
87
- field.type_class.new(value.to_hash)
88
- else
89
- value
90
- end
91
- end
92
-
93
- def raise_type_error(val)
94
- fail TypeError, <<-TYPE_ERROR
95
- Expected repeated value of type '#{field.type_class}'
96
- Got '#{val.class}' for repeated protobuf field #{field.name}
97
- TYPE_ERROR
98
- end
99
-
100
- end
101
- end
102
- end
@@ -1,122 +0,0 @@
1
- module Protobuf
2
- module Field
3
- class FieldHash < Hash
4
-
5
- ##
6
- # Attributes
7
- #
8
-
9
- attr_reader :field, :key_field, :value_field
10
-
11
- ##
12
- # Constructor
13
- #
14
-
15
- def initialize(field)
16
- @field = field
17
- @key_field = field.type_class.get_field(:key)
18
- @value_field = field.type_class.get_field(:value)
19
- end
20
-
21
- ##
22
- # Public Instance Methods
23
- #
24
-
25
- def []=(key, val)
26
- super(normalize_key(key), normalize_val(val))
27
- end
28
-
29
- alias store []=
30
-
31
- def replace(val)
32
- raise_type_error(val) unless val.is_a?(Hash)
33
- clear
34
- update(val)
35
- end
36
-
37
- def merge!(other)
38
- raise_type_error(other) unless other.is_a?(Hash)
39
- # keys and values will be normalized by []= above
40
- other.each { |k, v| self[k] = v }
41
- end
42
-
43
- alias update merge!
44
-
45
- # Return a hash-representation of the given values for this field type.
46
- # The value in this case would be the hash itself, right? Unfortunately
47
- # not because the values of the map could be messages themselves that we
48
- # need to transform.
49
- def to_hash_value
50
- each_with_object({}) do |(key, value), hash|
51
- hash[key] = value.respond_to?(:to_hash_value) ? value.to_hash_value : value
52
- end
53
- end
54
-
55
- # Return a hash-representation of the given values for this field type
56
- # that is safe to convert to JSON.
57
- #
58
- # The value in this case would be the hash itself, right? Unfortunately
59
- # not because the values of the map could be messages themselves that we
60
- # need to transform.
61
- def to_json_hash_value
62
- if field.respond_to?(:json_encode)
63
- each_with_object({}) do |(key, value), hash|
64
- hash[key] = field.json_encode(value)
65
- end
66
- else
67
- each_with_object({}) do |(key, value), hash|
68
- hash[key] = value.respond_to?(:to_json_hash_value) ? value.to_json_hash_value : value
69
- end
70
- end
71
- end
72
-
73
- def to_s
74
- "{#{field.name}}"
75
- end
76
-
77
- private
78
-
79
- ##
80
- # Private Instance Methods
81
- #
82
-
83
- def normalize_key(key)
84
- normalize(:key, key, key_field)
85
- end
86
-
87
- def normalize_val(value)
88
- normalize(:value, value, value_field)
89
- end
90
-
91
- def normalize(what, value, normalize_field)
92
- raise_type_error(value) if value.nil?
93
- value = value.to_proto if value.respond_to?(:to_proto)
94
- fail TypeError, "Unacceptable #{what} #{value} for field #{field.name} of type #{normalize_field.type_class}" unless normalize_field.acceptable?(value)
95
-
96
- if normalize_field.is_a?(::Protobuf::Field::EnumField)
97
- fetch_enum(normalize_field.type_class, value)
98
- elsif normalize_field.is_a?(::Protobuf::Field::MessageField) && value.is_a?(normalize_field.type_class)
99
- value
100
- elsif normalize_field.is_a?(::Protobuf::Field::MessageField) && value.respond_to?(:to_hash)
101
- normalize_field.type_class.new(value.to_hash)
102
- else
103
- value
104
- end
105
- end
106
-
107
- def fetch_enum(type, val)
108
- en = type.fetch(val)
109
- raise_type_error(val) if en.nil?
110
- en
111
- end
112
-
113
- def raise_type_error(val)
114
- fail TypeError, <<-TYPE_ERROR
115
- Expected map value of type '#{key_field.type_class} -> #{value_field.type_class}'
116
- Got '#{val.class}' for map protobuf field #{field.name}
117
- TYPE_ERROR
118
- end
119
-
120
- end
121
- end
122
- end
@@ -1,25 +0,0 @@
1
- require 'protobuf/field/uint32_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Fixed32Field < Uint32Field
6
-
7
- ##
8
- # Public Instance Methods
9
- #
10
-
11
- def decode(bytes)
12
- bytes.unpack('V').first
13
- end
14
-
15
- def encode(value)
16
- [value].pack('V')
17
- end
18
-
19
- def wire_type
20
- ::Protobuf::WireType::FIXED32
21
- end
22
-
23
- end
24
- end
25
- end
@@ -1,28 +0,0 @@
1
- require 'protobuf/field/uint64_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Fixed64Field < Uint64Field
6
-
7
- ##
8
- # Public Instance Methods
9
- #
10
-
11
- def decode(bytes)
12
- # we don't use 'Q' for pack/unpack. 'Q' is machine-dependent.
13
- values = bytes.unpack('VV')
14
- values[0] + (values[1] << 32)
15
- end
16
-
17
- def encode(value)
18
- # we don't use 'Q' for pack/unpack. 'Q' is machine-dependent.
19
- [value & 0xffff_ffff, value >> 32].pack('VV')
20
- end
21
-
22
- def wire_type
23
- ::Protobuf::WireType::FIXED64
24
- end
25
-
26
- end
27
- end
28
- end
@@ -1,43 +0,0 @@
1
- require 'protobuf/field/base_field'
2
-
3
- module Protobuf
4
- module Field
5
- class FloatField < BaseField
6
-
7
- ##
8
- # Class Methods
9
- #
10
-
11
- def self.default
12
- 0.0
13
- end
14
-
15
- ##
16
- # Public Instance Methods
17
- #
18
-
19
- def acceptable?(val)
20
- val.respond_to?(:to_f)
21
- end
22
-
23
- def coerce!(val)
24
- Float(val)
25
- rescue ArgumentError
26
- fail TypeError, "Expected value of type '#{type_class}' for field #{name}, but got '#{val.class}'"
27
- end
28
-
29
- def decode(bytes)
30
- bytes.unpack('e').first
31
- end
32
-
33
- def encode(value)
34
- [value].pack('e')
35
- end
36
-
37
- def wire_type
38
- WireType::FIXED32
39
- end
40
-
41
- end
42
- end
43
- end
@@ -1,21 +0,0 @@
1
- require 'protobuf/field/integer_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Int32Field < IntegerField
6
-
7
- ##
8
- # Class Methods
9
- #
10
-
11
- def self.max
12
- INT32_MAX
13
- end
14
-
15
- def self.min
16
- INT32_MIN
17
- end
18
-
19
- end
20
- end
21
- end
@@ -1,34 +0,0 @@
1
- require 'protobuf/field/integer_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Int64Field < IntegerField
6
-
7
- ##
8
- # Class Methods
9
- #
10
-
11
- def self.max
12
- INT64_MAX
13
- end
14
-
15
- def self.min
16
- INT64_MIN
17
- end
18
-
19
- ##
20
- # Instance Methods
21
- #
22
- def acceptable?(val)
23
- if val.is_a?(Integer) || val.is_a?(Numeric)
24
- val >= INT64_MIN && val <= INT64_MAX
25
- else
26
- Integer(val, 10) >= INT64_MIN && Integer(val, 10) <= INT64_MAX
27
- end
28
- rescue
29
- return false
30
- end
31
-
32
- end
33
- end
34
- end
@@ -1,23 +0,0 @@
1
- require 'protobuf/field/varint_field'
2
-
3
- module Protobuf
4
- module Field
5
- class IntegerField < VarintField
6
-
7
- ##
8
- # Public Instance Methods
9
- #
10
-
11
- def decode(value)
12
- value -= 0x1_0000_0000_0000_0000 if (value & 0x8000_0000_0000_0000).nonzero?
13
- value
14
- end
15
-
16
- def encode(value)
17
- # original CSGoogle's library uses 64bits integer for negative value
18
- ::Protobuf::Field::VarintField.encode(value & 0xffff_ffff_ffff_ffff)
19
- end
20
-
21
- end
22
- end
23
- end
@@ -1,51 +0,0 @@
1
- require 'protobuf/field/base_field'
2
-
3
- module Protobuf
4
- module Field
5
- class MessageField < BaseField
6
-
7
- ##
8
- # Public Instance Methods
9
- #
10
-
11
- def acceptable?(val)
12
- val.is_a?(type_class) || val.respond_to?(:to_hash) || val.respond_to?(:to_proto)
13
- end
14
-
15
- def decode(bytes)
16
- type_class.decode(bytes)
17
- end
18
-
19
- def encode(value)
20
- bytes = value.encode
21
- result = ::Protobuf::Field::VarintField.encode(bytes.bytesize)
22
- result << bytes
23
- end
24
-
25
- def message?
26
- true
27
- end
28
-
29
- def wire_type
30
- ::Protobuf::WireType::LENGTH_DELIMITED
31
- end
32
-
33
- def coerce!(value)
34
- return nil if value.nil?
35
-
36
- coerced_value = if value.respond_to?(:to_proto)
37
- value.to_proto
38
- elsif value.respond_to?(:to_hash)
39
- type_class.new(value.to_hash)
40
- else
41
- value
42
- end
43
-
44
- return coerced_value if coerced_value.is_a?(type_class)
45
-
46
- fail TypeError, "Expected value of type '#{type_class}' for field #{name}, but got '#{value.class}'"
47
- end
48
-
49
- end
50
- end
51
- end
@@ -1,27 +0,0 @@
1
- require 'protobuf/field/int32_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Sfixed32Field < Int32Field
6
-
7
- ##
8
- # Public Instance Methods
9
- #
10
-
11
- def decode(bytes)
12
- value = bytes.unpack('V').first
13
- value -= 0x1_0000_0000 if (value & 0x8000_0000).nonzero?
14
- value
15
- end
16
-
17
- def encode(value)
18
- [value].pack('V')
19
- end
20
-
21
- def wire_type
22
- ::Protobuf::WireType::FIXED32
23
- end
24
-
25
- end
26
- end
27
- end
@@ -1,28 +0,0 @@
1
- require 'protobuf/field/int64_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Sfixed64Field < Int64Field
6
-
7
- ##
8
- # Public Instance Methods
9
- #
10
-
11
- def decode(bytes)
12
- values = bytes.unpack('VV') # 'Q' is machine-dependent, don't use
13
- value = values[0] + (values[1] << 32)
14
- value -= 0x1_0000_0000_0000_0000 if (value & 0x8000_0000_0000_0000).nonzero?
15
- value
16
- end
17
-
18
- def encode(value)
19
- [value & 0xffff_ffff, value >> 32].pack('VV') # 'Q' is machine-dependent, don't use
20
- end
21
-
22
- def wire_type
23
- ::Protobuf::WireType::FIXED64
24
- end
25
-
26
- end
27
- end
28
- end
@@ -1,29 +0,0 @@
1
- require 'protobuf/field/varint_field'
2
-
3
- module Protobuf
4
- module Field
5
- class SignedIntegerField < VarintField
6
-
7
- ##
8
- # Public Instance Methods
9
- #
10
-
11
- def decode(value)
12
- if (value & 1).zero?
13
- value >> 1 # positive value
14
- else
15
- ~value >> 1 # negative value
16
- end
17
- end
18
-
19
- def encode(value)
20
- if value >= 0
21
- VarintField.encode(value << 1)
22
- else
23
- VarintField.encode(~(value << 1))
24
- end
25
- end
26
-
27
- end
28
- end
29
- end
@@ -1,21 +0,0 @@
1
- require 'protobuf/field/signed_integer_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Sint32Field < SignedIntegerField
6
-
7
- ##
8
- # Class Methods
9
- #
10
-
11
- def self.max
12
- INT32_MAX
13
- end
14
-
15
- def self.min
16
- INT32_MIN
17
- end
18
-
19
- end
20
- end
21
- end
@@ -1,21 +0,0 @@
1
- require 'protobuf/field/signed_integer_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Sint64Field < SignedIntegerField
6
-
7
- ##
8
- # Class Methods
9
- #
10
-
11
- def self.max
12
- INT64_MAX
13
- end
14
-
15
- def self.min
16
- INT64_MIN
17
- end
18
-
19
- end
20
- end
21
- end
@@ -1,51 +0,0 @@
1
- require 'protobuf/field/bytes_field'
2
-
3
- module Protobuf
4
- module Field
5
- class StringField < BytesField
6
-
7
- ##
8
- # Constants
9
- #
10
-
11
- ENCODING = Encoding::UTF_8
12
-
13
- ##
14
- # Public Instance Methods
15
- #
16
-
17
- def acceptable?(val)
18
- val.is_a?(String) || val.nil? || val.is_a?(Symbol)
19
- end
20
-
21
- def coerce!(value)
22
- if value.nil?
23
- nil
24
- elsif acceptable?(value)
25
- value.to_s
26
- else
27
- fail TypeError, "Unacceptable value #{value} for field #{name} of type #{type_class}"
28
- end
29
- end
30
-
31
- def decode(bytes)
32
- bytes.force_encoding(::Protobuf::Field::StringField::ENCODING)
33
- bytes
34
- end
35
-
36
- def encode(value)
37
- value_to_encode = "" + value # dup is slower
38
- unless value_to_encode.encoding == ENCODING
39
- value_to_encode.encode!(::Protobuf::Field::StringField::ENCODING, :invalid => :replace, :undef => :replace, :replace => "")
40
- end
41
- value_to_encode.force_encoding(::Protobuf::Field::BytesField::BYTES_ENCODING)
42
-
43
- "#{::Protobuf::Field::VarintField.encode(value_to_encode.bytesize)}#{value_to_encode}"
44
- end
45
-
46
- def json_encode(value)
47
- value
48
- end
49
- end
50
- end
51
- end
@@ -1,21 +0,0 @@
1
- require 'protobuf/field/varint_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Uint32Field < VarintField
6
-
7
- ##
8
- # Class Methods
9
- #
10
-
11
- def self.max
12
- UINT32_MAX
13
- end
14
-
15
- def self.min
16
- 0
17
- end
18
-
19
- end
20
- end
21
- end
@@ -1,21 +0,0 @@
1
- require 'protobuf/field/varint_field'
2
-
3
- module Protobuf
4
- module Field
5
- class Uint64Field < VarintField
6
-
7
- ##
8
- # Class Methods
9
- #
10
-
11
- def self.max
12
- UINT64_MAX
13
- end
14
-
15
- def self.min
16
- 0
17
- end
18
-
19
- end
20
- end
21
- end