contrast-agent 6.1.2 → 6.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -3
- data/.simplecov +1 -0
- data/Rakefile +0 -27
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +7 -5
- data/ext/cs__assess_kernel/cs__assess_kernel.c +14 -3
- data/ext/cs__assess_kernel/cs__assess_kernel.h +2 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +10 -3
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.h +2 -1
- data/ext/cs__assess_regexp/cs__assess_regexp.c +9 -7
- data/ext/{cs__assess_string_interpolation26/cs__assess_string_interpolation26.c → cs__assess_string_interpolation/cs__assess_string_interpolation.c} +14 -3
- data/ext/{cs__assess_string_interpolation26/cs__assess_string_interpolation26.h → cs__assess_string_interpolation/cs__assess_string_interpolation.h} +1 -1
- data/ext/{cs__assess_string_interpolation26 → cs__assess_string_interpolation}/extconf.rb +0 -0
- data/ext/cs__common/cs__common.c +5 -4
- data/ext/cs__contrast_patch/cs__contrast_patch.c +3 -10
- data/lib/contrast/agent/assess/events/source_event.rb +16 -12
- data/lib/contrast/agent/assess/policy/policy_node.rb +6 -0
- data/lib/contrast/agent/assess/policy/propagation_method.rb +3 -41
- data/lib/contrast/agent/assess/policy/propagation_node.rb +8 -0
- data/lib/contrast/agent/assess/policy/propagator/base.rb +2 -0
- data/lib/contrast/agent/assess/policy/source_method.rb +2 -47
- data/lib/contrast/agent/assess/policy/source_node.rb +1 -0
- data/lib/contrast/agent/assess/policy/trigger_method.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_node.rb +8 -0
- data/lib/contrast/agent/assess/property/evented.rb +4 -18
- data/lib/contrast/agent/assess/tag.rb +19 -0
- data/lib/contrast/agent/at_exit_hook.rb +9 -8
- data/lib/contrast/agent/inventory/database_config.rb +6 -3
- data/lib/contrast/agent/inventory/dependency_analysis.rb +3 -2
- data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +13 -9
- data/lib/contrast/agent/middleware.rb +4 -0
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +27 -2
- data/lib/contrast/agent/patching/policy/policy.rb +5 -0
- data/lib/contrast/agent/patching/policy/policy_node.rb +6 -0
- data/lib/contrast/agent/patching/policy/trigger_node.rb +3 -0
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +3 -4
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +1 -0
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +2 -2
- data/lib/contrast/agent/protect/rule/base.rb +1 -0
- data/lib/contrast/agent/protect/rule/no_sqli.rb +2 -0
- data/lib/contrast/agent/protect/rule/xss.rb +4 -0
- data/lib/contrast/agent/reporting/reporter.rb +33 -17
- data/lib/contrast/agent/reporting/reporter_heartbeat.rb +21 -15
- data/lib/contrast/agent/reporting/reporting_events/application_inventory.rb +3 -18
- data/lib/contrast/agent/reporting/reporting_events/application_update.rb +5 -24
- data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +8 -1
- data/lib/contrast/agent/reporting/reporting_events/discovered_route.rb +83 -16
- data/lib/contrast/agent/reporting/reporting_events/finding.rb +9 -3
- data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +10 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_object.rb +11 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_parent_object.rb +11 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_property.rb +12 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_signature.rb +10 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_source.rb +11 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_stack.rb +11 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_taint_range.rb +11 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +11 -1
- data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +29 -32
- data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +18 -20
- data/lib/contrast/agent/reporting/reporting_events/observed_library_usage.rb +11 -24
- data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +13 -6
- data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +10 -4
- data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +10 -4
- data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +9 -0
- data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +10 -1
- data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +11 -4
- data/lib/contrast/agent/reporting/reporting_events/server_activity.rb +0 -8
- data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +2 -6
- data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +0 -32
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +1 -4
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +1 -11
- data/lib/contrast/agent/reporting/reporting_utilities/response.rb +60 -2
- data/lib/contrast/agent/reporting/reporting_utilities/response_extractor.rb +32 -10
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +58 -26
- data/lib/contrast/agent/reporting/settings/application_settings.rb +8 -23
- data/lib/contrast/agent/reporting/settings/assess_server_feature.rb +27 -33
- data/lib/contrast/agent/reporting/settings/bot_blocker.rb +68 -0
- data/lib/contrast/agent/reporting/settings/code_exclusion.rb +27 -0
- data/lib/contrast/agent/reporting/settings/exclusion_base.rb +33 -0
- data/lib/contrast/agent/reporting/settings/exclusions.rb +39 -57
- data/lib/contrast/agent/reporting/settings/helpers.rb +56 -0
- data/lib/contrast/agent/reporting/settings/input_exclusion.rb +37 -0
- data/lib/contrast/agent/reporting/settings/ip_filter.rb +35 -0
- data/lib/contrast/agent/reporting/settings/keyword.rb +74 -0
- data/lib/contrast/agent/reporting/settings/log_enhancer.rb +65 -0
- data/lib/contrast/agent/reporting/settings/protect.rb +4 -2
- data/lib/contrast/agent/reporting/settings/protect_server_feature.rb +62 -115
- data/lib/contrast/agent/reporting/settings/reaction.rb +11 -2
- data/lib/contrast/agent/reporting/settings/rule_definition.rb +63 -0
- data/lib/contrast/agent/reporting/settings/sampling.rb +10 -0
- data/lib/contrast/agent/reporting/settings/sanitizer.rb +38 -0
- data/lib/contrast/agent/reporting/settings/sensitive_data_masking.rb +9 -1
- data/lib/contrast/agent/reporting/settings/sensitive_data_masking_rule.rb +7 -0
- data/lib/contrast/agent/reporting/settings/server_features.rb +8 -0
- data/lib/contrast/agent/reporting/settings/syslog.rb +176 -0
- data/lib/contrast/agent/reporting/settings/url_exclusion.rb +42 -0
- data/lib/contrast/agent/reporting/settings/validator.rb +17 -0
- data/lib/contrast/agent/request.rb +5 -7
- data/lib/contrast/agent/request_context.rb +8 -13
- data/lib/contrast/agent/request_context_extend.rb +8 -9
- data/lib/contrast/agent/request_handler.rb +10 -35
- data/lib/contrast/agent/rule_set.rb +4 -0
- data/lib/contrast/agent/service_heartbeat.rb +1 -1
- data/lib/contrast/agent/static_analysis.rb +6 -15
- data/lib/contrast/agent/telemetry/base.rb +35 -35
- data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_base.rb +2 -0
- data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_event.rb +2 -0
- data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_message.rb +5 -2
- data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_message_exception.rb +3 -0
- data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exception_stack_frame.rb +3 -0
- data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exceptions.rb +0 -1
- data/lib/contrast/agent/thread_watcher.rb +2 -6
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent.rb +1 -3
- data/lib/contrast/api/communication/socket.rb +1 -0
- data/lib/contrast/api/decorators/message.rb +0 -6
- data/lib/contrast/api/decorators.rb +0 -3
- data/lib/contrast/api/dtm.pb.rb +1 -1
- data/lib/contrast/api/settings.pb.rb +1 -1
- data/lib/contrast/components/assess.rb +0 -6
- data/lib/contrast/components/config.rb +18 -2
- data/lib/contrast/config/base_configuration.rb +0 -13
- data/lib/contrast/config/root_configuration.rb +1 -0
- data/lib/contrast/config/ruby_configuration.rb +2 -9
- data/lib/contrast/configuration.rb +0 -2
- data/lib/contrast/extension/assess/eval_trigger.rb +0 -4
- data/lib/contrast/extension/assess/hash.rb +3 -2
- data/lib/contrast/extension/assess/kernel.rb +22 -0
- data/lib/contrast/extension/assess/marshal.rb +16 -0
- data/lib/contrast/extension/assess/string.rb +21 -20
- data/lib/contrast/framework/base_support.rb +13 -4
- data/lib/contrast/framework/grape/support.rb +6 -6
- data/lib/contrast/framework/manager.rb +7 -23
- data/lib/contrast/framework/manager_extend.rb +1 -1
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +11 -15
- data/lib/contrast/framework/rails/support.rb +9 -2
- data/lib/contrast/framework/sinatra/support.rb +3 -2
- data/lib/contrast/logger/aliased_logging.rb +33 -26
- data/lib/contrast/utils/assess/source_method_utils.rb +0 -9
- data/lib/contrast/utils/lru_cache.rb +3 -0
- data/lib/contrast/utils/middleware_utils.rb +2 -0
- data/lib/contrast/utils/patching/policy/patch_utils.rb +5 -22
- data/lib/contrast/utils/response_utils.rb +14 -1
- data/lib/contrast/utils/telemetry.rb +9 -0
- data/lib/contrast/utils/telemetry_client.rb +7 -7
- data/lib/contrast/utils/telemetry_hash.rb +36 -12
- data/lib/contrast/utils/telemetry_identifier.rb +8 -0
- data/lib/contrast/utils/thread_tracker.rb +26 -9
- data/lib/contrast/utils/timer.rb +6 -1
- data/lib/contrast.rb +35 -3
- data/lib/protobuf/code_generator.rb +129 -0
- data/lib/protobuf/decoder.rb +28 -0
- data/lib/protobuf/deprecation.rb +117 -0
- data/lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb +79 -0
- data/lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb +360 -0
- data/lib/protobuf/descriptors.rb +3 -0
- data/lib/protobuf/encoder.rb +11 -0
- data/lib/protobuf/enum.rb +365 -0
- data/lib/protobuf/exceptions.rb +9 -0
- data/lib/protobuf/field/base_field.rb +380 -0
- data/lib/protobuf/field/base_field_object_definitions.rb +504 -0
- data/lib/protobuf/field/bool_field.rb +64 -0
- data/lib/protobuf/field/bytes_field.rb +67 -0
- data/lib/protobuf/field/double_field.rb +25 -0
- data/lib/protobuf/field/enum_field.rb +56 -0
- data/lib/protobuf/field/field_array.rb +102 -0
- data/lib/protobuf/field/field_hash.rb +122 -0
- data/lib/protobuf/field/fixed32_field.rb +25 -0
- data/lib/protobuf/field/fixed64_field.rb +28 -0
- data/lib/protobuf/field/float_field.rb +43 -0
- data/lib/protobuf/field/int32_field.rb +21 -0
- data/lib/protobuf/field/int64_field.rb +34 -0
- data/lib/protobuf/field/integer_field.rb +23 -0
- data/lib/protobuf/field/message_field.rb +51 -0
- data/lib/protobuf/field/sfixed32_field.rb +27 -0
- data/lib/protobuf/field/sfixed64_field.rb +28 -0
- data/lib/protobuf/field/signed_integer_field.rb +29 -0
- data/lib/protobuf/field/sint32_field.rb +21 -0
- data/lib/protobuf/field/sint64_field.rb +21 -0
- data/lib/protobuf/field/string_field.rb +51 -0
- data/lib/protobuf/field/uint32_field.rb +21 -0
- data/lib/protobuf/field/uint64_field.rb +21 -0
- data/lib/protobuf/field/varint_field.rb +77 -0
- data/lib/protobuf/field.rb +74 -0
- data/lib/protobuf/generators/base.rb +85 -0
- data/lib/protobuf/generators/enum_generator.rb +39 -0
- data/lib/protobuf/generators/extension_generator.rb +27 -0
- data/lib/protobuf/generators/field_generator.rb +193 -0
- data/lib/protobuf/generators/file_generator.rb +262 -0
- data/lib/protobuf/generators/group_generator.rb +122 -0
- data/lib/protobuf/generators/message_generator.rb +104 -0
- data/lib/protobuf/generators/option_generator.rb +17 -0
- data/lib/protobuf/generators/printable.rb +160 -0
- data/lib/protobuf/generators/service_generator.rb +50 -0
- data/lib/protobuf/lifecycle.rb +33 -0
- data/lib/protobuf/logging.rb +39 -0
- data/lib/protobuf/message/fields.rb +233 -0
- data/lib/protobuf/message/serialization.rb +85 -0
- data/lib/protobuf/message.rb +241 -0
- data/lib/protobuf/optionable.rb +72 -0
- data/lib/protobuf/tasks/compile.rake +80 -0
- data/lib/protobuf/tasks.rb +1 -0
- data/lib/protobuf/varint.rb +20 -0
- data/lib/protobuf/varint_pure.rb +31 -0
- data/lib/protobuf/version.rb +3 -0
- data/lib/protobuf/wire_type.rb +10 -0
- data/lib/protobuf.rb +91 -0
- data/proto/dynamic_discovery.proto +46 -0
- data/proto/google/protobuf/compiler/plugin.proto +183 -0
- data/proto/google/protobuf/descriptor.proto +911 -0
- data/proto/rpc.proto +71 -0
- data/resources/assess/policy.json +2 -11
- data/ruby-agent.gemspec +2 -2
- metadata +105 -30
- data/lib/contrast/agent/telemetry/events/exceptions/telemetry_exceptions_report.rb +0 -30
- data/lib/contrast/api/decorators/application_update.rb +0 -52
- data/lib/contrast/api/decorators/library.rb +0 -56
- data/lib/contrast/api/decorators/library_usage_update.rb +0 -31
- data/lib/contrast/framework/platform_version.rb +0 -22
@@ -0,0 +1,365 @@
|
|
1
|
+
require 'delegate'
|
2
|
+
|
3
|
+
##
|
4
|
+
# Adding extension to Numeric until
|
5
|
+
# we can get people to stop calling #value
|
6
|
+
# on Enum instances.
|
7
|
+
#
|
8
|
+
::Protobuf.deprecator.define_deprecated_methods(Numeric, :value => :to_int)
|
9
|
+
|
10
|
+
module Protobuf
|
11
|
+
class Enum < SimpleDelegator
|
12
|
+
# Public: Allows setting Options on the Enum class.
|
13
|
+
::Protobuf::Optionable.inject(self) { ::CSGoogle::Protobuf::EnumOptions }
|
14
|
+
|
15
|
+
def self.aliases_allowed?
|
16
|
+
get_option(:allow_alias)
|
17
|
+
end
|
18
|
+
|
19
|
+
# Public: Get all integer tags defined by this enum.
|
20
|
+
#
|
21
|
+
# Examples
|
22
|
+
#
|
23
|
+
# class StateMachine < ::Protobuf::Enum
|
24
|
+
# set_option :allow_alias
|
25
|
+
# define :ON, 1
|
26
|
+
# define :STARTED, 1
|
27
|
+
# define :OFF, 2
|
28
|
+
# end
|
29
|
+
#
|
30
|
+
# StateMachine.all_tags #=> [ 1, 2 ]
|
31
|
+
#
|
32
|
+
# Returns an array of unique integers.
|
33
|
+
#
|
34
|
+
def self.all_tags
|
35
|
+
@all_tags ||= enums.map(&:to_i).uniq
|
36
|
+
end
|
37
|
+
|
38
|
+
# Internal: DSL method to create a new Enum. The given name will
|
39
|
+
# become a constant for this Enum pointing to the new instance.
|
40
|
+
#
|
41
|
+
# Examples
|
42
|
+
#
|
43
|
+
# class StateMachine < ::Protobuf::Enum
|
44
|
+
# define :ON, 1
|
45
|
+
# define :OFF, 2
|
46
|
+
# end
|
47
|
+
#
|
48
|
+
# StateMachine::ON #=> #<StateMachine::ON=1>
|
49
|
+
# StateMachine::OFF #=> #<StateMachine::OFF=2>
|
50
|
+
#
|
51
|
+
# Returns nothing.
|
52
|
+
#
|
53
|
+
def self.define(name, tag)
|
54
|
+
enum = new(self, name, tag)
|
55
|
+
@enums ||= []
|
56
|
+
@enums << enum
|
57
|
+
# defining a new field for the enum will cause cached @values and @mapped_enums
|
58
|
+
# to be incorrect; reset them
|
59
|
+
@mapped_enums = @values = nil
|
60
|
+
const_set(name, enum)
|
61
|
+
mapped_enums
|
62
|
+
end
|
63
|
+
|
64
|
+
# Internal: A mapping of enum number -> enums defined
|
65
|
+
# used for speeding up our internal enum methods.
|
66
|
+
def self.mapped_enums
|
67
|
+
@mapped_enums ||= enums.each_with_object({}) do |enum, hash|
|
68
|
+
list = hash[enum.to_i] ||= []
|
69
|
+
list << enum
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
# Public: All defined enums.
|
74
|
+
#
|
75
|
+
class << self
|
76
|
+
attr_reader :enums
|
77
|
+
end
|
78
|
+
|
79
|
+
# Public: Get an array of Enum objects with the given tag.
|
80
|
+
#
|
81
|
+
# tag - An object that responds to to_i.
|
82
|
+
#
|
83
|
+
# Examples
|
84
|
+
#
|
85
|
+
# class StateMachine < ::Protobuf::Enum
|
86
|
+
# set_option :allow_alias
|
87
|
+
# define :ON, 1
|
88
|
+
# define :STARTED, 1
|
89
|
+
# define :OFF, 2
|
90
|
+
# end
|
91
|
+
#
|
92
|
+
# StateMachine.enums_for_tag(1) #=> [ #<StateMachine::ON=1>, #<StateMachine::STARTED=1> ]
|
93
|
+
# StateMachine.enums_for_tag(2) #=> [ #<StateMachine::OFF=2> ]
|
94
|
+
#
|
95
|
+
# Returns an array with zero or more Enum objects or nil.
|
96
|
+
#
|
97
|
+
def self.enums_for_tag(tag)
|
98
|
+
tag && mapped_enums[tag.to_i] || []
|
99
|
+
end
|
100
|
+
|
101
|
+
# Public: Get the Enum associated with the given name.
|
102
|
+
#
|
103
|
+
# name - A string-like object. Case-sensitive.
|
104
|
+
#
|
105
|
+
# Example
|
106
|
+
#
|
107
|
+
# class StateMachine < ::Protobuf::Enum
|
108
|
+
# define :ON, 1
|
109
|
+
# define :OFF, 2
|
110
|
+
# end
|
111
|
+
#
|
112
|
+
# StateMachine.enum_for_name(:ON) # => #<StateMachine::ON=1>
|
113
|
+
# StateMachine.enum_for_name("ON") # => #<StateMachine::ON=1>
|
114
|
+
# StateMachine.enum_for_name(:on) # => nil
|
115
|
+
# StateMachine.enum_for_name(:FOO) # => nil
|
116
|
+
#
|
117
|
+
# Returns the Enum object with the given name or nil.
|
118
|
+
#
|
119
|
+
def self.enum_for_name(name)
|
120
|
+
const_get(name)
|
121
|
+
rescue ::NameError
|
122
|
+
nil
|
123
|
+
end
|
124
|
+
|
125
|
+
# Public: Get the Enum object corresponding to the given tag.
|
126
|
+
#
|
127
|
+
# tag - An object that responds to to_i.
|
128
|
+
#
|
129
|
+
# Returns an Enum object or nil. If the tag corresponds to multiple
|
130
|
+
# Enums, the first enum defined will be returned.
|
131
|
+
#
|
132
|
+
def self.enum_for_tag(tag)
|
133
|
+
tag && (mapped_enums[tag.to_i] || []).first
|
134
|
+
end
|
135
|
+
|
136
|
+
def self.enum_for_tag_integer(tag)
|
137
|
+
(@mapped_enums[tag] || []).first
|
138
|
+
end
|
139
|
+
|
140
|
+
# Public: Get an Enum by a variety of type-checking mechanisms.
|
141
|
+
#
|
142
|
+
# candidate - An Enum, Numeric, String, or Symbol object.
|
143
|
+
#
|
144
|
+
# Example
|
145
|
+
#
|
146
|
+
# class StateMachine < ::Protobuf::Enum
|
147
|
+
# set_option :allow_alias
|
148
|
+
# define :ON, 1
|
149
|
+
# define :STARTED, 1
|
150
|
+
# define :OFF, 2
|
151
|
+
# end
|
152
|
+
#
|
153
|
+
# StateMachine.fetch(StateMachine::ON) # => #<StateMachine::ON=1>
|
154
|
+
# StateMachine.fetch(:ON) # => #<StateMachine::ON=1>
|
155
|
+
# StateMachine.fetch("STARTED") # => #<StateMachine::STARTED=1>
|
156
|
+
# StateMachine.fetch(1) # => [ #<StateMachine::ON=1>, #<StateMachine::STARTED=1> ]
|
157
|
+
#
|
158
|
+
# Returns an Enum object or nil.
|
159
|
+
#
|
160
|
+
def self.fetch(candidate)
|
161
|
+
return enum_for_tag_integer(candidate) if candidate.is_a?(::Integer)
|
162
|
+
|
163
|
+
case candidate
|
164
|
+
when self
|
165
|
+
candidate
|
166
|
+
when ::Numeric
|
167
|
+
enum_for_tag(candidate.to_i)
|
168
|
+
when ::String, ::Symbol
|
169
|
+
enum_for_name(candidate)
|
170
|
+
else
|
171
|
+
nil
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
# Public: Get the Symbol name associated with the given number.
|
176
|
+
#
|
177
|
+
# number - An object that responds to to_i.
|
178
|
+
#
|
179
|
+
# Examples
|
180
|
+
#
|
181
|
+
# # Without aliases
|
182
|
+
# class StateMachine < ::Protobuf::Enum
|
183
|
+
# define :ON, 1
|
184
|
+
# define :OFF, 2
|
185
|
+
# end
|
186
|
+
#
|
187
|
+
# StateMachine.name_for_tag(1) # => :ON
|
188
|
+
# StateMachine.name_for_tag(2) # => :OFF
|
189
|
+
# StateMachine.name_for_tag(3) # => nil
|
190
|
+
#
|
191
|
+
# # With aliases
|
192
|
+
# class StateMachine < ::Protobuf::Enum
|
193
|
+
# set_option :allow_alias
|
194
|
+
# define :STARTED, 1
|
195
|
+
# define :ON, 1
|
196
|
+
# define :OFF, 2
|
197
|
+
# end
|
198
|
+
#
|
199
|
+
# StateMachine.name_for_tag(1) # => :STARTED
|
200
|
+
# StateMachine.name_for_tag(2) # => :OFF
|
201
|
+
#
|
202
|
+
# Returns the symbol name of the enum constant given it's associated tag or nil.
|
203
|
+
# If the given tag has multiple names associated (due to allow_alias)
|
204
|
+
# the first defined name will be returned.
|
205
|
+
#
|
206
|
+
def self.name_for_tag(tag)
|
207
|
+
enum_for_tag(tag).try(:name)
|
208
|
+
end
|
209
|
+
|
210
|
+
# Public: Check if the given tag is defined by this Enum.
|
211
|
+
#
|
212
|
+
# number - An object that responds to to_i.
|
213
|
+
#
|
214
|
+
# Returns a boolean.
|
215
|
+
#
|
216
|
+
def self.valid_tag?(tag)
|
217
|
+
tag.respond_to?(:to_i) && mapped_enums.key?(tag.to_i)
|
218
|
+
end
|
219
|
+
|
220
|
+
# Public: [DEPRECATED] Return a hash of Enum objects keyed
|
221
|
+
# by their :name.
|
222
|
+
#
|
223
|
+
def self.values
|
224
|
+
@values ||= enums.each_with_object({}) do |enum, hash|
|
225
|
+
hash[enum.name] = enum
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
229
|
+
##
|
230
|
+
# Class Deprecations
|
231
|
+
#
|
232
|
+
class << self
|
233
|
+
::Protobuf.deprecator.define_deprecated_methods(
|
234
|
+
self,
|
235
|
+
:enum_by_value => :enum_for_tag,
|
236
|
+
:name_by_value => :name_for_tag,
|
237
|
+
:get_name_by_tag => :name_for_tag,
|
238
|
+
:value_by_name => :enum_for_name,
|
239
|
+
)
|
240
|
+
|
241
|
+
::Protobuf.deprecator.deprecate_methods(self, :values => :enums)
|
242
|
+
end
|
243
|
+
|
244
|
+
##
|
245
|
+
# Attributes
|
246
|
+
#
|
247
|
+
|
248
|
+
private
|
249
|
+
|
250
|
+
attr_writer :parent_class, :name, :tag
|
251
|
+
|
252
|
+
public
|
253
|
+
|
254
|
+
attr_reader :parent_class, :name, :tag
|
255
|
+
|
256
|
+
##
|
257
|
+
# Instance Methods
|
258
|
+
#
|
259
|
+
|
260
|
+
def initialize(parent_class, name, tag)
|
261
|
+
self.parent_class = parent_class
|
262
|
+
self.name = name
|
263
|
+
self.tag = tag
|
264
|
+
super(tag)
|
265
|
+
end
|
266
|
+
|
267
|
+
# Custom equality method since otherwise identical values from different
|
268
|
+
# enums will be considered equal by Integer's equality method (or
|
269
|
+
# Fixnum's on Ruby < 2.4.0).
|
270
|
+
#
|
271
|
+
def ==(other)
|
272
|
+
if other.is_a?(Protobuf::Enum)
|
273
|
+
parent_class == other.parent_class && tag == other.tag
|
274
|
+
elsif tag.class == other.class
|
275
|
+
tag == other
|
276
|
+
else
|
277
|
+
false
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
281
|
+
# Overriding the class so ActiveRecord/Arel visitor will visit the enum as an
|
282
|
+
# Integer.
|
283
|
+
#
|
284
|
+
def class
|
285
|
+
# This is done for backward compatibility for < 2.4.0. This ensures that
|
286
|
+
# if Ruby version >= 2.4.0, this will return Integer. If below, then will
|
287
|
+
# return Fixnum.
|
288
|
+
#
|
289
|
+
# This prevents the constant deprecation warnings on Fixnum.
|
290
|
+
tag.class
|
291
|
+
end
|
292
|
+
|
293
|
+
# Protobuf::Enum delegates methods to Fixnum, which has a custom hash equality method (`eql?`)
|
294
|
+
# This causes enum values to be equivalent when using `==`, `===`, `equals?`, but not `eql?`**:
|
295
|
+
#
|
296
|
+
# 2.3.7 :002 > ::Test::EnumTestType::ZERO.eql?(::Test::EnumTestType::ZERO)
|
297
|
+
# => false
|
298
|
+
#
|
299
|
+
# However, they are equilvalent to their tag value:
|
300
|
+
#
|
301
|
+
# 2.3.7 :002 > ::Test::EnumTestType::ZERO.eql?(::Test::EnumTestType::ZERO.tag)
|
302
|
+
# => true
|
303
|
+
#
|
304
|
+
# **The implementation changed in Ruby 2.5, so this only affects Ruby versions less than v2.4.
|
305
|
+
#
|
306
|
+
# Use the hash equality implementation from Object#eql?, which is equivalent to == instead.
|
307
|
+
#
|
308
|
+
def eql?(other)
|
309
|
+
self == other
|
310
|
+
end
|
311
|
+
|
312
|
+
def inspect
|
313
|
+
"\#<Protobuf::Enum(#{parent_class})::#{name}=#{tag}>"
|
314
|
+
end
|
315
|
+
|
316
|
+
def to_int
|
317
|
+
tag.to_int
|
318
|
+
end
|
319
|
+
|
320
|
+
# This fixes a reflection bug in JrJackson RubyAnySerializer that does not
|
321
|
+
# render Protobuf enums correctly because to_json is not defined. It takes
|
322
|
+
# any number of arguments to support the JSON gem trying to pass an argument.
|
323
|
+
# NB: This method is required to return a string and not an integer.
|
324
|
+
#
|
325
|
+
def to_json(*)
|
326
|
+
to_s
|
327
|
+
end
|
328
|
+
|
329
|
+
def to_s(format = :tag)
|
330
|
+
case format
|
331
|
+
when :tag
|
332
|
+
to_i.to_s
|
333
|
+
when :name
|
334
|
+
name.to_s
|
335
|
+
else
|
336
|
+
to_i.to_s
|
337
|
+
end
|
338
|
+
end
|
339
|
+
|
340
|
+
# Re-implement `try` in order to fix the problem where
|
341
|
+
# the underlying fixnum doesn't respond to all methods (e.g. name or tag).
|
342
|
+
# If we respond to the first argument, `__send__` the args. Otherwise,
|
343
|
+
# delegate the `try` call to the underlying vlaue fixnum.
|
344
|
+
#
|
345
|
+
def try(*args, &block)
|
346
|
+
case
|
347
|
+
when args.empty? && block_given?
|
348
|
+
yield self
|
349
|
+
when respond_to?(args.first)
|
350
|
+
__send__(*args, &block)
|
351
|
+
else
|
352
|
+
@tag.try(*args, &block)
|
353
|
+
end
|
354
|
+
end
|
355
|
+
|
356
|
+
##
|
357
|
+
# Instance Aliases
|
358
|
+
#
|
359
|
+
alias :to_i tag
|
360
|
+
alias :to_hash_value tag
|
361
|
+
alias :to_json_hash_value tag
|
362
|
+
|
363
|
+
::Protobuf.deprecator.define_deprecated_methods(self, :value => :to_i)
|
364
|
+
end
|
365
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
module Protobuf
|
2
|
+
class Error < StandardError; end
|
3
|
+
class InvalidWireType < Error; end
|
4
|
+
class NotInitializedError < Error; end
|
5
|
+
class TagCollisionError < Error; end
|
6
|
+
class SerializationError < StandardError; end
|
7
|
+
class FieldNotDefinedError < StandardError; end
|
8
|
+
class DuplicateFieldNameError < StandardError; end
|
9
|
+
end
|