00001
00002
00003
00004
00005
00006
00007 #ifndef COH_WRAPPER_NAMED_CACHE_HPP
00008 #define COH_WRAPPER_NAMED_CACHE_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/net/CacheService.hpp"
00013 #include "coherence/net/NamedCache.hpp"
00014 #include "coherence/util/Comparator.hpp"
00015 #include "coherence/util/Filter.hpp"
00016 #include "coherence/util/MapListener.hpp"
00017 #include "coherence/util/Set.hpp"
00018 #include "coherence/util/ValueExtractor.hpp"
00019
00020 COH_OPEN_NAMESPACE3(coherence,net,cache)
00021
00022 using coherence::net::CacheService;
00023 using coherence::net::NamedCache;
00024 using coherence::util::Collection;
00025 using coherence::util::Comparator;
00026 using coherence::util::Filter;
00027 using coherence::util::MapListener;
00028 using coherence::util::Set;
00029 using coherence::util::ValueExtractor;
00030
00031
00032
00033
00034
00035
00036
00037 class COH_EXPORT WrapperNamedCache
00038 : public class_spec<WrapperNamedCache,
00039 extends<Object>,
00040 implements<NamedCache> >
00041 {
00042 friend class factory<WrapperNamedCache>;
00043
00044
00045
00046 protected:
00047
00048
00049
00050
00051
00052
00053 WrapperNamedCache(NamedCache::Handle hCache);
00054
00055
00056
00057 public:
00058
00059
00060
00061 virtual size32_t size() const;
00062
00063
00064
00065
00066 virtual bool isEmpty() const;
00067
00068
00069
00070
00071 virtual bool containsKey(Object::View vKey) const;
00072
00073
00074
00075
00076 virtual bool containsValue(Object::View vValue) const;
00077
00078
00079
00080
00081 virtual Object::Holder get(Object::View vKey) const;
00082
00083
00084
00085
00086 virtual Object::Holder get(Object::View vKey);
00087
00088
00089
00090
00091 virtual Object::Holder put(Object::View vKey, Object::Holder ohValue);
00092
00093
00094
00095
00096 virtual Object::Holder remove(Object::View vKey);
00097 using Map::remove;
00098
00099
00100
00101
00102 virtual void putAll(Map::View vMap);
00103
00104
00105
00106
00107 virtual void clear();
00108
00109
00110
00111
00112 virtual Set::View keySet() const;
00113
00114
00115
00116
00117 virtual Set::Handle keySet();
00118
00119
00120
00121
00122 virtual Collection::View values() const;
00123
00124
00125
00126
00127 virtual Collection::Handle values();
00128
00129
00130
00131
00132 virtual Set::View entrySet() const;
00133
00134
00135
00136
00137 virtual Set::Handle entrySet();
00138
00139
00140
00141 public:
00142
00143
00144
00145 virtual Map::View getAll(Collection::View vKeys) const;
00146
00147
00148
00149
00150 virtual Object::Holder put(Object::View vKey, Object::Holder ohValue,
00151 int64_t cMillis);
00152
00153
00154
00155 public:
00156
00157
00158
00159 virtual void release();
00160
00161
00162
00163
00164 virtual void destroy();
00165
00166
00167
00168
00169 virtual void truncate();
00170
00171
00172
00173
00174 virtual String::View getCacheName() const;
00175
00176
00177
00178
00179 virtual bool isActive() const;
00180
00181
00182
00183
00184 virtual NamedCache::CacheServiceHandle getCacheService();
00185
00186
00187
00188
00189 virtual NamedCache::CacheServiceView getCacheService() const;
00190
00191
00192
00193 public:
00194
00195
00196
00197 virtual bool lock(Object::View vKey, int64_t cWait) const;
00198
00199
00200
00201
00202 virtual bool lock(Object::View vKey) const;
00203
00204
00205
00206
00207 virtual bool unlock(Object::View vKey) const;
00208
00209
00210
00211 public:
00212
00213
00214
00215 virtual Object::Holder invoke(Object::View vKey,
00216 EntryProcessor::Handle hAgent);
00217
00218
00219
00220
00221 virtual Map::View invokeAll(Collection::View vCollKeys,
00222 EntryProcessor::Handle hAgent);
00223
00224
00225
00226
00227 virtual Map::View invokeAll(Filter::View vFilter,
00228 EntryProcessor::Handle hAgent);
00229
00230
00231
00232
00233 virtual Object::Holder aggregate(Collection::View vCollKeys,
00234 EntryAggregator::Handle hAgent) const;
00235
00236
00237
00238
00239 virtual Object::Holder aggregate(Filter::View vFilter,
00240 EntryAggregator::Handle hAgent) const;
00241
00242
00243
00244 public:
00245
00246
00247
00248 virtual Set::View keySet(Filter::View vFilter) const;
00249
00250
00251
00252
00253 virtual Set::View entrySet(Filter::View vFilter) const;
00254
00255
00256
00257
00258 virtual Set::View entrySet(Filter::View vFilter,
00259 Comparator::View vComparator) const;
00260
00261
00262
00263
00264 virtual void addIndex(ValueExtractor::View vExtractor, bool fOrdered,
00265 Comparator::View vComparator);
00266
00267
00268
00269
00270 virtual void removeIndex(ValueExtractor::View vExtractor);
00271
00272
00273
00274 public:
00275
00276
00277
00278 virtual void addKeyListener(MapListener::Handle hListener,
00279 Object::View vKey, bool fLite);
00280
00281
00282
00283
00284 virtual void removeKeyListener(MapListener::Handle hListener,
00285 Object::View vKey);
00286
00287
00288
00289
00290 virtual void addMapListener(MapListener::Handle hListener);
00291
00292
00293
00294
00295 virtual void removeMapListener(MapListener::Handle hListener);
00296
00297
00298
00299
00300 virtual void addFilterListener(MapListener::Handle hListener,
00301 Filter::View vFilter = NULL, bool fLite = false);
00302
00303
00304
00305
00306 virtual void removeFilterListener(MapListener::Handle hListener,
00307 Filter::View vFilter = NULL);
00308
00309
00310
00311 public:
00312
00313
00314
00315 virtual TypedHandle<const String> toString() const;
00316
00317
00318
00319 public:
00320
00321
00322
00323
00324
00325 virtual NamedCache::Handle getNamedCache();
00326
00327
00328
00329
00330
00331
00332 virtual NamedCache::View getNamedCache() const;
00333
00334
00335
00336 protected:
00337
00338
00339
00340 FinalHandle<NamedCache> f_hNamedCache;
00341 };
00342
00343 COH_CLOSE_NAMESPACE3
00344
00345 #endif // COH_WRAPPER_NAMED_CACHE_HPP