00001
00002
00003
00004
00005
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
00021
00022
00023
00024 template<class T = void> class COH_EXPORT_SPEC Void
00025 {
00026 protected:
00027 virtual ~Void()
00028 {}
00029
00030 public:
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 virtual void* _cast(coh_class_id ) const
00044 {
00045 return NULL;
00046 }
00047
00048
00049
00050
00051 virtual size64_t sizeOf(bool = false) const
00052 {
00053 return 0;
00054 }
00055 };
00056
00057
00058
00059
00060
00061
00062 template<class T> class Alias
00063 {
00064 public:
00065 typedef typename T::alias alias;
00066 };
00067
00068
00069
00070
00071
00072
00073 template<> class Alias<Void<> >
00074 {
00075 public:
00076 typedef Void<> alias;
00077 };
00078
00079
00080
00081
00082
00083
00084 template<> class Alias<Object>
00085 {
00086 public:
00087 typedef Void<Object> alias;
00088 };
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
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
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118 inline void* _icast(coh_class_id pInfo) const
00119 {
00120
00121
00122
00123
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
00133
00134
00135
00136 template<class I> class COH_EXPORT_SPEC interface_link<void, I>
00137 {
00138 public:
00139 inline void* _icast(coh_class_id ) const
00140 {
00141 return NULL;
00142 }
00143 };
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
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
00223
00224
00225
00226
00227
00228
00229
00230
00231 template<class P = Void<>, class A = typename Alias<P>::alias >
00232 class COH_EXPORT_SPEC extends
00233 {
00234 public:
00235
00236
00237
00238 typedef P inherited;
00239
00240
00241
00242
00243 typedef P inherited_literal;
00244
00245
00246
00247
00248
00249
00250 typedef typename P::super grand;
00251
00252
00253
00254
00255 typedef A alias;
00256 };
00257
00258
00259
00260
00261
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
00272
00273
00274
00275
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
00296
00297
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
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
00327
00328
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
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
00361
00362
00363
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
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00401
00402
00403
00404
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
00413
00414
00415
00416
00417
00418
00419 COH_DEFINE_CREATE_METHODS(T*, new T)
00420 };
00421
00422 COH_CLOSE_NAMESPACE2
00423
00424 #endif // COH_LANG_SPEC_HPP