blob: fd982decd66e4846031a72a785470be20afe99a5 [file] [log] [blame]
David Symonds4fee3b12010-11-11 10:00:13 +11001// Go support for Protocol Buffers - Google's data interchange format
2//
David Symondsee6e9c52012-11-29 08:51:07 +11003// Copyright 2010 The Go Authors. All rights reserved.
David Symonds558f13f2014-11-24 10:28:53 +11004// https://github.com/golang/protobuf
David Symonds4fee3b12010-11-11 10:00:13 +11005//
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
32package proto
33
34/*
35 * Support for message sets.
36 */
37
38import (
David Symonds19227ff2014-10-12 16:35:09 +110039 "bytes"
40 "encoding/json"
Rob Pikea17fdd92011-11-02 12:43:05 -070041 "errors"
David Symonds19227ff2014-10-12 16:35:09 +110042 "fmt"
David Symonds1d72f7a2011-08-19 18:28:52 +100043 "reflect"
David Symonds0c1184e2013-06-08 15:42:12 +100044 "sort"
David Symonds4fee3b12010-11-11 10:00:13 +110045)
46
David Symonds8cf720c2015-11-13 15:34:00 +110047// errNoMessageTypeID occurs when a protocol buffer does not have a message type ID.
David Symonds4fee3b12010-11-11 10:00:13 +110048// A message type ID is required for storing a protocol buffer in a message set.
David Symonds8cf720c2015-11-13 15:34:00 +110049var errNoMessageTypeID = errors.New("proto does not have a message type ID")
David Symonds4fee3b12010-11-11 10:00:13 +110050
David Symonds8cf720c2015-11-13 15:34:00 +110051// The first two types (_MessageSet_Item and messageSet)
David Symonds4fee3b12010-11-11 10:00:13 +110052// model what the protocol compiler produces for the following protocol message:
53// message MessageSet {
54// repeated group Item = 1 {
55// required int32 type_id = 2;
56// required string message = 3;
57// };
58// }
59// That is the MessageSet wire format. We can't use a proto to generate these
60// because that would introduce a circular dependency between it and this package.
David Symonds4fee3b12010-11-11 10:00:13 +110061
62type _MessageSet_Item struct {
David Symonds8935abf2011-07-04 15:53:16 +100063 TypeId *int32 `protobuf:"varint,2,req,name=type_id"`
64 Message []byte `protobuf:"bytes,3,req,name=message"`
David Symonds4fee3b12010-11-11 10:00:13 +110065}
66
David Symonds8cf720c2015-11-13 15:34:00 +110067type messageSet struct {
David Symonds8935abf2011-07-04 15:53:16 +100068 Item []*_MessageSet_Item `protobuf:"group,1,rep"`
David Symonds10c93ba2012-08-04 16:38:08 +100069 XXX_unrecognized []byte
David Symonds4fee3b12010-11-11 10:00:13 +110070 // TODO: caching?
71}
72
David Symonds8cf720c2015-11-13 15:34:00 +110073// Make sure messageSet is a Message.
74var _ Message = (*messageSet)(nil)
David Symonds9f60f432012-06-14 09:45:25 +100075
David Symonds4fee3b12010-11-11 10:00:13 +110076// messageTypeIder is an interface satisfied by a protocol buffer type
77// that may be stored in a MessageSet.
78type messageTypeIder interface {
79 MessageTypeId() int32
80}
81
David Symonds8cf720c2015-11-13 15:34:00 +110082func (ms *messageSet) find(pb Message) *_MessageSet_Item {
David Symonds4fee3b12010-11-11 10:00:13 +110083 mti, ok := pb.(messageTypeIder)
84 if !ok {
85 return nil
86 }
87 id := mti.MessageTypeId()
88 for _, item := range ms.Item {
89 if *item.TypeId == id {
90 return item
91 }
92 }
93 return nil
94}
95
David Symonds8cf720c2015-11-13 15:34:00 +110096func (ms *messageSet) Has(pb Message) bool {
David Symonds4fee3b12010-11-11 10:00:13 +110097 if ms.find(pb) != nil {
98 return true
99 }
100 return false
101}
102
David Symonds8cf720c2015-11-13 15:34:00 +1100103func (ms *messageSet) Unmarshal(pb Message) error {
David Symonds4fee3b12010-11-11 10:00:13 +1100104 if item := ms.find(pb); item != nil {
105 return Unmarshal(item.Message, pb)
106 }
107 if _, ok := pb.(messageTypeIder); !ok {
David Symonds8cf720c2015-11-13 15:34:00 +1100108 return errNoMessageTypeID
David Symonds4fee3b12010-11-11 10:00:13 +1100109 }
110 return nil // TODO: return error instead?
111}
112
David Symonds8cf720c2015-11-13 15:34:00 +1100113func (ms *messageSet) Marshal(pb Message) error {
David Symonds4fee3b12010-11-11 10:00:13 +1100114 msg, err := Marshal(pb)
115 if err != nil {
116 return err
117 }
118 if item := ms.find(pb); item != nil {
119 // reuse existing item
120 item.Message = msg
121 return nil
122 }
123
124 mti, ok := pb.(messageTypeIder)
125 if !ok {
David Symonds8cf720c2015-11-13 15:34:00 +1100126 return errNoMessageTypeID
David Symonds4fee3b12010-11-11 10:00:13 +1100127 }
128
129 mtid := mti.MessageTypeId()
130 ms.Item = append(ms.Item, &_MessageSet_Item{
131 TypeId: &mtid,
132 Message: msg,
133 })
134 return nil
135}
136
David Symonds8cf720c2015-11-13 15:34:00 +1100137func (ms *messageSet) Reset() { *ms = messageSet{} }
138func (ms *messageSet) String() string { return CompactTextString(ms) }
139func (*messageSet) ProtoMessage() {}
David Symonds9f60f432012-06-14 09:45:25 +1000140
David Symonds4fee3b12010-11-11 10:00:13 +1100141// Support for the message_set_wire_format message option.
142
143func skipVarint(buf []byte) []byte {
144 i := 0
145 for ; buf[i]&0x80 != 0; i++ {
146 }
147 return buf[i+1:]
148}
149
150// MarshalMessageSet encodes the extension map represented by m in the message set wire format.
151// It is called by generated Marshal methods on protocol buffer messages with the message_set_wire_format option.
matloob@google.come51d0022016-05-23 09:09:04 -0400152func MarshalMessageSet(exts interface{}) ([]byte, error) {
153 var m map[int32]Extension
154 switch exts := exts.(type) {
155 case *XXX_InternalExtensions:
156 if err := encodeExtensions(exts); err != nil {
157 return nil, err
158 }
159 m, _ = exts.extensionsRead()
160 case map[int32]Extension:
161 if err := encodeExtensionsMap(exts); err != nil {
162 return nil, err
163 }
164 m = exts
165 default:
166 return nil, errors.New("proto: not an extension map")
David Symonds1d72f7a2011-08-19 18:28:52 +1000167 }
168
David Symonds0c1184e2013-06-08 15:42:12 +1000169 // Sort extension IDs to provide a deterministic encoding.
170 // See also enc_map in encode.go.
171 ids := make([]int, 0, len(m))
172 for id := range m {
173 ids = append(ids, int(id))
174 }
175 sort.Ints(ids)
176
David Symonds8cf720c2015-11-13 15:34:00 +1100177 ms := &messageSet{Item: make([]*_MessageSet_Item, 0, len(m))}
David Symonds0c1184e2013-06-08 15:42:12 +1000178 for _, id := range ids {
179 e := m[int32(id)]
David Symonds4fee3b12010-11-11 10:00:13 +1100180 // Remove the wire type and field number varint, as well as the length varint.
David Symonds1d72f7a2011-08-19 18:28:52 +1000181 msg := skipVarint(skipVarint(e.enc))
David Symonds4fee3b12010-11-11 10:00:13 +1100182
David Symonds0c1184e2013-06-08 15:42:12 +1000183 ms.Item = append(ms.Item, &_MessageSet_Item{
184 TypeId: Int32(int32(id)),
David Symonds1d72f7a2011-08-19 18:28:52 +1000185 Message: msg,
David Symonds0c1184e2013-06-08 15:42:12 +1000186 })
David Symonds4fee3b12010-11-11 10:00:13 +1100187 }
188 return Marshal(ms)
189}
190
191// UnmarshalMessageSet decodes the extension map encoded in buf in the message set wire format.
192// It is called by generated Unmarshal methods on protocol buffer messages with the message_set_wire_format option.
matloob@google.come51d0022016-05-23 09:09:04 -0400193func UnmarshalMessageSet(buf []byte, exts interface{}) error {
194 var m map[int32]Extension
195 switch exts := exts.(type) {
196 case *XXX_InternalExtensions:
197 m = exts.extensionsWrite()
198 case map[int32]Extension:
199 m = exts
200 default:
201 return errors.New("proto: not an extension map")
202 }
203
David Symonds8cf720c2015-11-13 15:34:00 +1100204 ms := new(messageSet)
David Symonds4fee3b12010-11-11 10:00:13 +1100205 if err := Unmarshal(buf, ms); err != nil {
206 return err
207 }
208 for _, item := range ms.Item {
David Symonds25535e32014-07-30 09:23:20 +1000209 id := *item.TypeId
210 msg := item.Message
David Symonds4fee3b12010-11-11 10:00:13 +1100211
David Symonds25535e32014-07-30 09:23:20 +1000212 // Restore wire type and field number varint, plus length varint.
213 // Be careful to preserve duplicate items.
214 b := EncodeVarint(uint64(id)<<3 | WireBytes)
215 if ext, ok := m[id]; ok {
216 // Existing data; rip off the tag and length varint
217 // so we join the new data correctly.
218 // We can assume that ext.enc is set because we are unmarshaling.
219 o := ext.enc[len(b):] // skip wire type and field number
220 _, n := DecodeVarint(o) // calculate length of length varint
221 o = o[n:] // skip length varint
222 msg = append(o, msg...) // join old data and new data
223 }
224 b = append(b, EncodeVarint(uint64(len(msg)))...)
225 b = append(b, msg...)
226
227 m[id] = Extension{enc: b}
David Symonds4fee3b12010-11-11 10:00:13 +1100228 }
229 return nil
230}
David Symonds1d72f7a2011-08-19 18:28:52 +1000231
David Symonds19227ff2014-10-12 16:35:09 +1100232// MarshalMessageSetJSON encodes the extension map represented by m in JSON format.
233// It is called by generated MarshalJSON methods on protocol buffer messages with the message_set_wire_format option.
matloob@google.come51d0022016-05-23 09:09:04 -0400234func MarshalMessageSetJSON(exts interface{}) ([]byte, error) {
235 var m map[int32]Extension
236 switch exts := exts.(type) {
237 case *XXX_InternalExtensions:
238 m, _ = exts.extensionsRead()
239 case map[int32]Extension:
240 m = exts
241 default:
242 return nil, errors.New("proto: not an extension map")
243 }
David Symonds19227ff2014-10-12 16:35:09 +1100244 var b bytes.Buffer
245 b.WriteByte('{')
246
247 // Process the map in key order for deterministic output.
248 ids := make([]int32, 0, len(m))
249 for id := range m {
250 ids = append(ids, id)
251 }
252 sort.Sort(int32Slice(ids)) // int32Slice defined in text.go
253
254 for i, id := range ids {
255 ext := m[id]
256 if i > 0 {
257 b.WriteByte(',')
258 }
259
260 msd, ok := messageSetMap[id]
261 if !ok {
262 // Unknown type; we can't render it, so skip it.
263 continue
264 }
265 fmt.Fprintf(&b, `"[%s]":`, msd.name)
266
267 x := ext.value
268 if x == nil {
269 x = reflect.New(msd.t.Elem()).Interface()
270 if err := Unmarshal(ext.enc, x.(Message)); err != nil {
271 return nil, err
272 }
273 }
274 d, err := json.Marshal(x)
275 if err != nil {
276 return nil, err
277 }
278 b.Write(d)
279 }
280 b.WriteByte('}')
281 return b.Bytes(), nil
282}
283
284// UnmarshalMessageSetJSON decodes the extension map encoded in buf in JSON format.
285// It is called by generated UnmarshalJSON methods on protocol buffer messages with the message_set_wire_format option.
matloob@google.come51d0022016-05-23 09:09:04 -0400286func UnmarshalMessageSetJSON(buf []byte, exts interface{}) error {
David Symonds19227ff2014-10-12 16:35:09 +1100287 // Common-case fast path.
288 if len(buf) == 0 || bytes.Equal(buf, []byte("{}")) {
289 return nil
290 }
291
292 // This is fairly tricky, and it's not clear that it is needed.
293 return errors.New("TODO: UnmarshalMessageSetJSON not yet implemented")
294}
295
David Symonds1d72f7a2011-08-19 18:28:52 +1000296// A global registry of types that can be used in a MessageSet.
297
298var messageSetMap = make(map[int32]messageSetDesc)
299
300type messageSetDesc struct {
301 t reflect.Type // pointer to struct
302 name string
303}
304
305// RegisterMessageSetType is called from the generated code.
David Symonds19227ff2014-10-12 16:35:09 +1100306func RegisterMessageSetType(m Message, fieldNum int32, name string) {
307 messageSetMap[fieldNum] = messageSetDesc{
308 t: reflect.TypeOf(m),
David Symonds1d72f7a2011-08-19 18:28:52 +1000309 name: name,
310 }
311}