gogo.proto 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. // Protocol Buffers for Go with Gadgets
  2. //
  3. // Copyright (c) 2013, The GoGo Authors. All rights reserved.
  4. // http://github.com/gogo/protobuf
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. //
  17. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. syntax = "proto2";
  29. package gogoproto;
  30. import "google/protobuf/descriptor.proto";
  31. option java_package = "com.google.protobuf";
  32. option java_outer_classname = "GoGoProtos";
  33. option go_package = "github.com/gogo/protobuf/gogoproto";
  34. extend google.protobuf.EnumOptions {
  35. optional bool goproto_enum_prefix = 62001;
  36. optional bool goproto_enum_stringer = 62021;
  37. optional bool enum_stringer = 62022;
  38. optional string enum_customname = 62023;
  39. optional bool enumdecl = 62024;
  40. }
  41. extend google.protobuf.EnumValueOptions {
  42. optional string enumvalue_customname = 66001;
  43. }
  44. extend google.protobuf.FileOptions {
  45. optional bool goproto_getters_all = 63001;
  46. optional bool goproto_enum_prefix_all = 63002;
  47. optional bool goproto_stringer_all = 63003;
  48. optional bool verbose_equal_all = 63004;
  49. optional bool face_all = 63005;
  50. optional bool gostring_all = 63006;
  51. optional bool populate_all = 63007;
  52. optional bool stringer_all = 63008;
  53. optional bool onlyone_all = 63009;
  54. optional bool equal_all = 63013;
  55. optional bool description_all = 63014;
  56. optional bool testgen_all = 63015;
  57. optional bool benchgen_all = 63016;
  58. optional bool marshaler_all = 63017;
  59. optional bool unmarshaler_all = 63018;
  60. optional bool stable_marshaler_all = 63019;
  61. optional bool sizer_all = 63020;
  62. optional bool goproto_enum_stringer_all = 63021;
  63. optional bool enum_stringer_all = 63022;
  64. optional bool unsafe_marshaler_all = 63023;
  65. optional bool unsafe_unmarshaler_all = 63024;
  66. optional bool goproto_extensions_map_all = 63025;
  67. optional bool goproto_unrecognized_all = 63026;
  68. optional bool gogoproto_import = 63027;
  69. optional bool protosizer_all = 63028;
  70. optional bool compare_all = 63029;
  71. optional bool typedecl_all = 63030;
  72. optional bool enumdecl_all = 63031;
  73. optional bool goproto_registration = 63032;
  74. optional bool messagename_all = 63033;
  75. }
  76. extend google.protobuf.MessageOptions {
  77. optional bool goproto_getters = 64001;
  78. optional bool goproto_stringer = 64003;
  79. optional bool verbose_equal = 64004;
  80. optional bool face = 64005;
  81. optional bool gostring = 64006;
  82. optional bool populate = 64007;
  83. optional bool stringer = 67008;
  84. optional bool onlyone = 64009;
  85. optional bool equal = 64013;
  86. optional bool description = 64014;
  87. optional bool testgen = 64015;
  88. optional bool benchgen = 64016;
  89. optional bool marshaler = 64017;
  90. optional bool unmarshaler = 64018;
  91. optional bool stable_marshaler = 64019;
  92. optional bool sizer = 64020;
  93. optional bool unsafe_marshaler = 64023;
  94. optional bool unsafe_unmarshaler = 64024;
  95. optional bool goproto_extensions_map = 64025;
  96. optional bool goproto_unrecognized = 64026;
  97. optional bool protosizer = 64028;
  98. optional bool compare = 64029;
  99. optional bool typedecl = 64030;
  100. optional bool messagename = 64033;
  101. }
  102. extend google.protobuf.FieldOptions {
  103. optional bool nullable = 65001;
  104. optional bool embed = 65002;
  105. optional string customtype = 65003;
  106. optional string customname = 65004;
  107. optional string jsontag = 65005;
  108. optional string moretags = 65006;
  109. optional string casttype = 65007;
  110. optional string castkey = 65008;
  111. optional string castvalue = 65009;
  112. optional bool stdtime = 65010;
  113. optional bool stdduration = 65011;
  114. }