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

F79659-03

coherence/lang/lang_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_LANG_SPEC_HPP
00008 #define COH_LANG_SPEC_HPP
00009 
00010 #include "coherence/lang/compatibility.hpp"
00011 
00012 #include "coherence/lang/TypedHandle.hpp"
00013 #include "coherence/lang/TypedHolder.hpp"
00014 
00015 COH_OPEN_NAMESPACE2(coherence,lang)
00016 
00017 class Object;
00018 
00019 /**
00020 * @internal
00021 *
00022 * Definition of terminal class identifier.
00023 */
00024 template<class T = void> class COH_EXPORT_SPEC Void
00025     {
00026     protected:
00027         virtual ~Void()
00028             {}
00029 
00030     public:
00031         /**
00032         * @internal
00033         *
00034         * Perform a cast from this type to the specified
00035         * type.  This method is for use by the cast<T> operator.
00036         *
00037         * @param pInfo  the type to cast to
00038         *
00039         * @return NULL on failure, else the cast'd value represented as a
00040         *         void* which is suitable for direct casting to the
00041         *         corresponding type.
00042         */
00043         virtual void* _cast(coh_class_id /*pInfo*/) const
00044             {
00045             return NULL;
00046             }
00047 
00048         /**
00049         * @internal
00050         */
00051         virtual size64_t sizeOf(bool /*fDeep*/ = false) const
00052             {
00053             return 0;
00054             }
00055     };
00056 
00057 /**
00058 * @internal
00059 *
00060 * Definition of class alias, used in Exceptions.
00061 */
00062 template<class T> class Alias
00063     {
00064     public:
00065         typedef typename T::alias alias;
00066     };
00067 
00068 /**
00069 * @internal
00070 *
00071 * Terminal Alias.
00072 */
00073 template<> class Alias<Void<> >
00074     {
00075     public:
00076         typedef Void<> alias;
00077     };
00078 
00079 /**
00080 * @internal
00081 *
00082 * Object Alias.
00083 */
00084 template<> class Alias<Object>
00085     {
00086     public:
00087         typedef Void<Object> alias;
00088     };
00089 
00090 
00091 /**
00092 * @internal
00093 *
00094 * Definition of individual link in chain of implemented interfaces.
00095 *
00096 * @see implements
00097 *
00098 * @author mf 2008.07.14
00099 */
00100 template<class I, class N> class COH_EXPORT_SPEC interface_link
00101     : public virtual I, public virtual N
00102     {
00103     public:
00104         /**
00105         * @internal
00106         *
00107         * Perform a cast from this type to the specified type.
00108         * Unlike the virtual _cast which is part of class_specs,
00109         * _icast handles interfaces, and is called only by _cast and thus
00110         * doesn't need to be virtual.
00111         *
00112         * @param pInfo  the type to cast to
00113         *
00114         * @return NULL on failure, else the cast'd value represented as a
00115         *         void* which is suitable for direct casting to the
00116         *         corresponding type.
00117         */
00118         inline void* _icast(coh_class_id pInfo) const
00119             {
00120             // first check if this interface has the class id in question
00121             // if not do a breadth first search across directly inherited
00122             // interfaces, then finally tail recurse up the inheritance
00123             // hierarchy of each of those interfaces
00124             void* p = COH_CLASS_ID(I) == pInfo
00125                     ? (void*) static_cast<const I*>(this)
00126                     : N::_icast(pInfo);
00127             return p ? p : I::_icast(pInfo);
00128             }
00129     };
00130 
00131 /**
00132 * @internal
00133 *
00134 * Terminal interface_link
00135 */
00136 template<class I> class COH_EXPORT_SPEC interface_link<void, I>
00137     {
00138     public:
00139     inline void* _icast(coh_class_id /*pInfo*/) const
00140         {
00141         return NULL;
00142         }
00143     };
00144 
00145 
00146 /**
00147 * The implements template specifies a list of interfaces which a class or
00148 * interface specification derives from.  Each interface will be virtually
00149 * inherited by specified class or interface. Up to sixteen interfaces are
00150 * supported, in the case where more are required, they can be specified using
00151 * an interface_link<I> chain.  i.e.
00152 *
00153 * @code
00154 * implements<I1, ..., I15, interface_link<I16, interface_link<I17> > >
00155 * @endcode
00156 *
00157 * @see abstract_spec
00158 * @see class_spec
00159 * @see cloneable_spec
00160 * @see throwable_spec
00161 * @see interface_spec
00162 *
00163 * @author mf 2008.07.14
00164 */
00165 template<class I1  = void,
00166          class I2  = void,
00167          class I3  = void,
00168          class I4  = void,
00169          class I5  = void,
00170          class I6  = void,
00171          class I7  = void,
00172          class I8  = void,
00173          class I9  = void,
00174          class I10 = void,
00175          class I11 = void,
00176          class I12 = void,
00177          class I13 = void,
00178          class I14 = void,
00179          class I15 = void,
00180          class I16 = void>
00181 class COH_EXPORT_SPEC implements
00182     {
00183     public:
00184         typedef interface_link<I1,
00185                 interface_link<I2,
00186                 interface_link<I3,
00187                 interface_link<I4,
00188                 interface_link<I5,
00189                 interface_link<I6,
00190                 interface_link<I7,
00191                 interface_link<I8,
00192                 interface_link<I9,
00193                 interface_link<I10,
00194                 interface_link<I11,
00195                 interface_link<I12,
00196                 interface_link<I13,
00197                 interface_link<I14,
00198                 interface_link<I15,
00199                 interface_link<I16,
00200                 void > > > > > > > > > > > > > > > >
00201         implements_chain;
00202 
00203         typedef I1  interface_1;
00204         typedef I2  interface_2;
00205         typedef I3  interface_3;
00206         typedef I4  interface_4;
00207         typedef I5  interface_5;
00208         typedef I6  interface_6;
00209         typedef I7  interface_7;
00210         typedef I8  interface_8;
00211         typedef I9  interface_9;
00212         typedef I10 interface_10;
00213         typedef I11 interface_11;
00214         typedef I12 interface_12;
00215         typedef I13 interface_13;
00216         typedef I14 interface_14;
00217         typedef I15 interface_15;
00218         typedef I16 interface_16;
00219     };
00220 
00221 /**
00222 * The extends template indicates the parent class in a class specification.
00223 *
00224 * @see abstract_spec
00225 * @see class_spec
00226 * @see cloneable_spec
00227 * @see throwable_spec
00228 *
00229 * @author mf 2008.07.14
00230 */
00231 template<class P = Void<>, class A = typename Alias<P>::alias >
00232 class COH_EXPORT_SPEC extends
00233     {
00234     public:
00235         /**
00236         * Marker for the actual inherited parent class.
00237         */
00238         typedef P inherited;
00239 
00240         /**
00241          * The literal inherited class.
00242          */
00243         typedef P inherited_literal;
00244 
00245         /**
00246         * The purpose of this definition is to cause a compilation error if
00247         * an attempt is made to instantiate the extends template by supplying
00248         * an interface.
00249         */
00250         typedef typename P::super grand;
00251 
00252         /**
00253         * Alias type used in throwables.
00254         */
00255         typedef A alias;
00256     };
00257 
00258 /**
00259 * @internal
00260 *
00261 * Terminal definition in extension hierarchy.
00262 */
00263 template<> class COH_EXPORT_SPEC extends<Void<>, Void<> >
00264     {
00265     public:
00266         typedef Void<> inherited;
00267         typedef Void<> inherited_literal;
00268         typedef Void<> alias;
00269     };
00270 
00271 // ----- helper macros used in the creation of specs ------------------------
00272 
00273 /**
00274 * The COH_LIST macros create a comma separated list of names, which each name
00275 * is the same except for a numeric suffix.
00276 */
00277 #define COH_LIST1(A)                 A##1
00278 #define COH_LIST2(A)  COH_LIST1 (A), A##2
00279 #define COH_LIST3(A)  COH_LIST2 (A), A##3
00280 #define COH_LIST4(A)  COH_LIST3 (A), A##4
00281 #define COH_LIST5(A)  COH_LIST4 (A), A##5
00282 #define COH_LIST6(A)  COH_LIST5 (A), A##6
00283 #define COH_LIST7(A)  COH_LIST6 (A), A##7
00284 #define COH_LIST8(A)  COH_LIST7 (A), A##8
00285 #define COH_LIST9(A)  COH_LIST8 (A), A##9
00286 #define COH_LIST10(A) COH_LIST9 (A), A##10
00287 #define COH_LIST11(A) COH_LIST10(A), A##11
00288 #define COH_LIST12(A) COH_LIST11(A), A##12
00289 #define COH_LIST13(A) COH_LIST12(A), A##13
00290 #define COH_LIST14(A) COH_LIST13(A), A##14
00291 #define COH_LIST15(A) COH_LIST14(A), A##15
00292 #define COH_LIST16(A) COH_LIST15(A), A##16
00293 
00294 /**
00295 * The COH_ARG_LIST macros create a comma separated list of argument
00296 * declarations names, which each argument name is the same except for a
00297 * numeric suffix.
00298 */
00299 #define COH_ARG_LIST1(A)                     A##1&  a1
00300 #define COH_ARG_LIST2(A)  COH_ARG_LIST1 (A), A##2&  a2
00301 #define COH_ARG_LIST3(A)  COH_ARG_LIST2 (A), A##3&  a3
00302 #define COH_ARG_LIST4(A)  COH_ARG_LIST3 (A), A##4&  a4
00303 #define COH_ARG_LIST5(A)  COH_ARG_LIST4 (A), A##5&  a5
00304 #define COH_ARG_LIST6(A)  COH_ARG_LIST5 (A), A##6&  a6
00305 #define COH_ARG_LIST7(A)  COH_ARG_LIST6 (A), A##7&  a7
00306 #define COH_ARG_LIST8(A)  COH_ARG_LIST7 (A), A##8&  a8
00307 #define COH_ARG_LIST9(A)  COH_ARG_LIST8 (A), A##9&  a9
00308 #define COH_ARG_LIST10(A) COH_ARG_LIST9 (A), A##10& a10
00309 #define COH_ARG_LIST11(A) COH_ARG_LIST10(A), A##11& a11
00310 #define COH_ARG_LIST12(A) COH_ARG_LIST11(A), A##12& a12
00311 #define COH_ARG_LIST13(A) COH_ARG_LIST12(A), A##13& a13
00312 #define COH_ARG_LIST14(A) COH_ARG_LIST13(A), A##14& a14
00313 #define COH_ARG_LIST15(A) COH_ARG_LIST14(A), A##15& a15
00314 #define COH_ARG_LIST16(A) COH_ARG_LIST15(A), A##16& a16
00315 
00316 /**
00317 * Define a proxy constructor with N arguments.
00318 */
00319 #define COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, N) \
00320     template<COH_LIST##N (class A)> SPEC(COH_ARG_LIST##N (A)) \
00321         : super_spec(COH_LIST##N (a)) {} \
00322     template<COH_LIST##N (class A)> SPEC(COH_ARG_LIST##N (const A)) \
00323         : super_spec(COH_LIST##N (a)) {}
00324 
00325 /**
00326 * Define a set of templated copy constructors.
00327 *
00328 * @param SPEC the class of which the constructors are declared
00329 */
00330 #define COH_DEFINE_PROXY_CONSTRUCTORS(SPEC) \
00331     SPEC() : super_spec() {} \
00332     SPEC(const SPEC& that) : super_spec(that) {} \
00333     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 1)  \
00334     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 2)  \
00335     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 3)  \
00336     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 4)  \
00337     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 5)  \
00338     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 6)  \
00339     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 7)  \
00340     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 8)  \
00341     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 9)  \
00342     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 10) \
00343     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 11) \
00344     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 12) \
00345     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 13) \
00346     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 14) \
00347     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 15) \
00348     COH_DEFINE_PROXY_CONSTRUCTOR(SPEC, 16)
00349 
00350 /**
00351 * Define a factory create method with N arguments.
00352 */
00353 #define COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, N) \
00354     template<COH_LIST##N (class A)> static RETURN create(COH_ARG_LIST##N (A)) \
00355         {return FUNCTION(COH_LIST##N(a));} \
00356     template<COH_LIST##N (class A)> static RETURN create(COH_ARG_LIST##N (const A)) \
00357         {return FUNCTION(COH_LIST##N(a));}
00358 
00359 /**
00360 * Define factory "create" methods.
00361 *
00362 * @param RETURN    the return type from the factory
00363 * @param FUNCTION  the function to be called to produce the the RETURN
00364 */
00365 #define COH_DEFINE_CREATE_METHODS(RETURN, FUNCTION) \
00366     static RETURN create() {return FUNCTION();}  \
00367     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 1)  \
00368     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 2)  \
00369     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 3)  \
00370     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 4)  \
00371     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 5)  \
00372     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 6)  \
00373     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 7)  \
00374     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 8)  \
00375     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 9)  \
00376     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 10) \
00377     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 11) \
00378     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 12) \
00379     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 13) \
00380     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 14) \
00381     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 15) \
00382     COH_DEFINE_PROXY_CREATE_METHOD(RETURN, FUNCTION, 16)
00383 
00384 /**
00385 * The factory class auto-generates static create methods for a class,
00386 * corresponding to the class's constructors.  The factory must be made a
00387 * friend of the defined class so that it may access the protected constructors.
00388 *
00389 * The factory is used by class specifications to provide the class with static
00390 * create methods.  i.e. the result of using a class_spec when defining class
00391 * Foo will result in Foo having auto-generated static create methods.  Direct
00392 * use of the factory for class instantiation is not supported.
00393 *
00394 * The factory supports constructors from zero to sixteen parameters. To help
00395 * the template system it is best (though not required) that there are not
00396 * multiple constructors with the same number of parameters. Classes wishing to
00397 * provide custom create methods may simply define them in their class, and
00398 * these will override and hide the factory auto-generated versions.
00399 *
00400 * @see class_spec
00401 * @see cloneable_spec
00402 * @see throwable_spec
00403 *
00404 * @author mf 2008.07.14
00405 */
00406 template<class T> class COH_EXPORT_SPEC factory
00407     {
00408     template<class, class, class> friend class class_spec;
00409 
00410     protected:
00411         /**
00412         * Generate a set of static "create" methods matching the signatures of
00413         * class T's constructors.
00414         *
00415         * NOTE: Compilation errors referencing this line likely indicate that
00416         *       the parameters supplied by the caller to the create method did
00417         *       not match one of the constructors.
00418         */
00419         COH_DEFINE_CREATE_METHODS(T*, new T)
00420     };
00421 
00422 COH_CLOSE_NAMESPACE2
00423 
00424 #endif // COH_LANG_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.