00001
00002
00003
00004
00005
00006
00007 #ifndef COH_SYSTEM_POF_CONTEXT_HPP
00008 #define COH_SYSTEM_POF_CONTEXT_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/io/pof/PofAnnotationSerializer.hpp"
00013 #include "coherence/io/pof/PortableObjectSerializer.hpp"
00014 #include "coherence/io/pof/PortableTypeSerializer.hpp"
00015 #include "coherence/io/pof/SimplePofContext.hpp"
00016 #include "coherence/io/pof/TypedSerializer.hpp"
00017
00018 COH_OPEN_NAMESPACE3(coherence,io,pof)
00019
00020
00021
00022
00023
00024
00025
00026
00027 class COH_EXPORT SystemPofContext
00028 : public cloneable_spec<SystemPofContext,
00029 extends<SimplePofContext> >
00030 {
00031 friend class factory<SystemPofContext>;
00032
00033
00034
00035 public:
00036
00037
00038
00039 using this_spec::create;
00040
00041 private:
00042
00043
00044
00045 SystemPofContext();
00046
00047
00048
00049
00050 SystemPofContext(const SystemPofContext& that);
00051
00052
00053 public:
00054
00055
00056
00057
00058
00059 static Handle getInstance();
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069 static void main(ObjectArray::View vasArg);
00070 };
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083 #define COH_REGISTER_POF_SERIALIZER(POF_TYPE_ID, CLASS, POF_SERIALIZER) \
00084 COH_STATIC_INIT(coherence::io::pof::SystemPofContext::getInstance()-> \
00085 registerUserType(POF_TYPE_ID, \
00086 coherence::lang::SystemClassLoader::getInstance()-> \
00087 registerClass(CLASS), POF_SERIALIZER))
00088
00089
00090
00091
00092
00093
00094
00095
00096 #define COH_REGISTER_ONLY_PORTABLE_CLASS(POF_TYPE_ID, TYPE) \
00097 COH_STATIC_INIT_EX(1, \
00098 coherence::io::pof::SystemPofContext::getInstance()-> \
00099 registerUserType(POF_TYPE_ID, s_coh_static_class_##TYPE, \
00100 coherence::io::pof::PortableObjectSerializer::create(POF_TYPE_ID)))
00101
00102
00103
00104
00105
00106
00107
00108
00109 #define COH_REGISTER_PORTABLE_CLASS(POF_TYPE_ID, TYPE) \
00110 COH_REGISTER_TYPED_CLASS(TYPE); \
00111 COH_REGISTER_ONLY_PORTABLE_CLASS(POF_TYPE_ID, TYPE)
00112
00113
00114
00115
00116
00117
00118
00119
00120 #define COH_REGISTER_MANAGED_CLASS(POF_TYPE_ID, TYPE) \
00121 COH_REGISTER_NAMED_CLASS(TYPE, \
00122 coherence::lang::TypedClass<coherence::lang::Managed<TYPE > >::create()); \
00123 COH_STATIC_INIT_EX(1, coherence::io::pof::SystemPofContext::getInstance()-> \
00124 registerUserType(POF_TYPE_ID, s_coh_static_class_##TYPE, \
00125 coherence::io::pof::TypedSerializer<coherence::lang::Managed<TYPE > >::create()))
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135 #define COH_REGISTER_ONLY_PORTABLE_TYPE_CLASS(POF_TYPE_ID, TYPE) \
00136 COH_STATIC_INIT_EX(1, \
00137 coherence::io::pof::SystemPofContext::getInstance()-> \
00138 registerUserType(POF_TYPE_ID, s_coh_static_class_##TYPE, \
00139 coherence::io::pof::PortableTypeSerializer::create(POF_TYPE_ID)))
00140
00141
00142
00143
00144
00145
00146
00147
00148 #define COH_REGISTER_PORTABLE_TYPE_CLASS(POF_TYPE_ID, TYPE) \
00149 COH_REGISTER_TYPED_CLASS(TYPE); \
00150 COH_REGISTER_ONLY_PORTABLE_TYPE_CLASS(POF_TYPE_ID, TYPE)
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161 #define COH_REGISTER_POF_ANNOTATED_CLASS(POF_TYPE_ID, TYPE) \
00162 COH_STATIC_INIT(coherence::io::pof::SystemPofContext::getInstance()-> \
00163 registerUserType(POF_TYPE_ID, \
00164 coherence::lang::SystemClassLoader::getInstance()-> \
00165 loadByType(typeid(TYPE)), \
00166 coherence::io::pof::PofAnnotationSerializer::create(POF_TYPE_ID,\
00167 coherence::lang::SystemClassLoader::getInstance()-> \
00168 loadByType(typeid(TYPE)))))
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180 #define COH_REGISTER_POF_ANNOTATED_CLASS_AI(POF_TYPE_ID, TYPE) \
00181 COH_STATIC_INIT(coherence::io::pof::SystemPofContext::getInstance()-> \
00182 registerUserType(POF_TYPE_ID, \
00183 coherence::lang::SystemClassLoader::getInstance()-> \
00184 loadByType(typeid(TYPE)), \
00185 coherence::io::pof::PofAnnotationSerializer::create(POF_TYPE_ID,\
00186 coherence::lang::SystemClassLoader::getInstance()-> \
00187 loadByType(typeid(TYPE)), true)))
00188
00189 COH_CLOSE_NAMESPACE3
00190
00191 #endif // COH_SYSTEM_POF_CONTEXT_HPP