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

F79659-03

coherence/lang/SystemClassLoader.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_CLASS_LOADER_HPP
00008 #define COH_SYSTEM_CLASS_LOADER_HPP
00009 
00010 #include "coherence/lang/compatibility.hpp"
00011 
00012 #include "coherence/lang/Class.hpp"
00013 #include "coherence/lang/ClassLoader.hpp"
00014 #include "coherence/lang/FinalHandle.hpp"
00015 #include "coherence/lang/ObjectArray.hpp"
00016 #include "coherence/lang/System.hpp"
00017 
00018 COH_OPEN_NAMESPACE2(coherence,lang)
00019 
00020 
00021 /**
00022 * SystemClassLoader is a ClassLoader implementation based on registration
00023 * only.  That is it does not "load" any classes, it only knows about those
00024 * which have been registered with it.
00025 *
00026 * @author mf  2008.04.03
00027 */
00028 class COH_EXPORT SystemClassLoader
00029     : public class_spec<SystemClassLoader,
00030         extends<Object>,
00031         implements<ClassLoader> >
00032     {
00033     friend class factory<SystemClassLoader>;
00034 
00035     // ----- constructors ---------------------------------------------------
00036 
00037     protected:
00038         /**
00039         * @internal
00040         */
00041         using this_spec::create;
00042 
00043     private:
00044         /**
00045         * @internal
00046         */
00047         SystemClassLoader();
00048 
00049 
00050     // ----- SystemClassLoader interface ------------------------------------
00051 
00052     public:
00053         /**
00054         * Register a class with the SystemClassLoader.
00055         *
00056         * @param vClass the Class to register
00057         *
00058         * @return the registered class
00059         *
00060         * @throws IllegalArgumentException if a Class of the same name has
00061         *         already been registered
00062         */
00063         virtual Class::View registerClass(Class::View vClass);
00064 
00065 
00066     // ----- ClassLoader interface ------------------------------------------
00067 
00068     public:
00069         /**
00070         * {@inheritDoc}
00071         */
00072         virtual Class::View loadByName(String::View vsName) const;
00073 
00074         /**
00075         * {@inheritDoc}
00076         */
00077         virtual Class::View loadByType(const std::type_info& info) const;
00078 
00079         /**
00080         * @return NULL
00081         */
00082         virtual ClassLoader::Handle getParent() const;
00083 
00084 
00085     // ----- Object interface -----------------------------------------------
00086 
00087     public:
00088         /**
00089         * {@inheritDoc}
00090         */
00091         TypedHandle<const String> toString() const;
00092 
00093 
00094     // ----- static methods -------------------------------------------------
00095 
00096     public:
00097         /**
00098         * Return the SystemClassLoader singleton.
00099         *
00100         * @return the SystemClassLoader
00101         */
00102         static SystemClassLoader::Handle getInstance();
00103 
00104         /**
00105         * Executable entrypoint for the SystemClassLoader class.
00106         *
00107         * Print the loaded classes.
00108         *
00109         * @param vasArg  a list of libraries to load, and print their
00110         *                registered classes.
00111         */
00112         static void main(ObjectArray::View vasArg);
00113     };
00114 
00115 COH_CLOSE_NAMESPACE2
00116 
00117 
00118 // ----- helper macros ------------------------------------------------------
00119 
00120 #include "coherence/lang/TypedClass.hpp"
00121 #include "coherence/lang/TypedExecutableClass.hpp"
00122 
00123 
00124 /**
00125 * Register a Class with the system class loader.
00126 *
00127 * @param CLASS the Class object to register
00128 */
00129 #define COH_REGISTER_CLASS(CLASS) \
00130     COH_STATIC_INIT(coherence::lang::SystemClassLoader::getInstance()-> \
00131             registerClass(CLASS))
00132 
00133 /**
00134  * Register a Class with the system class loader, and make it locally
00135  * referenceable within this file by the specified name.
00136  */
00137 #define COH_REGISTER_NAMED_CLASS(NAME, CLASS) \
00138         static coherence::lang::FinalHandle<coherence::lang::Class> s_coh_static_class_##NAME \
00139             (coherence::lang::System::common(), CLASS); \
00140         COH_REGISTER_CLASS(s_coh_static_class_##NAME)
00141 
00142 /**
00143 * Register a TypedClass with the system class loader.
00144 *
00145 * @param TYPE the class type to register, i.e. coherence::lang::Object
00146 */
00147 #define COH_REGISTER_TYPED_CLASS(TYPE) \
00148     COH_REGISTER_NAMED_CLASS(TYPE, coherence::lang::TypedClass<TYPE >::create())
00149 
00150 /**
00151 * Register a TypedExecutableClass with the system class loader.
00152 *
00153 * @param TYPE the class type to register, i.e. coherence::lang::Object
00154 */
00155 #define COH_REGISTER_EXECUTABLE_CLASS(TYPE) \
00156     COH_REGISTER_NAMED_CLASS(TYPE, (coherence::lang::TypedExecutableClass<TYPE, \
00157             coherence::lang::TypedClass<TYPE > >::create()))
00158 
00159 /**
00160  * Register a method on a locally registered class.
00161  *
00162  * This macro is only available in the context of the file which registered
00163  * the specified class.  The class must have been registered either by its
00164  * type or explicitly via COH_REGISTER_NAMED_CLASS.
00165  *
00166  * @param NAME    the type of the locally defined class
00167  * @param METHOD  the method to add
00168  */
00169 #define COH_REGISTER_METHOD(NAME, METHOD) \
00170     COH_STATIC_INIT(s_coh_static_class_##NAME->declare(METHOD))
00171 
00172 #endif // COH_SYSTEM_CLASS_LOADER_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.