unpack_define.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * MessagePack unpacking routine template
  3. *
  4. * Copyright (C) 2008-2010 FURUHASHI Sadayuki
  5. *
  6. * Distributed under the Boost Software License, Version 1.0.
  7. * (See accompanying file LICENSE_1_0.txt or copy at
  8. * http://www.boost.org/LICENSE_1_0.txt)
  9. */
  10. #ifndef MSGPACK_UNPACK_DEFINE_H
  11. #define MSGPACK_UNPACK_DEFINE_H
  12. #include "msgpack/sysdep.h"
  13. #include <stdlib.h>
  14. #include <string.h>
  15. #include <assert.h>
  16. #include <stdio.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #ifndef MSGPACK_EMBED_STACK_SIZE
  21. #define MSGPACK_EMBED_STACK_SIZE 32
  22. #endif
  23. typedef enum {
  24. MSGPACK_CS_HEADER = 0x00, // nil
  25. //MSGPACK_CS_ = 0x01,
  26. //MSGPACK_CS_ = 0x02, // false
  27. //MSGPACK_CS_ = 0x03, // true
  28. MSGPACK_CS_BIN_8 = 0x04,
  29. MSGPACK_CS_BIN_16 = 0x05,
  30. MSGPACK_CS_BIN_32 = 0x06,
  31. MSGPACK_CS_EXT_8 = 0x07,
  32. MSGPACK_CS_EXT_16 = 0x08,
  33. MSGPACK_CS_EXT_32 = 0x09,
  34. MSGPACK_CS_FLOAT = 0x0a,
  35. MSGPACK_CS_DOUBLE = 0x0b,
  36. MSGPACK_CS_UINT_8 = 0x0c,
  37. MSGPACK_CS_UINT_16 = 0x0d,
  38. MSGPACK_CS_UINT_32 = 0x0e,
  39. MSGPACK_CS_UINT_64 = 0x0f,
  40. MSGPACK_CS_INT_8 = 0x10,
  41. MSGPACK_CS_INT_16 = 0x11,
  42. MSGPACK_CS_INT_32 = 0x12,
  43. MSGPACK_CS_INT_64 = 0x13,
  44. MSGPACK_CS_FIXEXT_1 = 0x14,
  45. MSGPACK_CS_FIXEXT_2 = 0x15,
  46. MSGPACK_CS_FIXEXT_4 = 0x16,
  47. MSGPACK_CS_FIXEXT_8 = 0x17,
  48. MSGPACK_CS_FIXEXT_16 = 0x18,
  49. MSGPACK_CS_STR_8 = 0x19, // str8
  50. MSGPACK_CS_STR_16 = 0x1a, // str16
  51. MSGPACK_CS_STR_32 = 0x1b, // str32
  52. MSGPACK_CS_ARRAY_16 = 0x1c,
  53. MSGPACK_CS_ARRAY_32 = 0x1d,
  54. MSGPACK_CS_MAP_16 = 0x1e,
  55. MSGPACK_CS_MAP_32 = 0x1f,
  56. //MSGPACK_ACS_BIG_INT_VALUE,
  57. //MSGPACK_ACS_BIG_FLOAT_VALUE,
  58. MSGPACK_ACS_STR_VALUE,
  59. MSGPACK_ACS_BIN_VALUE,
  60. MSGPACK_ACS_EXT_VALUE
  61. } msgpack_unpack_state;
  62. typedef enum {
  63. MSGPACK_CT_ARRAY_ITEM,
  64. MSGPACK_CT_MAP_KEY,
  65. MSGPACK_CT_MAP_VALUE
  66. } msgpack_container_type;
  67. #ifdef __cplusplus
  68. }
  69. #endif
  70. #endif /* msgpack/unpack_define.h */