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

F79659-03

coherence/lang/class_spec.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_CLASS_SPEC_HPP
00008 #define COH_CLASS_SPEC_HPP
00009 
00010 #include "coherence/lang/compatibility.hpp"
00011 
00012 #include "coherence/lang/lang_spec.hpp"
00013 #include "coherence/lang/TypedHandle.hpp"
00014 #include "coherence/lang/TypedHolder.hpp"
00015 
00016 COH_OPEN_NAMESPACE2(coherence,lang)
00017 
00018 class Object;
00019 
00020 extern COH_EXPORT void coh_throw_clone_not_supported(const std::type_info&);
00021 
00022 /**
00023 * Helper for defining a non-cloneable concrete managed class.
00024 *
00025 * Managed classes are implementations of coherence::lang::Object, and include
00026 * a set of well known features, which are auto-generated by this helper class:
00027 *
00028 * - Handle/View/Holder definitions
00029 * - super class definition
00030 * - virtual interface inheritance of up to 16 interfaces
00031 * - public static create methods which delegate to protected constructors with
00032 *   up to sixteen arguments
00033 * - automatic sizeOf() definition
00034 *
00035 * The template takes three parameters:
00036 *
00037 * - The name of the class being defined
00038 * - The defined classes parent class, indicated as extends<parent>
00039 * - An optional list of interfaces to implement, indicated as
00040 *   implements<i1, i2, ...>
00041 *
00042 * A normal class definition would be:
00043 * @code
00044 * class Foo
00045 *   : public class_spec<Foo,
00046 *       extends<Bar>,
00047 *       implements<SomeInterface, SomeOtherInterface> >
00048 *   {
00049 *   // add support for auto-generated static create methods
00050 *   friend class factory<Foo>;
00051 *
00052 *   protected:
00053 *       // Constructors are defined as protected, and access via
00054 *       // auto-generated create methods, with matching signatures
00055 *       Foo()
00056 *           : super() // calls Bar()
00057 *           {
00058 *           }
00059 *
00060 *   public:
00061 *       // normal class definition....
00062 *   };
00063 * @endcode
00064 *
00065 * @see extends
00066 * @see implements
00067 *
00068 * @author mf 2008.07.14
00069 */
00070 template<class T, class E = extends<Object, void>, class I = implements<> >
00071 class COH_EXPORT_SPEC class_spec
00072     : public E, public E::inherited, public virtual I::implements_chain
00073     {
00074     // ----- typedefs -------------------------------------------------------
00075 
00076     public:
00077         /**
00078         * Specification definition
00079         */
00080         typedef class_spec this_spec;
00081 
00082         /**
00083         * Factory for this class
00084         */
00085         typedef factory<T> factory_spec;
00086 
00087         /**
00088         * Definition T's actual parent class
00089         */
00090         typedef class_spec super;
00091 
00092         /**
00093         * Definition of the spec's parent class
00094         */
00095         typedef typename E::inherited super_spec;
00096 
00097         /**
00098         * Definition T's logical parent class
00099         */
00100         typedef typename E::inherited_literal inherited;
00101 
00102         /**
00103         * @internal
00104         *
00105         * Definition T's alias
00106         */
00107         typedef typename E::alias alias;
00108 
00109         /**
00110         * Standard Handle definition
00111         */
00112         typedef TypedHandle<T> Handle;
00113 
00114         /**
00115         * Standard View definition
00116         */
00117         typedef TypedHandle<const T> View;
00118 
00119         /**
00120         * Standard Holder definition
00121         */
00122         typedef TypedHolder<T> Holder;
00123 
00124         /**
00125          * implemented interface typedefs
00126          */
00127         typedef typename I::interface_1  interface_1;
00128         typedef typename I::interface_2  interface_2;
00129         typedef typename I::interface_3  interface_3;
00130         typedef typename I::interface_4  interface_4;
00131         typedef typename I::interface_5  interface_5;
00132         typedef typename I::interface_6  interface_6;
00133         typedef typename I::interface_7  interface_7;
00134         typedef typename I::interface_8  interface_8;
00135         typedef typename I::interface_9  interface_9;
00136         typedef typename I::interface_10 interface_10;
00137         typedef typename I::interface_11 interface_11;
00138         typedef typename I::interface_12 interface_12;
00139         typedef typename I::interface_13 interface_13;
00140         typedef typename I::interface_14 interface_14;
00141         typedef typename I::interface_15 interface_15;
00142         typedef typename I::interface_16 interface_16;
00143 
00144 
00145     // ----- constructors ---------------------------------------------------
00146 
00147     protected:
00148         /**
00149         * Generate a set of proxy constructors matching the signatures of the
00150         * parent class's constructors.
00151         *
00152         * NOTE: Compilation errors referencing this line likely indicate that
00153         *       class being defined by this spec makes calls a "super"
00154         *       constructor supplying a set of parameters for which there is
00155         *       no exact match on the parent class.
00156         */
00157         COH_DEFINE_PROXY_CONSTRUCTORS(class_spec)
00158 
00159     public:
00160         /**
00161         * Generate a set of static "create" methods matching the signatures of
00162         * class T's constructors.
00163         *
00164         * NOTE: Compilation errors referencing this line likely indicate that
00165         *       the parameters supplied by the caller to the create method did
00166         *       not match one of the constructors.
00167         */
00168         COH_DEFINE_CREATE_METHODS(Handle, factory_spec::create)
00169 
00170         virtual TypedHandle<Object> clone() const
00171             {
00172             coh_throw_clone_not_supported(typeid(T));
00173             return NULL;
00174             }
00175 
00176         virtual size64_t sizeOf(bool fDeep = false) const
00177             {
00178             return fDeep
00179                     ? inherited::sizeOf(/*fDeep*/ true)
00180                     : sizeof(T);
00181             }
00182 
00183         virtual void* _cast(coh_class_id pInfo) const
00184             {
00185             // first check if this class has the class id in question
00186             // if not do a breadth first search across directly implemented
00187             // interfaces, and then finally tail recurse up the inheritance
00188             // hierarchy
00189             void* p = COH_CLASS_ID(T) == pInfo
00190                     ? (void*) static_cast<const T*>(this)
00191                     : I::implements_chain::_icast(pInfo);
00192             return p ? p : super_spec::_cast(pInfo);
00193             }
00194 
00195 
00196         COH_GENERATE_CLASS_ID(T)
00197 
00198         /**
00199          * @internal
00200          *
00201          * Return the class id of an object.
00202          */
00203         virtual coh_class_id _getClassId() const
00204             {
00205             return COH_CLASS_ID(T);
00206             }
00207 
00208     protected:
00209         /**
00210         * @internal
00211         *
00212         * Protect access to create method generated for the copy constructor.
00213         */
00214         static inline Handle create(const T& that)
00215             {
00216             return Handle(factory_spec::create(that));
00217             }
00218     };
00219 
00220 COH_CLOSE_NAMESPACE2
00221 
00222 #endif // COH_CLASS_SPEC_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.