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

F79659-03

coherence/io/pof/SystemPofContext.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_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 * System-wide PofContext implementation that allows POF user types to
00023 * be registered programmatically.
00024 *
00025 * @author jh  2008.02.21
00026 */
00027 class COH_EXPORT SystemPofContext
00028     : public cloneable_spec<SystemPofContext,
00029         extends<SimplePofContext> >
00030     {
00031     friend class factory<SystemPofContext>;
00032 
00033     // ----- constructors ---------------------------------------------------
00034 
00035     public:
00036         /**
00037         * @internal
00038         */
00039         using this_spec::create;
00040 
00041     private:
00042         /**
00043         * @internal
00044         */
00045         SystemPofContext();
00046 
00047         /**
00048         * Copy constructor.
00049         */
00050         SystemPofContext(const SystemPofContext& that);
00051 
00052 
00053     public:
00054         /**
00055         * Return the SystemPofContext singleton instance.
00056         *
00057         * @return the global SystemPofContext
00058         */
00059         static Handle getInstance();
00060 
00061         /**
00062         * Executable entrypoint for the SystemPofContext class.
00063         *
00064         * Print the POF registrations.
00065         *
00066         * @param vasArg  a list of libraries to load, and print their
00067         *                registered classes.
00068         */
00069         static void main(ObjectArray::View vasArg);
00070     };
00071 
00072 
00073 // ----- helper macros ------------------------------------------------------
00074 
00075 /**
00076 * Register a PofSerializer with the system PofContext. The call will also
00077 * register the class with the SystemClassLoader.
00078 *
00079 * @param POF_TYPE_ID     the POF type identifier
00080 * @param CLASS           the associated class to register
00081 * @param POF_SERIALIZER  the PofSerializer instance to register
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 * Register a PortableObject implementation only with the system PofContext.
00091 * The class must have already been registered with the SystemClassLoader.
00092 *
00093 * @param POF_TYPE_ID  the POF type identifier
00094 * @param TYPE         the class type to register
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 * Register a PortableObject implementation with the system ClassLoader and
00104 * PofContext.
00105 *
00106 * @param POF_TYPE_ID  the POF type identifier
00107 * @param TYPE         the class type to register
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 * Register a Managed object implementation with the system ClassLoader and
00115 * PofContext.
00116 *
00117 * @param POF_TYPE_ID  the POF type identifier
00118 * @param TYPE         the class type to register
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 * Register a PortableObject implementation to use the PortableTypeSerializer
00129 * only with the system PofContext. The class must have already been registered
00130 * with the SystemClassLoader.
00131 *
00132 * @param POF_TYPE_ID  the POF type identifier
00133 * @param TYPE         the class type to register
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 * Register a PortableObject to use the PortableTypeSerializer implementation
00143 * with the system ClassLoader and PofContext.
00144 *
00145 * @param POF_TYPE_ID  the POF type identifier
00146 * @param TYPE         the class type to register
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 * Register an annotated class with the system ClassLoader and PofContext. The
00154 * Class (TYPE) must be registered with the SystemClassLoader, which is
00155 * assumed based on this being a pre-requisite to adding annotations, and have
00156 * a coherence::io::pof::Portable annotation present.
00157 *
00158 * @param POF_TYPE_ID  the POF type identifier
00159 * @param TYPE         the class type to register
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 * Register an annotated class with the system ClassLoader and PofContext. The
00172 * Class (TYPE) must be registered with the SystemClassLoader, which is
00173 * assumed based on this being a pre-requisite to adding annotations, and have
00174 * a coherence::io::pof::Portable annotation present. This macro additionally
00175 * suggests to the serializer to determine portable property indexes.
00176 *
00177 * @param POF_TYPE_ID  the POF type identifier
00178 * @param TYPE         the class type to register
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
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.