generated_code.rb 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Generated by the protocol buffer compiler. DO NOT EDIT!
  2. # source: generated_code.proto
  3. require 'google/protobuf'
  4. Google::Protobuf::DescriptorPool.generated_pool.build do
  5. add_message "A.B.C.TestMessage" do
  6. optional :optional_int32, :int32, 1
  7. optional :optional_int64, :int64, 2
  8. optional :optional_uint32, :uint32, 3
  9. optional :optional_uint64, :uint64, 4
  10. optional :optional_bool, :bool, 5
  11. optional :optional_double, :double, 6
  12. optional :optional_float, :float, 7
  13. optional :optional_string, :string, 8
  14. optional :optional_bytes, :string, 9
  15. optional :optional_enum, :enum, 10, "A.B.C.TestEnum"
  16. optional :optional_msg, :message, 11, "A.B.C.TestMessage"
  17. repeated :repeated_int32, :int32, 21
  18. repeated :repeated_int64, :int64, 22
  19. repeated :repeated_uint32, :uint32, 23
  20. repeated :repeated_uint64, :uint64, 24
  21. repeated :repeated_bool, :bool, 25
  22. repeated :repeated_double, :double, 26
  23. repeated :repeated_float, :float, 27
  24. repeated :repeated_string, :string, 28
  25. repeated :repeated_bytes, :string, 29
  26. repeated :repeated_enum, :enum, 30, "A.B.C.TestEnum"
  27. repeated :repeated_msg, :message, 31, "A.B.C.TestMessage"
  28. map :map_int32_string, :int32, :string, 61
  29. map :map_int64_string, :int64, :string, 62
  30. map :map_uint32_string, :uint32, :string, 63
  31. map :map_uint64_string, :uint64, :string, 64
  32. map :map_bool_string, :bool, :string, 65
  33. map :map_string_string, :string, :string, 66
  34. map :map_string_msg, :string, :message, 67, "A.B.C.TestMessage"
  35. map :map_string_enum, :string, :enum, 68, "A.B.C.TestEnum"
  36. map :map_string_int32, :string, :int32, 69
  37. map :map_string_bool, :string, :bool, 70
  38. optional :nested_message, :message, 80, "A.B.C.TestMessage.NestedMessage"
  39. oneof :my_oneof do
  40. optional :oneof_int32, :int32, 41
  41. optional :oneof_int64, :int64, 42
  42. optional :oneof_uint32, :uint32, 43
  43. optional :oneof_uint64, :uint64, 44
  44. optional :oneof_bool, :bool, 45
  45. optional :oneof_double, :double, 46
  46. optional :oneof_float, :float, 47
  47. optional :oneof_string, :string, 48
  48. optional :oneof_bytes, :string, 49
  49. optional :oneof_enum, :enum, 50, "A.B.C.TestEnum"
  50. optional :oneof_msg, :message, 51, "A.B.C.TestMessage"
  51. end
  52. end
  53. add_message "A.B.C.TestMessage.NestedMessage" do
  54. optional :foo, :int32, 1
  55. end
  56. add_enum "A.B.C.TestEnum" do
  57. value :Default, 0
  58. value :A, 1
  59. value :B, 2
  60. value :C, 3
  61. end
  62. end
  63. module A
  64. module B
  65. module C
  66. TestMessage = Google::Protobuf::DescriptorPool.generated_pool.lookup("A.B.C.TestMessage").msgclass
  67. TestMessage::NestedMessage = Google::Protobuf::DescriptorPool.generated_pool.lookup("A.B.C.TestMessage.NestedMessage").msgclass
  68. TestEnum = Google::Protobuf::DescriptorPool.generated_pool.lookup("A.B.C.TestEnum").enummodule
  69. end
  70. end
  71. end