summaryrefslogtreecommitdiff
path: root/msgpack/unpack_template.h
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2013-10-20 22:59:27 +0900
committerINADA Naoki <inada-n@klab.com>2013-10-20 22:59:27 +0900
commit822cce823cfea8e9f7625598a125897718b4ab58 (patch)
treedf96f660ed03e8d202fe31477ee9afe1fee86898 /msgpack/unpack_template.h
parent96bcd76f49afd00f5b7def1ff7cfd002a7fa477d (diff)
downloadmsgpack-python-822cce823cfea8e9f7625598a125897718b4ab58.tar.gz
Support unpacking new types.
Diffstat (limited to 'msgpack/unpack_template.h')
-rw-r--r--msgpack/unpack_template.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/msgpack/unpack_template.h b/msgpack/unpack_template.h
index 1a709ec..7646896 100644
--- a/msgpack/unpack_template.h
+++ b/msgpack/unpack_template.h
@@ -178,15 +178,17 @@ static inline int unpack_execute(unpack_context* ctx, const char* data, size_t l
switch(*p) {
case 0xc0: // nil
push_simple_value(_nil);
- //case 0xc1: // string
- // again_terminal_trail(NEXT_CS(p), p+1);
+ //case 0xc1: // never used
case 0xc2: // false
push_simple_value(_false);
case 0xc3: // true
push_simple_value(_true);
- //case 0xc4:
- //case 0xc5:
- //case 0xc6:
+ case 0xc4: // bin 8
+ again_fixed_trail(NEXT_CS(p), 1);
+ case 0xc5: // bin 16
+ again_fixed_trail(NEXT_CS(p), 2);
+ case 0xc6: // bin 32
+ again_fixed_trail(NEXT_CS(p), 4);
case 0xc7: // ext 8
again_fixed_trail(NEXT_CS(p), 1);
case 0xc8: // ext 16
@@ -213,7 +215,8 @@ static inline int unpack_execute(unpack_context* ctx, const char* data, size_t l
_ext_zero);
case 0xd8: // fixext 16
again_fixed_trail_if_zero(ACS_EXT_VALUE, 16+1, _ext_zero);
- //case 0xd9:
+ case 0xd9: // str 8
+ again_fixed_trail(NEXT_CS(p), 1);
case 0xda: // raw 16
case 0xdb: // raw 32
case 0xdc: // array 16