C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/io/pof/PofConstants.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
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 * Constants related to POF streams.
00017 *
00018 * @author jh  2008.04.09
00019 */
00020 class COH_EXPORT PofConstants
00021     : public abstract_spec<PofConstants>
00022     {
00023     // ----- POF intrinsic type constants -----------------------------------
00024 
00025     public:
00026         // NOTE: The hex value to the right is the packed integer value of
00027         // the constant.
00028         typedef enum
00029             {
00030             t_int16                 = -1,       // 0x40
00031             t_int32                 = -2,       // 0x41
00032             t_int64                 = -3,       // 0x42
00033             t_int128                = -4,       // 0x43
00034             t_float32               = -5,       // 0x44
00035             t_float64               = -6,       // 0x45
00036             t_float128              = -7,       // 0x46
00037             t_decimal32             = -8,       // 0x47
00038             t_decimal64             = -9,       // 0x48
00039             t_decimal128            = -10,      // 0x49
00040             t_boolean               = -11,      // 0x4A
00041             t_octet                 = -12,      // 0x4B
00042             t_octet_string          = -13,      // 0x4C
00043             t_char                  = -14,      // 0x4D
00044             t_char_string           = -15,      // 0x4E
00045             t_date                  = -16,      // 0x4F
00046             t_year_month_interval   = -17,      // 0x50
00047             t_time                  = -18,      // 0x51
00048             t_time_interval         = -19,      // 0x52
00049             t_datetime              = -20,      // 0x53
00050             t_day_time_interval     = -21,      // 0x54
00051             t_collection            = -22,      // 0x55
00052             t_uniform_collection    = -23,      // 0x56
00053             t_array                 = -24,      // 0x57
00054             t_uniform_array         = -25,      // 0x58
00055             t_sparse_array          = -26,      // 0x59
00056             t_uniform_sparse_array  = -27,      // 0x5A
00057             t_map                   = -28,      // 0x5B
00058             t_uniform_keys_map      = -29,      // 0x5C
00059             t_uniform_map           = -30,      // 0x5D
00060             t_identity              = -31,      // 0x5E
00061             t_reference             = -32       // 0x5F
00062             } PofType;
00063 
00064 
00065     // ----- POF compact "small" values -------------------------------------
00066 
00067     public:
00068         // NOTE: The hex value to the right is the packed integer value of
00069         // the constant.
00070         typedef enum
00071             {
00072             v_boolean_false         = -33,      // 0x60
00073             v_boolean_true          = -34,      // 0x61
00074             v_string_zero_length    = -35,      // 0x62
00075             v_collection_empty      = -36,      // 0x63
00076             v_reference_null        = -37,      // 0x64
00077             v_fp_pos_infinity       = -38,      // 0x65
00078             v_fp_neg_infinity       = -39,      // 0x66
00079             v_fp_nan                = -40,      // 0x67
00080             v_int_neg_1             = -41,      // 0x68
00081             v_int_0                 = -42,      // 0x69
00082             v_int_1                 = -43,      // 0x6A
00083             v_int_2                 = -44,      // 0x6B
00084             v_int_3                 = -45,      // 0x6C
00085             v_int_4                 = -46,      // 0x6D
00086             v_int_5                 = -47,      // 0x6E
00087             v_int_6                 = -48,      // 0x6F
00088             v_int_7                 = -49,      // 0x70
00089             v_int_8                 = -50,      // 0x71
00090             v_int_9                 = -51,      // 0x72
00091             v_int_10                = -52,      // 0x73
00092             v_int_11                = -53,      // 0x74
00093             v_int_12                = -54,      // 0x75
00094             v_int_13                = -55,      // 0x76
00095             v_int_14                = -56,      // 0x77
00096             v_int_15                = -57,      // 0x78
00097             v_int_16                = -58,      // 0x79
00098             v_int_17                = -59,      // 0x7A
00099             v_int_18                = -60,      // 0x7B
00100             v_int_19                = -61,      // 0x7C
00101             v_int_20                = -62,      // 0x7D
00102             v_int_21                = -63,      // 0x7E
00103             v_int_22                = -64,      // 0x7F
00104             // Indicates unknown type. Not seen in POF stream
00105             t_unknown               = -65       // 0x1C0
00106             } PofValue;
00107 
00108 
00109     // ----- C++ type constants ---------------------------------------------
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
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.