contrast-agent 6.6.4 → 6.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -2
- data/.gitmodules +0 -3
- data/.simplecov +0 -1
- data/Rakefile +0 -1
- data/ext/cs__assess_array/cs__assess_array.c +41 -10
- data/ext/cs__assess_array/cs__assess_array.h +4 -1
- data/ext/cs__scope/cs__scope.c +1 -1
- data/lib/contrast/agent/assess/contrast_event.rb +2 -24
- data/lib/contrast/agent/assess/events/source_event.rb +7 -61
- data/lib/contrast/agent/assess/finalizers/hash.rb +11 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +0 -55
- data/lib/contrast/agent/assess/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/assess/policy/policy_node_utils.rb +0 -1
- data/lib/contrast/agent/assess/policy/propagation_node.rb +4 -4
- data/lib/contrast/agent/assess/policy/source_method.rb +24 -1
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +7 -5
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +6 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +40 -121
- data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -3
- data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +1 -1
- data/lib/contrast/agent/assess/property/evented.rb +2 -12
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +42 -82
- data/lib/contrast/agent/assess/rule/response/base_rule.rb +11 -27
- data/lib/contrast/agent/assess/rule/response/body_rule.rb +1 -3
- data/lib/contrast/agent/assess/rule/response/cache_control_header_rule.rb +77 -62
- data/lib/contrast/agent/assess/rule/response/csp_header_insecure_rule.rb +1 -1
- data/lib/contrast/agent/assess/rule/response/framework/rails_support.rb +6 -1
- data/lib/contrast/agent/assess/rule/response/header_rule.rb +5 -5
- data/lib/contrast/agent/assess/rule/response/hsts_header_rule.rb +1 -1
- data/lib/contrast/agent/assess/rule/response/x_xss_protection_header_rule.rb +1 -1
- data/lib/contrast/agent/assess/tracker.rb +1 -7
- data/lib/contrast/agent/at_exit_hook.rb +1 -7
- data/lib/contrast/agent/excluder.rb +224 -0
- data/lib/contrast/agent/exclusion_matcher.rb +25 -7
- data/lib/contrast/agent/inventory/database_config.rb +18 -23
- data/lib/contrast/agent/middleware.rb +4 -5
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -0
- data/lib/contrast/agent/protect/input_analyzer/input_analyzer.rb +146 -127
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +4 -0
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +20 -0
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -0
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
- data/lib/contrast/agent/protect/rule/base.rb +98 -66
- data/lib/contrast/agent/protect/rule/base_service.rb +49 -24
- data/lib/contrast/agent/protect/rule/bot_blocker/bot_blocker_input_classification.rb +98 -0
- data/lib/contrast/agent/protect/rule/bot_blocker.rb +81 -0
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +30 -99
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_backdoors.rb +132 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_base_rule.rb +169 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_chained_command.rb +69 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_dangerous_path.rb +68 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_input_classification.rb +2 -58
- data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/deserialization.rb +10 -19
- data/lib/contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification.rb +2 -2
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +0 -11
- data/lib/contrast/agent/protect/rule/no_sqli/no_sqli_input_classification.rb +29 -34
- data/lib/contrast/agent/protect/rule/no_sqli.rb +25 -18
- data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_input_classification.rb +61 -0
- data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_semantic_security_bypass.rb +114 -0
- data/lib/contrast/agent/protect/rule/path_traversal.rb +46 -18
- data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +49 -29
- data/lib/contrast/agent/protect/rule/sqli/sqli_base_rule.rb +37 -0
- data/lib/contrast/agent/protect/rule/sqli/sqli_input_classification.rb +2 -62
- data/lib/contrast/agent/protect/rule/sqli/sqli_semantic/sqli_dangerous_functions.rb +67 -0
- data/lib/contrast/agent/protect/rule/sqli.rb +67 -22
- data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_input_classification.rb +39 -63
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +6 -33
- data/lib/contrast/agent/protect/rule/xss/reflected_xss_input_classification.rb +58 -0
- data/lib/contrast/agent/protect/rule/xss.rb +14 -20
- data/lib/contrast/agent/protect/rule/xxe.rb +15 -30
- data/lib/contrast/agent/protect/rule.rb +3 -1
- data/lib/contrast/agent/reporting/attack_result/attack_result.rb +8 -0
- data/lib/contrast/agent/reporting/attack_result/rasp_rule_sample.rb +70 -36
- data/lib/contrast/agent/reporting/attack_result/response_type.rb +9 -9
- data/lib/contrast/agent/reporting/attack_result/user_input.rb +11 -0
- data/lib/contrast/agent/reporting/details/bot_blocker_details.rb +29 -0
- data/lib/contrast/agent/reporting/details/cmd_injection_details.rb +30 -0
- data/lib/contrast/agent/reporting/details/details.rb +18 -0
- data/lib/contrast/agent/reporting/details/http_method_tempering_details.rb +27 -0
- data/lib/contrast/agent/reporting/details/ip_denylist_details.rb +35 -0
- data/lib/contrast/agent/reporting/details/no_sqli_details.rb +36 -0
- data/lib/contrast/agent/reporting/details/path_traversal_details.rb +24 -0
- data/lib/contrast/agent/reporting/details/path_traversal_semantic_analysis_details.rb +32 -0
- data/lib/contrast/agent/reporting/details/protect_rule_details.rb +17 -0
- data/lib/contrast/agent/reporting/details/sqli_dangerous_functions.rb +22 -0
- data/lib/contrast/agent/reporting/details/sqli_details.rb +36 -0
- data/lib/contrast/agent/reporting/details/untrusted_deserialization_details.rb +27 -0
- data/lib/contrast/agent/reporting/details/virtual_patch_details.rb +30 -0
- data/lib/contrast/agent/reporting/details/xss_details.rb +33 -0
- data/lib/contrast/agent/reporting/details/xss_match.rb +30 -0
- data/lib/contrast/agent/reporting/details/xxe_details.rb +36 -0
- data/lib/contrast/agent/reporting/details/xxe_match.rb +25 -0
- data/lib/contrast/agent/reporting/details/xxe_wrapper.rb +25 -0
- data/lib/contrast/agent/reporting/input_analysis/details/bot_blocker_details.rb +27 -0
- data/lib/contrast/agent/reporting/input_analysis/details/protect_rule_details.rb +15 -0
- data/lib/contrast/agent/reporting/input_analysis/input_analysis.rb +1 -2
- data/lib/contrast/agent/reporting/input_analysis/input_analysis_result.rb +17 -3
- data/lib/contrast/agent/reporting/masker/masker.rb +80 -65
- data/lib/contrast/agent/reporting/masker/masker_utils.rb +1 -30
- data/lib/contrast/agent/reporting/reporter.rb +1 -15
- data/lib/contrast/agent/reporting/reporting_events/agent_startup.rb +2 -2
- data/lib/contrast/agent/reporting/reporting_events/application_activity.rb +84 -15
- data/lib/contrast/agent/reporting/reporting_events/application_defend_activity.rb +13 -25
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_activity.rb +19 -24
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample.rb +46 -126
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_activity.rb +5 -16
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attacker_activity.rb +10 -18
- data/lib/contrast/agent/reporting/reporting_events/application_inventory_activity.rb +6 -14
- data/lib/contrast/agent/reporting/reporting_events/application_startup.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_events/application_update.rb +0 -2
- data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +7 -22
- data/lib/contrast/agent/reporting/reporting_events/finding.rb +23 -53
- data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +12 -9
- data/lib/contrast/agent/reporting/reporting_events/finding_event_signature.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_source.rb +23 -21
- data/lib/contrast/agent/reporting/reporting_events/finding_event_stack.rb +5 -18
- data/lib/contrast/agent/reporting/reporting_events/finding_event_taint_range.rb +1 -0
- data/lib/contrast/{api/decorators/trace_taint_range_tags.rb → agent/reporting/reporting_events/finding_event_taint_range_tags.rb} +7 -6
- data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +40 -10
- data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +0 -1
- data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +2 -2
- data/lib/contrast/agent/reporting/reporting_events/poll.rb +1 -11
- data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +10 -14
- data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +11 -0
- data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +3 -1
- data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +12 -25
- data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +8 -27
- data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +3 -3
- data/lib/contrast/agent/reporting/reporting_utilities/build_preflight.rb +4 -7
- data/lib/contrast/agent/reporting/reporting_utilities/headers.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +2 -1
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +3 -3
- data/lib/contrast/agent/reporting/reporting_utilities/response.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +0 -3
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +1 -0
- data/lib/contrast/agent/reporting/settings/code_exclusion.rb +6 -1
- data/lib/contrast/agent/reporting/settings/exclusion_base.rb +18 -0
- data/lib/contrast/agent/reporting/settings/exclusions.rb +2 -1
- data/lib/contrast/agent/reporting/settings/input_exclusion.rb +9 -3
- data/lib/contrast/agent/reporting/settings/protect.rb +15 -15
- data/lib/contrast/agent/request.rb +4 -14
- data/lib/contrast/agent/request_context.rb +18 -24
- data/lib/contrast/agent/request_context_extend.rb +23 -164
- data/lib/contrast/agent/request_handler.rb +1 -11
- data/lib/contrast/agent/response.rb +0 -18
- data/lib/contrast/agent/telemetry/events/event.rb +1 -1
- data/lib/contrast/agent/telemetry/events/metric_event.rb +1 -1
- data/lib/contrast/agent/telemetry/events/startup_metrics_event.rb +3 -3
- data/lib/contrast/agent/thread_watcher.rb +3 -18
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent.rb +0 -11
- data/lib/contrast/agent_lib/api/command_injection.rb +46 -0
- data/lib/contrast/agent_lib/api/init.rb +101 -0
- data/lib/contrast/agent_lib/api/input_tracing.rb +267 -0
- data/lib/contrast/agent_lib/api/method_tempering.rb +29 -0
- data/lib/contrast/agent_lib/api/panic.rb +87 -0
- data/lib/contrast/agent_lib/api/path_semantic_file_security_bypass.rb +40 -0
- data/lib/contrast/agent_lib/interface.rb +260 -0
- data/lib/contrast/agent_lib/interface_base.rb +118 -0
- data/lib/contrast/agent_lib/return_types/eval_result.rb +44 -0
- data/lib/contrast/agent_lib/test.rb +29 -0
- data/lib/contrast/api/communication/connection_status.rb +5 -5
- data/lib/contrast/components/agent.rb +13 -23
- data/lib/contrast/components/api.rb +10 -10
- data/lib/contrast/components/app_context.rb +9 -11
- data/lib/contrast/components/app_context_extend.rb +1 -26
- data/lib/contrast/components/assess.rb +92 -38
- data/lib/contrast/components/assess_rules.rb +36 -0
- data/lib/contrast/components/config.rb +49 -24
- data/lib/contrast/components/heap_dump.rb +1 -1
- data/lib/contrast/components/protect.rb +9 -6
- data/lib/contrast/components/ruby_component.rb +81 -0
- data/lib/contrast/components/sampling.rb +1 -1
- data/lib/contrast/components/security_logger.rb +23 -0
- data/lib/contrast/components/settings.rb +41 -85
- data/lib/contrast/config/base_configuration.rb +1 -1
- data/lib/contrast/config/protect_rule_configuration.rb +7 -7
- data/lib/contrast/config/protect_rules_configuration.rb +24 -48
- data/lib/contrast/config/server_configuration.rb +1 -1
- data/lib/contrast/config.rb +0 -6
- data/lib/contrast/configuration.rb +73 -18
- data/lib/contrast/extension/assess/array.rb +9 -0
- data/lib/contrast/extension/assess/exec_trigger.rb +3 -1
- data/lib/contrast/extension/assess/marshal.rb +3 -2
- data/lib/contrast/extension/assess/string.rb +0 -1
- data/lib/contrast/extension/delegator.rb +2 -0
- data/lib/contrast/extension/extension.rb +1 -1
- data/lib/contrast/framework/base_support.rb +0 -5
- data/lib/contrast/framework/grape/support.rb +1 -23
- data/lib/contrast/framework/manager.rb +3 -11
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -6
- data/lib/contrast/framework/rails/railtie.rb +0 -1
- data/lib/contrast/framework/rails/support.rb +5 -59
- data/lib/contrast/framework/sinatra/support.rb +2 -21
- data/lib/contrast/logger/cef_log.rb +21 -3
- data/lib/contrast/logger/log.rb +1 -11
- data/lib/contrast/tasks/config.rb +5 -10
- data/lib/contrast/utils/assess/event_limit_utils.rb +28 -12
- data/lib/contrast/utils/assess/trigger_method_utils.rb +10 -18
- data/lib/contrast/utils/duck_utils.rb +1 -0
- data/lib/contrast/utils/findings.rb +6 -5
- data/lib/contrast/utils/hash_digest.rb +9 -24
- data/lib/contrast/utils/hash_digest_extend.rb +6 -6
- data/lib/contrast/utils/input_classification_base.rb +156 -0
- data/lib/contrast/utils/invalid_configuration_util.rb +21 -58
- data/lib/contrast/utils/log_utils.rb +47 -17
- data/lib/contrast/utils/net_http_base.rb +2 -2
- data/lib/contrast/utils/os.rb +0 -20
- data/lib/contrast/utils/patching/policy/patch_utils.rb +3 -2
- data/lib/contrast/utils/response_utils.rb +0 -16
- data/lib/contrast/utils/stack_trace_utils.rb +3 -40
- data/lib/contrast/utils/string_utils.rb +19 -7
- data/lib/contrast/utils/telemetry_client.rb +13 -7
- data/lib/contrast.rb +7 -13
- data/resources/protect/policy.json +1 -2
- data/ruby-agent.gemspec +2 -5
- metadata +78 -137
- data/exe/contrast_service +0 -23
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_worth_watching.rb +0 -64
- data/lib/contrast/agent/protect/rule/sqli/sqli_worth_watching.rb +0 -118
- data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_matcher.rb +0 -45
- data/lib/contrast/agent/reaction_processor.rb +0 -47
- data/lib/contrast/agent/reporting/reporting_events/trace_event_source.rb +0 -30
- data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +0 -43
- data/lib/contrast/agent/service_heartbeat.rb +0 -35
- data/lib/contrast/api/communication/messaging_queue.rb +0 -129
- data/lib/contrast/api/communication/response_processor.rb +0 -90
- data/lib/contrast/api/communication/service_lifecycle.rb +0 -77
- data/lib/contrast/api/communication/socket.rb +0 -44
- data/lib/contrast/api/communication/socket_client.rb +0 -130
- data/lib/contrast/api/communication/speedracer.rb +0 -142
- data/lib/contrast/api/communication/tcp_socket.rb +0 -32
- data/lib/contrast/api/communication/unix_socket.rb +0 -28
- data/lib/contrast/api/communication.rb +0 -20
- data/lib/contrast/api/decorators/activity.rb +0 -33
- data/lib/contrast/api/decorators/address.rb +0 -59
- data/lib/contrast/api/decorators/agent_startup.rb +0 -57
- data/lib/contrast/api/decorators/application_settings.rb +0 -42
- data/lib/contrast/api/decorators/application_startup.rb +0 -56
- data/lib/contrast/api/decorators/architecture_component.rb +0 -36
- data/lib/contrast/api/decorators/bot_blocker.rb +0 -37
- data/lib/contrast/api/decorators/finding.rb +0 -29
- data/lib/contrast/api/decorators/http_request.rb +0 -137
- data/lib/contrast/api/decorators/input_analysis.rb +0 -18
- data/lib/contrast/api/decorators/instrumentation_mode.rb +0 -35
- data/lib/contrast/api/decorators/ip_denylist.rb +0 -37
- data/lib/contrast/api/decorators/message.rb +0 -71
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +0 -58
- data/lib/contrast/api/decorators/response_type.rb +0 -17
- data/lib/contrast/api/decorators/route_coverage.rb +0 -91
- data/lib/contrast/api/decorators/server_features.rb +0 -25
- data/lib/contrast/api/decorators/trace_event.rb +0 -120
- data/lib/contrast/api/decorators/trace_event_object.rb +0 -63
- data/lib/contrast/api/decorators/trace_event_signature.rb +0 -69
- data/lib/contrast/api/decorators/trace_taint_range.rb +0 -52
- data/lib/contrast/api/decorators/user_input.rb +0 -51
- data/lib/contrast/api/decorators/virtual_patch.rb +0 -34
- data/lib/contrast/api/decorators.rb +0 -28
- data/lib/contrast/api/dtm.pb.rb +0 -852
- data/lib/contrast/api/settings.pb.rb +0 -500
- data/lib/contrast/api.rb +0 -16
- data/lib/contrast/components/contrast_service.rb +0 -88
- data/lib/contrast/config/assess_configuration.rb +0 -93
- data/lib/contrast/config/assess_rules_configuration.rb +0 -32
- data/lib/contrast/config/root_configuration.rb +0 -90
- data/lib/contrast/config/ruby_configuration.rb +0 -81
- data/lib/contrast/config/service_configuration.rb +0 -49
- data/lib/contrast/tasks/service.rb +0 -84
- data/lib/contrast/utils/input_classification.rb +0 -73
- data/lib/contrast/utils/preflight_util.rb +0 -13
- data/lib/protobuf/code_generator.rb +0 -129
- data/lib/protobuf/decoder.rb +0 -28
- data/lib/protobuf/deprecation.rb +0 -117
- data/lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb +0 -79
- data/lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb +0 -360
- data/lib/protobuf/descriptors.rb +0 -3
- data/lib/protobuf/encoder.rb +0 -11
- data/lib/protobuf/enum.rb +0 -365
- data/lib/protobuf/exceptions.rb +0 -9
- data/lib/protobuf/field/base_field.rb +0 -380
- data/lib/protobuf/field/base_field_object_definitions.rb +0 -504
- data/lib/protobuf/field/bool_field.rb +0 -64
- data/lib/protobuf/field/bytes_field.rb +0 -67
- data/lib/protobuf/field/double_field.rb +0 -25
- data/lib/protobuf/field/enum_field.rb +0 -56
- data/lib/protobuf/field/field_array.rb +0 -102
- data/lib/protobuf/field/field_hash.rb +0 -122
- data/lib/protobuf/field/fixed32_field.rb +0 -25
- data/lib/protobuf/field/fixed64_field.rb +0 -28
- data/lib/protobuf/field/float_field.rb +0 -43
- data/lib/protobuf/field/int32_field.rb +0 -21
- data/lib/protobuf/field/int64_field.rb +0 -34
- data/lib/protobuf/field/integer_field.rb +0 -23
- data/lib/protobuf/field/message_field.rb +0 -51
- data/lib/protobuf/field/sfixed32_field.rb +0 -27
- data/lib/protobuf/field/sfixed64_field.rb +0 -28
- data/lib/protobuf/field/signed_integer_field.rb +0 -29
- data/lib/protobuf/field/sint32_field.rb +0 -21
- data/lib/protobuf/field/sint64_field.rb +0 -21
- data/lib/protobuf/field/string_field.rb +0 -51
- data/lib/protobuf/field/uint32_field.rb +0 -21
- data/lib/protobuf/field/uint64_field.rb +0 -21
- data/lib/protobuf/field/varint_field.rb +0 -77
- data/lib/protobuf/field.rb +0 -74
- data/lib/protobuf/generators/base.rb +0 -85
- data/lib/protobuf/generators/enum_generator.rb +0 -39
- data/lib/protobuf/generators/extension_generator.rb +0 -27
- data/lib/protobuf/generators/field_generator.rb +0 -193
- data/lib/protobuf/generators/file_generator.rb +0 -262
- data/lib/protobuf/generators/group_generator.rb +0 -122
- data/lib/protobuf/generators/message_generator.rb +0 -104
- data/lib/protobuf/generators/option_generator.rb +0 -17
- data/lib/protobuf/generators/printable.rb +0 -160
- data/lib/protobuf/generators/service_generator.rb +0 -50
- data/lib/protobuf/lifecycle.rb +0 -33
- data/lib/protobuf/logging.rb +0 -39
- data/lib/protobuf/message/fields.rb +0 -233
- data/lib/protobuf/message/serialization.rb +0 -85
- data/lib/protobuf/message.rb +0 -241
- data/lib/protobuf/optionable.rb +0 -72
- data/lib/protobuf/tasks/compile.rake +0 -80
- data/lib/protobuf/tasks.rb +0 -1
- data/lib/protobuf/varint.rb +0 -20
- data/lib/protobuf/varint_pure.rb +0 -31
- data/lib/protobuf/version.rb +0 -3
- data/lib/protobuf/wire_type.rb +0 -10
- data/lib/protobuf.rb +0 -91
- data/proto/dynamic_discovery.proto +0 -46
- data/proto/google/protobuf/compiler/plugin.proto +0 -183
- data/proto/google/protobuf/descriptor.proto +0 -911
- data/proto/rpc.proto +0 -71
- data/service_executables/.gitkeep +0 -0
- data/service_executables/VERSION +0 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
data/lib/protobuf/deprecation.rb
DELETED
@@ -1,117 +0,0 @@
|
|
1
|
-
require 'active_support/deprecation'
|
2
|
-
|
3
|
-
module Protobuf
|
4
|
-
if ::ActiveSupport::Deprecation.is_a?(Class)
|
5
|
-
class DeprecationBase < ::ActiveSupport::Deprecation
|
6
|
-
def deprecate_methods(*args)
|
7
|
-
deprecation_options = { :deprecator => self }
|
8
|
-
|
9
|
-
if args.last.is_a?(Hash)
|
10
|
-
args.last.merge!(deprecation_options)
|
11
|
-
else
|
12
|
-
args.push(deprecation_options)
|
13
|
-
end
|
14
|
-
|
15
|
-
super
|
16
|
-
end
|
17
|
-
|
18
|
-
def deprecation_warning(deprecated_method_name, message = nil, caller_backtrace = nil)
|
19
|
-
# This ensures ActiveSupport::Deprecation doesn't look for the caller, which is very costly.
|
20
|
-
super(deprecated_method_name, message, caller_backtrace) unless ENV.key?('PB_IGNORE_DEPRECATIONS')
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
class Deprecation < DeprecationBase
|
25
|
-
def define_deprecated_methods(target_module, method_hash)
|
26
|
-
target_module.module_eval do
|
27
|
-
method_hash.each do |old_method, new_method|
|
28
|
-
alias_method old_method, new_method
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
deprecate_methods(target_module, method_hash)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
class FieldDeprecation < DeprecationBase
|
37
|
-
# this is a convenience deprecator for deprecated proto fields
|
38
|
-
|
39
|
-
def deprecate_method(target_module, method_name)
|
40
|
-
deprecate_methods(target_module, method_name => target_module)
|
41
|
-
end
|
42
|
-
|
43
|
-
private
|
44
|
-
|
45
|
-
def deprecated_method_warning(method_name, target_module)
|
46
|
-
"#{target_module.name}##{method_name} field usage is deprecated"
|
47
|
-
end
|
48
|
-
end
|
49
|
-
else
|
50
|
-
# TODO: remove this clause when Rails < 4 support is no longer needed
|
51
|
-
deprecator = ::ActiveSupport::Deprecation.clone
|
52
|
-
deprecator.instance_eval do
|
53
|
-
def new(deprecation_horizon = nil, *)
|
54
|
-
self.deprecation_horizon = deprecation_horizon if deprecation_horizon
|
55
|
-
self
|
56
|
-
end
|
57
|
-
end
|
58
|
-
Deprecation = deprecator.clone
|
59
|
-
FieldDeprecation = deprecator.clone
|
60
|
-
|
61
|
-
Deprecation.instance_eval do
|
62
|
-
def define_deprecated_methods(target_module, method_hash)
|
63
|
-
target_module.module_eval do
|
64
|
-
method_hash.each do |old_method, new_method|
|
65
|
-
alias_method old_method, new_method
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
deprecate_methods(target_module, method_hash)
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
FieldDeprecation.instance_eval do
|
74
|
-
def deprecate_method(target_module, method_name)
|
75
|
-
deprecate_methods(target_module, method_name => target_module)
|
76
|
-
end
|
77
|
-
|
78
|
-
private
|
79
|
-
|
80
|
-
def deprecated_method_warning(method_name, target_module)
|
81
|
-
"#{target_module.name}##{method_name} field usage is deprecated"
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
def self.deprecator
|
87
|
-
@deprecator ||= Deprecation.new('4.0', to_s).tap do |deprecation|
|
88
|
-
deprecation.silenced = ENV.key?('PB_IGNORE_DEPRECATIONS')
|
89
|
-
deprecation.behavior = :stderr
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
def self.field_deprecator
|
94
|
-
@field_deprecator ||= FieldDeprecation.new.tap do |deprecation|
|
95
|
-
deprecation.silenced = ENV.key?('PB_IGNORE_DEPRECATIONS')
|
96
|
-
deprecation.behavior = :stderr
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
# Print Deprecation Warnings
|
101
|
-
#
|
102
|
-
# Default: true
|
103
|
-
#
|
104
|
-
# Simple boolean to define whether we want field deprecation warnings to
|
105
|
-
# be printed to stderr or not. The rpc_server has an option to set this value
|
106
|
-
# explicitly, or you can turn this option off by setting
|
107
|
-
# ENV['PB_IGNORE_DEPRECATIONS'] to a non-empty value.
|
108
|
-
#
|
109
|
-
# The rpc_server option will override the ENV setting.
|
110
|
-
def self.print_deprecation_warnings?
|
111
|
-
!field_deprecator.silenced
|
112
|
-
end
|
113
|
-
|
114
|
-
def self.print_deprecation_warnings=(value)
|
115
|
-
field_deprecator.silenced = !value
|
116
|
-
end
|
117
|
-
end
|
@@ -1,79 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
##
|
4
|
-
# This file is auto-generated. DO NOT EDIT!
|
5
|
-
#
|
6
|
-
require 'protobuf'
|
7
|
-
|
8
|
-
|
9
|
-
##
|
10
|
-
# Imports
|
11
|
-
#
|
12
|
-
require 'google/protobuf/descriptor.pb'
|
13
|
-
|
14
|
-
module CSGoogle
|
15
|
-
module Protobuf
|
16
|
-
module Compiler
|
17
|
-
::Protobuf::Optionable.inject(self) { ::CSGoogle::Protobuf::FileOptions }
|
18
|
-
|
19
|
-
##
|
20
|
-
# Message Classes
|
21
|
-
#
|
22
|
-
class Version < ::Protobuf::Message; end
|
23
|
-
class CodeGeneratorRequest < ::Protobuf::Message; end
|
24
|
-
class CodeGeneratorResponse < ::Protobuf::Message
|
25
|
-
class Feature < ::Protobuf::Enum
|
26
|
-
define :FEATURE_NONE, 0
|
27
|
-
define :FEATURE_PROTO3_OPTIONAL, 1
|
28
|
-
end
|
29
|
-
|
30
|
-
class File < ::Protobuf::Message; end
|
31
|
-
|
32
|
-
end
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
##
|
37
|
-
# File Options
|
38
|
-
#
|
39
|
-
set_option :java_package, "com.google.protobuf.compiler"
|
40
|
-
set_option :java_outer_classname, "PluginProtos"
|
41
|
-
set_option :go_package, "google.golang.org/protobuf/types/pluginpb"
|
42
|
-
|
43
|
-
|
44
|
-
##
|
45
|
-
# Message Fields
|
46
|
-
#
|
47
|
-
class Version
|
48
|
-
optional :int32, :major, 1
|
49
|
-
optional :int32, :minor, 2
|
50
|
-
optional :int32, :patch, 3
|
51
|
-
optional :string, :suffix, 4
|
52
|
-
end
|
53
|
-
|
54
|
-
class CodeGeneratorRequest
|
55
|
-
repeated :string, :file_to_generate, 1
|
56
|
-
optional :string, :parameter, 2
|
57
|
-
repeated ::CSGoogle::Protobuf::FileDescriptorProto, :proto_file, 15
|
58
|
-
optional ::CSGoogle::Protobuf::Compiler::Version, :compiler_version, 3
|
59
|
-
end
|
60
|
-
|
61
|
-
class CodeGeneratorResponse
|
62
|
-
class File
|
63
|
-
optional :string, :name, 1
|
64
|
-
optional :string, :insertion_point, 2
|
65
|
-
optional :string, :content, 15
|
66
|
-
optional ::CSGoogle::Protobuf::GeneratedCodeInfo, :generated_code_info, 16
|
67
|
-
end
|
68
|
-
|
69
|
-
optional :string, :error, 1
|
70
|
-
optional :uint64, :supported_features, 2
|
71
|
-
repeated ::CSGoogle::Protobuf::Compiler::CodeGeneratorResponse::File, :file, 15
|
72
|
-
end
|
73
|
-
|
74
|
-
end
|
75
|
-
|
76
|
-
end
|
77
|
-
|
78
|
-
end
|
79
|
-
|
@@ -1,360 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
##
|
4
|
-
# This file is auto-generated. DO NOT EDIT!
|
5
|
-
#
|
6
|
-
require 'protobuf'
|
7
|
-
|
8
|
-
module CSGoogle
|
9
|
-
module Protobuf
|
10
|
-
::Protobuf::Optionable.inject(self) { ::CSGoogle::Protobuf::FileOptions }
|
11
|
-
|
12
|
-
##
|
13
|
-
# Message Classes
|
14
|
-
#
|
15
|
-
class FileDescriptorSet < ::Protobuf::Message; end
|
16
|
-
class FileDescriptorProto < ::Protobuf::Message; end
|
17
|
-
class DescriptorProto < ::Protobuf::Message
|
18
|
-
class ExtensionRange < ::Protobuf::Message; end
|
19
|
-
class ReservedRange < ::Protobuf::Message; end
|
20
|
-
|
21
|
-
end
|
22
|
-
|
23
|
-
class ExtensionRangeOptions < ::Protobuf::Message; end
|
24
|
-
class FieldDescriptorProto < ::Protobuf::Message
|
25
|
-
class Type < ::Protobuf::Enum
|
26
|
-
define :TYPE_DOUBLE, 1
|
27
|
-
define :TYPE_FLOAT, 2
|
28
|
-
define :TYPE_INT64, 3
|
29
|
-
define :TYPE_UINT64, 4
|
30
|
-
define :TYPE_INT32, 5
|
31
|
-
define :TYPE_FIXED64, 6
|
32
|
-
define :TYPE_FIXED32, 7
|
33
|
-
define :TYPE_BOOL, 8
|
34
|
-
define :TYPE_STRING, 9
|
35
|
-
define :TYPE_GROUP, 10
|
36
|
-
define :TYPE_MESSAGE, 11
|
37
|
-
define :TYPE_BYTES, 12
|
38
|
-
define :TYPE_UINT32, 13
|
39
|
-
define :TYPE_ENUM, 14
|
40
|
-
define :TYPE_SFIXED32, 15
|
41
|
-
define :TYPE_SFIXED64, 16
|
42
|
-
define :TYPE_SINT32, 17
|
43
|
-
define :TYPE_SINT64, 18
|
44
|
-
end
|
45
|
-
|
46
|
-
class Label < ::Protobuf::Enum
|
47
|
-
define :LABEL_OPTIONAL, 1
|
48
|
-
define :LABEL_REQUIRED, 2
|
49
|
-
define :LABEL_REPEATED, 3
|
50
|
-
end
|
51
|
-
|
52
|
-
end
|
53
|
-
|
54
|
-
class OneofDescriptorProto < ::Protobuf::Message; end
|
55
|
-
class EnumDescriptorProto < ::Protobuf::Message
|
56
|
-
class EnumReservedRange < ::Protobuf::Message; end
|
57
|
-
|
58
|
-
end
|
59
|
-
|
60
|
-
class EnumValueDescriptorProto < ::Protobuf::Message; end
|
61
|
-
class ServiceDescriptorProto < ::Protobuf::Message; end
|
62
|
-
class MethodDescriptorProto < ::Protobuf::Message; end
|
63
|
-
class FileOptions < ::Protobuf::Message
|
64
|
-
class OptimizeMode < ::Protobuf::Enum
|
65
|
-
define :SPEED, 1
|
66
|
-
define :CODE_SIZE, 2
|
67
|
-
define :LITE_RUNTIME, 3
|
68
|
-
end
|
69
|
-
|
70
|
-
end
|
71
|
-
|
72
|
-
class MessageOptions < ::Protobuf::Message; end
|
73
|
-
class FieldOptions < ::Protobuf::Message
|
74
|
-
class CType < ::Protobuf::Enum
|
75
|
-
define :STRING, 0
|
76
|
-
define :CORD, 1
|
77
|
-
define :STRING_PIECE, 2
|
78
|
-
end
|
79
|
-
|
80
|
-
class JSType < ::Protobuf::Enum
|
81
|
-
define :JS_NORMAL, 0
|
82
|
-
define :JS_STRING, 1
|
83
|
-
define :JS_NUMBER, 2
|
84
|
-
end
|
85
|
-
|
86
|
-
end
|
87
|
-
|
88
|
-
class OneofOptions < ::Protobuf::Message; end
|
89
|
-
class EnumOptions < ::Protobuf::Message; end
|
90
|
-
class EnumValueOptions < ::Protobuf::Message; end
|
91
|
-
class ServiceOptions < ::Protobuf::Message; end
|
92
|
-
class MethodOptions < ::Protobuf::Message
|
93
|
-
class IdempotencyLevel < ::Protobuf::Enum
|
94
|
-
define :IDEMPOTENCY_UNKNOWN, 0
|
95
|
-
define :NO_SIDE_EFFECTS, 1
|
96
|
-
define :IDEMPOTENT, 2
|
97
|
-
end
|
98
|
-
|
99
|
-
end
|
100
|
-
|
101
|
-
class UninterpretedOption < ::Protobuf::Message
|
102
|
-
class NamePart < ::Protobuf::Message; end
|
103
|
-
|
104
|
-
end
|
105
|
-
|
106
|
-
class SourceCodeInfo < ::Protobuf::Message
|
107
|
-
class Location < ::Protobuf::Message; end
|
108
|
-
|
109
|
-
end
|
110
|
-
|
111
|
-
class GeneratedCodeInfo < ::Protobuf::Message
|
112
|
-
class Annotation < ::Protobuf::Message; end
|
113
|
-
|
114
|
-
end
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
##
|
119
|
-
# File Options
|
120
|
-
#
|
121
|
-
set_option :java_package, "com.google.protobuf"
|
122
|
-
set_option :java_outer_classname, "DescriptorProtos"
|
123
|
-
set_option :optimize_for, ::CSGoogle::Protobuf::FileOptions::OptimizeMode::SPEED
|
124
|
-
set_option :go_package, "google.golang.org/protobuf/types/descriptorpb"
|
125
|
-
set_option :cc_enable_arenas, true
|
126
|
-
set_option :objc_class_prefix, "GPB"
|
127
|
-
set_option :csharp_namespace, "CSGoogle.Protobuf.Reflection"
|
128
|
-
|
129
|
-
|
130
|
-
##
|
131
|
-
# Message Fields
|
132
|
-
#
|
133
|
-
class FileDescriptorSet
|
134
|
-
repeated ::CSGoogle::Protobuf::FileDescriptorProto, :file, 1
|
135
|
-
end
|
136
|
-
|
137
|
-
class FileDescriptorProto
|
138
|
-
optional :string, :name, 1
|
139
|
-
optional :string, :package, 2
|
140
|
-
repeated :string, :dependency, 3
|
141
|
-
repeated :int32, :public_dependency, 10
|
142
|
-
repeated :int32, :weak_dependency, 11
|
143
|
-
repeated ::CSGoogle::Protobuf::DescriptorProto, :message_type, 4
|
144
|
-
repeated ::CSGoogle::Protobuf::EnumDescriptorProto, :enum_type, 5
|
145
|
-
repeated ::CSGoogle::Protobuf::ServiceDescriptorProto, :service, 6
|
146
|
-
repeated ::CSGoogle::Protobuf::FieldDescriptorProto, :extension, 7
|
147
|
-
optional ::CSGoogle::Protobuf::FileOptions, :options, 8
|
148
|
-
optional ::CSGoogle::Protobuf::SourceCodeInfo, :source_code_info, 9
|
149
|
-
optional :string, :syntax, 12
|
150
|
-
end
|
151
|
-
|
152
|
-
class DescriptorProto
|
153
|
-
class ExtensionRange
|
154
|
-
optional :int32, :start, 1
|
155
|
-
optional :int32, :end, 2
|
156
|
-
optional ::CSGoogle::Protobuf::ExtensionRangeOptions, :options, 3
|
157
|
-
end
|
158
|
-
|
159
|
-
class ReservedRange
|
160
|
-
optional :int32, :start, 1
|
161
|
-
optional :int32, :end, 2
|
162
|
-
end
|
163
|
-
|
164
|
-
optional :string, :name, 1
|
165
|
-
repeated ::CSGoogle::Protobuf::FieldDescriptorProto, :field, 2
|
166
|
-
repeated ::CSGoogle::Protobuf::FieldDescriptorProto, :extension, 6
|
167
|
-
repeated ::CSGoogle::Protobuf::DescriptorProto, :nested_type, 3
|
168
|
-
repeated ::CSGoogle::Protobuf::EnumDescriptorProto, :enum_type, 4
|
169
|
-
repeated ::CSGoogle::Protobuf::DescriptorProto::ExtensionRange, :extension_range, 5
|
170
|
-
repeated ::CSGoogle::Protobuf::OneofDescriptorProto, :oneof_decl, 8
|
171
|
-
optional ::CSGoogle::Protobuf::MessageOptions, :options, 7
|
172
|
-
repeated ::CSGoogle::Protobuf::DescriptorProto::ReservedRange, :reserved_range, 9
|
173
|
-
repeated :string, :reserved_name, 10
|
174
|
-
end
|
175
|
-
|
176
|
-
class ExtensionRangeOptions
|
177
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
178
|
-
# Extension Fields
|
179
|
-
extensions 1000...536870912
|
180
|
-
end
|
181
|
-
|
182
|
-
class FieldDescriptorProto
|
183
|
-
optional :string, :name, 1
|
184
|
-
optional :int32, :number, 3
|
185
|
-
optional ::CSGoogle::Protobuf::FieldDescriptorProto::Label, :label, 4
|
186
|
-
optional ::CSGoogle::Protobuf::FieldDescriptorProto::Type, :type, 5
|
187
|
-
optional :string, :type_name, 6
|
188
|
-
optional :string, :extendee, 2
|
189
|
-
optional :string, :default_value, 7
|
190
|
-
optional :int32, :oneof_index, 9
|
191
|
-
optional :string, :json_name, 10
|
192
|
-
optional ::CSGoogle::Protobuf::FieldOptions, :options, 8
|
193
|
-
optional :bool, :proto3_optional, 17
|
194
|
-
end
|
195
|
-
|
196
|
-
class OneofDescriptorProto
|
197
|
-
optional :string, :name, 1
|
198
|
-
optional ::CSGoogle::Protobuf::OneofOptions, :options, 2
|
199
|
-
end
|
200
|
-
|
201
|
-
class EnumDescriptorProto
|
202
|
-
class EnumReservedRange
|
203
|
-
optional :int32, :start, 1
|
204
|
-
optional :int32, :end, 2
|
205
|
-
end
|
206
|
-
|
207
|
-
optional :string, :name, 1
|
208
|
-
repeated ::CSGoogle::Protobuf::EnumValueDescriptorProto, :value, 2
|
209
|
-
optional ::CSGoogle::Protobuf::EnumOptions, :options, 3
|
210
|
-
repeated ::CSGoogle::Protobuf::EnumDescriptorProto::EnumReservedRange, :reserved_range, 4
|
211
|
-
repeated :string, :reserved_name, 5
|
212
|
-
end
|
213
|
-
|
214
|
-
class EnumValueDescriptorProto
|
215
|
-
optional :string, :name, 1
|
216
|
-
optional :int32, :number, 2
|
217
|
-
optional ::CSGoogle::Protobuf::EnumValueOptions, :options, 3
|
218
|
-
end
|
219
|
-
|
220
|
-
class ServiceDescriptorProto
|
221
|
-
optional :string, :name, 1
|
222
|
-
repeated ::CSGoogle::Protobuf::MethodDescriptorProto, :method, 2
|
223
|
-
optional ::CSGoogle::Protobuf::ServiceOptions, :options, 3
|
224
|
-
end
|
225
|
-
|
226
|
-
class MethodDescriptorProto
|
227
|
-
optional :string, :name, 1
|
228
|
-
optional :string, :input_type, 2
|
229
|
-
optional :string, :output_type, 3
|
230
|
-
optional ::CSGoogle::Protobuf::MethodOptions, :options, 4
|
231
|
-
optional :bool, :client_streaming, 5, :default => false
|
232
|
-
optional :bool, :server_streaming, 6, :default => false
|
233
|
-
end
|
234
|
-
|
235
|
-
class FileOptions
|
236
|
-
optional :string, :java_package, 1
|
237
|
-
optional :string, :java_outer_classname, 8
|
238
|
-
optional :bool, :java_multiple_files, 10, :default => false
|
239
|
-
optional :bool, :java_generate_equals_and_hash, 20, :deprecated => true
|
240
|
-
optional :bool, :java_string_check_utf8, 27, :default => false
|
241
|
-
optional ::CSGoogle::Protobuf::FileOptions::OptimizeMode, :optimize_for, 9, :default => ::CSGoogle::Protobuf::FileOptions::OptimizeMode::SPEED
|
242
|
-
optional :string, :go_package, 11
|
243
|
-
optional :bool, :cc_generic_services, 16, :default => false
|
244
|
-
optional :bool, :java_generic_services, 17, :default => false
|
245
|
-
optional :bool, :py_generic_services, 18, :default => false
|
246
|
-
optional :bool, :php_generic_services, 42, :default => false
|
247
|
-
optional :bool, :deprecated, 23, :default => false
|
248
|
-
optional :bool, :cc_enable_arenas, 31, :default => true
|
249
|
-
optional :string, :objc_class_prefix, 36
|
250
|
-
optional :string, :csharp_namespace, 37
|
251
|
-
optional :string, :swift_prefix, 39
|
252
|
-
optional :string, :php_class_prefix, 40
|
253
|
-
optional :string, :php_namespace, 41
|
254
|
-
optional :string, :php_metadata_namespace, 44
|
255
|
-
optional :string, :ruby_package, 45
|
256
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
257
|
-
# Extension Fields
|
258
|
-
extensions 1000...536870912
|
259
|
-
end
|
260
|
-
|
261
|
-
class MessageOptions
|
262
|
-
optional :bool, :message_set_wire_format, 1, :default => false
|
263
|
-
optional :bool, :no_standard_descriptor_accessor, 2, :default => false
|
264
|
-
optional :bool, :deprecated, 3, :default => false
|
265
|
-
optional :bool, :map_entry, 7
|
266
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
267
|
-
# Extension Fields
|
268
|
-
extensions 1000...536870912
|
269
|
-
end
|
270
|
-
|
271
|
-
class FieldOptions
|
272
|
-
optional ::CSGoogle::Protobuf::FieldOptions::CType, :ctype, 1, :default => ::CSGoogle::Protobuf::FieldOptions::CType::STRING
|
273
|
-
optional :bool, :packed, 2
|
274
|
-
optional ::CSGoogle::Protobuf::FieldOptions::JSType, :jstype, 6, :default => ::CSGoogle::Protobuf::FieldOptions::JSType::JS_NORMAL
|
275
|
-
optional :bool, :lazy, 5, :default => false
|
276
|
-
optional :bool, :deprecated, 3, :default => false
|
277
|
-
optional :bool, :weak, 10, :default => false
|
278
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
279
|
-
# Extension Fields
|
280
|
-
extensions 1000...536870912
|
281
|
-
end
|
282
|
-
|
283
|
-
class OneofOptions
|
284
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
285
|
-
# Extension Fields
|
286
|
-
extensions 1000...536870912
|
287
|
-
end
|
288
|
-
|
289
|
-
class EnumOptions
|
290
|
-
optional :bool, :allow_alias, 2
|
291
|
-
optional :bool, :deprecated, 3, :default => false
|
292
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
293
|
-
# Extension Fields
|
294
|
-
extensions 1000...536870912
|
295
|
-
end
|
296
|
-
|
297
|
-
class EnumValueOptions
|
298
|
-
optional :bool, :deprecated, 1, :default => false
|
299
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
300
|
-
# Extension Fields
|
301
|
-
extensions 1000...536870912
|
302
|
-
end
|
303
|
-
|
304
|
-
class ServiceOptions
|
305
|
-
optional :bool, :deprecated, 33, :default => false
|
306
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
307
|
-
# Extension Fields
|
308
|
-
extensions 1000...536870912
|
309
|
-
end
|
310
|
-
|
311
|
-
class MethodOptions
|
312
|
-
optional :bool, :deprecated, 33, :default => false
|
313
|
-
optional ::CSGoogle::Protobuf::MethodOptions::IdempotencyLevel, :idempotency_level, 34, :default => ::CSGoogle::Protobuf::MethodOptions::IdempotencyLevel::IDEMPOTENCY_UNKNOWN
|
314
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption, :uninterpreted_option, 999
|
315
|
-
# Extension Fields
|
316
|
-
extensions 1000...536870912
|
317
|
-
end
|
318
|
-
|
319
|
-
class UninterpretedOption
|
320
|
-
class NamePart
|
321
|
-
required :string, :name_part, 1
|
322
|
-
required :bool, :is_extension, 2
|
323
|
-
end
|
324
|
-
|
325
|
-
repeated ::CSGoogle::Protobuf::UninterpretedOption::NamePart, :name, 2
|
326
|
-
optional :string, :identifier_value, 3
|
327
|
-
optional :uint64, :positive_int_value, 4
|
328
|
-
optional :int64, :negative_int_value, 5
|
329
|
-
optional :double, :double_value, 6
|
330
|
-
optional :bytes, :string_value, 7
|
331
|
-
optional :string, :aggregate_value, 8
|
332
|
-
end
|
333
|
-
|
334
|
-
class SourceCodeInfo
|
335
|
-
class Location
|
336
|
-
repeated :int32, :path, 1, :packed => true
|
337
|
-
repeated :int32, :span, 2, :packed => true
|
338
|
-
optional :string, :leading_comments, 3
|
339
|
-
optional :string, :trailing_comments, 4
|
340
|
-
repeated :string, :leading_detached_comments, 6
|
341
|
-
end
|
342
|
-
|
343
|
-
repeated ::CSGoogle::Protobuf::SourceCodeInfo::Location, :location, 1
|
344
|
-
end
|
345
|
-
|
346
|
-
class GeneratedCodeInfo
|
347
|
-
class Annotation
|
348
|
-
repeated :int32, :path, 1, :packed => true
|
349
|
-
optional :string, :source_file, 2
|
350
|
-
optional :int32, :begin, 3
|
351
|
-
optional :int32, :end, 4
|
352
|
-
end
|
353
|
-
|
354
|
-
repeated ::CSGoogle::Protobuf::GeneratedCodeInfo::Annotation, :annotation, 1
|
355
|
-
end
|
356
|
-
|
357
|
-
end
|
358
|
-
|
359
|
-
end
|
360
|
-
|
data/lib/protobuf/descriptors.rb
DELETED