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

F79659-03

coherence/net/cache/NearCache.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_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 * A "near cache" is a CachingMap whose front map is a size-limited and/or
00033 * auto-expiring local cache, and whose back map is a distributed cache.
00034 *
00035 * (A CachingMap is a map that has a "front" map and a "back" map; the front
00036 * map is assumed to be low latency but incomplete, and the back map is
00037 * assumed to be complete but high latency.)
00038 *
00039 * @author tb  2008.07.02
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     // ----- constructors ---------------------------------------------------
00049 
00050     protected:
00051         /**
00052         * Construct a NearCache, using a <i>mapBack</i> NamedCache as the
00053         * complete (back) storage and <i>mapFront</i> Map as a near (front)
00054         * storage using the listen_auto invalidation strategy.
00055         *
00056         * @param hMapFront    map to put in front of the back cache
00057         * @param hMapBack     NamedCache to put behind the front cache
00058         * @param strategy     specifies the strategy used for the front map
00059         *                     invalidation
00060         * @param hMapControl  map to keep track of front map updates
00061         */
00062         NearCache(CacheMap::Handle hMapFront, CacheMap::Handle hMapBack,
00063                 CachingMap::InvalidationStrategy strategy = listen_auto,
00064                 ConcurrentMap::Handle hMapControl = NULL);
00065 
00066 
00067     // ----- accessors ------------------------------------------------------
00068 
00069     public:
00070         /**
00071         * Obtain the NamedCache object that sits behind this NearCache.
00072         *
00073         * @return the NamedCache object, which is the back map of this
00074         *         NearCache
00075         *
00076         * @throws IllegalStateException if this NamedCache has been released
00077         */
00078         virtual NamedCache::Handle getBackCache();
00079 
00080         /**
00081         * Obtain the NamedCache object that sits behind this NearCache.
00082         *
00083         * @return the NamedCache object, which is the back map of this
00084         *         NearCache
00085         *
00086         * @throws IllegalStateException if this NamedCache has been released
00087         */
00088         virtual NamedCache::View getBackCache() const;
00089 
00090 
00091     // ----- CachingMap interface -------------------------------------------
00092 
00093     public:
00094         /**
00095         * {@inheritDoc}
00096         */
00097         using CachingMap::put;
00098 
00099         /**
00100         * {@inheritDoc}
00101         */
00102         using CachingMap::keySet;
00103 
00104         /**
00105         * {@inheritDoc}
00106         */
00107         using CachingMap::entrySet;
00108 
00109 
00110     // ----- NamedCache interface -------------------------------------------
00111 
00112     public:
00113         /**
00114         * {@inheritDoc}
00115         */
00116         virtual String::View getCacheName() const;
00117 
00118         /**
00119         * {@inheritDoc}
00120         */
00121         virtual NamedCache::CacheServiceHandle getCacheService();
00122 
00123         /**
00124         * {@inheritDoc}
00125         */
00126         virtual NamedCache::CacheServiceView getCacheService() const;
00127 
00128         /**
00129         * {@inheritDoc}
00130         */
00131         virtual bool isActive() const;
00132 
00133         /**
00134         * {@inheritDoc}
00135         */
00136         virtual void release();
00137 
00138         /**
00139         * {@inheritDoc}
00140         */
00141         virtual void destroy();
00142 
00143         /**
00144         * {@inheritDoc}
00145         */
00146         virtual void truncate();
00147 
00148 
00149     // ----- ObservableMap interface ----------------------------------------
00150 
00151     public:
00152         /**
00153         * {@inheritDoc}
00154         */
00155         virtual void addKeyListener(MapListener::Handle hListener,
00156                 Object::View vKey, bool fLite);
00157 
00158         /**
00159         * {@inheritDoc}
00160         */
00161         virtual void removeKeyListener(MapListener::Handle hListener,
00162                 Object::View vKey);
00163 
00164         /**
00165         * {@inheritDoc}
00166         */
00167         virtual void addMapListener(MapListener::Handle hListener);
00168         
00169         /**
00170         * {@inheritDoc}
00171         */
00172         virtual void removeMapListener(MapListener::Handle hListener);
00173         
00174         /**
00175         * {@inheritDoc}
00176         */
00177         virtual void addFilterListener(MapListener::Handle hListener,
00178                 Filter::View vFilter = NULL, bool fLite = false);
00179 
00180         /**
00181         * {@inheritDoc}
00182         */
00183         virtual void removeFilterListener(MapListener::Handle hListener,
00184                 Filter::View vFilter = NULL);
00185 
00186 
00187     // ----- CacheMap interface ---------------------------------------------
00188 
00189     public:
00190         /**
00191         * {@inheritDoc}
00192         */
00193         virtual Map::View getAll(Collection::View vColKeys) const;
00194 
00195         /**
00196         * {@inheritDoc}
00197         */
00198         virtual Object::Holder put(Object::View vKey,
00199                 Object::Holder ohValue, int64_t cMillis);
00200 
00201 
00202     // ----- ConcurrentMap interface ----------------------------------------
00203 
00204     public:
00205         /**
00206         * {@inheritDoc}
00207         */
00208         virtual bool lock(Object::View vKey, int64_t cWait) const;
00209 
00210         /**
00211         * {@inheritDoc}
00212         */
00213         virtual bool lock(Object::View vKey) const;
00214 
00215         /**
00216         * {@inheritDoc}
00217         */
00218         virtual bool unlock(Object::View vKey) const;
00219 
00220 
00221     // ----- QueryMap interface ---------------------------------------------
00222 
00223     public:
00224         /**
00225         * {@inheritDoc}
00226         */
00227         virtual Set::View keySet(Filter::View vFilter) const;
00228 
00229         /**
00230         * {@inheritDoc}
00231         */
00232         virtual Set::View entrySet(Filter::View vFilter) const;
00233 
00234         /**
00235         * {@inheritDoc}
00236         */
00237         virtual Set::View entrySet(Filter::View vFilter,
00238                 Comparator::View vComparator) const;
00239 
00240         /**
00241         * {@inheritDoc}
00242         */
00243         virtual void addIndex(ValueExtractor::View vExtractor, bool fOrdered,
00244                 Comparator::View vComparator);
00245 
00246         /**
00247         * {@inheritDoc}
00248         */
00249         virtual void removeIndex(ValueExtractor::View vExtractor);
00250 
00251 
00252     // ----- InvocableMap interface -----------------------------------------
00253 
00254     public:
00255         /**
00256         * {@inheritDoc}
00257         */
00258         virtual Object::Holder invoke(Object::View vKey,
00259                 EntryProcessor::Handle hAgent);
00260 
00261         /**
00262         * {@inheritDoc}
00263         */
00264         virtual Map::View invokeAll(Collection::View vCollKeys,
00265                 EntryProcessor::Handle hAgent);
00266 
00267         /**
00268         * {@inheritDoc}
00269         */
00270         virtual Map::View invokeAll(Filter::View vFilter,
00271                 EntryProcessor::Handle hAgent);
00272 
00273         /**
00274         * {@inheritDoc}
00275         */
00276         virtual Object::Holder aggregate(Collection::View vCollKeys,
00277                 EntryAggregator::Handle hAgent) const;
00278 
00279         /**
00280         * {@inheritDoc}
00281         */
00282         virtual Object::Holder aggregate(Filter::View vFilter,
00283                 EntryAggregator::Handle hAgent) const;
00284 
00285 
00286     // ----- Object interface -----------------------------------------------
00287 
00288     protected:
00289         /**
00290         * {@inheritDoc}
00291         */
00292         virtual void onInit();
00293 
00294 
00295     // ----- internal helpers -----------------------------------------------
00296 
00297     protected:
00298         /**
00299         * Release this cache, optionally destroying it.
00300         *
00301         * @param fDestroy  true to destroy the cache as well
00302         */
00303         virtual void release(bool fDestroy);
00304 
00305         /**
00306         * Instantiate and register a MemberListener with the back cache's
00307         * service.
00308         *
00309         * The primary goal of that listener is invalidation of the front map
00310         * in case of the service [automatic] restart.
00311         *
00312         * @return the instantiated and registered MemberListener object
00313         */
00314         virtual MemberListener::Handle registerBackServiceListener();
00315 
00316         /**
00317         * Unregister back caches's service member listener.
00318         */
00319         virtual void unregisterBackServiceListener();
00320 
00321 
00322     // ----- data fields ----------------------------------------------------
00323 
00324     protected:
00325         /**
00326         * Cache name
00327         */
00328         FinalView<String> f_vsName;
00329 
00330         /**
00331         * The back cache service.
00332         */
00333         FinalHandle<CacheService> f_hService;
00334 
00335         /**
00336         * The back cache service MemberListener.
00337         */
00338         FinalHandle<MemberListener> f_hListenerBackService;
00339     };
00340 
00341 COH_CLOSE_NAMESPACE3
00342 
00343 #endif // COH_NEAR_CACHE_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.