plugin.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: plugin.proto
  3. package plugin_go
  4. import proto "github.com/gogo/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
  17. // The version number of protocol compiler.
  18. type Version struct {
  19. Major *int32 `protobuf:"varint,1,opt,name=major" json:"major,omitempty"`
  20. Minor *int32 `protobuf:"varint,2,opt,name=minor" json:"minor,omitempty"`
  21. Patch *int32 `protobuf:"varint,3,opt,name=patch" json:"patch,omitempty"`
  22. // A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should
  23. // be empty for mainline stable releases.
  24. Suffix *string `protobuf:"bytes,4,opt,name=suffix" json:"suffix,omitempty"`
  25. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  26. XXX_unrecognized []byte `json:"-"`
  27. XXX_sizecache int32 `json:"-"`
  28. }
  29. func (m *Version) Reset() { *m = Version{} }
  30. func (m *Version) String() string { return proto.CompactTextString(m) }
  31. func (*Version) ProtoMessage() {}
  32. func (*Version) Descriptor() ([]byte, []int) {
  33. return fileDescriptor_plugin_ac234f81c61f07b3, []int{0}
  34. }
  35. func (m *Version) XXX_Unmarshal(b []byte) error {
  36. return xxx_messageInfo_Version.Unmarshal(m, b)
  37. }
  38. func (m *Version) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  39. return xxx_messageInfo_Version.Marshal(b, m, deterministic)
  40. }
  41. func (dst *Version) XXX_Merge(src proto.Message) {
  42. xxx_messageInfo_Version.Merge(dst, src)
  43. }
  44. func (m *Version) XXX_Size() int {
  45. return xxx_messageInfo_Version.Size(m)
  46. }
  47. func (m *Version) XXX_DiscardUnknown() {
  48. xxx_messageInfo_Version.DiscardUnknown(m)
  49. }
  50. var xxx_messageInfo_Version proto.InternalMessageInfo
  51. func (m *Version) GetMajor() int32 {
  52. if m != nil && m.Major != nil {
  53. return *m.Major
  54. }
  55. return 0
  56. }
  57. func (m *Version) GetMinor() int32 {
  58. if m != nil && m.Minor != nil {
  59. return *m.Minor
  60. }
  61. return 0
  62. }
  63. func (m *Version) GetPatch() int32 {
  64. if m != nil && m.Patch != nil {
  65. return *m.Patch
  66. }
  67. return 0
  68. }
  69. func (m *Version) GetSuffix() string {
  70. if m != nil && m.Suffix != nil {
  71. return *m.Suffix
  72. }
  73. return ""
  74. }
  75. // An encoded CodeGeneratorRequest is written to the plugin's stdin.
  76. type CodeGeneratorRequest struct {
  77. // The .proto files that were explicitly listed on the command-line. The
  78. // code generator should generate code only for these files. Each file's
  79. // descriptor will be included in proto_file, below.
  80. FileToGenerate []string `protobuf:"bytes,1,rep,name=file_to_generate,json=fileToGenerate" json:"file_to_generate,omitempty"`
  81. // The generator parameter passed on the command-line.
  82. Parameter *string `protobuf:"bytes,2,opt,name=parameter" json:"parameter,omitempty"`
  83. // FileDescriptorProtos for all files in files_to_generate and everything
  84. // they import. The files will appear in topological order, so each file
  85. // appears before any file that imports it.
  86. //
  87. // protoc guarantees that all proto_files will be written after
  88. // the fields above, even though this is not technically guaranteed by the
  89. // protobuf wire format. This theoretically could allow a plugin to stream
  90. // in the FileDescriptorProtos and handle them one by one rather than read
  91. // the entire set into memory at once. However, as of this writing, this
  92. // is not similarly optimized on protoc's end -- it will store all fields in
  93. // memory at once before sending them to the plugin.
  94. //
  95. // Type names of fields and extensions in the FileDescriptorProto are always
  96. // fully qualified.
  97. ProtoFile []*descriptor.FileDescriptorProto `protobuf:"bytes,15,rep,name=proto_file,json=protoFile" json:"proto_file,omitempty"`
  98. // The version number of protocol compiler.
  99. CompilerVersion *Version `protobuf:"bytes,3,opt,name=compiler_version,json=compilerVersion" json:"compiler_version,omitempty"`
  100. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  101. XXX_unrecognized []byte `json:"-"`
  102. XXX_sizecache int32 `json:"-"`
  103. }
  104. func (m *CodeGeneratorRequest) Reset() { *m = CodeGeneratorRequest{} }
  105. func (m *CodeGeneratorRequest) String() string { return proto.CompactTextString(m) }
  106. func (*CodeGeneratorRequest) ProtoMessage() {}
  107. func (*CodeGeneratorRequest) Descriptor() ([]byte, []int) {
  108. return fileDescriptor_plugin_ac234f81c61f07b3, []int{1}
  109. }
  110. func (m *CodeGeneratorRequest) XXX_Unmarshal(b []byte) error {
  111. return xxx_messageInfo_CodeGeneratorRequest.Unmarshal(m, b)
  112. }
  113. func (m *CodeGeneratorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  114. return xxx_messageInfo_CodeGeneratorRequest.Marshal(b, m, deterministic)
  115. }
  116. func (dst *CodeGeneratorRequest) XXX_Merge(src proto.Message) {
  117. xxx_messageInfo_CodeGeneratorRequest.Merge(dst, src)
  118. }
  119. func (m *CodeGeneratorRequest) XXX_Size() int {
  120. return xxx_messageInfo_CodeGeneratorRequest.Size(m)
  121. }
  122. func (m *CodeGeneratorRequest) XXX_DiscardUnknown() {
  123. xxx_messageInfo_CodeGeneratorRequest.DiscardUnknown(m)
  124. }
  125. var xxx_messageInfo_CodeGeneratorRequest proto.InternalMessageInfo
  126. func (m *CodeGeneratorRequest) GetFileToGenerate() []string {
  127. if m != nil {
  128. return m.FileToGenerate
  129. }
  130. return nil
  131. }
  132. func (m *CodeGeneratorRequest) GetParameter() string {
  133. if m != nil && m.Parameter != nil {
  134. return *m.Parameter
  135. }
  136. return ""
  137. }
  138. func (m *CodeGeneratorRequest) GetProtoFile() []*descriptor.FileDescriptorProto {
  139. if m != nil {
  140. return m.ProtoFile
  141. }
  142. return nil
  143. }
  144. func (m *CodeGeneratorRequest) GetCompilerVersion() *Version {
  145. if m != nil {
  146. return m.CompilerVersion
  147. }
  148. return nil
  149. }
  150. // The plugin writes an encoded CodeGeneratorResponse to stdout.
  151. type CodeGeneratorResponse struct {
  152. // Error message. If non-empty, code generation failed. The plugin process
  153. // should exit with status code zero even if it reports an error in this way.
  154. //
  155. // This should be used to indicate errors in .proto files which prevent the
  156. // code generator from generating correct code. Errors which indicate a
  157. // problem in protoc itself -- such as the input CodeGeneratorRequest being
  158. // unparseable -- should be reported by writing a message to stderr and
  159. // exiting with a non-zero status code.
  160. Error *string `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"`
  161. File []*CodeGeneratorResponse_File `protobuf:"bytes,15,rep,name=file" json:"file,omitempty"`
  162. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  163. XXX_unrecognized []byte `json:"-"`
  164. XXX_sizecache int32 `json:"-"`
  165. }
  166. func (m *CodeGeneratorResponse) Reset() { *m = CodeGeneratorResponse{} }
  167. func (m *CodeGeneratorResponse) String() string { return proto.CompactTextString(m) }
  168. func (*CodeGeneratorResponse) ProtoMessage() {}
  169. func (*CodeGeneratorResponse) Descriptor() ([]byte, []int) {
  170. return fileDescriptor_plugin_ac234f81c61f07b3, []int{2}
  171. }
  172. func (m *CodeGeneratorResponse) XXX_Unmarshal(b []byte) error {
  173. return xxx_messageInfo_CodeGeneratorResponse.Unmarshal(m, b)
  174. }
  175. func (m *CodeGeneratorResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  176. return xxx_messageInfo_CodeGeneratorResponse.Marshal(b, m, deterministic)
  177. }
  178. func (dst *CodeGeneratorResponse) XXX_Merge(src proto.Message) {
  179. xxx_messageInfo_CodeGeneratorResponse.Merge(dst, src)
  180. }
  181. func (m *CodeGeneratorResponse) XXX_Size() int {
  182. return xxx_messageInfo_CodeGeneratorResponse.Size(m)
  183. }
  184. func (m *CodeGeneratorResponse) XXX_DiscardUnknown() {
  185. xxx_messageInfo_CodeGeneratorResponse.DiscardUnknown(m)
  186. }
  187. var xxx_messageInfo_CodeGeneratorResponse proto.InternalMessageInfo
  188. func (m *CodeGeneratorResponse) GetError() string {
  189. if m != nil && m.Error != nil {
  190. return *m.Error
  191. }
  192. return ""
  193. }
  194. func (m *CodeGeneratorResponse) GetFile() []*CodeGeneratorResponse_File {
  195. if m != nil {
  196. return m.File
  197. }
  198. return nil
  199. }
  200. // Represents a single generated file.
  201. type CodeGeneratorResponse_File struct {
  202. // The file name, relative to the output directory. The name must not
  203. // contain "." or ".." components and must be relative, not be absolute (so,
  204. // the file cannot lie outside the output directory). "/" must be used as
  205. // the path separator, not "\".
  206. //
  207. // If the name is omitted, the content will be appended to the previous
  208. // file. This allows the generator to break large files into small chunks,
  209. // and allows the generated text to be streamed back to protoc so that large
  210. // files need not reside completely in memory at one time. Note that as of
  211. // this writing protoc does not optimize for this -- it will read the entire
  212. // CodeGeneratorResponse before writing files to disk.
  213. Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  214. // If non-empty, indicates that the named file should already exist, and the
  215. // content here is to be inserted into that file at a defined insertion
  216. // point. This feature allows a code generator to extend the output
  217. // produced by another code generator. The original generator may provide
  218. // insertion points by placing special annotations in the file that look
  219. // like:
  220. // @@protoc_insertion_point(NAME)
  221. // The annotation can have arbitrary text before and after it on the line,
  222. // which allows it to be placed in a comment. NAME should be replaced with
  223. // an identifier naming the point -- this is what other generators will use
  224. // as the insertion_point. Code inserted at this point will be placed
  225. // immediately above the line containing the insertion point (thus multiple
  226. // insertions to the same point will come out in the order they were added).
  227. // The double-@ is intended to make it unlikely that the generated code
  228. // could contain things that look like insertion points by accident.
  229. //
  230. // For example, the C++ code generator places the following line in the
  231. // .pb.h files that it generates:
  232. // // @@protoc_insertion_point(namespace_scope)
  233. // This line appears within the scope of the file's package namespace, but
  234. // outside of any particular class. Another plugin can then specify the
  235. // insertion_point "namespace_scope" to generate additional classes or
  236. // other declarations that should be placed in this scope.
  237. //
  238. // Note that if the line containing the insertion point begins with
  239. // whitespace, the same whitespace will be added to every line of the
  240. // inserted text. This is useful for languages like Python, where
  241. // indentation matters. In these languages, the insertion point comment
  242. // should be indented the same amount as any inserted code will need to be
  243. // in order to work correctly in that context.
  244. //
  245. // The code generator that generates the initial file and the one which
  246. // inserts into it must both run as part of a single invocation of protoc.
  247. // Code generators are executed in the order in which they appear on the
  248. // command line.
  249. //
  250. // If |insertion_point| is present, |name| must also be present.
  251. InsertionPoint *string `protobuf:"bytes,2,opt,name=insertion_point,json=insertionPoint" json:"insertion_point,omitempty"`
  252. // The file contents.
  253. Content *string `protobuf:"bytes,15,opt,name=content" json:"content,omitempty"`
  254. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  255. XXX_unrecognized []byte `json:"-"`
  256. XXX_sizecache int32 `json:"-"`
  257. }
  258. func (m *CodeGeneratorResponse_File) Reset() { *m = CodeGeneratorResponse_File{} }
  259. func (m *CodeGeneratorResponse_File) String() string { return proto.CompactTextString(m) }
  260. func (*CodeGeneratorResponse_File) ProtoMessage() {}
  261. func (*CodeGeneratorResponse_File) Descriptor() ([]byte, []int) {
  262. return fileDescriptor_plugin_ac234f81c61f07b3, []int{2, 0}
  263. }
  264. func (m *CodeGeneratorResponse_File) XXX_Unmarshal(b []byte) error {
  265. return xxx_messageInfo_CodeGeneratorResponse_File.Unmarshal(m, b)
  266. }
  267. func (m *CodeGeneratorResponse_File) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  268. return xxx_messageInfo_CodeGeneratorResponse_File.Marshal(b, m, deterministic)
  269. }
  270. func (dst *CodeGeneratorResponse_File) XXX_Merge(src proto.Message) {
  271. xxx_messageInfo_CodeGeneratorResponse_File.Merge(dst, src)
  272. }
  273. func (m *CodeGeneratorResponse_File) XXX_Size() int {
  274. return xxx_messageInfo_CodeGeneratorResponse_File.Size(m)
  275. }
  276. func (m *CodeGeneratorResponse_File) XXX_DiscardUnknown() {
  277. xxx_messageInfo_CodeGeneratorResponse_File.DiscardUnknown(m)
  278. }
  279. var xxx_messageInfo_CodeGeneratorResponse_File proto.InternalMessageInfo
  280. func (m *CodeGeneratorResponse_File) GetName() string {
  281. if m != nil && m.Name != nil {
  282. return *m.Name
  283. }
  284. return ""
  285. }
  286. func (m *CodeGeneratorResponse_File) GetInsertionPoint() string {
  287. if m != nil && m.InsertionPoint != nil {
  288. return *m.InsertionPoint
  289. }
  290. return ""
  291. }
  292. func (m *CodeGeneratorResponse_File) GetContent() string {
  293. if m != nil && m.Content != nil {
  294. return *m.Content
  295. }
  296. return ""
  297. }
  298. func init() {
  299. proto.RegisterType((*Version)(nil), "google.protobuf.compiler.Version")
  300. proto.RegisterType((*CodeGeneratorRequest)(nil), "google.protobuf.compiler.CodeGeneratorRequest")
  301. proto.RegisterType((*CodeGeneratorResponse)(nil), "google.protobuf.compiler.CodeGeneratorResponse")
  302. proto.RegisterType((*CodeGeneratorResponse_File)(nil), "google.protobuf.compiler.CodeGeneratorResponse.File")
  303. }
  304. func init() { proto.RegisterFile("plugin.proto", fileDescriptor_plugin_ac234f81c61f07b3) }
  305. var fileDescriptor_plugin_ac234f81c61f07b3 = []byte{
  306. // 383 bytes of a gzipped FileDescriptorProto
  307. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xcd, 0x6a, 0xd5, 0x40,
  308. 0x14, 0xc7, 0x89, 0x37, 0xb5, 0xe4, 0xb4, 0x34, 0x65, 0xa8, 0x32, 0x94, 0x2e, 0xe2, 0x45, 0x30,
  309. 0xab, 0x14, 0x8a, 0xe0, 0xbe, 0x15, 0x75, 0xe1, 0xe2, 0x32, 0x88, 0x0b, 0x41, 0x42, 0x4c, 0x4f,
  310. 0xe2, 0x48, 0x32, 0x67, 0x9c, 0x99, 0x88, 0x4f, 0xea, 0x7b, 0xf8, 0x06, 0x32, 0x1f, 0xa9, 0x72,
  311. 0xf1, 0xee, 0xe6, 0xff, 0x3b, 0xf3, 0x71, 0xce, 0x8f, 0x81, 0x53, 0x3d, 0x2d, 0xa3, 0x54, 0x8d,
  312. 0x36, 0xe4, 0x88, 0xf1, 0x91, 0x68, 0x9c, 0x30, 0xa6, 0x2f, 0xcb, 0xd0, 0xf4, 0x34, 0x6b, 0x39,
  313. 0xa1, 0xb9, 0xac, 0x62, 0xe5, 0x7a, 0xad, 0x5c, 0xdf, 0xa3, 0xed, 0x8d, 0xd4, 0x8e, 0x4c, 0xdc,
  314. 0xbd, 0xed, 0xe1, 0xf8, 0x23, 0x1a, 0x2b, 0x49, 0xb1, 0x0b, 0x38, 0x9a, 0xbb, 0x6f, 0x64, 0x78,
  315. 0x56, 0x65, 0xf5, 0x91, 0x88, 0x21, 0x50, 0xa9, 0xc8, 0xf0, 0x47, 0x89, 0xfa, 0xe0, 0xa9, 0xee,
  316. 0x5c, 0xff, 0x95, 0x6f, 0x22, 0x0d, 0x81, 0x3d, 0x85, 0xc7, 0x76, 0x19, 0x06, 0xf9, 0x93, 0xe7,
  317. 0x55, 0x56, 0x17, 0x22, 0xa5, 0xed, 0xef, 0x0c, 0x2e, 0xee, 0xe8, 0x1e, 0xdf, 0xa2, 0x42, 0xd3,
  318. 0x39, 0x32, 0x02, 0xbf, 0x2f, 0x68, 0x1d, 0xab, 0xe1, 0x7c, 0x90, 0x13, 0xb6, 0x8e, 0xda, 0x31,
  319. 0xd6, 0x90, 0x67, 0xd5, 0xa6, 0x2e, 0xc4, 0x99, 0xe7, 0x1f, 0x28, 0x9d, 0x40, 0x76, 0x05, 0x85,
  320. 0xee, 0x4c, 0x37, 0xa3, 0xc3, 0xd8, 0x4a, 0x21, 0xfe, 0x02, 0x76, 0x07, 0x10, 0xc6, 0x69, 0xfd,
  321. 0x29, 0x5e, 0x56, 0x9b, 0xfa, 0xe4, 0xe6, 0x79, 0xb3, 0xaf, 0xe5, 0x8d, 0x9c, 0xf0, 0xf5, 0x83,
  322. 0x80, 0x9d, 0xc7, 0xa2, 0x08, 0x55, 0x5f, 0x61, 0xef, 0xe1, 0x7c, 0x15, 0xd7, 0xfe, 0x88, 0x4e,
  323. 0xc2, 0x78, 0x27, 0x37, 0xcf, 0x9a, 0x43, 0x86, 0x9b, 0x24, 0x4f, 0x94, 0x2b, 0x49, 0x60, 0xfb,
  324. 0x2b, 0x83, 0x27, 0x7b, 0x33, 0x5b, 0x4d, 0xca, 0xa2, 0x77, 0x87, 0xc6, 0x24, 0xcf, 0x85, 0x88,
  325. 0x81, 0xbd, 0x83, 0xfc, 0x9f, 0xe6, 0x5f, 0x1e, 0x7e, 0xf1, 0xbf, 0x97, 0x86, 0xd9, 0x44, 0xb8,
  326. 0xe1, 0xf2, 0x33, 0xe4, 0x61, 0x1e, 0x06, 0xb9, 0xea, 0x66, 0x4c, 0xcf, 0x84, 0x35, 0x7b, 0x01,
  327. 0xa5, 0x54, 0x16, 0x8d, 0x93, 0xa4, 0x5a, 0x4d, 0x52, 0xb9, 0x24, 0xf3, 0xec, 0x01, 0xef, 0x3c,
  328. 0x65, 0x1c, 0x8e, 0x7b, 0x52, 0x0e, 0x95, 0xe3, 0x65, 0xd8, 0xb0, 0xc6, 0xdb, 0x57, 0x70, 0xd5,
  329. 0xd3, 0x7c, 0xb0, 0xbf, 0xdb, 0xd3, 0x5d, 0xf8, 0x9b, 0x41, 0xaf, 0xfd, 0x54, 0xc4, 0x9f, 0xda,
  330. 0x8e, 0xf4, 0x27, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x72, 0x3d, 0x18, 0xb5, 0x02, 0x00, 0x00,
  331. }