FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
msgpack-python/msgpack/pack_template.h at main · DiamondLightSource/msgpack-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
DiamondLightSource
/
msgpack-python
Public
forked from
msgpack/msgpack-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
msgpack-python
/
msgpack
/
pack_template.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
604 lines (549 loc) · 16.6 KB
Breadcrumbs
msgpack-python
/
msgpack
/
pack_template.h
Copy path
File metadata and controls
604 lines (549 loc) · 16.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
* MessagePack packing routine template
*
* Copyright (C) 2008-2010 FURUHASHI Sadayuki
*
* 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.
*/
#if
defined(
__LITTLE_ENDIAN__
)
#define
TAKE8_8
(
d
) ((uint8_t*)&d)[0]
#define
TAKE8_16
(
d
) ((uint8_t*)&d)[0]
#define
TAKE8_32
(
d
) ((uint8_t*)&d)[0]
#define
TAKE8_64
(
d
) ((uint8_t*)&d)[0]
#elif
defined(
__BIG_ENDIAN__
)
#define
TAKE8_8
(
d
) ((uint8_t*)&d)[0]
#define
TAKE8_16
(
d
) ((uint8_t*)&d)[1]
#define
TAKE8_32
(
d
) ((uint8_t*)&d)[3]
#define
TAKE8_64
(
d
) ((uint8_t*)&d)[7]
#endif
#ifndef
msgpack_pack_append_buffer
#error
msgpack_pack_append_buffer callback is not defined
#endif
/*
* Integer
*/
#define
msgpack_pack_real_uint16
(
x
,
d
) \
do { \
if(d < (1<<7)) { \
/* fixnum */
\
msgpack_pack_append_buffer
(
x
,
&
TAKE8_16
(
d
),
1
); \
}
else
if
(
d
<
(
1
<<
8
)) { \
/* unsigned 8 */
\
unsigned
char
buf
[
2
]
=
{
0xcc
,
TAKE8_16
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
}
else
{ \
/* unsigned 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xcd
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
} \
}
while
(
0
)
#define
msgpack_pack_real_uint32
(
x
,
d
) \
do { \
if(d < (1<<8)) { \
if(d < (1<<7)) { \
/* fixnum */
\
msgpack_pack_append_buffer
(
x
,
&
TAKE8_32
(
d
),
1
); \
}
else
{ \
/* unsigned 8 */
\
unsigned
char
buf
[
2
]
=
{
0xcc
,
TAKE8_32
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
} \
}
else
{ \
if
(
d
<
(
1
<<
16
)) { \
/* unsigned 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xcd
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
}
else
{ \
/* unsigned 32 */
\
unsigned
char
buf
[
5
]; \
buf
[
0
]
=
0xce
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
5
); \
} \
} \
}
while
(
0
)
#define
msgpack_pack_real_uint64
(
x
,
d
) \
do { \
if(d < (1ULL<<8)) { \
if(d < (1ULL<<7)) { \
/* fixnum */
\
msgpack_pack_append_buffer
(
x
,
&
TAKE8_64
(
d
),
1
); \
}
else
{ \
/* unsigned 8 */
\
unsigned
char
buf
[
2
]
=
{
0xcc
,
TAKE8_64
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
} \
}
else
{ \
if
(
d
<
(
1ULL
<<
16
)) { \
/* unsigned 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xcd
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
}
else
if
(
d
<
(
1ULL
<<
32
)) { \
/* unsigned 32 */
\
unsigned
char
buf
[
5
]; \
buf
[
0
]
=
0xce
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
5
); \
}
else
{ \
/* unsigned 64 */
\
unsigned
char
buf
[
9
]; \
buf
[
0
]
=
0xcf
;
_msgpack_store64
(
&
buf
[
1
],
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
9
); \
} \
} \
}
while
(
0
)
#define
msgpack_pack_real_int16
(
x
,
d
) \
do { \
if(d < -(1<<5)) { \
if(d < -(1<<7)) { \
/* signed 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xd1
;
_msgpack_store16
(
&
buf
[
1
], (
int16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
}
else
{ \
/* signed 8 */
\
unsigned
char
buf
[
2
]
=
{
0xd0
,
TAKE8_16
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
} \
}
else
if
(
d
<
(
1
<<
7
)) { \
/* fixnum */
\
msgpack_pack_append_buffer
(
x
,
&
TAKE8_16
(
d
),
1
); \
}
else
{ \
if
(
d
<
(
1
<<
8
)) { \
/* unsigned 8 */
\
unsigned
char
buf
[
2
]
=
{
0xcc
,
TAKE8_16
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
}
else
{ \
/* unsigned 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xcd
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
} \
} \
}
while
(
0
)
#define
msgpack_pack_real_int32
(
x
,
d
) \
do { \
if(d < -(1<<5)) { \
if(d < -(1<<15)) { \
/* signed 32 */
\
unsigned
char
buf
[
5
]; \
buf
[
0
]
=
0xd2
;
_msgpack_store32
(
&
buf
[
1
], (
int32_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
5
); \
}
else
if
(
d
<
-
(
1
<<
7
)) { \
/* signed 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xd1
;
_msgpack_store16
(
&
buf
[
1
], (
int16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
}
else
{ \
/* signed 8 */
\
unsigned
char
buf
[
2
]
=
{
0xd0
,
TAKE8_32
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
} \
}
else
if
(
d
<
(
1
<<
7
)) { \
/* fixnum */
\
msgpack_pack_append_buffer
(
x
,
&
TAKE8_32
(
d
),
1
); \
}
else
{ \
if
(
d
<
(
1
<<
8
)) { \
/* unsigned 8 */
\
unsigned
char
buf
[
2
]
=
{
0xcc
,
TAKE8_32
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
}
else
if
(
d
<
(
1
<<
16
)) { \
/* unsigned 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xcd
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
}
else
{ \
/* unsigned 32 */
\
unsigned
char
buf
[
5
]; \
buf
[
0
]
=
0xce
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
5
); \
} \
} \
}
while
(
0
)
#define
msgpack_pack_real_int64
(
x
,
d
) \
do { \
if(d < -(1LL<<5)) { \
if(d < -(1LL<<15)) { \
if(d < -(1LL<<31)) { \
/* signed 64 */
\
unsigned
char
buf
[
9
]; \
buf
[
0
]
=
0xd3
;
_msgpack_store64
(
&
buf
[
1
],
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
9
); \
}
else
{ \
/* signed 32 */
\
unsigned
char
buf
[
5
]; \
buf
[
0
]
=
0xd2
;
_msgpack_store32
(
&
buf
[
1
], (
int32_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
5
); \
} \
}
else
{ \
if
(
d
<
-
(
1
<<
7
)) { \
/* signed 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xd1
;
_msgpack_store16
(
&
buf
[
1
], (
int16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
}
else
{ \
/* signed 8 */
\
unsigned
char
buf
[
2
]
=
{
0xd0
,
TAKE8_64
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
} \
} \
}
else
if
(
d
<
(
1
<<
7
)) { \
/* fixnum */
\
msgpack_pack_append_buffer
(
x
,
&
TAKE8_64
(
d
),
1
); \
}
else
{ \
if
(
d
<
(
1LL
<<
16
)) { \
if
(
d
<
(
1
<<
8
)) { \
/* unsigned 8 */
\
unsigned
char
buf
[
2
]
=
{
0xcc
,
TAKE8_64
(
d
)}; \
msgpack_pack_append_buffer
(
x
,
buf
,
2
); \
}
else
{ \
/* unsigned 16 */
\
unsigned
char
buf
[
3
]; \
buf
[
0
]
=
0xcd
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
3
); \
} \
}
else
{ \
if
(
d
<
(
1LL
<<
32
)) { \
/* unsigned 32 */
\
unsigned
char
buf
[
5
]; \
buf
[
0
]
=
0xce
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
5
); \
}
else
{ \
/* unsigned 64 */
\
unsigned
char
buf
[
9
]; \
buf
[
0
]
=
0xcf
;
_msgpack_store64
(
&
buf
[
1
],
d
); \
msgpack_pack_append_buffer
(
x
,
buf
,
9
); \
} \
} \
} \
}
while
(
0
)
static
inline
int
msgpack_pack_short
(
msgpack_packer
*
x
,
short
d
)
{
#if
defined(
SIZEOF_SHORT
)
#if
SIZEOF_SHORT
==
2
msgpack_pack_real_int16
(
x
,
d
);
#elif
SIZEOF_SHORT
==
4
msgpack_pack_real_int32
(
x
,
d
);
#else
msgpack_pack_real_int64
(
x
,
d
);
#endif
#elif
defined(
SHRT_MAX
)
#if
SHRT_MAX
==
0x7fff
msgpack_pack_real_int16
(
x
,
d
);
#elif
SHRT_MAX
==
0x7fffffff
msgpack_pack_real_int32
(
x
,
d
);
#else
msgpack_pack_real_int64
(
x
,
d
);
#endif
#else
if
(
sizeof
(
short
)
==
2
) {
msgpack_pack_real_int16
(
x
,
d
);
}
else
if
(
sizeof
(
short
)
==
4
) {
msgpack_pack_real_int32
(
x
,
d
);
}
else
{
msgpack_pack_real_int64
(
x
,
d
);
}
#endif
}
static
inline
int
msgpack_pack_int
(
msgpack_packer
*
x
,
int
d
)
{
#if
defined(
SIZEOF_INT
)
#if
SIZEOF_INT
==
2
msgpack_pack_real_int16
(
x
,
d
);
#elif
SIZEOF_INT
==
4
msgpack_pack_real_int32
(
x
,
d
);
#else
msgpack_pack_real_int64
(
x
,
d
);
#endif
#elif
defined(
INT_MAX
)
#if
INT_MAX
==
0x7fff
msgpack_pack_real_int16
(
x
,
d
);
#elif
INT_MAX
==
0x7fffffff
msgpack_pack_real_int32
(
x
,
d
);
#else
msgpack_pack_real_int64
(
x
,
d
);
#endif
#else
if
(
sizeof
(
int
)
==
2
) {
msgpack_pack_real_int16
(
x
,
d
);
}
else
if
(
sizeof
(
int
)
==
4
) {
msgpack_pack_real_int32
(
x
,
d
);
}
else
{
msgpack_pack_real_int64
(
x
,
d
);
}
#endif
}
static
inline
int
msgpack_pack_long
(
msgpack_packer
*
x
,
long
d
)
{
#if
defined(
SIZEOF_LONG
)
#if
SIZEOF_LONG
==
4
msgpack_pack_real_int32
(
x
,
d
);
#else
msgpack_pack_real_int64
(
x
,
d
);
#endif
#elif
defined(
LONG_MAX
)
#if
LONG_MAX
==
0x7fffffffL
msgpack_pack_real_int32
(
x
,
d
);
#else
msgpack_pack_real_int64
(
x
,
d
);
#endif
#else
if
(
sizeof
(
long
)
==
4
) {
msgpack_pack_real_int32
(
x
,
d
);
}
else
{
msgpack_pack_real_int64
(
x
,
d
);
}
#endif
}
static
inline
int
msgpack_pack_long_long
(
msgpack_packer
*
x
,
long long
d
)
{
msgpack_pack_real_int64
(
x
,
d
);
}
static
inline
int
msgpack_pack_unsigned_long_long
(
msgpack_packer
*
x
,
unsigned long long
d
)
{
msgpack_pack_real_uint64
(
x
,
d
);
}
/*
* Float
*/
static
inline
int
msgpack_pack_float
(
msgpack_packer
*
x
,
float
d
)
{
unsigned
char
buf
[
5
];
buf
[
0
]
=
0xca
;
#if
PY_VERSION_HEX
>=
0x030B00A7
PyFloat_Pack4
(
d
, (
char
*
)
&
buf
[
1
],
0
);
#else
_PyFloat_Pack4
(
d
,
&
buf
[
1
],
0
);
#endif
msgpack_pack_append_buffer
(
x
,
buf
,
5
);
}
static
inline
int
msgpack_pack_double
(
msgpack_packer
*
x
,
double
d
)
{
unsigned
char
buf
[
9
];
buf
[
0
]
=
0xcb
;
#if
PY_VERSION_HEX
>=
0x030B00A7
PyFloat_Pack8
(
d
, (
char
*
)
&
buf
[
1
],
0
);
#else
_PyFloat_Pack8
(
d
,
&
buf
[
1
],
0
);
#endif
msgpack_pack_append_buffer
(
x
,
buf
,
9
);
}
/*
* Nil
*/
static
inline
int
msgpack_pack_nil
(
msgpack_packer
*
x
)
{
static
const
unsigned
char
d
=
0xc0
;
msgpack_pack_append_buffer
(
x
,
&
d
,
1
);
}
/*
* Boolean
*/
static
inline
int
msgpack_pack_true
(
msgpack_packer
*
x
)
{
static
const
unsigned
char
d
=
0xc3
;
msgpack_pack_append_buffer
(
x
,
&
d
,
1
);
}
static
inline
int
msgpack_pack_false
(
msgpack_packer
*
x
)
{
static
const
unsigned
char
d
=
0xc2
;
msgpack_pack_append_buffer
(
x
,
&
d
,
1
);
}
/*
* Array
*/
static
inline
int
msgpack_pack_array
(
msgpack_packer
*
x
,
unsigned
int
n
)
{
if
(
n
<
16
) {
unsigned
char
d
=
0x90
|
n
;
msgpack_pack_append_buffer
(
x
,
&
d
,
1
);
}
else
if
(
n
<
65536
) {
unsigned
char
buf
[
3
];
buf
[
0
]
=
0xdc
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
n
);
msgpack_pack_append_buffer
(
x
,
buf
,
3
);
}
else
{
unsigned
char
buf
[
5
];
buf
[
0
]
=
0xdd
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
n
);
msgpack_pack_append_buffer
(
x
,
buf
,
5
);
}
}
/*
* Map
*/
static
inline
int
msgpack_pack_map
(
msgpack_packer
*
x
,
unsigned
int
n
)
{
if
(
n
<
16
) {
unsigned
char
d
=
0x80
|
n
;
msgpack_pack_append_buffer
(
x
,
&
TAKE8_8
(
d
),
1
);
}
else
if
(
n
<
65536
) {
unsigned
char
buf
[
3
];
buf
[
0
]
=
0xde
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
n
);
msgpack_pack_append_buffer
(
x
,
buf
,
3
);
}
else
{
unsigned
char
buf
[
5
];
buf
[
0
]
=
0xdf
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
n
);
msgpack_pack_append_buffer
(
x
,
buf
,
5
);
}
}
/*
* Raw
*/
static
inline
int
msgpack_pack_raw
(
msgpack_packer
*
x
,
size_t
l
)
{
if
(
l
<
32
) {
unsigned
char
d
=
0xa0
| (
uint8_t
)
l
;
msgpack_pack_append_buffer
(
x
,
&
TAKE8_8
(
d
),
1
);
}
else
if
(
x
->
use_bin_type
&&
l
<
256
) {
// str8 is new format introduced with bin.
unsigned
char
buf
[
2
]
=
{
0xd9
, (
uint8_t
)
l
};
msgpack_pack_append_buffer
(
x
,
buf
,
2
);
}
else
if
(
l
<
65536
) {
unsigned
char
buf
[
3
];
buf
[
0
]
=
0xda
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
l
);
msgpack_pack_append_buffer
(
x
,
buf
,
3
);
}
else
{
unsigned
char
buf
[
5
];
buf
[
0
]
=
0xdb
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
l
);
msgpack_pack_append_buffer
(
x
,
buf
,
5
);
}
}
/*
* bin
*/
static
inline
int
msgpack_pack_bin
(
msgpack_packer
*
x
,
size_t
l
)
{
if
(!
x
->
use_bin_type
) {
return
msgpack_pack_raw
(
x
,
l
);
}
if
(
l
<
256
) {
unsigned
char
buf
[
2
]
=
{
0xc4
, (
unsigned
char
)
l
};
msgpack_pack_append_buffer
(
x
,
buf
,
2
);
}
else
if
(
l
<
65536
) {
unsigned
char
buf
[
3
]
=
{
0xc5
};
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
l
);
msgpack_pack_append_buffer
(
x
,
buf
,
3
);
}
else
{
unsigned
char
buf
[
5
]
=
{
0xc6
};
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
l
);
msgpack_pack_append_buffer
(
x
,
buf
,
5
);
}
}
static
inline
int
msgpack_pack_raw_body
(
msgpack_packer
*
x
,
const
void
*
b
,
size_t
l
)
{
if
(
l
>
0
)
msgpack_pack_append_buffer
(
x
, (
const
unsigned
char
*
)
b
,
l
);
return
0
;
}
/*
* Ext
*/
static
inline
int
msgpack_pack_ext
(
msgpack_packer
*
x
,
char
typecode
,
size_t
l
)
{
if
(
l
==
1
) {
unsigned
char
buf
[
2
];
buf
[
0
]
=
0xd4
;
buf
[
1
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
2
);
}
else
if
(
l
==
2
) {
unsigned
char
buf
[
2
];
buf
[
0
]
=
0xd5
;
buf
[
1
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
2
);
}
else
if
(
l
==
4
) {
unsigned
char
buf
[
2
];
buf
[
0
]
=
0xd6
;
buf
[
1
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
2
);
}
else
if
(
l
==
8
) {
unsigned
char
buf
[
2
];
buf
[
0
]
=
0xd7
;
buf
[
1
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
2
);
}
else
if
(
l
==
16
) {
unsigned
char
buf
[
2
];
buf
[
0
]
=
0xd8
;
buf
[
1
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
2
);
}
else
if
(
l
<
256
) {
unsigned
char
buf
[
3
];
buf
[
0
]
=
0xc7
;
buf
[
1
]
=
l
;
buf
[
2
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
3
);
}
else
if
(
l
<
65536
) {
unsigned
char
buf
[
4
];
buf
[
0
]
=
0xc8
;
_msgpack_store16
(
&
buf
[
1
], (
uint16_t
)
l
);
buf
[
3
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
4
);
}
else
{
unsigned
char
buf
[
6
];
buf
[
0
]
=
0xc9
;
_msgpack_store32
(
&
buf
[
1
], (
uint32_t
)
l
);
buf
[
5
]
=
(
unsigned
char
)
typecode
;
msgpack_pack_append_buffer
(
x
,
buf
,
6
);
}
}
/*
* Pack Timestamp extension type. Follows msgpack-c pack_template.h.
*/
static
inline
int
msgpack_pack_timestamp
(
msgpack_packer
*
x
,
int64_t
seconds
,
uint32_t
nanoseconds
)
{
int
ret
;
if
((
seconds
>>
34
)
==
0
) {
/* seconds is unsigned and fits in 34 bits */
uint64_t
data64
=
((
uint64_t
)
nanoseconds
<<
34
) | (
uint64_t
)
seconds
;
if
((
data64
&
0xffffffff00000000L
)
==
0
) {
/* no nanoseconds and seconds is 32bits or smaller. timestamp32. */
unsigned
char
buf
[
4
];
uint32_t
data32
=
(
uint32_t
)
data64
;
ret
=
msgpack_pack_ext
(
x
,
-1
,
4
);
if
(
ret
!=
0
)
return
ret
;
_msgpack_store32
(
buf
,
data32
);
return
msgpack_pack_raw_body
(
x
,
buf
,
4
);
}
else
{
/* timestamp64 */
unsigned
char
buf
[
8
];
ret
=
msgpack_pack_ext
(
x
,
-1
,
8
);
if
(
ret
!=
0
)
return
ret
;
_msgpack_store64
(
buf
,
data64
);
return
msgpack_pack_raw_body
(
x
,
buf
,
8
);
}
}
else
{
/* seconds is signed or >34bits */
unsigned
char
buf
[
12
];
_msgpack_store32
(
&
buf
[
0
],
nanoseconds
);
_msgpack_store64
(
&
buf
[
4
],
seconds
);
ret
=
msgpack_pack_ext
(
x
,
-1
,
12
);
if
(
ret
!=
0
)
return
ret
;
return
msgpack_pack_raw_body
(
x
,
buf
,
12
);
}
}
#undef
msgpack_pack_append_buffer
#undef
TAKE8_8
#undef
TAKE8_16
#undef
TAKE8_32
#undef
TAKE8_64
#undef
msgpack_pack_real_uint16
#undef
msgpack_pack_real_uint32
#undef
msgpack_pack_real_uint64
#undef
msgpack_pack_real_int16
#undef
msgpack_pack_real_int32
#undef
msgpack_pack_real_int64
Back
|
FazBrowse Home
|
New Git URL