00001
00002
00003
00004
00005
00006
00007 #ifndef COH_POF_CONSTANTS_HPP
00008 #define COH_POF_CONSTANTS_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 COH_OPEN_NAMESPACE3(coherence,io,pof)
00013
00014
00015
00016
00017
00018
00019
00020 class COH_EXPORT PofConstants
00021 : public abstract_spec<PofConstants>
00022 {
00023
00024
00025 public:
00026
00027
00028 typedef enum
00029 {
00030 t_int16 = -1,
00031 t_int32 = -2,
00032 t_int64 = -3,
00033 t_int128 = -4,
00034 t_float32 = -5,
00035 t_float64 = -6,
00036 t_float128 = -7,
00037 t_decimal32 = -8,
00038 t_decimal64 = -9,
00039 t_decimal128 = -10,
00040 t_boolean = -11,
00041 t_octet = -12,
00042 t_octet_string = -13,
00043 t_char = -14,
00044 t_char_string = -15,
00045 t_date = -16,
00046 t_year_month_interval = -17,
00047 t_time = -18,
00048 t_time_interval = -19,
00049 t_datetime = -20,
00050 t_day_time_interval = -21,
00051 t_collection = -22,
00052 t_uniform_collection = -23,
00053 t_array = -24,
00054 t_uniform_array = -25,
00055 t_sparse_array = -26,
00056 t_uniform_sparse_array = -27,
00057 t_map = -28,
00058 t_uniform_keys_map = -29,
00059 t_uniform_map = -30,
00060 t_identity = -31,
00061 t_reference = -32
00062 } PofType;
00063
00064
00065
00066
00067 public:
00068
00069
00070 typedef enum
00071 {
00072 v_boolean_false = -33,
00073 v_boolean_true = -34,
00074 v_string_zero_length = -35,
00075 v_collection_empty = -36,
00076 v_reference_null = -37,
00077 v_fp_pos_infinity = -38,
00078 v_fp_neg_infinity = -39,
00079 v_fp_nan = -40,
00080 v_int_neg_1 = -41,
00081 v_int_0 = -42,
00082 v_int_1 = -43,
00083 v_int_2 = -44,
00084 v_int_3 = -45,
00085 v_int_4 = -46,
00086 v_int_5 = -47,
00087 v_int_6 = -48,
00088 v_int_7 = -49,
00089 v_int_8 = -50,
00090 v_int_9 = -51,
00091 v_int_10 = -52,
00092 v_int_11 = -53,
00093 v_int_12 = -54,
00094 v_int_13 = -55,
00095 v_int_14 = -56,
00096 v_int_15 = -57,
00097 v_int_16 = -58,
00098 v_int_17 = -59,
00099 v_int_18 = -60,
00100 v_int_19 = -61,
00101 v_int_20 = -62,
00102 v_int_21 = -63,
00103 v_int_22 = -64,
00104
00105 t_unknown = -65
00106 } PofValue;
00107
00108
00109
00110
00111 public:
00112 typedef enum
00113 {
00114 c_null = 0,
00115 c_boolean = 1,
00116 c_octet = 2,
00117 c_char16 = 3,
00118 c_int16 = 4,
00119 c_int32 = 5,
00120 c_int64 = 6,
00121 c_float32 = 7,
00122 c_float64 = 8,
00123 c_binary = 9,
00124 c_string = 10,
00125 c_raw_date = 11,
00126 c_raw_date_time = 12,
00127 c_raw_day_time_interval = 13,
00128 c_raw_time = 14,
00129 c_raw_time_interval = 15,
00130 c_raw_year_month_interval = 16,
00131 c_boolean_array = 17,
00132 c_octet_array = 18,
00133 c_char16_array = 19,
00134 c_int16_array = 20,
00135 c_int32_array = 21,
00136 c_int64_array = 22,
00137 c_float32_array = 23,
00138 c_float64_array = 24,
00139 c_object_array = 25,
00140 c_sparse_array = 26,
00141 c_collection = 27,
00142 c_map = 28,
00143 c_user_type = 29
00144 } CppType;
00145 };
00146
00147 COH_CLOSE_NAMESPACE3
00148
00149 #endif // COH_POF_CONSTANTS_HPP