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