-
Notifications
You must be signed in to change notification settings - Fork 16
/
protobuf-c.c
2621 lines (2474 loc) · 78.8 KB
/
protobuf-c.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* --- protobuf-c.c: public protobuf c runtime implementation --- */
/*
* Copyright 2008, Dave Benson.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with
* the License. You may obtain a copy of the License
* at http://www.apache.org/licenses/LICENSE-2.0 Unless
* required by applicable law or agreed to in writing,
* software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/* TODO items:
* 64-BIT OPTIMIZATION: certain implementations use 32-bit math even on 64-bit platforms
(uint64_size, uint64_pack, parse_uint64)
* get_packed_size and pack seem to use type-prefixed names,
whereas parse uses type-suffixed names. pick one and stick with it.
Decision: go with type-suffixed, since the type (or its instance)
is typically the object of the verb.
NOTE: perhaps the "parse" methods should be reanemd to "unpack"
at the same time. (this only affects internal (static) functions)
* use TRUE and FALSE instead of 1 and 0 as appropriate
* use size_t consistently
*/
#if HAVE_PROTOBUF_C_CONFIG_H
#include "protobuf-c-config.h"
#endif
#include <stdio.h> /* for occasional printf()s */
#include <stdlib.h> /* for abort(), malloc() etc */
#include <string.h> /* for strlen(), memcpy(), memmove() */
#if HAVE_ALLOCA_H
#include <alloca.h>
#elif HAVE_MALLOC_H
#include <malloc.h>
#endif
#ifndef PRINT_UNPACK_ERRORS
#define PRINT_UNPACK_ERRORS 1
#endif
#include "protobuf-c.h"
#define MAX_UINT64_ENCODED_SIZE 10
/* convenience macros */
#define TMPALLOC(allocator, size) ((allocator)->tmp_alloc ((allocator)->allocator_data, (size)))
#define FREE(allocator, ptr) \
do { if ((ptr) != NULL) ((allocator)->free ((allocator)->allocator_data, (ptr))); } while(0)
#define UNALIGNED_ALLOC(allocator, size) ALLOC (allocator, size) /* placeholder */
#define STRUCT_MEMBER_P(struct_p, struct_offset) \
((void *) ((uint8_t*) (struct_p) + (struct_offset)))
#define STRUCT_MEMBER(member_type, struct_p, struct_offset) \
(*(member_type*) STRUCT_MEMBER_P ((struct_p), (struct_offset)))
#define STRUCT_MEMBER_PTR(member_type, struct_p, struct_offset) \
((member_type*) STRUCT_MEMBER_P ((struct_p), (struct_offset)))
#define TRUE 1
#define FALSE 0
static void
alloc_failed_warning (unsigned size, const char *filename, unsigned line)
{
fprintf (stderr,
"WARNING: out-of-memory allocating a block of size %u (%s:%u)\n",
size, filename, line);
}
/* Try to allocate memory, running some special code if it fails. */
#define DO_ALLOC(dst, allocator, size, fail_code) \
{ size_t da__allocation_size = (size); \
if (da__allocation_size == 0) \
dst = NULL; \
else if ((dst=((allocator)->alloc ((allocator)->allocator_data, \
da__allocation_size))) == NULL) \
{ \
alloc_failed_warning (da__allocation_size, __FILE__, __LINE__); \
fail_code; \
} \
}
#define DO_UNALIGNED_ALLOC DO_ALLOC /* placeholder */
#define ASSERT_IS_ENUM_DESCRIPTOR(desc) \
assert((desc)->magic == PROTOBUF_C_ENUM_DESCRIPTOR_MAGIC)
#define ASSERT_IS_MESSAGE_DESCRIPTOR(desc) \
assert((desc)->magic == PROTOBUF_C_MESSAGE_DESCRIPTOR_MAGIC)
#define ASSERT_IS_MESSAGE(message) \
ASSERT_IS_MESSAGE_DESCRIPTOR((message)->descriptor)
#define ASSERT_IS_SERVICE_DESCRIPTOR(desc) \
assert((desc)->magic == PROTOBUF_C_SERVICE_DESCRIPTOR_MAGIC)
/* --- allocator --- */
static void protobuf_c_out_of_memory_default (void)
{
fprintf (stderr, "Out Of Memory!!!\n");
abort ();
}
void (*protobuf_c_out_of_memory) (void) = protobuf_c_out_of_memory_default;
static void *system_alloc(void *allocator_data, size_t size)
{
void *rv;
(void) allocator_data;
if (size == 0)
return NULL;
rv = malloc (size);
if (rv == NULL)
protobuf_c_out_of_memory ();
return rv;
}
static void system_free (void *allocator_data, void *data)
{
(void) allocator_data;
if (data)
free (data);
}
/* Some users may configure the default allocator;
providing your own allocator to unpack() is prefered.
this allocator is still used for packing nested messages. */
ProtobufCAllocator protobuf_c_default_allocator =
{
system_alloc,
system_free,
NULL,
8192,
NULL
};
/* Users should NOT modify this structure,
but it's difficult to prevent.
please modify protobuf_c_default_allocator instead. */
ProtobufCAllocator protobuf_c_system_allocator =
{
system_alloc,
system_free,
NULL,
8192,
NULL
};
/* === buffer-simple === */
void
protobuf_c_buffer_simple_append (ProtobufCBuffer *buffer,
size_t len,
const uint8_t *data)
{
ProtobufCBufferSimple *simp = (ProtobufCBufferSimple *) buffer;
size_t new_len = simp->len + len;
if (new_len > simp->alloced)
{
size_t new_alloced = simp->alloced * 2;
uint8_t *new_data;
while (new_alloced < new_len)
new_alloced += new_alloced;
DO_ALLOC (new_data, &protobuf_c_default_allocator, new_alloced, return);
memcpy (new_data, simp->data, simp->len);
if (simp->must_free_data)
FREE (&protobuf_c_default_allocator, simp->data);
else
simp->must_free_data = 1;
simp->data = new_data;
simp->alloced = new_alloced;
}
memcpy (simp->data + simp->len, data, len);
simp->len = new_len;
}
/* === get_packed_size() === */
/* Return the number of bytes required to store the
tag for the field (which includes 3 bits for
the wire-type, and a single bit that denotes the end-of-tag. */
static inline size_t
get_tag_size (unsigned number)
{
if (number < (1<<4))
return 1;
else if (number < (1<<11))
return 2;
else if (number < (1<<18))
return 3;
else if (number < (1<<25))
return 4;
else
return 5;
}
/* Return the number of bytes required to store
a variable-length unsigned integer that fits in 32-bit uint
in base-128 encoding. */
static inline size_t
uint32_size (uint32_t v)
{
if (v < (1<<7))
return 1;
else if (v < (1<<14))
return 2;
else if (v < (1<<21))
return 3;
else if (v < (1<<28))
return 4;
else
return 5;
}
/* Return the number of bytes required to store
a variable-length signed integer that fits in 32-bit int
in base-128 encoding. */
static inline size_t
int32_size (int32_t v)
{
if (v < 0)
return 10;
else if (v < (1<<7))
return 1;
else if (v < (1<<14))
return 2;
else if (v < (1<<21))
return 3;
else if (v < (1<<28))
return 4;
else
return 5;
}
/* return the zigzag-encoded 32-bit unsigned int from a 32-bit signed int */
static inline uint32_t
zigzag32 (int32_t v)
{
if (v < 0)
return ((uint32_t)(-v)) * 2 - 1;
else
return v * 2;
}
/* Return the number of bytes required to store
a variable-length signed integer that fits in 32-bit int,
converted to unsigned via the zig-zag algorithm,
then packed using base-128 encoding. */
static inline size_t
sint32_size (int32_t v)
{
return uint32_size(zigzag32(v));
}
/* Return the number of bytes required to store
a variable-length unsigned integer that fits in 64-bit uint
in base-128 encoding. */
static inline size_t
uint64_size (uint64_t v)
{
uint32_t upper_v = (uint32_t )(v>>32);
if (upper_v == 0)
return uint32_size ((uint32_t)v);
else if (upper_v < (1<<3))
return 5;
else if (upper_v < (1<<10))
return 6;
else if (upper_v < (1<<17))
return 7;
else if (upper_v < (1<<24))
return 8;
else if (upper_v < (1U<<31))
return 9;
else
return 10;
}
/* return the zigzag-encoded 64-bit unsigned int from a 64-bit signed int */
static inline uint64_t
zigzag64 (int64_t v)
{
if (v < 0)
return ((uint64_t)(-v)) * 2 - 1;
else
return v * 2;
}
/* Return the number of bytes required to store
a variable-length signed integer that fits in 64-bit int,
converted to unsigned via the zig-zag algorithm,
then packed using base-128 encoding. */
static inline size_t
sint64_size (int64_t v)
{
return uint64_size(zigzag64(v));
}
/* Get serialized size of a single field in the message,
including the space needed by the identifying tag. */
static size_t
required_field_get_packed_size (const ProtobufCFieldDescriptor *field,
const void *member)
{
size_t rv = get_tag_size (field->id);
switch (field->type)
{
case PROTOBUF_C_TYPE_SINT32:
return rv + sint32_size (*(const int32_t *) member);
case PROTOBUF_C_TYPE_INT32:
return rv + int32_size (*(const uint32_t *) member);
case PROTOBUF_C_TYPE_UINT32:
return rv + uint32_size (*(const uint32_t *) member);
case PROTOBUF_C_TYPE_SINT64:
return rv + sint64_size (*(const int64_t *) member);
case PROTOBUF_C_TYPE_INT64:
case PROTOBUF_C_TYPE_UINT64:
return rv + uint64_size (*(const uint64_t *) member);
case PROTOBUF_C_TYPE_SFIXED32:
case PROTOBUF_C_TYPE_FIXED32:
return rv + 4;
case PROTOBUF_C_TYPE_SFIXED64:
case PROTOBUF_C_TYPE_FIXED64:
return rv + 8;
case PROTOBUF_C_TYPE_BOOL:
return rv + 1;
case PROTOBUF_C_TYPE_FLOAT:
return rv + 4;
case PROTOBUF_C_TYPE_DOUBLE:
return rv + 8;
case PROTOBUF_C_TYPE_ENUM:
// TODO: is this correct for negative-valued enums?
return rv + uint32_size (*(const uint32_t *) member);
case PROTOBUF_C_TYPE_STRING:
{
const char *str = *(char * const *) member;
size_t len = str ? strlen (str) : 0;
return rv + uint32_size (len) + len;
}
case PROTOBUF_C_TYPE_BYTES:
{
size_t len = ((const ProtobufCBinaryData*) member)->len;
return rv + uint32_size (len) + len;
}
//case PROTOBUF_C_TYPE_GROUP:
case PROTOBUF_C_TYPE_MESSAGE:
{
const ProtobufCMessage *msg = * (ProtobufCMessage * const *) member;
size_t subrv = msg ? protobuf_c_message_get_packed_size (msg) : 0;
return rv + uint32_size (subrv) + subrv;
}
}
PROTOBUF_C_ASSERT_NOT_REACHED ();
return 0;
}
/* Get serialized size of a single optional field in the message,
including the space needed by the identifying tag.
Returns 0 if the optional field isn't set. */
static size_t
optional_field_get_packed_size (const ProtobufCFieldDescriptor *field,
const protobuf_c_boolean *has,
const void *member)
{
if (field->type == PROTOBUF_C_TYPE_MESSAGE
|| field->type == PROTOBUF_C_TYPE_STRING)
{
const void *ptr = * (const void * const *) member;
if (ptr == NULL
|| ptr == field->default_value)
return 0;
}
else
{
if (!*has)
return 0;
}
return required_field_get_packed_size (field, member);
}
/* Get serialized size of a repeated field in the message,
which may consist of any number of values (including 0).
Includes the space needed by the identifying tags (as needed). */
static size_t
repeated_field_get_packed_size (const ProtobufCFieldDescriptor *field,
size_t count,
const void *member)
{
size_t header_size;
size_t rv = 0;
unsigned i;
void *array = * (void * const *) member;
if (count == 0)
return 0;
header_size = get_tag_size (field->id);
if (!field->packed)
header_size *= count;
switch (field->type)
{
case PROTOBUF_C_TYPE_SINT32:
for (i = 0; i < count; i++)
rv += sint32_size (((int32_t*)array)[i]);
break;
case PROTOBUF_C_TYPE_INT32:
for (i = 0; i < count; i++)
rv += int32_size (((uint32_t*)array)[i]);
break;
case PROTOBUF_C_TYPE_UINT32:
case PROTOBUF_C_TYPE_ENUM:
for (i = 0; i < count; i++)
rv += uint32_size (((uint32_t*)array)[i]);
break;
case PROTOBUF_C_TYPE_SINT64:
for (i = 0; i < count; i++)
rv += sint64_size (((int64_t*)array)[i]);
break;
case PROTOBUF_C_TYPE_INT64:
case PROTOBUF_C_TYPE_UINT64:
for (i = 0; i < count; i++)
rv += uint64_size (((uint64_t*)array)[i]);
break;
case PROTOBUF_C_TYPE_SFIXED32:
case PROTOBUF_C_TYPE_FIXED32:
case PROTOBUF_C_TYPE_FLOAT:
rv += 4 * count;
break;
case PROTOBUF_C_TYPE_SFIXED64:
case PROTOBUF_C_TYPE_FIXED64:
case PROTOBUF_C_TYPE_DOUBLE:
rv += 8 * count;
break;
case PROTOBUF_C_TYPE_BOOL:
rv += count;
break;
case PROTOBUF_C_TYPE_STRING:
for (i = 0; i < count; i++)
{
size_t len = strlen (((char**) array)[i]);
rv += uint32_size (len) + len;
}
break;
case PROTOBUF_C_TYPE_BYTES:
for (i = 0; i < count; i++)
{
size_t len = ((ProtobufCBinaryData*) array)[i].len;
rv += uint32_size (len) + len;
}
break;
case PROTOBUF_C_TYPE_MESSAGE:
for (i = 0; i < count; i++)
{
size_t len = protobuf_c_message_get_packed_size (((ProtobufCMessage **) array)[i]);
rv += uint32_size (len) + len;
}
break;
//case PROTOBUF_C_TYPE_GROUP: // NOT SUPPORTED
}
if (field->packed)
header_size += uint32_size (rv);
return header_size + rv;
}
/* Get the packed size of a unknown field (meaning one that
is passed through mostly uninterpreted... this is done
for forward compatibilty with the addition of new fields). */
static inline size_t
unknown_field_get_packed_size (const ProtobufCMessageUnknownField *field)
{
return get_tag_size (field->tag) + field->len;
}
/* Get the number of bytes that the message will occupy once serialized. */
size_t
protobuf_c_message_get_packed_size(const ProtobufCMessage *message)
{
unsigned i;
size_t rv = 0;
ASSERT_IS_MESSAGE (message);
for (i = 0; i < message->descriptor->n_fields; i++)
{
const ProtobufCFieldDescriptor *field = message->descriptor->fields + i;
const void *member = ((const char *) message) + field->offset;
const void *qmember = ((const char *) message) + field->quantifier_offset;
if (field->label == PROTOBUF_C_LABEL_REQUIRED)
rv += required_field_get_packed_size (field, member);
else if (field->label == PROTOBUF_C_LABEL_OPTIONAL)
rv += optional_field_get_packed_size (field, qmember, member);
else
rv += repeated_field_get_packed_size (field, * (const size_t *) qmember, member);
}
for (i = 0; i < message->n_unknown_fields; i++)
rv += unknown_field_get_packed_size (&message->unknown_fields[i]);
return rv;
}
/* === pack() === */
/* Pack an unsigned 32-bit integer in base-128 encoding, and return the number of bytes needed:
this will be 5 or less. */
static inline size_t
uint32_pack (uint32_t value, uint8_t *out)
{
unsigned rv = 0;
if (value >= 0x80)
{
out[rv++] = value | 0x80;
value >>= 7;
if (value >= 0x80)
{
out[rv++] = value | 0x80;
value >>= 7;
if (value >= 0x80)
{
out[rv++] = value | 0x80;
value >>= 7;
if (value >= 0x80)
{
out[rv++] = value | 0x80;
value >>= 7;
}
}
}
}
/* assert: value<128 */
out[rv++] = value;
return rv;
}
/* Pack a 32-bit signed integer, returning the number of bytes needed.
Negative numbers are packed as twos-complement 64-bit integers. */
static inline size_t
int32_pack (int32_t value, uint8_t *out)
{
if (value < 0)
{
out[0] = value | 0x80;
out[1] = (value>>7) | 0x80;
out[2] = (value>>14) | 0x80;
out[3] = (value>>21) | 0x80;
out[4] = (value>>28) | 0x80;
out[5] = out[6] = out[7] = out[8] = 0xff;
out[9] = 0x01;
return 10;
}
else
return uint32_pack (value, out);
}
/* Pack a 32-bit integer in zigwag encoding. */
static inline size_t
sint32_pack (int32_t value, uint8_t *out)
{
return uint32_pack (zigzag32 (value), out);
}
/* Pack a 64-bit unsigned integer that fits in a 64-bit uint,
using base-128 encoding. */
static size_t
uint64_pack (uint64_t value, uint8_t *out)
{
uint32_t hi = (uint32_t )(value>>32);
uint32_t lo = (uint32_t )value;
unsigned rv;
if (hi == 0)
return uint32_pack ((uint32_t)lo, out);
out[0] = (lo) | 0x80;
out[1] = (lo>>7) | 0x80;
out[2] = (lo>>14) | 0x80;
out[3] = (lo>>21) | 0x80;
if (hi < 8)
{
out[4] = (hi<<4) | (lo>>28);
return 5;
}
else
{
out[4] = ((hi&7)<<4) | (lo>>28) | 0x80;
hi >>= 3;
}
rv = 5;
while (hi >= 128)
{
out[rv++] = hi | 0x80;
hi >>= 7;
}
out[rv++] = hi;
return rv;
}
/* Pack a 64-bit signed integer in zigzan encoding,
return the size of the packed output.
(Max returned value is 10) */
static inline size_t
sint64_pack (int64_t value, uint8_t *out)
{
return uint64_pack (zigzag64 (value), out);
}
/* Pack a 32-bit value, little-endian.
Used for fixed32, sfixed32, float) */
static inline size_t
fixed32_pack (uint32_t value, void *out)
{
#if IS_LITTLE_ENDIAN
memcpy (out, &value, 4);
#else
uint8_t *buf = out;
buf[0] = value;
buf[1] = value>>8;
buf[2] = value>>16;
buf[3] = value>>24;
#endif
return 4;
}
/* Pack a 64-bit fixed-length value.
(Used for fixed64, sfixed64, double) */
/* XXX: the big-endian impl is really only good for 32-bit machines,
a 64-bit version would be appreciated, plus a way
to decide to use 64-bit math where convenient. */
static inline size_t
fixed64_pack (uint64_t value, void *out)
{
#if IS_LITTLE_ENDIAN
memcpy (out, &value, 8);
#else
fixed32_pack (value, out);
fixed32_pack (value>>32, (char *)out+4);
#endif
return 8;
}
/* Pack a boolean as 0 or 1, even though the protobuf_c_boolean
can really assume any integer value. */
/* XXX: perhaps on some platforms "*out = !!value" would be
a better impl, b/c that is idiotmatic c++ in some stl impls. */
static inline size_t
boolean_pack (protobuf_c_boolean value, uint8_t *out)
{
*out = value ? 1 : 0;
return 1;
}
/* Pack a length-prefixed string.
The input string is NUL-terminated.
The NULL pointer is treated as an empty string.
This isn't really necessary, but it allows people
to leave required strings blank.
(See Issue 13 in the bug tracker for a
little more explanation).
*/
static inline size_t
string_pack (const char * str, uint8_t *out)
{
if (str == NULL)
{
out[0] = 0;
return 1;
}
else
{
size_t len = strlen (str);
size_t rv = uint32_pack (len, out);
memcpy (out + rv, str, len);
return rv + len;
}
}
static inline size_t
binary_data_pack (const ProtobufCBinaryData *bd, uint8_t *out)
{
size_t len = bd->len;
size_t rv = uint32_pack (len, out);
memcpy (out + rv, bd->data, len);
return rv + len;
}
static inline size_t
prefixed_message_pack (const ProtobufCMessage *message, uint8_t *out)
{
if (message == NULL)
{
out[0] = 0;
return 1;
}
else
{
size_t rv = protobuf_c_message_pack (message, out + 1);
uint32_t rv_packed_size = uint32_size (rv);
if (rv_packed_size != 1)
memmove (out + rv_packed_size, out + 1, rv);
return uint32_pack (rv, out) + rv;
}
}
/* wire-type will be added in required_field_pack() */
/* XXX: just call uint64_pack on 64-bit platforms. */
static size_t
tag_pack (uint32_t id, uint8_t *out)
{
if (id < (1<<(32-3)))
return uint32_pack (id<<3, out);
else
return uint64_pack (((uint64_t)id) << 3, out);
}
static size_t
required_field_pack (const ProtobufCFieldDescriptor *field,
const void *member,
uint8_t *out)
{
size_t rv = tag_pack (field->id, out);
switch (field->type)
{
case PROTOBUF_C_TYPE_SINT32:
out[0] |= PROTOBUF_C_WIRE_TYPE_VARINT;
return rv + sint32_pack (*(const int32_t *) member, out + rv);
case PROTOBUF_C_TYPE_INT32:
out[0] |= PROTOBUF_C_WIRE_TYPE_VARINT;
return rv + int32_pack (*(const uint32_t *) member, out + rv);
case PROTOBUF_C_TYPE_UINT32:
case PROTOBUF_C_TYPE_ENUM:
out[0] |= PROTOBUF_C_WIRE_TYPE_VARINT;
return rv + uint32_pack (*(const uint32_t *) member, out + rv);
case PROTOBUF_C_TYPE_SINT64:
out[0] |= PROTOBUF_C_WIRE_TYPE_VARINT;
return rv + sint64_pack (*(const int64_t *) member, out + rv);
case PROTOBUF_C_TYPE_INT64:
case PROTOBUF_C_TYPE_UINT64:
out[0] |= PROTOBUF_C_WIRE_TYPE_VARINT;
return rv + uint64_pack (*(const uint64_t *) member, out + rv);
case PROTOBUF_C_TYPE_SFIXED32:
case PROTOBUF_C_TYPE_FIXED32:
case PROTOBUF_C_TYPE_FLOAT:
out[0] |= PROTOBUF_C_WIRE_TYPE_32BIT;
return rv + fixed32_pack (*(const uint32_t *) member, out + rv);
case PROTOBUF_C_TYPE_SFIXED64:
case PROTOBUF_C_TYPE_FIXED64:
case PROTOBUF_C_TYPE_DOUBLE:
out[0] |= PROTOBUF_C_WIRE_TYPE_64BIT;
return rv + fixed64_pack (*(const uint64_t *) member, out + rv);
case PROTOBUF_C_TYPE_BOOL:
out[0] |= PROTOBUF_C_WIRE_TYPE_VARINT;
return rv + boolean_pack (*(const protobuf_c_boolean *) member, out + rv);
case PROTOBUF_C_TYPE_STRING:
{
out[0] |= PROTOBUF_C_WIRE_TYPE_LENGTH_PREFIXED;
return rv + string_pack (*(char * const *) member, out + rv);
}
case PROTOBUF_C_TYPE_BYTES:
{
const ProtobufCBinaryData * bd = ((const ProtobufCBinaryData*) member);
out[0] |= PROTOBUF_C_WIRE_TYPE_LENGTH_PREFIXED;
return rv + binary_data_pack (bd, out + rv);
}
//case PROTOBUF_C_TYPE_GROUP: // NOT SUPPORTED
case PROTOBUF_C_TYPE_MESSAGE:
{
out[0] |= PROTOBUF_C_WIRE_TYPE_LENGTH_PREFIXED;
return rv + prefixed_message_pack (*(ProtobufCMessage * const *) member,
out + rv);
}
}
PROTOBUF_C_ASSERT_NOT_REACHED ();
return 0;
}
static size_t
optional_field_pack (const ProtobufCFieldDescriptor *field,
const protobuf_c_boolean *has,
const void *member,
uint8_t *out)
{
if (field->type == PROTOBUF_C_TYPE_MESSAGE
|| field->type == PROTOBUF_C_TYPE_STRING)
{
const void *ptr = * (const void * const *) member;
if (ptr == NULL
|| ptr == field->default_value)
return 0;
}
else
{
if (!*has)
return 0;
}
return required_field_pack (field, member, out);
}
/* TODO: implement as a table lookup */
static inline size_t
sizeof_elt_in_repeated_array (ProtobufCType type)
{
switch (type)
{
case PROTOBUF_C_TYPE_SINT32:
case PROTOBUF_C_TYPE_INT32:
case PROTOBUF_C_TYPE_UINT32:
case PROTOBUF_C_TYPE_SFIXED32:
case PROTOBUF_C_TYPE_FIXED32:
case PROTOBUF_C_TYPE_FLOAT:
case PROTOBUF_C_TYPE_ENUM:
return 4;
case PROTOBUF_C_TYPE_SINT64:
case PROTOBUF_C_TYPE_INT64:
case PROTOBUF_C_TYPE_UINT64:
case PROTOBUF_C_TYPE_SFIXED64:
case PROTOBUF_C_TYPE_FIXED64:
case PROTOBUF_C_TYPE_DOUBLE:
return 8;
case PROTOBUF_C_TYPE_BOOL:
return sizeof (protobuf_c_boolean);
case PROTOBUF_C_TYPE_STRING:
case PROTOBUF_C_TYPE_MESSAGE:
return sizeof (void *);
case PROTOBUF_C_TYPE_BYTES:
return sizeof (ProtobufCBinaryData);
}
PROTOBUF_C_ASSERT_NOT_REACHED ();
return 0;
}
static void
copy_to_little_endian_32 (void *out, const void *in, unsigned N)
{
#if IS_LITTLE_ENDIAN
memcpy (out, in, N * 4);
#else
unsigned i;
const uint32_t *ini = in;
for (i = 0; i < N; i++)
fixed32_pack (ini[i], (uint32_t*)out + i);
#endif
}
static void
copy_to_little_endian_64 (void *out, const void *in, unsigned N)
{
#if IS_LITTLE_ENDIAN
memcpy (out, in, N * 8);
#else
unsigned i;
const uint64_t *ini = in;
for (i = 0; i < N; i++)
fixed64_pack (ini[i], (uint64_t*)out + i);
#endif
}
static unsigned
get_type_min_size (ProtobufCType type)
{
if (type == PROTOBUF_C_TYPE_SFIXED32
|| type == PROTOBUF_C_TYPE_FIXED32
|| type == PROTOBUF_C_TYPE_FLOAT)
return 4;
if (type == PROTOBUF_C_TYPE_SFIXED64
|| type == PROTOBUF_C_TYPE_FIXED64
|| type == PROTOBUF_C_TYPE_DOUBLE)
return 8;
return 1;
}
static size_t
repeated_field_pack (const ProtobufCFieldDescriptor *field,
size_t count,
const void *member,
uint8_t *out)
{
char *array = * (char * const *) member;
unsigned i;
if (field->packed)
{
unsigned header_len;
unsigned len_start;
unsigned min_length;
unsigned payload_len;
unsigned length_size_min;
unsigned actual_length_size;
uint8_t *payload_at;
if (count == 0)
return 0;
header_len = tag_pack (field->id, out);
out[0] |= PROTOBUF_C_WIRE_TYPE_LENGTH_PREFIXED;
len_start = header_len;
min_length = get_type_min_size (field->type) * count;
length_size_min = uint32_size (min_length);
header_len += length_size_min;
payload_at = out + header_len;
switch (field->type)
{
case PROTOBUF_C_TYPE_SFIXED32:
case PROTOBUF_C_TYPE_FIXED32:
case PROTOBUF_C_TYPE_FLOAT:
copy_to_little_endian_32 (payload_at, array, count);
payload_at += count * 4;
break;
case PROTOBUF_C_TYPE_SFIXED64:
case PROTOBUF_C_TYPE_FIXED64:
case PROTOBUF_C_TYPE_DOUBLE:
copy_to_little_endian_64 (payload_at, array, count);
payload_at += count * 8;
break;
case PROTOBUF_C_TYPE_INT32:
{
const int32_t *arr = (const int32_t *) array;
for (i = 0; i < count; i++)
payload_at += int32_pack (arr[i], payload_at);
}
break;
case PROTOBUF_C_TYPE_SINT32:
{
const int32_t *arr = (const int32_t *) array;
for (i = 0; i < count; i++)
payload_at += sint32_pack (arr[i], payload_at);
}
break;
case PROTOBUF_C_TYPE_SINT64:
{
const int64_t *arr = (const int64_t *) array;
for (i = 0; i < count; i++)
payload_at += sint64_pack (arr[i], payload_at);
}
break;
case PROTOBUF_C_TYPE_ENUM:
case PROTOBUF_C_TYPE_UINT32:
{
const uint32_t *arr = (const uint32_t *) array;
for (i = 0; i < count; i++)
payload_at += uint32_pack (arr[i], payload_at);
}
break;
case PROTOBUF_C_TYPE_INT64:
case PROTOBUF_C_TYPE_UINT64:
{
const uint64_t *arr = (const uint64_t *) array;
for (i = 0; i < count; i++)
payload_at += uint64_pack (arr[i], payload_at);
}
break;
case PROTOBUF_C_TYPE_BOOL:
{
const protobuf_c_boolean *arr = (const protobuf_c_boolean *) array;
for (i = 0; i < count; i++)
payload_at += boolean_pack (arr[i], payload_at);
}
break;
default:
assert (0);
}
payload_len = payload_at - (out + header_len);
actual_length_size = uint32_size (payload_len);
if (length_size_min != actual_length_size)
{
assert (actual_length_size == length_size_min + 1);
memmove (out + header_len + 1, out + header_len, payload_len);
header_len++;
}
uint32_pack (payload_len, out + len_start);
return header_len + payload_len;
}
else
{
/* CONSIDER: optimize this case a bit (by putting the loop inside the switch) */
size_t rv = 0;
unsigned siz = sizeof_elt_in_repeated_array (field->type);
for (i = 0; i < count; i++)
{
rv += required_field_pack (field, array, out + rv);
array += siz;
}
return rv;
}
}
static size_t
unknown_field_pack (const ProtobufCMessageUnknownField *field,
uint8_t *out)
{
size_t rv = tag_pack (field->tag, out);
out[0] |= field->wire_type;
memcpy (out + rv, field->data, field->len);
return rv + field->len;
}
size_t
protobuf_c_message_pack (const ProtobufCMessage *message,
uint8_t *out)
{
unsigned i;
size_t rv = 0;
ASSERT_IS_MESSAGE (message);
for (i = 0; i < message->descriptor->n_fields; i++)
{
const ProtobufCFieldDescriptor *field = message->descriptor->fields + i;