00001
00002
00003
00004
00005
00006
00007 #ifndef COH_BUNDLING_NAMED_CACHE_HPP
00008 #define COH_BUNDLING_NAMED_CACHE_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/net/NamedCache.hpp"
00013 #include "coherence/net/cache/AbstractBundler.hpp"
00014 #include "coherence/net/cache/AbstractEntryBundler.hpp"
00015 #include "coherence/net/cache/AbstractKeyBundler.hpp"
00016 #include "coherence/net/cache/WrapperNamedCache.hpp"
00017 #include "coherence/util/Collection.hpp"
00018 #include "coherence/util/Collections.hpp"
00019 #include "coherence/util/Map.hpp"
00020
00021 COH_OPEN_NAMESPACE3(coherence,net,cache)
00022
00023 using coherence::net::NamedCache;
00024 using coherence::util::Collection;
00025 using coherence::util::Collections;
00026 using coherence::util::Map;
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 class COH_EXPORT BundlingNamedCache
00037 : public class_spec<BundlingNamedCache,
00038 extends<WrapperNamedCache> >
00039 {
00040 friend class factory<BundlingNamedCache>;
00041
00042
00043
00044 public:
00045 typedef this_spec::Handle Handle;
00046 typedef this_spec::View View;
00047 typedef this_spec::Holder Holder;
00048
00049
00050
00051 protected:
00052
00053
00054
00055
00056
00057
00058 BundlingNamedCache(NamedCache::Handle hCache);
00059
00060 private:
00061
00062
00063
00064 BundlingNamedCache(const BundlingNamedCache&);
00065
00066
00067
00068 public:
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078 virtual AbstractBundler::Handle ensureGetBundler(int32_t cBundleThreshold);
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089 virtual AbstractBundler::Handle ensurePutBundler(int32_t cBundleThreshold);
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100 virtual AbstractBundler::Handle ensureRemoveBundler(int32_t cBundleThreshold);
00101
00102
00103
00104 public:
00105
00106
00107
00108
00109
00110 virtual AbstractBundler::Handle getGetBundler();
00111
00112
00113
00114
00115
00116
00117 virtual AbstractBundler::Handle getPutBundler();
00118
00119
00120
00121
00122
00123
00124 virtual AbstractBundler::Handle getRemoveBundler();
00125
00126
00127
00128 public:
00129 using WrapperNamedCache::get;
00130 using WrapperNamedCache::getAll;
00131 using WrapperNamedCache::put;
00132
00133
00134
00135
00136 virtual Object::Holder get(Object::View vKey);
00137
00138
00139
00140
00141 virtual Map::View getAll(Collection::View vColKeys);
00142
00143
00144
00145
00146
00147
00148 virtual Object::Holder put(Object::View vKey, Object::Holder ohValue);
00149
00150
00151
00152
00153 virtual void putAll(Map::View vMap);
00154
00155
00156
00157
00158
00159
00160 virtual Object::Holder remove(Object::View vKey);
00161 using Map::remove;
00162
00163
00164
00165
00166
00167
00168 virtual void release();
00169
00170
00171
00172
00173 virtual void destroy();
00174
00175
00176
00177 public:
00178 class COH_EXPORT GetBundler
00179 : public class_spec<GetBundler,
00180 extends<AbstractKeyBundler> >
00181 {
00182 friend class factory<GetBundler>;
00183
00184
00185
00186 protected:
00187
00188
00189
00190
00191 GetBundler(BundlingNamedCache::Handle hBundlingNamedCache);
00192
00193
00194
00195 protected:
00196
00197
00198
00199
00200
00201
00202
00203
00204 virtual Map::View bundle(Collection::View vColKeys);
00205
00206
00207
00208
00209
00210
00211 virtual Object::Holder unbundle(Object::View vKey) const;
00212
00213
00214
00215
00216
00217
00218 virtual Object::Holder unbundle(Object::View vKey);
00219
00220
00221
00222 public:
00223
00224
00225
00226
00227
00228 virtual BundlingNamedCache::Handle getBundlingNamedCache();
00229
00230
00231
00232
00233
00234
00235 virtual BundlingNamedCache::View getBundlingNamedCache() const;
00236
00237
00238
00239 private:
00240
00241
00242
00243 FinalHandle<BundlingNamedCache> f_hBundlingNamedCache;
00244 };
00245
00246 class COH_EXPORT PutBundler
00247 : public class_spec<PutBundler,
00248 extends<AbstractEntryBundler> >
00249 {
00250 friend class factory<PutBundler>;
00251
00252
00253
00254 protected:
00255
00256
00257
00258
00259 PutBundler(BundlingNamedCache::Handle hBundlingNamedCache);
00260
00261
00262
00263 protected:
00264
00265
00266
00267
00268
00269 virtual void bundle(Map::View vMap);
00270
00271
00272
00273 public:
00274
00275
00276
00277
00278
00279 virtual BundlingNamedCache::Handle getBundlingNamedCache();
00280
00281
00282
00283
00284
00285
00286 virtual BundlingNamedCache::View getBundlingNamedCache() const;
00287
00288
00289
00290 private:
00291
00292
00293
00294 FinalHandle<BundlingNamedCache> f_hBundlingNamedCache;
00295 };
00296
00297 class COH_EXPORT RemoveBundler
00298 : public class_spec<RemoveBundler,
00299 extends<AbstractKeyBundler> >
00300 {
00301 friend class factory<RemoveBundler>;
00302
00303
00304
00305 protected:
00306
00307
00308
00309
00310 RemoveBundler(BundlingNamedCache::Handle hBundlingNamedCache);
00311
00312
00313
00314 protected:
00315
00316
00317
00318
00319
00320
00321 virtual Map::View bundle(Collection::View vColKeys);
00322
00323
00324
00325
00326
00327
00328 virtual Object::Holder unbundle(Object::View vKey);
00329
00330
00331
00332 public:
00333
00334
00335
00336
00337
00338 virtual BundlingNamedCache::Handle getBundlingNamedCache();
00339
00340
00341
00342
00343
00344
00345 virtual BundlingNamedCache::View getBundlingNamedCache() const;
00346
00347
00348
00349 private:
00350
00351
00352
00353 FinalHandle<BundlingNamedCache> f_hBundlingNamedCache;
00354 };
00355
00356
00357
00358 private:
00359
00360
00361
00362 MemberHandle<GetBundler> m_hGetBundler;
00363
00364
00365
00366
00367 MemberHandle<PutBundler> m_hPutBundler;
00368
00369
00370
00371
00372 MemberHandle<RemoveBundler> m_hRemoveBundler;
00373 };
00374
00375 COH_CLOSE_NAMESPACE3
00376
00377 #endif // COH_BUNDLING_NAMED_CACHE_HPP