forked from mcollina/msgpack5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.html
459 lines (418 loc) · 21.5 KB
/
spec.html
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
<h1 id="messagepack-specification">MessagePack specification</h1>
<p>MessagePack is an object serialization specification like JSON.</p>
<p>MessagePack has two concepts: <strong>type system</strong> and <strong>formats</strong>.</p>
<p>Serialization is conversion from application objects into MessagePack formats via MessagePack type system.</p>
<p>Deserialization is conversion from MessagePack formats into application objects via MessagePack type system.</p>
<pre><code>Serialization:
Application objects
--> MessagePack type system
--> MessagePack formats (byte array)
Deserialization:
MessagePack formats (byte array)
--> MessagePack type system
--> Application objects
</code></pre><p>This document describes the MessagePack type system, MesagePack formats and conversion of them.</p>
<h2 id="table-of-contents">Table of contents</h2>
<ul>
<li>MessagePack specification<ul>
<li><a href="#types">Type system</a><ul>
<li><a href="#types-limitation">Limitation</a></li>
<li><a href="#types-extension-type">Extension type</a></li>
</ul>
</li>
<li><a href="#formats">Formats</a><ul>
<li><a href="#formats-overview">Overview</a></li>
<li><a href="#formats-notation">Notation in diagrams</a></li>
<li><a href="#formats-nil">nil format family</a></li>
<li><a href="#formats-bool">bool format family</a></li>
<li><a href="#formats-int">int format family</a></li>
<li><a href="#formats-float">float format family</a></li>
<li><a href="#formats-str">str format family</a></li>
<li><a href="#formats-bin">bin format family</a></li>
<li><a href="#formats-array">array format family</a></li>
<li><a href="#formats-map">map format family</a></li>
<li><a href="#formats-ext">ext format family</a></li>
</ul>
</li>
<li><a href="#serialization">Serialization: type to format conversion</a></li>
<li><a href="#deserialization">Deserialization: format to type conversion</a></li>
<li><a href="#future">Future discussion</a><ul>
<li><a href="#future-profiles">Profile</a></li>
</ul>
</li>
<li><a href="#impl">Implementation guidelines</a><ul>
<li><a href="#impl-upgrade">Upgrade MessagePack specification</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<p><a name="types"/></p>
<h2 id="type-system">Type system</h2>
<ul>
<li>Types<ul>
<li><strong>Integer</strong> represents an integer</li>
<li><strong>Nil</strong> represents nil</li>
<li><strong>Boolean</strong> represents true or false</li>
<li><strong>Float</strong> represents a floating point number</li>
<li><strong>Raw</strong><ul>
<li><strong>String</strong> extending Raw type represents a UTF-8 string</li>
<li><strong>Binary</strong> extending Raw type represents a byte array</li>
</ul>
</li>
<li><strong>Array</strong> represents a sequence of objects</li>
<li><strong>Map</strong> represents key-value pairs of objects</li>
<li><strong>Extended</strong> implements Extension interface: represents a tuple of type information and a byte array where type information is an integer whose meaning is defined by applications</li>
</ul>
</li>
<li>Interfaces<ul>
<li><strong>Extension</strong> represents a tuple of an integer and a byte array where the integer represents type information and the byte array represents data. The format of the data is defined by concrete types</li>
</ul>
</li>
</ul>
<p><a name="types-limitation"/></p>
<h3 id="limitation">Limitation</h3>
<ul>
<li>a value of an Integer object is limited from <code>-(2^63)</code> upto <code>(2^64)-1</code></li>
<li>a value of a Float object is IEEE 754 single or double precision floating-point number</li>
<li>maximum length of a Binary object is <code>(2^32)-1</code></li>
<li>maximum byte size of a String object is <code>(2^32)-1</code></li>
<li>String objects may contain invalid byte sequence and the behavior of a deserializer depends on the actual implementation when it received invalid byte sequence<ul>
<li>Deserializers should provide functionality to get the original byte array so that applications can decide how to handle the object</li>
</ul>
</li>
<li>maximum number of elements of an Array object is <code>(2^32)-1</code></li>
<li>maximum number of key-value associations of a Map object is <code>(2^32)-1</code></li>
</ul>
<p><a name="types-extension-type"/></p>
<h3 id="extension-type">Extension type</h3>
<p>MessagePack allows applications to define application-specific types using the Extended type.
Extended type consists of an integer and a byte array where the integer represents a kind of types and the byte array represents data.</p>
<p>Applications can assign <code>0</code> to <code>127</code> to store application-specific type information.</p>
<p>MessagePack reserves <code>-1</code> to <code>-128</code> for future extension to add predefined types which will be described in separated documents.</p>
<pre><code>[0, 127]: application-specific types
[-1, -128]: reserved for predefined types
</code></pre><p><a name="formats"/></p>
<h2 id="formats">Formats</h2>
<p><a name="formats-overview"/></p>
<h3 id="overview">Overview</h3>
<table>
<tr><th>format name</th><th>first byte (in binary)</th><th>first byte (in hex)</th></th></tr>
<tr><td>positive fixint</td><td>0xxxxxxx</td><td>0x00 - 0x7f</td></tr>
<tr><td>fixmap</td><td>1000xxxx</td><td>0x80 - 0x8f</td></tr>
<tr><td>fixarray</td><td>1001xxxx</td><td>0x90 - 0x9f</td></tr>
<tr><td>fixstr</td><td>101xxxxx</td><td>0xa0 - 0xbf</td></tr>
<tr><td>nil</td><td>11000000</td><td>0xc0</td></tr>
<tr><td>(never used)</td><td>11000001</td><td>0xc1</td></tr>
<tr><td>false</td><td>11000010</td><td>0xc2</td></tr>
<tr><td>true</td><td>11000011</td><td>0xc3</td></tr>
<tr><td>bin 8</td><td>11000100</td><td>0xc4</td></tr>
<tr><td>bin 16</td><td>11000101</td><td>0xc5</td></tr>
<tr><td>bin 32</td><td>11000110</td><td>0xc6</td></tr>
<tr><td>ext 8</td><td>11000111</td><td>0xc7</td></tr>
<tr><td>ext 16</td><td>11001000</td><td>0xc8</td></tr>
<tr><td>ext 32</td><td>11001001</td><td>0xc9</td></tr>
<tr><td>float 32</td><td>11001010</td><td>0xca</td></tr>
<tr><td>float 64</td><td>11001011</td><td>0xcb</td></tr>
<tr><td>uint 8</td><td>11001100</td><td>0xcc</td></tr>
<tr><td>uint 16</td><td>11001101</td><td>0xcd</td></tr>
<tr><td>uint 32</td><td>11001110</td><td>0xce</td></tr>
<tr><td>uint 64</td><td>11001111</td><td>0xcf</td></tr>
<tr><td>int 8</td><td>11010000</td><td>0xd0</td></tr>
<tr><td>int 16</td><td>11010001</td><td>0xd1</td></tr>
<tr><td>int 32</td><td>11010010</td><td>0xd2</td></tr>
<tr><td>int 64</td><td>11010011</td><td>0xd3</td></tr>
<tr><td>fixext 1</td><td>11010100</td><td>0xd4</td></tr>
<tr><td>fixext 2</td><td>11010101</td><td>0xd5</td></tr>
<tr><td>fixext 4</td><td>11010110</td><td>0xd6</td></tr>
<tr><td>fixext 8</td><td>11010111</td><td>0xd7</td></tr>
<tr><td>fixext 16</td><td>11011000</td><td>0xd8</td></tr>
<tr><td>str 8</td><td>11011001</td><td>0xd9</td></tr>
<tr><td>str 16</td><td>11011010</td><td>0xda</td></tr>
<tr><td>str 32</td><td>11011011</td><td>0xdb</td></tr>
<tr><td>array 16</td><td>11011100</td><td>0xdc</td></tr>
<tr><td>array 32</td><td>11011101</td><td>0xdd</td></tr>
<tr><td>map 16</td><td>11011110</td><td>0xde</td></tr>
<tr><td>map 32</td><td>11011111</td><td>0xdf</td></tr>
<tr><td>negative fixint</td><td>111xxxxx</td><td>0xe0 - 0xff</td></tr>
</table>
<p><a name="formats-notation"/></p>
<h3 id="notation-in-diagrams">Notation in diagrams</h3>
<pre><code>one byte:
+--------+
| |
+--------+
a variable number of bytes:
+========+
| |
+========+
variable number of objects stored in MessagePack format:
+~~~~~~~~~~~~~~~~~+
| |
+~~~~~~~~~~~~~~~~~+
</code></pre><p><code>X</code>, <code>Y</code>, <code>Z</code> and <code>A</code> are the symbols that will be replaced by an actual bit.</p>
<p><a name="formats-nil"/></p>
<h3 id="nil-format">nil format</h3>
<p>Nil format stores nil in 1 byte.</p>
<pre><code>nil:
+--------+
| 0xc0 |
+--------+
</code></pre><p><a name="formats-bool"/></p>
<h3 id="bool-format-family">bool format family</h3>
<p>Bool format family stores false or true in 1 byte.</p>
<pre><code>false:
+--------+
| 0xc2 |
+--------+
true:
+--------+
| 0xc3 |
+--------+
</code></pre><p><a name="formats-int"/></p>
<h3 id="int-format-family">int format family</h3>
<p>Int format family stores an integer in 1, 2, 3, 5, or 9 bytes.</p>
<pre><code>positive fixnum stores 7-bit positive integer
+--------+
|0XXXXXXX|
+--------+
negative fixnum stores 5-bit negative integer
+--------+
|111YYYYY|
+--------+
* 0XXXXXXX is 8-bit unsigned integer
* 111YYYYY is 8-bit signed integer
uint 8 stores a 8-bit unsigned integer
+--------+--------+
| 0xcc |ZZZZZZZZ|
+--------+--------+
uint 16 stores a 16-bit big-endian unsigned integer
+--------+--------+--------+
| 0xcd |ZZZZZZZZ|ZZZZZZZZ|
+--------+--------+--------+
uint 32 stores a 32-bit big-endian unsigned integer
+--------+--------+--------+--------+--------+
| 0xce |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ
+--------+--------+--------+--------+--------+
uint 64 stores a 64-bit big-endian unsigned integer
+--------+--------+--------+--------+--------+--------+--------+--------+--------+
| 0xcf |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|
+--------+--------+--------+--------+--------+--------+--------+--------+--------+
int 8 stores a 8-bit signed integer
+--------+--------+
| 0xd0 |ZZZZZZZZ|
+--------+--------+
int 16 stores a 16-bit big-endian signed integer
+--------+--------+--------+
| 0xd1 |ZZZZZZZZ|ZZZZZZZZ|
+--------+--------+--------+
int 32 stores a 32-bit big-endian signed integer
+--------+--------+--------+--------+--------+
| 0xd2 |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|
+--------+--------+--------+--------+--------+
int 64 stores a 64-bit big-endian signed integer
+--------+--------+--------+--------+--------+--------+--------+--------+--------+
| 0xd3 |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|
+--------+--------+--------+--------+--------+--------+--------+--------+--------+
</code></pre><p><a name="formats-float"/></p>
<h3 id="float-format-family">float format family</h3>
<p>Float format family stores an floating point number in 5 bytes or 9 bytes.</p>
<pre><code>float 32 stores a floating point number in IEEE 754 single precision floating point number format:
+--------+--------+--------+--------+--------+
| 0xca |XXXXXXXX|XXXXXXXX|XXXXXXXX|XXXXXXXX
+--------+--------+--------+--------+--------+
float 64 stores a floating point number in IEEE 754 double precision floating point number format:
+--------+--------+--------+--------+--------+--------+--------+--------+--------+
| 0xcb |YYYYYYYY|YYYYYYYY|YYYYYYYY|YYYYYYYY|YYYYYYYY|YYYYYYYY|YYYYYYYY|YYYYYYYY|
+--------+--------+--------+--------+--------+--------+--------+--------+--------+
where
* XXXXXXXX_XXXXXXXX_XXXXXXXX_XXXXXXXX is a big-endian IEEE 754 single precision floating point number
* YYYYYYYY_YYYYYYYY_YYYYYYYY_YYYYYYYY_YYYYYYYY_YYYYYYYY_YYYYYYYY_YYYYYYYY is a big-endian
IEEE 754 double precision floating point number
</code></pre><p><a name="formats-str"/></p>
<h3 id="str-format-family">str format family</h3>
<p>Str format family stores an byte array in 1, 2, 3, or 5 bytes of extra bytes in addition to the size of the byte array.</p>
<pre><code>fixstr stores a byte array whose length is upto 31 bytes:
+--------+========+
|101XXXXX| data |
+--------+========+
str 8 stores a byte array whose length is upto (2^8)-1 bytes:
+--------+--------+========+
| 0xd9 |YYYYYYYY| data |
+--------+--------+========+
str 16 stores a byte array whose length is upto (2^16)-1 bytes:
+--------+--------+--------+========+
| 0xda |ZZZZZZZZ|ZZZZZZZZ| data |
+--------+--------+--------+========+
str 32 stores a byte array whose length is upto (2^32)-1 bytes:
+--------+--------+--------+--------+--------+========+
| 0xdb |AAAAAAAA|AAAAAAAA|AAAAAAAA|AAAAAAAA| data |
+--------+--------+--------+--------+--------+========+
where
* XXXXX is a 5-bit unsigned integer which represents N
* YYYYYYYY is a 8-bit unsigned integer which represents N
* ZZZZZZZZ_ZZZZZZZZ is a 16-bit big-endian unsigned integer which represents N
* AAAAAAAA_AAAAAAAA_AAAAAAAA_AAAAAAAA is a 32-bit big-endian unsigned integer which represents N
* N is the length of data
</code></pre><p><a name="formats-bin"/></p>
<h3 id="bin-format-family">bin format family</h3>
<p>Bin format family stores an byte array in 2, 3, or 5 bytes of extra bytes in addition to the size of the byte array.</p>
<pre><code>bin 8 stores a byte array whose length is upto (2^8)-1 bytes:
+--------+--------+========+
| 0xc4 |XXXXXXXX| data |
+--------+--------+========+
bin 16 stores a byte array whose length is upto (2^16)-1 bytes:
+--------+--------+--------+========+
| 0xc5 |YYYYYYYY|YYYYYYYY| data |
+--------+--------+--------+========+
bin 32 stores a byte array whose length is upto (2^32)-1 bytes:
+--------+--------+--------+--------+--------+========+
| 0xc6 |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ| data |
+--------+--------+--------+--------+--------+========+
where
* XXXXXXXX is a 8-bit unsigned integer which represents N
* YYYYYYYY_YYYYYYYY is a 16-bit big-endian unsigned integer which represents N
* ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ is a 32-bit big-endian unsigned integer which represents N
* N is the length of data
</code></pre><p><a name="formats-array"/></p>
<h3 id="array-format-family">array format family</h3>
<p>Array format family stores a sequence of elements in 1, 3, or 5 bytes of extra bytes in addition to the elements.</p>
<pre><code>fixarray stores an array whose length is upto 15 elements:
+--------+~~~~~~~~~~~~~~~~~+
|1001XXXX| N objects |
+--------+~~~~~~~~~~~~~~~~~+
array 16 stores an array whose length is upto (2^16)-1 elements:
+--------+--------+--------+~~~~~~~~~~~~~~~~~+
| 0xdc |YYYYYYYY|YYYYYYYY| N objects |
+--------+--------+--------+~~~~~~~~~~~~~~~~~+
array 32 stores an array whose length is upto (2^32)-1 elements:
+--------+--------+--------+--------+--------+~~~~~~~~~~~~~~~~~+
| 0xdd |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ| N objects |
+--------+--------+--------+--------+--------+~~~~~~~~~~~~~~~~~+
where
* XXXX is a 4-bit unsigned integer which represents N
* YYYYYYYY_YYYYYYYY is a 16-bit big-endian unsigned integer which represents N
* ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ is a 32-bit big-endian unsigned integer which represents N
N is the size of a array
</code></pre><p><a name="formats-map"/></p>
<h3 id="map-format-family">map format family</h3>
<p>Map format family stores a sequence of key-value pairs in 1, 3, or 5 bytes of extra bytes in addition to the key-value pairs.</p>
<pre><code>fixmap stores a map whose length is upto 15 elements
+--------+~~~~~~~~~~~~~~~~~+
|1000XXXX| N*2 objects |
+--------+~~~~~~~~~~~~~~~~~+
map 16 stores a map whose length is upto (2^16)-1 elements
+--------+--------+--------+~~~~~~~~~~~~~~~~~+
| 0xde |YYYYYYYY|YYYYYYYY| N*2 objects |
+--------+--------+--------+~~~~~~~~~~~~~~~~~+
map 32 stores a map whose length is upto (2^32)-1 elements
+--------+--------+--------+--------+--------+~~~~~~~~~~~~~~~~~+
| 0xdf |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ| N*2 objects |
+--------+--------+--------+--------+--------+~~~~~~~~~~~~~~~~~+
where
* XXXX is a 4-bit unsigned integer which represents N
* YYYYYYYY_YYYYYYYY is a 16-bit big-endian unsigned integer which represents N
* ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ is a 32-bit big-endian unsigned integer which represents N
* N is the size of a map
* odd elements in objects are keys of a map
* the next element of a key is its associated value
</code></pre><p><a name="formats-ext"/></p>
<h3 id="ext-format-family">ext format family</h3>
<p>Ext format family stores a tuple of an integer and a byte array.</p>
<pre><code>fixext 1 stores an integer and a byte array whose length is 1 byte
+--------+--------+--------+
| 0xd4 | type | data |
+--------+--------+--------+
fixext 2 stores an integer and a byte array whose length is 2 bytes
+--------+--------+--------+--------+
| 0xd5 | type | data |
+--------+--------+--------+--------+
fixext 4 stores an integer and a byte array whose length is 4 bytes
+--------+--------+--------+--------+--------+--------+
| 0xd6 | type | data |
+--------+--------+--------+--------+--------+--------+
fixext 8 stores an integer and a byte array whose length is 8 bytes
+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
| 0xd7 | type | data |
+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
fixext 16 stores an integer and a byte array whose length is 16 bytes
+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
| 0xd8 | type | data
+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
+--------+--------+--------+--------+--------+--------+--------+--------+
data (cont.) |
+--------+--------+--------+--------+--------+--------+--------+--------+
ext 8 stores an integer and a byte array whose length is upto (2^8)-1 bytes:
+--------+--------+--------+========+
| 0xc7 |XXXXXXXX| type | data |
+--------+--------+--------+========+
ext 16 stores an integer and a byte array whose length is upto (2^16)-1 bytes:
+--------+--------+--------+--------+========+
| 0xc8 |YYYYYYYY|YYYYYYYY| type | data |
+--------+--------+--------+--------+========+
ext 32 stores an integer and a byte array whose length is upto (2^32)-1 bytes:
+--------+--------+--------+--------+--------+--------+========+
| 0xc9 |ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ|ZZZZZZZZ| type | data |
+--------+--------+--------+--------+--------+--------+========+
where
* XXXXXXXX is a 8-bit unsigned integer which represents N
* YYYYYYYY_YYYYYYYY is a 16-bit big-endian unsigned integer which represents N
* ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ_ZZZZZZZZ is a big-endian 32-bit unsigned integer which represents N
* N is a length of data
* type is a signed 8-bit signed integer
* type < 0 is reserved for future extension including 2-byte type information
</code></pre><p><a name="serialization"/></p>
<h2 id="serialization-type-to-format-conversion">Serialization: type to format conversion</h2>
<p>MessagePack serializers convert MessagePack types into formats as following:</p>
<table>
<tr><th>source types</th><th>output format</th></tr>
<tr><td>Integer</td><td>int format family (positive fixint, negative fixint, int 8/16/32/64 or uint 8/16/32/64)</td></tr>
<tr><td>Nil</td><td>nil</td></tr>
<tr><td>Boolean</td><td>bool format family (false or true)</td></tr>
<tr><td>Float</td><td>float format family (float 32/64)</td></tr>
<tr><td>String</td><td>str format family (fixstr or str 8/16/32)</td></tr>
<tr><td>Binary</td><td>bin format family (bin 8/16/32)</td></tr>
<tr><td>Array</td><td>array format family (fixarray or array 16/32)</td></tr>
<tr><td>Map</td><td>map format family (fixmap or map 16/32)</td></tr>
<tr><td>Extended</td><td>ext format family (fixext or ext 8/16/32)</td></tr>
</table>
<p>If an object can be represented in multiple possible output formats, serializers SHOULD use the format which represents the data in the smallest number of bytes.</p>
<p><a name="deserialization"/></p>
<h2 id="deserialization-format-to-type-conversion">Deserialization: format to type conversion</h2>
<p>MessagePack deserializers convert convert MessagePack formats into types as following:</p>
<table>
<tr><th>source formats</th><th>output type</th></tr>
<tr><td>positive fixint, negative fixint, int 8/16/32/64 and uint 8/16/32/64</td><td>Integer</td></tr>
<tr><td>nil</td><td>Nil</td></tr>
<tr><td>false and true</td><td>Boolean</td></tr>
<tr><td>float 32/64</td><td>Float</td></tr>
<tr><td>fixstr and str 8/16/32</td><td>String</td></tr>
<tr><td>bin 8/16/32</td><td>Binary</td></tr>
<tr><td>fixarray and array 16/32</td><td>Array</td></tr>
<tr><td>fixmap map 16/32</td><td>Map</td></tr>
<tr><td>fixext and ext 8/16/32</td><td>Extended</td></tr>
</table>
<p><a name="future"/></p>
<h2 id="future-discussion">Future discussion</h2>
<p><a name="future-profiles"/></p>
<h3 id="profile">Profile</h3>
<p>Profile is an idea that Applications restrict the semantics of MessagePack while sharing the same syntax to adapt MessagePack for certain use cases.</p>
<p>For example, applications may remove Binary type, restrict keys of map objects to be String type, and put some restrictions to make the semantics compatible with JSON. Applications which use schema may remove String and Binary types and deal with byte arrays as Raw type. Applications which use hash (digest) of serialized data may sort keys of maps to make the serialized data deterministic.</p>
<p><a name="impl"/></p>
<h2 id="implementation-guidelines">implementation guidelines</h2>
<p><a name="impl-upgrade"/></p>
<h3 id="upgrading-messagepack-specification">Upgrading MessagePack specification</h3>
<p>MessagePack specification is changed at this time.
Here is a guideline to upgrade existent MessagePack implementations:</p>
<ul>
<li>In a minor release, deserializers support the bin format family and str 8 format. The type of deserialized objects should be same with raw 16 (== str 16) or raw 32 (== str 32)</li>
<li>In a major release, serializers distinguish Binary type and String type using bin format family and str format family<ul>
<li>At the same time, serializers should offer "compatibility mode" which doesn't use bin format family and str 8 format</li>
</ul>
</li>
</ul>
<hr>
<pre><code>MessagePack specification
Last modified at 2013-04-21 21:52:33 -0700
Sadayuki Furuhashi © 2013-04-21 21:52:33 -0700
</code></pre>