jsonpb.go 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392
  1. // Go support for Protocol Buffers - Google's data interchange format
  2. //
  3. // Copyright 2015 The Go Authors. All rights reserved.
  4. // https://github.com/golang/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. // * Neither the name of Google Inc. nor the names of its
  17. // contributors may be used to endorse or promote products derived from
  18. // this software without specific prior written permission.
  19. //
  20. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. /*
  32. Package jsonpb provides marshaling and unmarshaling between protocol buffers and JSON.
  33. It follows the specification at https://developers.google.com/protocol-buffers/docs/proto3#json.
  34. This package produces a different output than the standard "encoding/json" package,
  35. which does not operate correctly on protocol buffers.
  36. */
  37. package jsonpb
  38. import (
  39. "bytes"
  40. "encoding/json"
  41. "errors"
  42. "fmt"
  43. "io"
  44. "math"
  45. "reflect"
  46. "sort"
  47. "strconv"
  48. "strings"
  49. "time"
  50. "github.com/gogo/protobuf/proto"
  51. "github.com/gogo/protobuf/types"
  52. )
  53. const secondInNanos = int64(time.Second / time.Nanosecond)
  54. // Marshaler is a configurable object for converting between
  55. // protocol buffer objects and a JSON representation for them.
  56. type Marshaler struct {
  57. // Whether to render enum values as integers, as opposed to string values.
  58. EnumsAsInts bool
  59. // Whether to render fields with zero values.
  60. EmitDefaults bool
  61. // A string to indent each level by. The presence of this field will
  62. // also cause a space to appear between the field separator and
  63. // value, and for newlines to be appear between fields and array
  64. // elements.
  65. Indent string
  66. // Whether to use the original (.proto) name for fields.
  67. OrigName bool
  68. // A custom URL resolver to use when marshaling Any messages to JSON.
  69. // If unset, the default resolution strategy is to extract the
  70. // fully-qualified type name from the type URL and pass that to
  71. // proto.MessageType(string).
  72. AnyResolver AnyResolver
  73. }
  74. // AnyResolver takes a type URL, present in an Any message, and resolves it into
  75. // an instance of the associated message.
  76. type AnyResolver interface {
  77. Resolve(typeUrl string) (proto.Message, error)
  78. }
  79. func defaultResolveAny(typeUrl string) (proto.Message, error) {
  80. // Only the part of typeUrl after the last slash is relevant.
  81. mname := typeUrl
  82. if slash := strings.LastIndex(mname, "/"); slash >= 0 {
  83. mname = mname[slash+1:]
  84. }
  85. mt := proto.MessageType(mname)
  86. if mt == nil {
  87. return nil, fmt.Errorf("unknown message type %q", mname)
  88. }
  89. return reflect.New(mt.Elem()).Interface().(proto.Message), nil
  90. }
  91. // JSONPBMarshaler is implemented by protobuf messages that customize the
  92. // way they are marshaled to JSON. Messages that implement this should
  93. // also implement JSONPBUnmarshaler so that the custom format can be
  94. // parsed.
  95. type JSONPBMarshaler interface {
  96. MarshalJSONPB(*Marshaler) ([]byte, error)
  97. }
  98. // JSONPBUnmarshaler is implemented by protobuf messages that customize
  99. // the way they are unmarshaled from JSON. Messages that implement this
  100. // should also implement JSONPBMarshaler so that the custom format can be
  101. // produced.
  102. type JSONPBUnmarshaler interface {
  103. UnmarshalJSONPB(*Unmarshaler, []byte) error
  104. }
  105. // Marshal marshals a protocol buffer into JSON.
  106. func (m *Marshaler) Marshal(out io.Writer, pb proto.Message) error {
  107. v := reflect.ValueOf(pb)
  108. if pb == nil || (v.Kind() == reflect.Ptr && v.IsNil()) {
  109. return errors.New("Marshal called with nil")
  110. }
  111. // Check for unset required fields first.
  112. if err := checkRequiredFields(pb); err != nil {
  113. return err
  114. }
  115. writer := &errWriter{writer: out}
  116. return m.marshalObject(writer, pb, "", "")
  117. }
  118. // MarshalToString converts a protocol buffer object to JSON string.
  119. func (m *Marshaler) MarshalToString(pb proto.Message) (string, error) {
  120. var buf bytes.Buffer
  121. if err := m.Marshal(&buf, pb); err != nil {
  122. return "", err
  123. }
  124. return buf.String(), nil
  125. }
  126. type int32Slice []int32
  127. var nonFinite = map[string]float64{
  128. `"NaN"`: math.NaN(),
  129. `"Infinity"`: math.Inf(1),
  130. `"-Infinity"`: math.Inf(-1),
  131. }
  132. // For sorting extensions ids to ensure stable output.
  133. func (s int32Slice) Len() int { return len(s) }
  134. func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] }
  135. func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
  136. type isWkt interface {
  137. XXX_WellKnownType() string
  138. }
  139. // marshalObject writes a struct to the Writer.
  140. func (m *Marshaler) marshalObject(out *errWriter, v proto.Message, indent, typeURL string) error {
  141. if jsm, ok := v.(JSONPBMarshaler); ok {
  142. b, err := jsm.MarshalJSONPB(m)
  143. if err != nil {
  144. return err
  145. }
  146. if typeURL != "" {
  147. // we are marshaling this object to an Any type
  148. var js map[string]*json.RawMessage
  149. if err = json.Unmarshal(b, &js); err != nil {
  150. return fmt.Errorf("type %T produced invalid JSON: %v", v, err)
  151. }
  152. turl, err := json.Marshal(typeURL)
  153. if err != nil {
  154. return fmt.Errorf("failed to marshal type URL %q to JSON: %v", typeURL, err)
  155. }
  156. js["@type"] = (*json.RawMessage)(&turl)
  157. if b, err = json.Marshal(js); err != nil {
  158. return err
  159. }
  160. }
  161. out.write(string(b))
  162. return out.err
  163. }
  164. s := reflect.ValueOf(v).Elem()
  165. // Handle well-known types.
  166. if wkt, ok := v.(isWkt); ok {
  167. switch wkt.XXX_WellKnownType() {
  168. case "DoubleValue", "FloatValue", "Int64Value", "UInt64Value",
  169. "Int32Value", "UInt32Value", "BoolValue", "StringValue", "BytesValue":
  170. // "Wrappers use the same representation in JSON
  171. // as the wrapped primitive type, ..."
  172. sprop := proto.GetProperties(s.Type())
  173. return m.marshalValue(out, sprop.Prop[0], s.Field(0), indent)
  174. case "Any":
  175. // Any is a bit more involved.
  176. return m.marshalAny(out, v, indent)
  177. case "Duration":
  178. // "Generated output always contains 0, 3, 6, or 9 fractional digits,
  179. // depending on required precision."
  180. s, ns := s.Field(0).Int(), s.Field(1).Int()
  181. if ns <= -secondInNanos || ns >= secondInNanos {
  182. return fmt.Errorf("ns out of range (%v, %v)", -secondInNanos, secondInNanos)
  183. }
  184. if (s > 0 && ns < 0) || (s < 0 && ns > 0) {
  185. return errors.New("signs of seconds and nanos do not match")
  186. }
  187. if s < 0 {
  188. ns = -ns
  189. }
  190. x := fmt.Sprintf("%d.%09d", s, ns)
  191. x = strings.TrimSuffix(x, "000")
  192. x = strings.TrimSuffix(x, "000")
  193. x = strings.TrimSuffix(x, ".000")
  194. out.write(`"`)
  195. out.write(x)
  196. out.write(`s"`)
  197. return out.err
  198. case "Struct", "ListValue":
  199. // Let marshalValue handle the `Struct.fields` map or the `ListValue.values` slice.
  200. // TODO: pass the correct Properties if needed.
  201. return m.marshalValue(out, &proto.Properties{}, s.Field(0), indent)
  202. case "Timestamp":
  203. // "RFC 3339, where generated output will always be Z-normalized
  204. // and uses 0, 3, 6 or 9 fractional digits."
  205. s, ns := s.Field(0).Int(), s.Field(1).Int()
  206. if ns < 0 || ns >= secondInNanos {
  207. return fmt.Errorf("ns out of range [0, %v)", secondInNanos)
  208. }
  209. t := time.Unix(s, ns).UTC()
  210. // time.RFC3339Nano isn't exactly right (we need to get 3/6/9 fractional digits).
  211. x := t.Format("2006-01-02T15:04:05.000000000")
  212. x = strings.TrimSuffix(x, "000")
  213. x = strings.TrimSuffix(x, "000")
  214. x = strings.TrimSuffix(x, ".000")
  215. out.write(`"`)
  216. out.write(x)
  217. out.write(`Z"`)
  218. return out.err
  219. case "Value":
  220. // Value has a single oneof.
  221. kind := s.Field(0)
  222. if kind.IsNil() {
  223. // "absence of any variant indicates an error"
  224. return errors.New("nil Value")
  225. }
  226. // oneof -> *T -> T -> T.F
  227. x := kind.Elem().Elem().Field(0)
  228. // TODO: pass the correct Properties if needed.
  229. return m.marshalValue(out, &proto.Properties{}, x, indent)
  230. }
  231. }
  232. out.write("{")
  233. if m.Indent != "" {
  234. out.write("\n")
  235. }
  236. firstField := true
  237. if typeURL != "" {
  238. if err := m.marshalTypeURL(out, indent, typeURL); err != nil {
  239. return err
  240. }
  241. firstField = false
  242. }
  243. for i := 0; i < s.NumField(); i++ {
  244. value := s.Field(i)
  245. valueField := s.Type().Field(i)
  246. if strings.HasPrefix(valueField.Name, "XXX_") {
  247. continue
  248. }
  249. //this is not a protobuf field
  250. if valueField.Tag.Get("protobuf") == "" && valueField.Tag.Get("protobuf_oneof") == "" {
  251. continue
  252. }
  253. // IsNil will panic on most value kinds.
  254. switch value.Kind() {
  255. case reflect.Chan, reflect.Func, reflect.Interface:
  256. if value.IsNil() {
  257. continue
  258. }
  259. }
  260. if !m.EmitDefaults {
  261. switch value.Kind() {
  262. case reflect.Bool:
  263. if !value.Bool() {
  264. continue
  265. }
  266. case reflect.Int32, reflect.Int64:
  267. if value.Int() == 0 {
  268. continue
  269. }
  270. case reflect.Uint32, reflect.Uint64:
  271. if value.Uint() == 0 {
  272. continue
  273. }
  274. case reflect.Float32, reflect.Float64:
  275. if value.Float() == 0 {
  276. continue
  277. }
  278. case reflect.String:
  279. if value.Len() == 0 {
  280. continue
  281. }
  282. case reflect.Map, reflect.Ptr, reflect.Slice:
  283. if value.IsNil() {
  284. continue
  285. }
  286. }
  287. }
  288. // Oneof fields need special handling.
  289. if valueField.Tag.Get("protobuf_oneof") != "" {
  290. // value is an interface containing &T{real_value}.
  291. sv := value.Elem().Elem() // interface -> *T -> T
  292. value = sv.Field(0)
  293. valueField = sv.Type().Field(0)
  294. }
  295. prop := jsonProperties(valueField, m.OrigName)
  296. if !firstField {
  297. m.writeSep(out)
  298. }
  299. // If the map value is a cast type, it may not implement proto.Message, therefore
  300. // allow the struct tag to declare the underlying message type. Instead of changing
  301. // the signatures of the child types (and because prop.mvalue is not public), use
  302. // CustomType as a passer.
  303. if value.Kind() == reflect.Map {
  304. if tag := valueField.Tag.Get("protobuf"); tag != "" {
  305. for _, v := range strings.Split(tag, ",") {
  306. if !strings.HasPrefix(v, "castvaluetype=") {
  307. continue
  308. }
  309. v = strings.TrimPrefix(v, "castvaluetype=")
  310. prop.CustomType = v
  311. break
  312. }
  313. }
  314. }
  315. if err := m.marshalField(out, prop, value, indent); err != nil {
  316. return err
  317. }
  318. firstField = false
  319. }
  320. // Handle proto2 extensions.
  321. if ep, ok := v.(proto.Message); ok {
  322. extensions := proto.RegisteredExtensions(v)
  323. // Sort extensions for stable output.
  324. ids := make([]int32, 0, len(extensions))
  325. for id, desc := range extensions {
  326. if !proto.HasExtension(ep, desc) {
  327. continue
  328. }
  329. ids = append(ids, id)
  330. }
  331. sort.Sort(int32Slice(ids))
  332. for _, id := range ids {
  333. desc := extensions[id]
  334. if desc == nil {
  335. // unknown extension
  336. continue
  337. }
  338. ext, extErr := proto.GetExtension(ep, desc)
  339. if extErr != nil {
  340. return extErr
  341. }
  342. value := reflect.ValueOf(ext)
  343. var prop proto.Properties
  344. prop.Parse(desc.Tag)
  345. prop.JSONName = fmt.Sprintf("[%s]", desc.Name)
  346. if !firstField {
  347. m.writeSep(out)
  348. }
  349. if err := m.marshalField(out, &prop, value, indent); err != nil {
  350. return err
  351. }
  352. firstField = false
  353. }
  354. }
  355. if m.Indent != "" {
  356. out.write("\n")
  357. out.write(indent)
  358. }
  359. out.write("}")
  360. return out.err
  361. }
  362. func (m *Marshaler) writeSep(out *errWriter) {
  363. if m.Indent != "" {
  364. out.write(",\n")
  365. } else {
  366. out.write(",")
  367. }
  368. }
  369. func (m *Marshaler) marshalAny(out *errWriter, any proto.Message, indent string) error {
  370. // "If the Any contains a value that has a special JSON mapping,
  371. // it will be converted as follows: {"@type": xxx, "value": yyy}.
  372. // Otherwise, the value will be converted into a JSON object,
  373. // and the "@type" field will be inserted to indicate the actual data type."
  374. v := reflect.ValueOf(any).Elem()
  375. turl := v.Field(0).String()
  376. val := v.Field(1).Bytes()
  377. var msg proto.Message
  378. var err error
  379. if m.AnyResolver != nil {
  380. msg, err = m.AnyResolver.Resolve(turl)
  381. } else {
  382. msg, err = defaultResolveAny(turl)
  383. }
  384. if err != nil {
  385. return err
  386. }
  387. if err := proto.Unmarshal(val, msg); err != nil {
  388. return err
  389. }
  390. if _, ok := msg.(isWkt); ok {
  391. out.write("{")
  392. if m.Indent != "" {
  393. out.write("\n")
  394. }
  395. if err := m.marshalTypeURL(out, indent, turl); err != nil {
  396. return err
  397. }
  398. m.writeSep(out)
  399. if m.Indent != "" {
  400. out.write(indent)
  401. out.write(m.Indent)
  402. out.write(`"value": `)
  403. } else {
  404. out.write(`"value":`)
  405. }
  406. if err := m.marshalObject(out, msg, indent+m.Indent, ""); err != nil {
  407. return err
  408. }
  409. if m.Indent != "" {
  410. out.write("\n")
  411. out.write(indent)
  412. }
  413. out.write("}")
  414. return out.err
  415. }
  416. return m.marshalObject(out, msg, indent, turl)
  417. }
  418. func (m *Marshaler) marshalTypeURL(out *errWriter, indent, typeURL string) error {
  419. if m.Indent != "" {
  420. out.write(indent)
  421. out.write(m.Indent)
  422. }
  423. out.write(`"@type":`)
  424. if m.Indent != "" {
  425. out.write(" ")
  426. }
  427. b, err := json.Marshal(typeURL)
  428. if err != nil {
  429. return err
  430. }
  431. out.write(string(b))
  432. return out.err
  433. }
  434. // marshalField writes field description and value to the Writer.
  435. func (m *Marshaler) marshalField(out *errWriter, prop *proto.Properties, v reflect.Value, indent string) error {
  436. if m.Indent != "" {
  437. out.write(indent)
  438. out.write(m.Indent)
  439. }
  440. out.write(`"`)
  441. out.write(prop.JSONName)
  442. out.write(`":`)
  443. if m.Indent != "" {
  444. out.write(" ")
  445. }
  446. if err := m.marshalValue(out, prop, v, indent); err != nil {
  447. return err
  448. }
  449. return nil
  450. }
  451. // marshalValue writes the value to the Writer.
  452. func (m *Marshaler) marshalValue(out *errWriter, prop *proto.Properties, v reflect.Value, indent string) error {
  453. v = reflect.Indirect(v)
  454. // Handle nil pointer
  455. if v.Kind() == reflect.Invalid {
  456. out.write("null")
  457. return out.err
  458. }
  459. // Handle repeated elements.
  460. if v.Kind() == reflect.Slice && v.Type().Elem().Kind() != reflect.Uint8 {
  461. out.write("[")
  462. comma := ""
  463. for i := 0; i < v.Len(); i++ {
  464. sliceVal := v.Index(i)
  465. out.write(comma)
  466. if m.Indent != "" {
  467. out.write("\n")
  468. out.write(indent)
  469. out.write(m.Indent)
  470. out.write(m.Indent)
  471. }
  472. if err := m.marshalValue(out, prop, sliceVal, indent+m.Indent); err != nil {
  473. return err
  474. }
  475. comma = ","
  476. }
  477. if m.Indent != "" {
  478. out.write("\n")
  479. out.write(indent)
  480. out.write(m.Indent)
  481. }
  482. out.write("]")
  483. return out.err
  484. }
  485. // Handle well-known types.
  486. // Most are handled up in marshalObject (because 99% are messages).
  487. if wkt, ok := v.Interface().(isWkt); ok {
  488. switch wkt.XXX_WellKnownType() {
  489. case "NullValue":
  490. out.write("null")
  491. return out.err
  492. }
  493. }
  494. if t, ok := v.Interface().(time.Time); ok {
  495. ts, err := types.TimestampProto(t)
  496. if err != nil {
  497. return err
  498. }
  499. return m.marshalValue(out, prop, reflect.ValueOf(ts), indent)
  500. }
  501. if d, ok := v.Interface().(time.Duration); ok {
  502. dur := types.DurationProto(d)
  503. return m.marshalValue(out, prop, reflect.ValueOf(dur), indent)
  504. }
  505. // Handle enumerations.
  506. if !m.EnumsAsInts && prop.Enum != "" {
  507. // Unknown enum values will are stringified by the proto library as their
  508. // value. Such values should _not_ be quoted or they will be interpreted
  509. // as an enum string instead of their value.
  510. enumStr := v.Interface().(fmt.Stringer).String()
  511. var valStr string
  512. if v.Kind() == reflect.Ptr {
  513. valStr = strconv.Itoa(int(v.Elem().Int()))
  514. } else {
  515. valStr = strconv.Itoa(int(v.Int()))
  516. }
  517. if m, ok := v.Interface().(interface {
  518. MarshalJSON() ([]byte, error)
  519. }); ok {
  520. data, err := m.MarshalJSON()
  521. if err != nil {
  522. return err
  523. }
  524. enumStr = string(data)
  525. enumStr, err = strconv.Unquote(enumStr)
  526. if err != nil {
  527. return err
  528. }
  529. }
  530. isKnownEnum := enumStr != valStr
  531. if isKnownEnum {
  532. out.write(`"`)
  533. }
  534. out.write(enumStr)
  535. if isKnownEnum {
  536. out.write(`"`)
  537. }
  538. return out.err
  539. }
  540. // Handle nested messages.
  541. if v.Kind() == reflect.Struct {
  542. i := v
  543. if v.CanAddr() {
  544. i = v.Addr()
  545. } else {
  546. i = reflect.New(v.Type())
  547. i.Elem().Set(v)
  548. }
  549. iface := i.Interface()
  550. if iface == nil {
  551. out.write(`null`)
  552. return out.err
  553. }
  554. if m, ok := v.Interface().(interface {
  555. MarshalJSON() ([]byte, error)
  556. }); ok {
  557. data, err := m.MarshalJSON()
  558. if err != nil {
  559. return err
  560. }
  561. out.write(string(data))
  562. return nil
  563. }
  564. pm, ok := iface.(proto.Message)
  565. if !ok {
  566. if prop.CustomType == "" {
  567. return fmt.Errorf("%v does not implement proto.Message", v.Type())
  568. }
  569. t := proto.MessageType(prop.CustomType)
  570. if t == nil || !i.Type().ConvertibleTo(t) {
  571. return fmt.Errorf("%v declared custom type %s but it is not convertible to %v", v.Type(), prop.CustomType, t)
  572. }
  573. pm = i.Convert(t).Interface().(proto.Message)
  574. }
  575. return m.marshalObject(out, pm, indent+m.Indent, "")
  576. }
  577. // Handle maps.
  578. // Since Go randomizes map iteration, we sort keys for stable output.
  579. if v.Kind() == reflect.Map {
  580. out.write(`{`)
  581. keys := v.MapKeys()
  582. sort.Sort(mapKeys(keys))
  583. for i, k := range keys {
  584. if i > 0 {
  585. out.write(`,`)
  586. }
  587. if m.Indent != "" {
  588. out.write("\n")
  589. out.write(indent)
  590. out.write(m.Indent)
  591. out.write(m.Indent)
  592. }
  593. b, err := json.Marshal(k.Interface())
  594. if err != nil {
  595. return err
  596. }
  597. s := string(b)
  598. // If the JSON is not a string value, encode it again to make it one.
  599. if !strings.HasPrefix(s, `"`) {
  600. b, err := json.Marshal(s)
  601. if err != nil {
  602. return err
  603. }
  604. s = string(b)
  605. }
  606. out.write(s)
  607. out.write(`:`)
  608. if m.Indent != "" {
  609. out.write(` `)
  610. }
  611. if err := m.marshalValue(out, prop, v.MapIndex(k), indent+m.Indent); err != nil {
  612. return err
  613. }
  614. }
  615. if m.Indent != "" {
  616. out.write("\n")
  617. out.write(indent)
  618. out.write(m.Indent)
  619. }
  620. out.write(`}`)
  621. return out.err
  622. }
  623. // Handle non-finite floats, e.g. NaN, Infinity and -Infinity.
  624. if v.Kind() == reflect.Float32 || v.Kind() == reflect.Float64 {
  625. f := v.Float()
  626. var sval string
  627. switch {
  628. case math.IsInf(f, 1):
  629. sval = `"Infinity"`
  630. case math.IsInf(f, -1):
  631. sval = `"-Infinity"`
  632. case math.IsNaN(f):
  633. sval = `"NaN"`
  634. }
  635. if sval != "" {
  636. out.write(sval)
  637. return out.err
  638. }
  639. }
  640. // Default handling defers to the encoding/json library.
  641. b, err := json.Marshal(v.Interface())
  642. if err != nil {
  643. return err
  644. }
  645. needToQuote := string(b[0]) != `"` && (v.Kind() == reflect.Int64 || v.Kind() == reflect.Uint64)
  646. if needToQuote {
  647. out.write(`"`)
  648. }
  649. out.write(string(b))
  650. if needToQuote {
  651. out.write(`"`)
  652. }
  653. return out.err
  654. }
  655. // Unmarshaler is a configurable object for converting from a JSON
  656. // representation to a protocol buffer object.
  657. type Unmarshaler struct {
  658. // Whether to allow messages to contain unknown fields, as opposed to
  659. // failing to unmarshal.
  660. AllowUnknownFields bool
  661. // A custom URL resolver to use when unmarshaling Any messages from JSON.
  662. // If unset, the default resolution strategy is to extract the
  663. // fully-qualified type name from the type URL and pass that to
  664. // proto.MessageType(string).
  665. AnyResolver AnyResolver
  666. }
  667. // UnmarshalNext unmarshals the next protocol buffer from a JSON object stream.
  668. // This function is lenient and will decode any options permutations of the
  669. // related Marshaler.
  670. func (u *Unmarshaler) UnmarshalNext(dec *json.Decoder, pb proto.Message) error {
  671. inputValue := json.RawMessage{}
  672. if err := dec.Decode(&inputValue); err != nil {
  673. return err
  674. }
  675. if err := u.unmarshalValue(reflect.ValueOf(pb).Elem(), inputValue, nil); err != nil {
  676. return err
  677. }
  678. return checkRequiredFields(pb)
  679. }
  680. // Unmarshal unmarshals a JSON object stream into a protocol
  681. // buffer. This function is lenient and will decode any options
  682. // permutations of the related Marshaler.
  683. func (u *Unmarshaler) Unmarshal(r io.Reader, pb proto.Message) error {
  684. dec := json.NewDecoder(r)
  685. return u.UnmarshalNext(dec, pb)
  686. }
  687. // UnmarshalNext unmarshals the next protocol buffer from a JSON object stream.
  688. // This function is lenient and will decode any options permutations of the
  689. // related Marshaler.
  690. func UnmarshalNext(dec *json.Decoder, pb proto.Message) error {
  691. return new(Unmarshaler).UnmarshalNext(dec, pb)
  692. }
  693. // Unmarshal unmarshals a JSON object stream into a protocol
  694. // buffer. This function is lenient and will decode any options
  695. // permutations of the related Marshaler.
  696. func Unmarshal(r io.Reader, pb proto.Message) error {
  697. return new(Unmarshaler).Unmarshal(r, pb)
  698. }
  699. // UnmarshalString will populate the fields of a protocol buffer based
  700. // on a JSON string. This function is lenient and will decode any options
  701. // permutations of the related Marshaler.
  702. func UnmarshalString(str string, pb proto.Message) error {
  703. return new(Unmarshaler).Unmarshal(strings.NewReader(str), pb)
  704. }
  705. // unmarshalValue converts/copies a value into the target.
  706. // prop may be nil.
  707. func (u *Unmarshaler) unmarshalValue(target reflect.Value, inputValue json.RawMessage, prop *proto.Properties) error {
  708. targetType := target.Type()
  709. // Allocate memory for pointer fields.
  710. if targetType.Kind() == reflect.Ptr {
  711. // If input value is "null" and target is a pointer type, then the field should be treated as not set
  712. // UNLESS the target is structpb.Value, in which case it should be set to structpb.NullValue.
  713. _, isJSONPBUnmarshaler := target.Interface().(JSONPBUnmarshaler)
  714. if string(inputValue) == "null" && targetType != reflect.TypeOf(&types.Value{}) && !isJSONPBUnmarshaler {
  715. return nil
  716. }
  717. target.Set(reflect.New(targetType.Elem()))
  718. return u.unmarshalValue(target.Elem(), inputValue, prop)
  719. }
  720. if jsu, ok := target.Addr().Interface().(JSONPBUnmarshaler); ok {
  721. return jsu.UnmarshalJSONPB(u, []byte(inputValue))
  722. }
  723. // Handle well-known types that are not pointers.
  724. if w, ok := target.Addr().Interface().(isWkt); ok {
  725. switch w.XXX_WellKnownType() {
  726. case "DoubleValue", "FloatValue", "Int64Value", "UInt64Value",
  727. "Int32Value", "UInt32Value", "BoolValue", "StringValue", "BytesValue":
  728. return u.unmarshalValue(target.Field(0), inputValue, prop)
  729. case "Any":
  730. // Use json.RawMessage pointer type instead of value to support pre-1.8 version.
  731. // 1.8 changed RawMessage.MarshalJSON from pointer type to value type, see
  732. // https://github.com/golang/go/issues/14493
  733. var jsonFields map[string]*json.RawMessage
  734. if err := json.Unmarshal(inputValue, &jsonFields); err != nil {
  735. return err
  736. }
  737. val, ok := jsonFields["@type"]
  738. if !ok || val == nil {
  739. return errors.New("Any JSON doesn't have '@type'")
  740. }
  741. var turl string
  742. if err := json.Unmarshal([]byte(*val), &turl); err != nil {
  743. return fmt.Errorf("can't unmarshal Any's '@type': %q", *val)
  744. }
  745. target.Field(0).SetString(turl)
  746. var m proto.Message
  747. var err error
  748. if u.AnyResolver != nil {
  749. m, err = u.AnyResolver.Resolve(turl)
  750. } else {
  751. m, err = defaultResolveAny(turl)
  752. }
  753. if err != nil {
  754. return err
  755. }
  756. if _, ok := m.(isWkt); ok {
  757. val, ok := jsonFields["value"]
  758. if !ok {
  759. return errors.New("Any JSON doesn't have 'value'")
  760. }
  761. if err = u.unmarshalValue(reflect.ValueOf(m).Elem(), *val, nil); err != nil {
  762. return fmt.Errorf("can't unmarshal Any nested proto %T: %v", m, err)
  763. }
  764. } else {
  765. delete(jsonFields, "@type")
  766. nestedProto, uerr := json.Marshal(jsonFields)
  767. if uerr != nil {
  768. return fmt.Errorf("can't generate JSON for Any's nested proto to be unmarshaled: %v", uerr)
  769. }
  770. if err = u.unmarshalValue(reflect.ValueOf(m).Elem(), nestedProto, nil); err != nil {
  771. return fmt.Errorf("can't unmarshal Any nested proto %T: %v", m, err)
  772. }
  773. }
  774. b, err := proto.Marshal(m)
  775. if err != nil {
  776. return fmt.Errorf("can't marshal proto %T into Any.Value: %v", m, err)
  777. }
  778. target.Field(1).SetBytes(b)
  779. return nil
  780. case "Duration":
  781. unq, err := unquote(string(inputValue))
  782. if err != nil {
  783. return err
  784. }
  785. d, err := time.ParseDuration(unq)
  786. if err != nil {
  787. return fmt.Errorf("bad Duration: %v", err)
  788. }
  789. ns := d.Nanoseconds()
  790. s := ns / 1e9
  791. ns %= 1e9
  792. target.Field(0).SetInt(s)
  793. target.Field(1).SetInt(ns)
  794. return nil
  795. case "Timestamp":
  796. unq, err := unquote(string(inputValue))
  797. if err != nil {
  798. return err
  799. }
  800. t, err := time.Parse(time.RFC3339Nano, unq)
  801. if err != nil {
  802. return fmt.Errorf("bad Timestamp: %v", err)
  803. }
  804. target.Field(0).SetInt(t.Unix())
  805. target.Field(1).SetInt(int64(t.Nanosecond()))
  806. return nil
  807. case "Struct":
  808. var m map[string]json.RawMessage
  809. if err := json.Unmarshal(inputValue, &m); err != nil {
  810. return fmt.Errorf("bad StructValue: %v", err)
  811. }
  812. target.Field(0).Set(reflect.ValueOf(map[string]*types.Value{}))
  813. for k, jv := range m {
  814. pv := &types.Value{}
  815. if err := u.unmarshalValue(reflect.ValueOf(pv).Elem(), jv, prop); err != nil {
  816. return fmt.Errorf("bad value in StructValue for key %q: %v", k, err)
  817. }
  818. target.Field(0).SetMapIndex(reflect.ValueOf(k), reflect.ValueOf(pv))
  819. }
  820. return nil
  821. case "ListValue":
  822. var s []json.RawMessage
  823. if err := json.Unmarshal(inputValue, &s); err != nil {
  824. return fmt.Errorf("bad ListValue: %v", err)
  825. }
  826. target.Field(0).Set(reflect.ValueOf(make([]*types.Value, len(s))))
  827. for i, sv := range s {
  828. if err := u.unmarshalValue(target.Field(0).Index(i), sv, prop); err != nil {
  829. return err
  830. }
  831. }
  832. return nil
  833. case "Value":
  834. ivStr := string(inputValue)
  835. if ivStr == "null" {
  836. target.Field(0).Set(reflect.ValueOf(&types.Value_NullValue{}))
  837. } else if v, err := strconv.ParseFloat(ivStr, 0); err == nil {
  838. target.Field(0).Set(reflect.ValueOf(&types.Value_NumberValue{NumberValue: v}))
  839. } else if v, err := unquote(ivStr); err == nil {
  840. target.Field(0).Set(reflect.ValueOf(&types.Value_StringValue{StringValue: v}))
  841. } else if v, err := strconv.ParseBool(ivStr); err == nil {
  842. target.Field(0).Set(reflect.ValueOf(&types.Value_BoolValue{BoolValue: v}))
  843. } else if err := json.Unmarshal(inputValue, &[]json.RawMessage{}); err == nil {
  844. lv := &types.ListValue{}
  845. target.Field(0).Set(reflect.ValueOf(&types.Value_ListValue{ListValue: lv}))
  846. return u.unmarshalValue(reflect.ValueOf(lv).Elem(), inputValue, prop)
  847. } else if err := json.Unmarshal(inputValue, &map[string]json.RawMessage{}); err == nil {
  848. sv := &types.Struct{}
  849. target.Field(0).Set(reflect.ValueOf(&types.Value_StructValue{StructValue: sv}))
  850. return u.unmarshalValue(reflect.ValueOf(sv).Elem(), inputValue, prop)
  851. } else {
  852. return fmt.Errorf("unrecognized type for Value %q", ivStr)
  853. }
  854. return nil
  855. }
  856. }
  857. if t, ok := target.Addr().Interface().(*time.Time); ok {
  858. ts := &types.Timestamp{}
  859. if err := u.unmarshalValue(reflect.ValueOf(ts).Elem(), inputValue, prop); err != nil {
  860. return err
  861. }
  862. tt, err := types.TimestampFromProto(ts)
  863. if err != nil {
  864. return err
  865. }
  866. *t = tt
  867. return nil
  868. }
  869. if d, ok := target.Addr().Interface().(*time.Duration); ok {
  870. dur := &types.Duration{}
  871. if err := u.unmarshalValue(reflect.ValueOf(dur).Elem(), inputValue, prop); err != nil {
  872. return err
  873. }
  874. dd, err := types.DurationFromProto(dur)
  875. if err != nil {
  876. return err
  877. }
  878. *d = dd
  879. return nil
  880. }
  881. // Handle enums, which have an underlying type of int32,
  882. // and may appear as strings.
  883. // The case of an enum appearing as a number is handled
  884. // at the bottom of this function.
  885. if inputValue[0] == '"' && prop != nil && prop.Enum != "" {
  886. vmap := proto.EnumValueMap(prop.Enum)
  887. // Don't need to do unquoting; valid enum names
  888. // are from a limited character set.
  889. s := inputValue[1 : len(inputValue)-1]
  890. n, ok := vmap[string(s)]
  891. if !ok {
  892. return fmt.Errorf("unknown value %q for enum %s", s, prop.Enum)
  893. }
  894. if target.Kind() == reflect.Ptr { // proto2
  895. target.Set(reflect.New(targetType.Elem()))
  896. target = target.Elem()
  897. }
  898. target.SetInt(int64(n))
  899. return nil
  900. }
  901. if prop != nil && len(prop.CustomType) > 0 && target.CanAddr() {
  902. if m, ok := target.Addr().Interface().(interface {
  903. UnmarshalJSON([]byte) error
  904. }); ok {
  905. return json.Unmarshal(inputValue, m)
  906. }
  907. }
  908. // Handle nested messages.
  909. if targetType.Kind() == reflect.Struct {
  910. var jsonFields map[string]json.RawMessage
  911. if err := json.Unmarshal(inputValue, &jsonFields); err != nil {
  912. return err
  913. }
  914. consumeField := func(prop *proto.Properties) (json.RawMessage, bool) {
  915. // Be liberal in what names we accept; both orig_name and camelName are okay.
  916. fieldNames := acceptedJSONFieldNames(prop)
  917. vOrig, okOrig := jsonFields[fieldNames.orig]
  918. vCamel, okCamel := jsonFields[fieldNames.camel]
  919. if !okOrig && !okCamel {
  920. return nil, false
  921. }
  922. // If, for some reason, both are present in the data, favour the camelName.
  923. var raw json.RawMessage
  924. if okOrig {
  925. raw = vOrig
  926. delete(jsonFields, fieldNames.orig)
  927. }
  928. if okCamel {
  929. raw = vCamel
  930. delete(jsonFields, fieldNames.camel)
  931. }
  932. return raw, true
  933. }
  934. sprops := proto.GetProperties(targetType)
  935. for i := 0; i < target.NumField(); i++ {
  936. ft := target.Type().Field(i)
  937. if strings.HasPrefix(ft.Name, "XXX_") {
  938. continue
  939. }
  940. valueForField, ok := consumeField(sprops.Prop[i])
  941. if !ok {
  942. continue
  943. }
  944. if err := u.unmarshalValue(target.Field(i), valueForField, sprops.Prop[i]); err != nil {
  945. return err
  946. }
  947. }
  948. // Check for any oneof fields.
  949. if len(jsonFields) > 0 {
  950. for _, oop := range sprops.OneofTypes {
  951. raw, ok := consumeField(oop.Prop)
  952. if !ok {
  953. continue
  954. }
  955. nv := reflect.New(oop.Type.Elem())
  956. target.Field(oop.Field).Set(nv)
  957. if err := u.unmarshalValue(nv.Elem().Field(0), raw, oop.Prop); err != nil {
  958. return err
  959. }
  960. }
  961. }
  962. // Handle proto2 extensions.
  963. if len(jsonFields) > 0 {
  964. if ep, ok := target.Addr().Interface().(proto.Message); ok {
  965. for _, ext := range proto.RegisteredExtensions(ep) {
  966. name := fmt.Sprintf("[%s]", ext.Name)
  967. raw, ok := jsonFields[name]
  968. if !ok {
  969. continue
  970. }
  971. delete(jsonFields, name)
  972. nv := reflect.New(reflect.TypeOf(ext.ExtensionType).Elem())
  973. if err := u.unmarshalValue(nv.Elem(), raw, nil); err != nil {
  974. return err
  975. }
  976. if err := proto.SetExtension(ep, ext, nv.Interface()); err != nil {
  977. return err
  978. }
  979. }
  980. }
  981. }
  982. if !u.AllowUnknownFields && len(jsonFields) > 0 {
  983. // Pick any field to be the scapegoat.
  984. var f string
  985. for fname := range jsonFields {
  986. f = fname
  987. break
  988. }
  989. return fmt.Errorf("unknown field %q in %v", f, targetType)
  990. }
  991. return nil
  992. }
  993. // Handle arrays
  994. if targetType.Kind() == reflect.Slice {
  995. if targetType.Elem().Kind() == reflect.Uint8 {
  996. outRef := reflect.New(targetType)
  997. outVal := outRef.Interface()
  998. //CustomType with underlying type []byte
  999. if _, ok := outVal.(interface {
  1000. UnmarshalJSON([]byte) error
  1001. }); ok {
  1002. if err := json.Unmarshal(inputValue, outVal); err != nil {
  1003. return err
  1004. }
  1005. target.Set(outRef.Elem())
  1006. return nil
  1007. }
  1008. // Special case for encoded bytes. Pre-go1.5 doesn't support unmarshalling
  1009. // strings into aliased []byte types.
  1010. // https://github.com/golang/go/commit/4302fd0409da5e4f1d71471a6770dacdc3301197
  1011. // https://github.com/golang/go/commit/c60707b14d6be26bf4213114d13070bff00d0b0a
  1012. var out []byte
  1013. if err := json.Unmarshal(inputValue, &out); err != nil {
  1014. return err
  1015. }
  1016. target.SetBytes(out)
  1017. return nil
  1018. }
  1019. var slc []json.RawMessage
  1020. if err := json.Unmarshal(inputValue, &slc); err != nil {
  1021. return err
  1022. }
  1023. if slc != nil {
  1024. l := len(slc)
  1025. target.Set(reflect.MakeSlice(targetType, l, l))
  1026. for i := 0; i < l; i++ {
  1027. if err := u.unmarshalValue(target.Index(i), slc[i], prop); err != nil {
  1028. return err
  1029. }
  1030. }
  1031. }
  1032. return nil
  1033. }
  1034. // Handle maps (whose keys are always strings)
  1035. if targetType.Kind() == reflect.Map {
  1036. var mp map[string]json.RawMessage
  1037. if err := json.Unmarshal(inputValue, &mp); err != nil {
  1038. return err
  1039. }
  1040. if mp != nil {
  1041. target.Set(reflect.MakeMap(targetType))
  1042. for ks, raw := range mp {
  1043. // Unmarshal map key. The core json library already decoded the key into a
  1044. // string, so we handle that specially. Other types were quoted post-serialization.
  1045. var k reflect.Value
  1046. if targetType.Key().Kind() == reflect.String {
  1047. k = reflect.ValueOf(ks)
  1048. } else {
  1049. k = reflect.New(targetType.Key()).Elem()
  1050. // TODO: pass the correct Properties if needed.
  1051. if err := u.unmarshalValue(k, json.RawMessage(ks), nil); err != nil {
  1052. return err
  1053. }
  1054. }
  1055. if !k.Type().AssignableTo(targetType.Key()) {
  1056. k = k.Convert(targetType.Key())
  1057. }
  1058. // Unmarshal map value.
  1059. v := reflect.New(targetType.Elem()).Elem()
  1060. // TODO: pass the correct Properties if needed.
  1061. if err := u.unmarshalValue(v, raw, nil); err != nil {
  1062. return err
  1063. }
  1064. target.SetMapIndex(k, v)
  1065. }
  1066. }
  1067. return nil
  1068. }
  1069. // 64-bit integers can be encoded as strings. In this case we drop
  1070. // the quotes and proceed as normal.
  1071. isNum := targetType.Kind() == reflect.Int64 || targetType.Kind() == reflect.Uint64
  1072. if isNum && strings.HasPrefix(string(inputValue), `"`) {
  1073. inputValue = inputValue[1 : len(inputValue)-1]
  1074. }
  1075. // Non-finite numbers can be encoded as strings.
  1076. isFloat := targetType.Kind() == reflect.Float32 || targetType.Kind() == reflect.Float64
  1077. if isFloat {
  1078. if num, ok := nonFinite[string(inputValue)]; ok {
  1079. target.SetFloat(num)
  1080. return nil
  1081. }
  1082. }
  1083. // Use the encoding/json for parsing other value types.
  1084. return json.Unmarshal(inputValue, target.Addr().Interface())
  1085. }
  1086. func unquote(s string) (string, error) {
  1087. var ret string
  1088. err := json.Unmarshal([]byte(s), &ret)
  1089. return ret, err
  1090. }
  1091. // jsonProperties returns parsed proto.Properties for the field and corrects JSONName attribute.
  1092. func jsonProperties(f reflect.StructField, origName bool) *proto.Properties {
  1093. var prop proto.Properties
  1094. prop.Init(f.Type, f.Name, f.Tag.Get("protobuf"), &f)
  1095. if origName || prop.JSONName == "" {
  1096. prop.JSONName = prop.OrigName
  1097. }
  1098. return &prop
  1099. }
  1100. type fieldNames struct {
  1101. orig, camel string
  1102. }
  1103. func acceptedJSONFieldNames(prop *proto.Properties) fieldNames {
  1104. opts := fieldNames{orig: prop.OrigName, camel: prop.OrigName}
  1105. if prop.JSONName != "" {
  1106. opts.camel = prop.JSONName
  1107. }
  1108. return opts
  1109. }
  1110. // Writer wrapper inspired by https://blog.golang.org/errors-are-values
  1111. type errWriter struct {
  1112. writer io.Writer
  1113. err error
  1114. }
  1115. func (w *errWriter) write(str string) {
  1116. if w.err != nil {
  1117. return
  1118. }
  1119. _, w.err = w.writer.Write([]byte(str))
  1120. }
  1121. // Map fields may have key types of non-float scalars, strings and enums.
  1122. // The easiest way to sort them in some deterministic order is to use fmt.
  1123. // If this turns out to be inefficient we can always consider other options,
  1124. // such as doing a Schwartzian transform.
  1125. //
  1126. // Numeric keys are sorted in numeric order per
  1127. // https://developers.google.com/protocol-buffers/docs/proto#maps.
  1128. type mapKeys []reflect.Value
  1129. func (s mapKeys) Len() int { return len(s) }
  1130. func (s mapKeys) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
  1131. func (s mapKeys) Less(i, j int) bool {
  1132. if k := s[i].Kind(); k == s[j].Kind() {
  1133. switch k {
  1134. case reflect.Int32, reflect.Int64:
  1135. return s[i].Int() < s[j].Int()
  1136. case reflect.Uint32, reflect.Uint64:
  1137. return s[i].Uint() < s[j].Uint()
  1138. }
  1139. }
  1140. return fmt.Sprint(s[i].Interface()) < fmt.Sprint(s[j].Interface())
  1141. }
  1142. // checkRequiredFields returns an error if any required field in the given proto message is not set.
  1143. // This function is used by both Marshal and Unmarshal. While required fields only exist in a
  1144. // proto2 message, a proto3 message can contain proto2 message(s).
  1145. func checkRequiredFields(pb proto.Message) error {
  1146. // Most well-known type messages do not contain required fields. The "Any" type may contain
  1147. // a message that has required fields.
  1148. //
  1149. // When an Any message is being marshaled, the code will invoked proto.Unmarshal on Any.Value
  1150. // field in order to transform that into JSON, and that should have returned an error if a
  1151. // required field is not set in the embedded message.
  1152. //
  1153. // When an Any message is being unmarshaled, the code will have invoked proto.Marshal on the
  1154. // embedded message to store the serialized message in Any.Value field, and that should have
  1155. // returned an error if a required field is not set.
  1156. if _, ok := pb.(isWkt); ok {
  1157. return nil
  1158. }
  1159. v := reflect.ValueOf(pb)
  1160. // Skip message if it is not a struct pointer.
  1161. if v.Kind() != reflect.Ptr {
  1162. return nil
  1163. }
  1164. v = v.Elem()
  1165. if v.Kind() != reflect.Struct {
  1166. return nil
  1167. }
  1168. for i := 0; i < v.NumField(); i++ {
  1169. field := v.Field(i)
  1170. sfield := v.Type().Field(i)
  1171. if sfield.PkgPath != "" {
  1172. // blank PkgPath means the field is exported; skip if not exported
  1173. continue
  1174. }
  1175. if strings.HasPrefix(sfield.Name, "XXX_") {
  1176. continue
  1177. }
  1178. // Oneof field is an interface implemented by wrapper structs containing the actual oneof
  1179. // field, i.e. an interface containing &T{real_value}.
  1180. if sfield.Tag.Get("protobuf_oneof") != "" {
  1181. if field.Kind() != reflect.Interface {
  1182. continue
  1183. }
  1184. v := field.Elem()
  1185. if v.Kind() != reflect.Ptr || v.IsNil() {
  1186. continue
  1187. }
  1188. v = v.Elem()
  1189. if v.Kind() != reflect.Struct || v.NumField() < 1 {
  1190. continue
  1191. }
  1192. field = v.Field(0)
  1193. sfield = v.Type().Field(0)
  1194. }
  1195. protoTag := sfield.Tag.Get("protobuf")
  1196. if protoTag == "" {
  1197. continue
  1198. }
  1199. var prop proto.Properties
  1200. prop.Init(sfield.Type, sfield.Name, protoTag, &sfield)
  1201. switch field.Kind() {
  1202. case reflect.Map:
  1203. if field.IsNil() {
  1204. continue
  1205. }
  1206. // Check each map value.
  1207. keys := field.MapKeys()
  1208. for _, k := range keys {
  1209. v := field.MapIndex(k)
  1210. if err := checkRequiredFieldsInValue(v); err != nil {
  1211. return err
  1212. }
  1213. }
  1214. case reflect.Slice:
  1215. // Handle non-repeated type, e.g. bytes.
  1216. if !prop.Repeated {
  1217. if prop.Required && field.IsNil() {
  1218. return fmt.Errorf("required field %q is not set", prop.Name)
  1219. }
  1220. continue
  1221. }
  1222. // Handle repeated type.
  1223. if field.IsNil() {
  1224. continue
  1225. }
  1226. // Check each slice item.
  1227. for i := 0; i < field.Len(); i++ {
  1228. v := field.Index(i)
  1229. if err := checkRequiredFieldsInValue(v); err != nil {
  1230. return err
  1231. }
  1232. }
  1233. case reflect.Ptr:
  1234. if field.IsNil() {
  1235. if prop.Required {
  1236. return fmt.Errorf("required field %q is not set", prop.Name)
  1237. }
  1238. continue
  1239. }
  1240. if err := checkRequiredFieldsInValue(field); err != nil {
  1241. return err
  1242. }
  1243. }
  1244. }
  1245. // Handle proto2 extensions.
  1246. for _, ext := range proto.RegisteredExtensions(pb) {
  1247. if !proto.HasExtension(pb, ext) {
  1248. continue
  1249. }
  1250. ep, err := proto.GetExtension(pb, ext)
  1251. if err != nil {
  1252. return err
  1253. }
  1254. err = checkRequiredFieldsInValue(reflect.ValueOf(ep))
  1255. if err != nil {
  1256. return err
  1257. }
  1258. }
  1259. return nil
  1260. }
  1261. func checkRequiredFieldsInValue(v reflect.Value) error {
  1262. if pm, ok := v.Interface().(proto.Message); ok {
  1263. return checkRequiredFields(pm)
  1264. }
  1265. return nil
  1266. }