unmarshal.go 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377
  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. /*
  29. The unmarshal plugin generates a Unmarshal method for each message.
  30. The `Unmarshal([]byte) error` method results in the fact that the message
  31. implements the Unmarshaler interface.
  32. The allows proto.Unmarshal to be faster by calling the generated Unmarshal method rather than using reflect.
  33. If is enabled by the following extensions:
  34. - unmarshaler
  35. - unmarshaler_all
  36. Or the following extensions:
  37. - unsafe_unmarshaler
  38. - unsafe_unmarshaler_all
  39. That is if you want to use the unsafe package in your generated code.
  40. The speed up using the unsafe package is not very significant.
  41. The generation of unmarshalling tests are enabled using one of the following extensions:
  42. - testgen
  43. - testgen_all
  44. And benchmarks given it is enabled using one of the following extensions:
  45. - benchgen
  46. - benchgen_all
  47. Let us look at:
  48. github.com/gogo/protobuf/test/example/example.proto
  49. Btw all the output can be seen at:
  50. github.com/gogo/protobuf/test/example/*
  51. The following message:
  52. option (gogoproto.unmarshaler_all) = true;
  53. message B {
  54. option (gogoproto.description) = true;
  55. optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true];
  56. repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false];
  57. }
  58. given to the unmarshal plugin, will generate the following code:
  59. func (m *B) Unmarshal(dAtA []byte) error {
  60. l := len(dAtA)
  61. iNdEx := 0
  62. for iNdEx < l {
  63. var wire uint64
  64. for shift := uint(0); ; shift += 7 {
  65. if iNdEx >= l {
  66. return io.ErrUnexpectedEOF
  67. }
  68. b := dAtA[iNdEx]
  69. iNdEx++
  70. wire |= (uint64(b) & 0x7F) << shift
  71. if b < 0x80 {
  72. break
  73. }
  74. }
  75. fieldNum := int32(wire >> 3)
  76. wireType := int(wire & 0x7)
  77. switch fieldNum {
  78. case 1:
  79. if wireType != 2 {
  80. return proto.ErrWrongType
  81. }
  82. var msglen int
  83. for shift := uint(0); ; shift += 7 {
  84. if iNdEx >= l {
  85. return io.ErrUnexpectedEOF
  86. }
  87. b := dAtA[iNdEx]
  88. iNdEx++
  89. msglen |= (int(b) & 0x7F) << shift
  90. if b < 0x80 {
  91. break
  92. }
  93. }
  94. postIndex := iNdEx + msglen
  95. if postIndex > l {
  96. return io.ErrUnexpectedEOF
  97. }
  98. if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  99. return err
  100. }
  101. iNdEx = postIndex
  102. case 2:
  103. if wireType != 2 {
  104. return proto.ErrWrongType
  105. }
  106. var byteLen int
  107. for shift := uint(0); ; shift += 7 {
  108. if iNdEx >= l {
  109. return io.ErrUnexpectedEOF
  110. }
  111. b := dAtA[iNdEx]
  112. iNdEx++
  113. byteLen |= (int(b) & 0x7F) << shift
  114. if b < 0x80 {
  115. break
  116. }
  117. }
  118. postIndex := iNdEx + byteLen
  119. if postIndex > l {
  120. return io.ErrUnexpectedEOF
  121. }
  122. m.G = append(m.G, github_com_gogo_protobuf_test_custom.Uint128{})
  123. if err := m.G[len(m.G)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  124. return err
  125. }
  126. iNdEx = postIndex
  127. default:
  128. var sizeOfWire int
  129. for {
  130. sizeOfWire++
  131. wire >>= 7
  132. if wire == 0 {
  133. break
  134. }
  135. }
  136. iNdEx -= sizeOfWire
  137. skippy, err := skip(dAtA[iNdEx:])
  138. if err != nil {
  139. return err
  140. }
  141. if (iNdEx + skippy) > l {
  142. return io.ErrUnexpectedEOF
  143. }
  144. m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
  145. iNdEx += skippy
  146. }
  147. }
  148. return nil
  149. }
  150. Remember when using this code to call proto.Unmarshal.
  151. This will call m.Reset and invoke the generated Unmarshal method for you.
  152. If you call m.Unmarshal without m.Reset you could be merging protocol buffers.
  153. */
  154. package unmarshal
  155. import (
  156. "fmt"
  157. "strconv"
  158. "strings"
  159. "github.com/gogo/protobuf/gogoproto"
  160. "github.com/gogo/protobuf/proto"
  161. descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
  162. "github.com/gogo/protobuf/protoc-gen-gogo/generator"
  163. )
  164. type unmarshal struct {
  165. *generator.Generator
  166. generator.PluginImports
  167. atleastOne bool
  168. ioPkg generator.Single
  169. mathPkg generator.Single
  170. typesPkg generator.Single
  171. binaryPkg generator.Single
  172. localName string
  173. }
  174. func NewUnmarshal() *unmarshal {
  175. return &unmarshal{}
  176. }
  177. func (p *unmarshal) Name() string {
  178. return "unmarshal"
  179. }
  180. func (p *unmarshal) Init(g *generator.Generator) {
  181. p.Generator = g
  182. }
  183. func (p *unmarshal) decodeVarint(varName string, typName string) {
  184. p.P(`for shift := uint(0); ; shift += 7 {`)
  185. p.In()
  186. p.P(`if shift >= 64 {`)
  187. p.In()
  188. p.P(`return ErrIntOverflow` + p.localName)
  189. p.Out()
  190. p.P(`}`)
  191. p.P(`if iNdEx >= l {`)
  192. p.In()
  193. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  194. p.Out()
  195. p.P(`}`)
  196. p.P(`b := dAtA[iNdEx]`)
  197. p.P(`iNdEx++`)
  198. p.P(varName, ` |= (`, typName, `(b) & 0x7F) << shift`)
  199. p.P(`if b < 0x80 {`)
  200. p.In()
  201. p.P(`break`)
  202. p.Out()
  203. p.P(`}`)
  204. p.Out()
  205. p.P(`}`)
  206. }
  207. func (p *unmarshal) decodeFixed32(varName string, typeName string) {
  208. p.P(`if (iNdEx+4) > l {`)
  209. p.In()
  210. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  211. p.Out()
  212. p.P(`}`)
  213. p.P(varName, ` = `, typeName, `(`, p.binaryPkg.Use(), `.LittleEndian.Uint32(dAtA[iNdEx:]))`)
  214. p.P(`iNdEx += 4`)
  215. }
  216. func (p *unmarshal) decodeFixed64(varName string, typeName string) {
  217. p.P(`if (iNdEx+8) > l {`)
  218. p.In()
  219. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  220. p.Out()
  221. p.P(`}`)
  222. p.P(varName, ` = `, typeName, `(`, p.binaryPkg.Use(), `.LittleEndian.Uint64(dAtA[iNdEx:]))`)
  223. p.P(`iNdEx += 8`)
  224. }
  225. func (p *unmarshal) declareMapField(varName string, nullable bool, customType bool, field *descriptor.FieldDescriptorProto) {
  226. switch field.GetType() {
  227. case descriptor.FieldDescriptorProto_TYPE_DOUBLE:
  228. p.P(`var `, varName, ` float64`)
  229. case descriptor.FieldDescriptorProto_TYPE_FLOAT:
  230. p.P(`var `, varName, ` float32`)
  231. case descriptor.FieldDescriptorProto_TYPE_INT64:
  232. p.P(`var `, varName, ` int64`)
  233. case descriptor.FieldDescriptorProto_TYPE_UINT64:
  234. p.P(`var `, varName, ` uint64`)
  235. case descriptor.FieldDescriptorProto_TYPE_INT32:
  236. p.P(`var `, varName, ` int32`)
  237. case descriptor.FieldDescriptorProto_TYPE_FIXED64:
  238. p.P(`var `, varName, ` uint64`)
  239. case descriptor.FieldDescriptorProto_TYPE_FIXED32:
  240. p.P(`var `, varName, ` uint32`)
  241. case descriptor.FieldDescriptorProto_TYPE_BOOL:
  242. p.P(`var `, varName, ` bool`)
  243. case descriptor.FieldDescriptorProto_TYPE_STRING:
  244. cast, _ := p.GoType(nil, field)
  245. cast = strings.Replace(cast, "*", "", 1)
  246. p.P(`var `, varName, ` `, cast)
  247. case descriptor.FieldDescriptorProto_TYPE_MESSAGE:
  248. if gogoproto.IsStdTime(field) {
  249. p.P(varName, ` := new(time.Time)`)
  250. } else if gogoproto.IsStdDuration(field) {
  251. p.P(varName, ` := new(time.Duration)`)
  252. } else {
  253. desc := p.ObjectNamed(field.GetTypeName())
  254. msgname := p.TypeName(desc)
  255. if nullable {
  256. p.P(`var `, varName, ` *`, msgname)
  257. } else {
  258. p.P(varName, ` := &`, msgname, `{}`)
  259. }
  260. }
  261. case descriptor.FieldDescriptorProto_TYPE_BYTES:
  262. if customType {
  263. _, ctyp, err := generator.GetCustomType(field)
  264. if err != nil {
  265. panic(err)
  266. }
  267. p.P(`var `, varName, `1 `, ctyp)
  268. p.P(`var `, varName, ` = &`, varName, `1`)
  269. } else {
  270. p.P(varName, ` := []byte{}`)
  271. }
  272. case descriptor.FieldDescriptorProto_TYPE_UINT32:
  273. p.P(`var `, varName, ` uint32`)
  274. case descriptor.FieldDescriptorProto_TYPE_ENUM:
  275. typName := p.TypeName(p.ObjectNamed(field.GetTypeName()))
  276. p.P(`var `, varName, ` `, typName)
  277. case descriptor.FieldDescriptorProto_TYPE_SFIXED32:
  278. p.P(`var `, varName, ` int32`)
  279. case descriptor.FieldDescriptorProto_TYPE_SFIXED64:
  280. p.P(`var `, varName, ` int64`)
  281. case descriptor.FieldDescriptorProto_TYPE_SINT32:
  282. p.P(`var `, varName, ` int32`)
  283. case descriptor.FieldDescriptorProto_TYPE_SINT64:
  284. p.P(`var `, varName, ` int64`)
  285. }
  286. }
  287. func (p *unmarshal) mapField(varName string, customType bool, field *descriptor.FieldDescriptorProto) {
  288. switch field.GetType() {
  289. case descriptor.FieldDescriptorProto_TYPE_DOUBLE:
  290. p.P(`var `, varName, `temp uint64`)
  291. p.decodeFixed64(varName+"temp", "uint64")
  292. p.P(varName, ` = `, p.mathPkg.Use(), `.Float64frombits(`, varName, `temp)`)
  293. case descriptor.FieldDescriptorProto_TYPE_FLOAT:
  294. p.P(`var `, varName, `temp uint32`)
  295. p.decodeFixed32(varName+"temp", "uint32")
  296. p.P(varName, ` = `, p.mathPkg.Use(), `.Float32frombits(`, varName, `temp)`)
  297. case descriptor.FieldDescriptorProto_TYPE_INT64:
  298. p.decodeVarint(varName, "int64")
  299. case descriptor.FieldDescriptorProto_TYPE_UINT64:
  300. p.decodeVarint(varName, "uint64")
  301. case descriptor.FieldDescriptorProto_TYPE_INT32:
  302. p.decodeVarint(varName, "int32")
  303. case descriptor.FieldDescriptorProto_TYPE_FIXED64:
  304. p.decodeFixed64(varName, "uint64")
  305. case descriptor.FieldDescriptorProto_TYPE_FIXED32:
  306. p.decodeFixed32(varName, "uint32")
  307. case descriptor.FieldDescriptorProto_TYPE_BOOL:
  308. p.P(`var `, varName, `temp int`)
  309. p.decodeVarint(varName+"temp", "int")
  310. p.P(varName, ` = bool(`, varName, `temp != 0)`)
  311. case descriptor.FieldDescriptorProto_TYPE_STRING:
  312. p.P(`var stringLen`, varName, ` uint64`)
  313. p.decodeVarint("stringLen"+varName, "uint64")
  314. p.P(`intStringLen`, varName, ` := int(stringLen`, varName, `)`)
  315. p.P(`if intStringLen`, varName, ` < 0 {`)
  316. p.In()
  317. p.P(`return ErrInvalidLength` + p.localName)
  318. p.Out()
  319. p.P(`}`)
  320. p.P(`postStringIndex`, varName, ` := iNdEx + intStringLen`, varName)
  321. p.P(`if postStringIndex`, varName, ` > l {`)
  322. p.In()
  323. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  324. p.Out()
  325. p.P(`}`)
  326. cast, _ := p.GoType(nil, field)
  327. cast = strings.Replace(cast, "*", "", 1)
  328. p.P(varName, ` = `, cast, `(dAtA[iNdEx:postStringIndex`, varName, `])`)
  329. p.P(`iNdEx = postStringIndex`, varName)
  330. case descriptor.FieldDescriptorProto_TYPE_MESSAGE:
  331. p.P(`var mapmsglen int`)
  332. p.decodeVarint("mapmsglen", "int")
  333. p.P(`if mapmsglen < 0 {`)
  334. p.In()
  335. p.P(`return ErrInvalidLength` + p.localName)
  336. p.Out()
  337. p.P(`}`)
  338. p.P(`postmsgIndex := iNdEx + mapmsglen`)
  339. p.P(`if mapmsglen < 0 {`)
  340. p.In()
  341. p.P(`return ErrInvalidLength` + p.localName)
  342. p.Out()
  343. p.P(`}`)
  344. p.P(`if postmsgIndex > l {`)
  345. p.In()
  346. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  347. p.Out()
  348. p.P(`}`)
  349. buf := `dAtA[iNdEx:postmsgIndex]`
  350. if gogoproto.IsStdTime(field) {
  351. p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(`, varName, `, `, buf, `); err != nil {`)
  352. } else if gogoproto.IsStdDuration(field) {
  353. p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(`, varName, `, `, buf, `); err != nil {`)
  354. } else {
  355. desc := p.ObjectNamed(field.GetTypeName())
  356. msgname := p.TypeName(desc)
  357. p.P(varName, ` = &`, msgname, `{}`)
  358. p.P(`if err := `, varName, `.Unmarshal(`, buf, `); err != nil {`)
  359. }
  360. p.In()
  361. p.P(`return err`)
  362. p.Out()
  363. p.P(`}`)
  364. p.P(`iNdEx = postmsgIndex`)
  365. case descriptor.FieldDescriptorProto_TYPE_BYTES:
  366. p.P(`var mapbyteLen uint64`)
  367. p.decodeVarint("mapbyteLen", "uint64")
  368. p.P(`intMapbyteLen := int(mapbyteLen)`)
  369. p.P(`if intMapbyteLen < 0 {`)
  370. p.In()
  371. p.P(`return ErrInvalidLength` + p.localName)
  372. p.Out()
  373. p.P(`}`)
  374. p.P(`postbytesIndex := iNdEx + intMapbyteLen`)
  375. p.P(`if postbytesIndex > l {`)
  376. p.In()
  377. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  378. p.Out()
  379. p.P(`}`)
  380. if customType {
  381. p.P(`if err := `, varName, `.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil {`)
  382. p.In()
  383. p.P(`return err`)
  384. p.Out()
  385. p.P(`}`)
  386. } else {
  387. p.P(varName, ` = make([]byte, mapbyteLen)`)
  388. p.P(`copy(`, varName, `, dAtA[iNdEx:postbytesIndex])`)
  389. }
  390. p.P(`iNdEx = postbytesIndex`)
  391. case descriptor.FieldDescriptorProto_TYPE_UINT32:
  392. p.decodeVarint(varName, "uint32")
  393. case descriptor.FieldDescriptorProto_TYPE_ENUM:
  394. typName := p.TypeName(p.ObjectNamed(field.GetTypeName()))
  395. p.decodeVarint(varName, typName)
  396. case descriptor.FieldDescriptorProto_TYPE_SFIXED32:
  397. p.decodeFixed32(varName, "int32")
  398. case descriptor.FieldDescriptorProto_TYPE_SFIXED64:
  399. p.decodeFixed64(varName, "int64")
  400. case descriptor.FieldDescriptorProto_TYPE_SINT32:
  401. p.P(`var `, varName, `temp int32`)
  402. p.decodeVarint(varName+"temp", "int32")
  403. p.P(varName, `temp = int32((uint32(`, varName, `temp) >> 1) ^ uint32(((`, varName, `temp&1)<<31)>>31))`)
  404. p.P(varName, ` = int32(`, varName, `temp)`)
  405. case descriptor.FieldDescriptorProto_TYPE_SINT64:
  406. p.P(`var `, varName, `temp uint64`)
  407. p.decodeVarint(varName+"temp", "uint64")
  408. p.P(varName, `temp = (`, varName, `temp >> 1) ^ uint64((int64(`, varName, `temp&1)<<63)>>63)`)
  409. p.P(varName, ` = int64(`, varName, `temp)`)
  410. }
  411. }
  412. func (p *unmarshal) noStarOrSliceType(msg *generator.Descriptor, field *descriptor.FieldDescriptorProto) string {
  413. typ, _ := p.GoType(msg, field)
  414. if typ[0] == '*' {
  415. return typ[1:]
  416. }
  417. if typ[0] == '[' && typ[1] == ']' {
  418. return typ[2:]
  419. }
  420. return typ
  421. }
  422. func (p *unmarshal) field(file *generator.FileDescriptor, msg *generator.Descriptor, field *descriptor.FieldDescriptorProto, fieldname string, proto3 bool) {
  423. repeated := field.IsRepeated()
  424. nullable := gogoproto.IsNullable(field)
  425. typ := p.noStarOrSliceType(msg, field)
  426. oneof := field.OneofIndex != nil
  427. switch *field.Type {
  428. case descriptor.FieldDescriptorProto_TYPE_DOUBLE:
  429. p.P(`var v uint64`)
  430. p.decodeFixed64("v", "uint64")
  431. if oneof {
  432. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))}`)
  433. } else if repeated {
  434. p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))`)
  435. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v2)`)
  436. } else if proto3 || !nullable {
  437. p.P(`m.`, fieldname, ` = `, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))`)
  438. } else {
  439. p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))`)
  440. p.P(`m.`, fieldname, ` = &v2`)
  441. }
  442. case descriptor.FieldDescriptorProto_TYPE_FLOAT:
  443. p.P(`var v uint32`)
  444. p.decodeFixed32("v", "uint32")
  445. if oneof {
  446. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))}`)
  447. } else if repeated {
  448. p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))`)
  449. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v2)`)
  450. } else if proto3 || !nullable {
  451. p.P(`m.`, fieldname, ` = `, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))`)
  452. } else {
  453. p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))`)
  454. p.P(`m.`, fieldname, ` = &v2`)
  455. }
  456. case descriptor.FieldDescriptorProto_TYPE_INT64:
  457. if oneof {
  458. p.P(`var v `, typ)
  459. p.decodeVarint("v", typ)
  460. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  461. } else if repeated {
  462. p.P(`var v `, typ)
  463. p.decodeVarint("v", typ)
  464. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  465. } else if proto3 || !nullable {
  466. p.P(`m.`, fieldname, ` = 0`)
  467. p.decodeVarint("m."+fieldname, typ)
  468. } else {
  469. p.P(`var v `, typ)
  470. p.decodeVarint("v", typ)
  471. p.P(`m.`, fieldname, ` = &v`)
  472. }
  473. case descriptor.FieldDescriptorProto_TYPE_UINT64:
  474. if oneof {
  475. p.P(`var v `, typ)
  476. p.decodeVarint("v", typ)
  477. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  478. } else if repeated {
  479. p.P(`var v `, typ)
  480. p.decodeVarint("v", typ)
  481. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  482. } else if proto3 || !nullable {
  483. p.P(`m.`, fieldname, ` = 0`)
  484. p.decodeVarint("m."+fieldname, typ)
  485. } else {
  486. p.P(`var v `, typ)
  487. p.decodeVarint("v", typ)
  488. p.P(`m.`, fieldname, ` = &v`)
  489. }
  490. case descriptor.FieldDescriptorProto_TYPE_INT32:
  491. if oneof {
  492. p.P(`var v `, typ)
  493. p.decodeVarint("v", typ)
  494. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  495. } else if repeated {
  496. p.P(`var v `, typ)
  497. p.decodeVarint("v", typ)
  498. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  499. } else if proto3 || !nullable {
  500. p.P(`m.`, fieldname, ` = 0`)
  501. p.decodeVarint("m."+fieldname, typ)
  502. } else {
  503. p.P(`var v `, typ)
  504. p.decodeVarint("v", typ)
  505. p.P(`m.`, fieldname, ` = &v`)
  506. }
  507. case descriptor.FieldDescriptorProto_TYPE_FIXED64:
  508. if oneof {
  509. p.P(`var v `, typ)
  510. p.decodeFixed64("v", typ)
  511. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  512. } else if repeated {
  513. p.P(`var v `, typ)
  514. p.decodeFixed64("v", typ)
  515. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  516. } else if proto3 || !nullable {
  517. p.P(`m.`, fieldname, ` = 0`)
  518. p.decodeFixed64("m."+fieldname, typ)
  519. } else {
  520. p.P(`var v `, typ)
  521. p.decodeFixed64("v", typ)
  522. p.P(`m.`, fieldname, ` = &v`)
  523. }
  524. case descriptor.FieldDescriptorProto_TYPE_FIXED32:
  525. if oneof {
  526. p.P(`var v `, typ)
  527. p.decodeFixed32("v", typ)
  528. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  529. } else if repeated {
  530. p.P(`var v `, typ)
  531. p.decodeFixed32("v", typ)
  532. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  533. } else if proto3 || !nullable {
  534. p.P(`m.`, fieldname, ` = 0`)
  535. p.decodeFixed32("m."+fieldname, typ)
  536. } else {
  537. p.P(`var v `, typ)
  538. p.decodeFixed32("v", typ)
  539. p.P(`m.`, fieldname, ` = &v`)
  540. }
  541. case descriptor.FieldDescriptorProto_TYPE_BOOL:
  542. p.P(`var v int`)
  543. p.decodeVarint("v", "int")
  544. if oneof {
  545. p.P(`b := `, typ, `(v != 0)`)
  546. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{b}`)
  547. } else if repeated {
  548. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(v != 0))`)
  549. } else if proto3 || !nullable {
  550. p.P(`m.`, fieldname, ` = `, typ, `(v != 0)`)
  551. } else {
  552. p.P(`b := `, typ, `(v != 0)`)
  553. p.P(`m.`, fieldname, ` = &b`)
  554. }
  555. case descriptor.FieldDescriptorProto_TYPE_STRING:
  556. p.P(`var stringLen uint64`)
  557. p.decodeVarint("stringLen", "uint64")
  558. p.P(`intStringLen := int(stringLen)`)
  559. p.P(`if intStringLen < 0 {`)
  560. p.In()
  561. p.P(`return ErrInvalidLength` + p.localName)
  562. p.Out()
  563. p.P(`}`)
  564. p.P(`postIndex := iNdEx + intStringLen`)
  565. p.P(`if postIndex > l {`)
  566. p.In()
  567. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  568. p.Out()
  569. p.P(`}`)
  570. if oneof {
  571. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, `(dAtA[iNdEx:postIndex])}`)
  572. } else if repeated {
  573. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(dAtA[iNdEx:postIndex]))`)
  574. } else if proto3 || !nullable {
  575. p.P(`m.`, fieldname, ` = `, typ, `(dAtA[iNdEx:postIndex])`)
  576. } else {
  577. p.P(`s := `, typ, `(dAtA[iNdEx:postIndex])`)
  578. p.P(`m.`, fieldname, ` = &s`)
  579. }
  580. p.P(`iNdEx = postIndex`)
  581. case descriptor.FieldDescriptorProto_TYPE_GROUP:
  582. panic(fmt.Errorf("unmarshaler does not support group %v", fieldname))
  583. case descriptor.FieldDescriptorProto_TYPE_MESSAGE:
  584. desc := p.ObjectNamed(field.GetTypeName())
  585. msgname := p.TypeName(desc)
  586. p.P(`var msglen int`)
  587. p.decodeVarint("msglen", "int")
  588. p.P(`if msglen < 0 {`)
  589. p.In()
  590. p.P(`return ErrInvalidLength` + p.localName)
  591. p.Out()
  592. p.P(`}`)
  593. p.P(`postIndex := iNdEx + msglen`)
  594. p.P(`if postIndex > l {`)
  595. p.In()
  596. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  597. p.Out()
  598. p.P(`}`)
  599. if oneof {
  600. buf := `dAtA[iNdEx:postIndex]`
  601. if gogoproto.IsStdTime(field) {
  602. if nullable {
  603. p.P(`v := new(time.Time)`)
  604. p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(v, `, buf, `); err != nil {`)
  605. } else {
  606. p.P(`v := time.Time{}`)
  607. p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(&v, `, buf, `); err != nil {`)
  608. }
  609. } else if gogoproto.IsStdDuration(field) {
  610. if nullable {
  611. p.P(`v := new(time.Duration)`)
  612. p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(v, `, buf, `); err != nil {`)
  613. } else {
  614. p.P(`v := time.Duration(0)`)
  615. p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(&v, `, buf, `); err != nil {`)
  616. }
  617. } else {
  618. p.P(`v := &`, msgname, `{}`)
  619. p.P(`if err := v.Unmarshal(`, buf, `); err != nil {`)
  620. }
  621. p.In()
  622. p.P(`return err`)
  623. p.Out()
  624. p.P(`}`)
  625. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  626. } else if p.IsMap(field) {
  627. m := p.GoMapType(nil, field)
  628. keygoTyp, _ := p.GoType(nil, m.KeyField)
  629. keygoAliasTyp, _ := p.GoType(nil, m.KeyAliasField)
  630. // keys may not be pointers
  631. keygoTyp = strings.Replace(keygoTyp, "*", "", 1)
  632. keygoAliasTyp = strings.Replace(keygoAliasTyp, "*", "", 1)
  633. valuegoTyp, _ := p.GoType(nil, m.ValueField)
  634. valuegoAliasTyp, _ := p.GoType(nil, m.ValueAliasField)
  635. // if the map type is an alias and key or values are aliases (type Foo map[Bar]Baz),
  636. // we need to explicitly record their use here.
  637. if gogoproto.IsCastKey(field) {
  638. p.RecordTypeUse(m.KeyAliasField.GetTypeName())
  639. }
  640. if gogoproto.IsCastValue(field) {
  641. p.RecordTypeUse(m.ValueAliasField.GetTypeName())
  642. }
  643. nullable, valuegoTyp, valuegoAliasTyp = generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp)
  644. if gogoproto.IsStdTime(field) || gogoproto.IsStdDuration(field) {
  645. valuegoTyp = valuegoAliasTyp
  646. }
  647. p.P(`if m.`, fieldname, ` == nil {`)
  648. p.In()
  649. p.P(`m.`, fieldname, ` = make(`, m.GoType, `)`)
  650. p.Out()
  651. p.P(`}`)
  652. p.declareMapField("mapkey", false, false, m.KeyAliasField)
  653. p.declareMapField("mapvalue", nullable, gogoproto.IsCustomType(field), m.ValueAliasField)
  654. p.P(`for iNdEx < postIndex {`)
  655. p.In()
  656. p.P(`entryPreIndex := iNdEx`)
  657. p.P(`var wire uint64`)
  658. p.decodeVarint("wire", "uint64")
  659. p.P(`fieldNum := int32(wire >> 3)`)
  660. p.P(`if fieldNum == 1 {`)
  661. p.In()
  662. p.mapField("mapkey", false, m.KeyAliasField)
  663. p.Out()
  664. p.P(`} else if fieldNum == 2 {`)
  665. p.In()
  666. p.mapField("mapvalue", gogoproto.IsCustomType(field), m.ValueAliasField)
  667. p.Out()
  668. p.P(`} else {`)
  669. p.In()
  670. p.P(`iNdEx = entryPreIndex`)
  671. p.P(`skippy, err := skip`, p.localName, `(dAtA[iNdEx:])`)
  672. p.P(`if err != nil {`)
  673. p.In()
  674. p.P(`return err`)
  675. p.Out()
  676. p.P(`}`)
  677. p.P(`if skippy < 0 {`)
  678. p.In()
  679. p.P(`return ErrInvalidLength`, p.localName)
  680. p.Out()
  681. p.P(`}`)
  682. p.P(`if (iNdEx + skippy) > postIndex {`)
  683. p.In()
  684. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  685. p.Out()
  686. p.P(`}`)
  687. p.P(`iNdEx += skippy`)
  688. p.Out()
  689. p.P(`}`)
  690. p.Out()
  691. p.P(`}`)
  692. s := `m.` + fieldname
  693. if keygoTyp == keygoAliasTyp {
  694. s += `[mapkey]`
  695. } else {
  696. s += `[` + keygoAliasTyp + `(mapkey)]`
  697. }
  698. v := `mapvalue`
  699. if (m.ValueField.IsMessage() || gogoproto.IsCustomType(field)) && !nullable {
  700. v = `*` + v
  701. }
  702. if valuegoTyp != valuegoAliasTyp {
  703. v = `((` + valuegoAliasTyp + `)(` + v + `))`
  704. }
  705. p.P(s, ` = `, v)
  706. } else if repeated {
  707. if gogoproto.IsStdTime(field) {
  708. if nullable {
  709. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, new(time.Time))`)
  710. } else {
  711. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, time.Time{})`)
  712. }
  713. } else if gogoproto.IsStdDuration(field) {
  714. if nullable {
  715. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, new(time.Duration))`)
  716. } else {
  717. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, time.Duration(0))`)
  718. }
  719. } else if nullable && !gogoproto.IsCustomType(field) {
  720. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, &`, msgname, `{})`)
  721. } else {
  722. goType, _ := p.GoType(nil, field)
  723. // remove the slice from the type, i.e. []*T -> *T
  724. goType = goType[2:]
  725. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, goType, `{})`)
  726. }
  727. varName := `m.` + fieldname + `[len(m.` + fieldname + `)-1]`
  728. buf := `dAtA[iNdEx:postIndex]`
  729. if gogoproto.IsStdTime(field) {
  730. if nullable {
  731. p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(`, varName, `,`, buf, `); err != nil {`)
  732. } else {
  733. p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(&(`, varName, `),`, buf, `); err != nil {`)
  734. }
  735. } else if gogoproto.IsStdDuration(field) {
  736. if nullable {
  737. p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(`, varName, `,`, buf, `); err != nil {`)
  738. } else {
  739. p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(&(`, varName, `),`, buf, `); err != nil {`)
  740. }
  741. } else {
  742. p.P(`if err := `, varName, `.Unmarshal(`, buf, `); err != nil {`)
  743. }
  744. p.In()
  745. p.P(`return err`)
  746. p.Out()
  747. p.P(`}`)
  748. } else if nullable {
  749. p.P(`if m.`, fieldname, ` == nil {`)
  750. p.In()
  751. if gogoproto.IsStdTime(field) {
  752. p.P(`m.`, fieldname, ` = new(time.Time)`)
  753. } else if gogoproto.IsStdDuration(field) {
  754. p.P(`m.`, fieldname, ` = new(time.Duration)`)
  755. } else {
  756. goType, _ := p.GoType(nil, field)
  757. // remove the star from the type
  758. p.P(`m.`, fieldname, ` = &`, goType[1:], `{}`)
  759. }
  760. p.Out()
  761. p.P(`}`)
  762. if gogoproto.IsStdTime(field) {
  763. p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`)
  764. } else if gogoproto.IsStdDuration(field) {
  765. p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`)
  766. } else {
  767. p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`)
  768. }
  769. p.In()
  770. p.P(`return err`)
  771. p.Out()
  772. p.P(`}`)
  773. } else {
  774. if gogoproto.IsStdTime(field) {
  775. p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(&m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`)
  776. } else if gogoproto.IsStdDuration(field) {
  777. p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(&m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`)
  778. } else {
  779. p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`)
  780. }
  781. p.In()
  782. p.P(`return err`)
  783. p.Out()
  784. p.P(`}`)
  785. }
  786. p.P(`iNdEx = postIndex`)
  787. case descriptor.FieldDescriptorProto_TYPE_BYTES:
  788. p.P(`var byteLen int`)
  789. p.decodeVarint("byteLen", "int")
  790. p.P(`if byteLen < 0 {`)
  791. p.In()
  792. p.P(`return ErrInvalidLength` + p.localName)
  793. p.Out()
  794. p.P(`}`)
  795. p.P(`postIndex := iNdEx + byteLen`)
  796. p.P(`if postIndex > l {`)
  797. p.In()
  798. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  799. p.Out()
  800. p.P(`}`)
  801. if !gogoproto.IsCustomType(field) {
  802. if oneof {
  803. p.P(`v := make([]byte, postIndex-iNdEx)`)
  804. p.P(`copy(v, dAtA[iNdEx:postIndex])`)
  805. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  806. } else if repeated {
  807. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, make([]byte, postIndex-iNdEx))`)
  808. p.P(`copy(m.`, fieldname, `[len(m.`, fieldname, `)-1], dAtA[iNdEx:postIndex])`)
  809. } else {
  810. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `[:0] , dAtA[iNdEx:postIndex]...)`)
  811. p.P(`if m.`, fieldname, ` == nil {`)
  812. p.In()
  813. p.P(`m.`, fieldname, ` = []byte{}`)
  814. p.Out()
  815. p.P(`}`)
  816. }
  817. } else {
  818. _, ctyp, err := generator.GetCustomType(field)
  819. if err != nil {
  820. panic(err)
  821. }
  822. if oneof {
  823. p.P(`var vv `, ctyp)
  824. p.P(`v := &vv`)
  825. p.P(`if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`)
  826. p.In()
  827. p.P(`return err`)
  828. p.Out()
  829. p.P(`}`)
  830. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{*v}`)
  831. } else if repeated {
  832. p.P(`var v `, ctyp)
  833. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  834. p.P(`if err := m.`, fieldname, `[len(m.`, fieldname, `)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`)
  835. p.In()
  836. p.P(`return err`)
  837. p.Out()
  838. p.P(`}`)
  839. } else if nullable {
  840. p.P(`var v `, ctyp)
  841. p.P(`m.`, fieldname, ` = &v`)
  842. p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`)
  843. p.In()
  844. p.P(`return err`)
  845. p.Out()
  846. p.P(`}`)
  847. } else {
  848. p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`)
  849. p.In()
  850. p.P(`return err`)
  851. p.Out()
  852. p.P(`}`)
  853. }
  854. }
  855. p.P(`iNdEx = postIndex`)
  856. case descriptor.FieldDescriptorProto_TYPE_UINT32:
  857. if oneof {
  858. p.P(`var v `, typ)
  859. p.decodeVarint("v", typ)
  860. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  861. } else if repeated {
  862. p.P(`var v `, typ)
  863. p.decodeVarint("v", typ)
  864. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  865. } else if proto3 || !nullable {
  866. p.P(`m.`, fieldname, ` = 0`)
  867. p.decodeVarint("m."+fieldname, typ)
  868. } else {
  869. p.P(`var v `, typ)
  870. p.decodeVarint("v", typ)
  871. p.P(`m.`, fieldname, ` = &v`)
  872. }
  873. case descriptor.FieldDescriptorProto_TYPE_ENUM:
  874. typName := p.TypeName(p.ObjectNamed(field.GetTypeName()))
  875. if oneof {
  876. p.P(`var v `, typName)
  877. p.decodeVarint("v", typName)
  878. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  879. } else if repeated {
  880. p.P(`var v `, typName)
  881. p.decodeVarint("v", typName)
  882. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  883. } else if proto3 || !nullable {
  884. p.P(`m.`, fieldname, ` = 0`)
  885. p.decodeVarint("m."+fieldname, typName)
  886. } else {
  887. p.P(`var v `, typName)
  888. p.decodeVarint("v", typName)
  889. p.P(`m.`, fieldname, ` = &v`)
  890. }
  891. case descriptor.FieldDescriptorProto_TYPE_SFIXED32:
  892. if oneof {
  893. p.P(`var v `, typ)
  894. p.decodeFixed32("v", typ)
  895. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  896. } else if repeated {
  897. p.P(`var v `, typ)
  898. p.decodeFixed32("v", typ)
  899. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  900. } else if proto3 || !nullable {
  901. p.P(`m.`, fieldname, ` = 0`)
  902. p.decodeFixed32("m."+fieldname, typ)
  903. } else {
  904. p.P(`var v `, typ)
  905. p.decodeFixed32("v", typ)
  906. p.P(`m.`, fieldname, ` = &v`)
  907. }
  908. case descriptor.FieldDescriptorProto_TYPE_SFIXED64:
  909. if oneof {
  910. p.P(`var v `, typ)
  911. p.decodeFixed64("v", typ)
  912. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  913. } else if repeated {
  914. p.P(`var v `, typ)
  915. p.decodeFixed64("v", typ)
  916. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  917. } else if proto3 || !nullable {
  918. p.P(`m.`, fieldname, ` = 0`)
  919. p.decodeFixed64("m."+fieldname, typ)
  920. } else {
  921. p.P(`var v `, typ)
  922. p.decodeFixed64("v", typ)
  923. p.P(`m.`, fieldname, ` = &v`)
  924. }
  925. case descriptor.FieldDescriptorProto_TYPE_SINT32:
  926. p.P(`var v `, typ)
  927. p.decodeVarint("v", typ)
  928. p.P(`v = `, typ, `((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31))`)
  929. if oneof {
  930. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`)
  931. } else if repeated {
  932. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
  933. } else if proto3 || !nullable {
  934. p.P(`m.`, fieldname, ` = v`)
  935. } else {
  936. p.P(`m.`, fieldname, ` = &v`)
  937. }
  938. case descriptor.FieldDescriptorProto_TYPE_SINT64:
  939. p.P(`var v uint64`)
  940. p.decodeVarint("v", "uint64")
  941. p.P(`v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63)`)
  942. if oneof {
  943. p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, `(v)}`)
  944. } else if repeated {
  945. p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(v))`)
  946. } else if proto3 || !nullable {
  947. p.P(`m.`, fieldname, ` = `, typ, `(v)`)
  948. } else {
  949. p.P(`v2 := `, typ, `(v)`)
  950. p.P(`m.`, fieldname, ` = &v2`)
  951. }
  952. default:
  953. panic("not implemented")
  954. }
  955. }
  956. func (p *unmarshal) Generate(file *generator.FileDescriptor) {
  957. proto3 := gogoproto.IsProto3(file.FileDescriptorProto)
  958. p.PluginImports = generator.NewPluginImports(p.Generator)
  959. p.atleastOne = false
  960. p.localName = generator.FileName(file)
  961. p.ioPkg = p.NewImport("io")
  962. p.mathPkg = p.NewImport("math")
  963. p.typesPkg = p.NewImport("github.com/gogo/protobuf/types")
  964. p.binaryPkg = p.NewImport("encoding/binary")
  965. fmtPkg := p.NewImport("fmt")
  966. protoPkg := p.NewImport("github.com/gogo/protobuf/proto")
  967. if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) {
  968. protoPkg = p.NewImport("github.com/golang/protobuf/proto")
  969. }
  970. for _, message := range file.Messages() {
  971. ccTypeName := generator.CamelCaseSlice(message.TypeName())
  972. if !gogoproto.IsUnmarshaler(file.FileDescriptorProto, message.DescriptorProto) &&
  973. !gogoproto.IsUnsafeUnmarshaler(file.FileDescriptorProto, message.DescriptorProto) {
  974. continue
  975. }
  976. if message.DescriptorProto.GetOptions().GetMapEntry() {
  977. continue
  978. }
  979. p.atleastOne = true
  980. // build a map required field_id -> bitmask offset
  981. rfMap := make(map[int32]uint)
  982. rfNextId := uint(0)
  983. for _, field := range message.Field {
  984. if field.IsRequired() {
  985. rfMap[field.GetNumber()] = rfNextId
  986. rfNextId++
  987. }
  988. }
  989. rfCount := len(rfMap)
  990. p.P(`func (m *`, ccTypeName, `) Unmarshal(dAtA []byte) error {`)
  991. p.In()
  992. if rfCount > 0 {
  993. p.P(`var hasFields [`, strconv.Itoa(1+(rfCount-1)/64), `]uint64`)
  994. }
  995. p.P(`l := len(dAtA)`)
  996. p.P(`iNdEx := 0`)
  997. p.P(`for iNdEx < l {`)
  998. p.In()
  999. p.P(`preIndex := iNdEx`)
  1000. p.P(`var wire uint64`)
  1001. p.decodeVarint("wire", "uint64")
  1002. p.P(`fieldNum := int32(wire >> 3)`)
  1003. if len(message.Field) > 0 || !message.IsGroup() {
  1004. p.P(`wireType := int(wire & 0x7)`)
  1005. }
  1006. if !message.IsGroup() {
  1007. p.P(`if wireType == `, strconv.Itoa(proto.WireEndGroup), ` {`)
  1008. p.In()
  1009. p.P(`return `, fmtPkg.Use(), `.Errorf("proto: `+message.GetName()+`: wiretype end group for non-group")`)
  1010. p.Out()
  1011. p.P(`}`)
  1012. }
  1013. p.P(`if fieldNum <= 0 {`)
  1014. p.In()
  1015. p.P(`return `, fmtPkg.Use(), `.Errorf("proto: `+message.GetName()+`: illegal tag %d (wire type %d)", fieldNum, wire)`)
  1016. p.Out()
  1017. p.P(`}`)
  1018. p.P(`switch fieldNum {`)
  1019. p.In()
  1020. for _, field := range message.Field {
  1021. fieldname := p.GetFieldName(message, field)
  1022. errFieldname := fieldname
  1023. if field.OneofIndex != nil {
  1024. errFieldname = p.GetOneOfFieldName(message, field)
  1025. }
  1026. possiblyPacked := field.IsScalar() && field.IsRepeated()
  1027. p.P(`case `, strconv.Itoa(int(field.GetNumber())), `:`)
  1028. p.In()
  1029. wireType := field.WireType()
  1030. if possiblyPacked {
  1031. p.P(`if wireType == `, strconv.Itoa(wireType), `{`)
  1032. p.In()
  1033. p.field(file, message, field, fieldname, false)
  1034. p.Out()
  1035. p.P(`} else if wireType == `, strconv.Itoa(proto.WireBytes), `{`)
  1036. p.In()
  1037. p.P(`var packedLen int`)
  1038. p.decodeVarint("packedLen", "int")
  1039. p.P(`if packedLen < 0 {`)
  1040. p.In()
  1041. p.P(`return ErrInvalidLength` + p.localName)
  1042. p.Out()
  1043. p.P(`}`)
  1044. p.P(`postIndex := iNdEx + packedLen`)
  1045. p.P(`if postIndex > l {`)
  1046. p.In()
  1047. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  1048. p.Out()
  1049. p.P(`}`)
  1050. p.P(`var elementCount int`)
  1051. switch *field.Type {
  1052. case descriptor.FieldDescriptorProto_TYPE_DOUBLE, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64:
  1053. p.P(`elementCount = packedLen/`, 8)
  1054. case descriptor.FieldDescriptorProto_TYPE_FLOAT, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32:
  1055. p.P(`elementCount = packedLen/`, 4)
  1056. case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_INT32, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SINT64:
  1057. p.P(`var count int`)
  1058. p.P(`for _, integer := range dAtA {`)
  1059. p.In()
  1060. p.P(`if integer < 128 {`)
  1061. p.In()
  1062. p.P(`count++`)
  1063. p.Out()
  1064. p.P(`}`)
  1065. p.Out()
  1066. p.P(`}`)
  1067. p.P(`elementCount = count`)
  1068. case descriptor.FieldDescriptorProto_TYPE_BOOL:
  1069. p.P(`elementCount = packedLen`)
  1070. }
  1071. p.P(`if elementCount != 0 && len(m.`, fieldname, `) == 0 {`)
  1072. p.In()
  1073. p.P(`m.`, fieldname, ` = make([]`, p.noStarOrSliceType(message, field), `, 0, elementCount)`)
  1074. p.Out()
  1075. p.P(`}`)
  1076. p.P(`for iNdEx < postIndex {`)
  1077. p.In()
  1078. p.field(file, message, field, fieldname, false)
  1079. p.Out()
  1080. p.P(`}`)
  1081. p.Out()
  1082. p.P(`} else {`)
  1083. p.In()
  1084. p.P(`return ` + fmtPkg.Use() + `.Errorf("proto: wrong wireType = %d for field ` + errFieldname + `", wireType)`)
  1085. p.Out()
  1086. p.P(`}`)
  1087. } else {
  1088. p.P(`if wireType != `, strconv.Itoa(wireType), `{`)
  1089. p.In()
  1090. p.P(`return ` + fmtPkg.Use() + `.Errorf("proto: wrong wireType = %d for field ` + errFieldname + `", wireType)`)
  1091. p.Out()
  1092. p.P(`}`)
  1093. p.field(file, message, field, fieldname, proto3)
  1094. }
  1095. if field.IsRequired() {
  1096. fieldBit, ok := rfMap[field.GetNumber()]
  1097. if !ok {
  1098. panic("field is required, but no bit registered")
  1099. }
  1100. p.P(`hasFields[`, strconv.Itoa(int(fieldBit/64)), `] |= uint64(`, fmt.Sprintf("0x%08x", uint64(1)<<(fieldBit%64)), `)`)
  1101. }
  1102. }
  1103. p.Out()
  1104. p.P(`default:`)
  1105. p.In()
  1106. if message.DescriptorProto.HasExtension() {
  1107. c := []string{}
  1108. for _, erange := range message.GetExtensionRange() {
  1109. c = append(c, `((fieldNum >= `+strconv.Itoa(int(erange.GetStart()))+") && (fieldNum<"+strconv.Itoa(int(erange.GetEnd()))+`))`)
  1110. }
  1111. p.P(`if `, strings.Join(c, "||"), `{`)
  1112. p.In()
  1113. p.P(`var sizeOfWire int`)
  1114. p.P(`for {`)
  1115. p.In()
  1116. p.P(`sizeOfWire++`)
  1117. p.P(`wire >>= 7`)
  1118. p.P(`if wire == 0 {`)
  1119. p.In()
  1120. p.P(`break`)
  1121. p.Out()
  1122. p.P(`}`)
  1123. p.Out()
  1124. p.P(`}`)
  1125. p.P(`iNdEx-=sizeOfWire`)
  1126. p.P(`skippy, err := skip`, p.localName+`(dAtA[iNdEx:])`)
  1127. p.P(`if err != nil {`)
  1128. p.In()
  1129. p.P(`return err`)
  1130. p.Out()
  1131. p.P(`}`)
  1132. p.P(`if skippy < 0 {`)
  1133. p.In()
  1134. p.P(`return ErrInvalidLength`, p.localName)
  1135. p.Out()
  1136. p.P(`}`)
  1137. p.P(`if (iNdEx + skippy) > l {`)
  1138. p.In()
  1139. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  1140. p.Out()
  1141. p.P(`}`)
  1142. p.P(protoPkg.Use(), `.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy])`)
  1143. p.P(`iNdEx += skippy`)
  1144. p.Out()
  1145. p.P(`} else {`)
  1146. p.In()
  1147. }
  1148. p.P(`iNdEx=preIndex`)
  1149. p.P(`skippy, err := skip`, p.localName, `(dAtA[iNdEx:])`)
  1150. p.P(`if err != nil {`)
  1151. p.In()
  1152. p.P(`return err`)
  1153. p.Out()
  1154. p.P(`}`)
  1155. p.P(`if skippy < 0 {`)
  1156. p.In()
  1157. p.P(`return ErrInvalidLength`, p.localName)
  1158. p.Out()
  1159. p.P(`}`)
  1160. p.P(`if (iNdEx + skippy) > l {`)
  1161. p.In()
  1162. p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`)
  1163. p.Out()
  1164. p.P(`}`)
  1165. if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) {
  1166. p.P(`m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)`)
  1167. }
  1168. p.P(`iNdEx += skippy`)
  1169. p.Out()
  1170. if message.DescriptorProto.HasExtension() {
  1171. p.Out()
  1172. p.P(`}`)
  1173. }
  1174. p.Out()
  1175. p.P(`}`)
  1176. p.Out()
  1177. p.P(`}`)
  1178. for _, field := range message.Field {
  1179. if !field.IsRequired() {
  1180. continue
  1181. }
  1182. fieldBit, ok := rfMap[field.GetNumber()]
  1183. if !ok {
  1184. panic("field is required, but no bit registered")
  1185. }
  1186. p.P(`if hasFields[`, strconv.Itoa(int(fieldBit/64)), `] & uint64(`, fmt.Sprintf("0x%08x", uint64(1)<<(fieldBit%64)), `) == 0 {`)
  1187. p.In()
  1188. if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) {
  1189. p.P(`return new(`, protoPkg.Use(), `.RequiredNotSetError)`)
  1190. } else {
  1191. p.P(`return `, protoPkg.Use(), `.NewRequiredNotSetError("`, field.GetName(), `")`)
  1192. }
  1193. p.Out()
  1194. p.P(`}`)
  1195. }
  1196. p.P()
  1197. p.P(`if iNdEx > l {`)
  1198. p.In()
  1199. p.P(`return ` + p.ioPkg.Use() + `.ErrUnexpectedEOF`)
  1200. p.Out()
  1201. p.P(`}`)
  1202. p.P(`return nil`)
  1203. p.Out()
  1204. p.P(`}`)
  1205. }
  1206. if !p.atleastOne {
  1207. return
  1208. }
  1209. p.P(`func skip` + p.localName + `(dAtA []byte) (n int, err error) {
  1210. l := len(dAtA)
  1211. iNdEx := 0
  1212. for iNdEx < l {
  1213. var wire uint64
  1214. for shift := uint(0); ; shift += 7 {
  1215. if shift >= 64 {
  1216. return 0, ErrIntOverflow` + p.localName + `
  1217. }
  1218. if iNdEx >= l {
  1219. return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF
  1220. }
  1221. b := dAtA[iNdEx]
  1222. iNdEx++
  1223. wire |= (uint64(b) & 0x7F) << shift
  1224. if b < 0x80 {
  1225. break
  1226. }
  1227. }
  1228. wireType := int(wire & 0x7)
  1229. switch wireType {
  1230. case 0:
  1231. for shift := uint(0); ; shift += 7 {
  1232. if shift >= 64 {
  1233. return 0, ErrIntOverflow` + p.localName + `
  1234. }
  1235. if iNdEx >= l {
  1236. return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF
  1237. }
  1238. iNdEx++
  1239. if dAtA[iNdEx-1] < 0x80 {
  1240. break
  1241. }
  1242. }
  1243. return iNdEx, nil
  1244. case 1:
  1245. iNdEx += 8
  1246. return iNdEx, nil
  1247. case 2:
  1248. var length int
  1249. for shift := uint(0); ; shift += 7 {
  1250. if shift >= 64 {
  1251. return 0, ErrIntOverflow` + p.localName + `
  1252. }
  1253. if iNdEx >= l {
  1254. return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF
  1255. }
  1256. b := dAtA[iNdEx]
  1257. iNdEx++
  1258. length |= (int(b) & 0x7F) << shift
  1259. if b < 0x80 {
  1260. break
  1261. }
  1262. }
  1263. iNdEx += length
  1264. if length < 0 {
  1265. return 0, ErrInvalidLength` + p.localName + `
  1266. }
  1267. return iNdEx, nil
  1268. case 3:
  1269. for {
  1270. var innerWire uint64
  1271. var start int = iNdEx
  1272. for shift := uint(0); ; shift += 7 {
  1273. if shift >= 64 {
  1274. return 0, ErrIntOverflow` + p.localName + `
  1275. }
  1276. if iNdEx >= l {
  1277. return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF
  1278. }
  1279. b := dAtA[iNdEx]
  1280. iNdEx++
  1281. innerWire |= (uint64(b) & 0x7F) << shift
  1282. if b < 0x80 {
  1283. break
  1284. }
  1285. }
  1286. innerWireType := int(innerWire & 0x7)
  1287. if innerWireType == 4 {
  1288. break
  1289. }
  1290. next, err := skip` + p.localName + `(dAtA[start:])
  1291. if err != nil {
  1292. return 0, err
  1293. }
  1294. iNdEx = start + next
  1295. }
  1296. return iNdEx, nil
  1297. case 4:
  1298. return iNdEx, nil
  1299. case 5:
  1300. iNdEx += 4
  1301. return iNdEx, nil
  1302. default:
  1303. return 0, ` + fmtPkg.Use() + `.Errorf("proto: illegal wireType %d", wireType)
  1304. }
  1305. }
  1306. panic("unreachable")
  1307. }
  1308. var (
  1309. ErrInvalidLength` + p.localName + ` = ` + fmtPkg.Use() + `.Errorf("proto: negative length found during unmarshaling")
  1310. ErrIntOverflow` + p.localName + ` = ` + fmtPkg.Use() + `.Errorf("proto: integer overflow")
  1311. )
  1312. `)
  1313. }
  1314. func init() {
  1315. generator.RegisterPlugin(NewUnmarshal())
  1316. }