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

F79659-03

coherence/net/cache/BundlingNamedCache.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_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  * Bundling NamedCache implementation.
00030  *
00031  * @see AbstractBundler
00032  * @author gg 2007.02.13
00033  * @author lh 2012.06.05
00034  * @since Coherence 12.1.2
00035  */
00036 class COH_EXPORT BundlingNamedCache
00037     : public class_spec<BundlingNamedCache,
00038         extends<WrapperNamedCache> >
00039     {
00040     friend class factory<BundlingNamedCache>;
00041 
00042     // ----- handle definitions (needed for nested classes) -----------------
00043 
00044     public:
00045         typedef this_spec::Handle Handle;
00046         typedef this_spec::View   View;
00047         typedef this_spec::Holder Holder;
00048 
00049     // ----- constructors ---------------------------------------------------
00050 
00051     protected:
00052         /**
00053          * Construct a BundlingNamedCache based on the specified NamedCache.
00054          *
00055          * @param hCache  the NamedCache that will be wrapped by this 
00056          *                BundlingNamedCache
00057          */
00058         BundlingNamedCache(NamedCache::Handle hCache);
00059 
00060     private:
00061         /**
00062          * Blocked copy constructor.
00063          */
00064         BundlingNamedCache(const BundlingNamedCache&);
00065 
00066     // ----- initiators ------------------------------------------------------
00067 
00068     public:
00069         /**
00070          * Configure the bundler for the "get" operations. If the bundler does
00071          * not exist and bundling is enabled, it will be instantiated.
00072          *
00073          * @param cBundleThreshold  the bundle size threshold; pass zero to
00074          *                          disable "get" operation bundling
00075          *
00076          * @return the "get" bundler or NULL if bundling is disabled
00077          */
00078         virtual AbstractBundler::Handle ensureGetBundler(int32_t cBundleThreshold);
00079 
00080         /**
00081          * Configure the bundler for the "put" operations. If the bundler does
00082          * not exist and bundling is enabled, it will be instantiated.
00083          *
00084          * @param cBundleThreshold  the bundle size threshold; pass zero to
00085          *                          disable "put" operation bundling
00086          *
00087          * @return the "put" bundler or NULL if bundling is disabled
00088          */
00089         virtual AbstractBundler::Handle ensurePutBundler(int32_t cBundleThreshold);
00090 
00091         /**
00092          * Configure the bundler for the "remove" operations. If the bundler
00093          * does not exist and bundling is enabled, it will be instantiated.
00094          *
00095          * @param cBundleThreshold  the bundle size threshold; pass zero to
00096          *                          disable "remove" operation bundling
00097          *
00098          * @return the "remove" bundler or NULL if bundling is disabled
00099          */
00100         virtual AbstractBundler::Handle ensureRemoveBundler(int32_t cBundleThreshold);
00101 
00102     // ----- accessors -------------------------------------------------------
00103 
00104     public:
00105         /**
00106          * Obtain the bundler for the "get" operations.
00107          *
00108          * @return the "get" bundler
00109          */
00110         virtual AbstractBundler::Handle getGetBundler();
00111 
00112         /**
00113          * Obtain the bundler for the "put" operations.
00114          *
00115          * @return the "put" bundler
00116          */
00117         virtual AbstractBundler::Handle getPutBundler();
00118 
00119         /**
00120          * Obtain the bundler for the "remove" operations.
00121          *
00122          * @return the "remove" bundler
00123          */
00124         virtual AbstractBundler::Handle getRemoveBundler();
00125         
00126     // ----- various bundleable NamedCache methods ---------------------------
00127 
00128     public:
00129         using WrapperNamedCache::get;
00130         using WrapperNamedCache::getAll;
00131         using WrapperNamedCache::put;
00132 
00133         /**
00134          * {@inheritDoc}
00135          */
00136         virtual Object::Holder get(Object::View vKey);
00137 
00138         /**
00139          * {@inheritDoc}
00140          */
00141         virtual Map::View getAll(Collection::View vColKeys);
00142 
00143         /**
00144          * {@inheritDoc}
00145          *
00146          * <b>Note:</b> this method always returns NULL.
00147          */
00148         virtual Object::Holder put(Object::View vKey, Object::Holder ohValue);
00149 
00150         /**
00151          * {@inheritDoc}
00152          */
00153         virtual void putAll(Map::View vMap);
00154 
00155         /**
00156          * {@inheritDoc}
00157          *
00158          * <b>Note:</b> this method always returns NULL.
00159          */
00160         virtual Object::Holder remove(Object::View vKey);
00161         using Map::remove;
00162 
00163     // ----- NamedCache interface --------------------------------------------
00164 
00165         /**
00166          * {@inheritDoc}
00167          */
00168         virtual void release();
00169 
00170         /**
00171          * {@inheritDoc}
00172          */
00173         virtual void destroy();
00174 
00175     // ----- inner classes ---------------------------------------------------
00176 
00177     public:
00178         class COH_EXPORT GetBundler
00179             : public class_spec<GetBundler,
00180                 extends<AbstractKeyBundler> >
00181             {
00182             friend class factory<GetBundler>;
00183             
00184             // ----- constructors ---------------------------------------
00185 
00186             protected:
00187                 /**
00188                  * @param hBundlingNamedCache  the BundlingNamedCache this 
00189                  *                             bundler is associated with
00190                  */
00191                 GetBundler(BundlingNamedCache::Handle hBundlingNamedCache);
00192 
00193             // ----- bundle operations --------------------------------------
00194 
00195             protected:
00196                 /**
00197                  * A pass through the underlying "getAll" operation.
00198                  *
00199                  * @param vColKeys  a collection of keys for the "getAll"
00200                  *                  operation
00201                  *
00202                  * @return the results.
00203                  */
00204                 virtual Map::View bundle(Collection::View vColKeys);
00205 
00206                 /**
00207                  * A pass through the underlying "get" operation.
00208                  *
00209                  * @param vKey  the entry key
00210                  */
00211                 virtual Object::Holder unbundle(Object::View vKey) const;
00212 
00213                 /**
00214                  * A pass through the underlying "get" operation.
00215                  *
00216                  * @param vKey  the entry key
00217                  */
00218                 virtual Object::Holder unbundle(Object::View vKey);
00219 
00220             // ----- accessors ------------------------------------------
00221 
00222             public:
00223                 /**
00224                  * Obtain the BundlingNamedCache for this bundler.
00225                  *
00226                  * @return the BundlingNamedCache
00227                  */
00228                 virtual BundlingNamedCache::Handle getBundlingNamedCache();
00229 
00230                 /**
00231                  * Obtain the BundlingNamedCache for this bundler.
00232                  *
00233                  * @return the BundlingNamedCache
00234                  */
00235                 virtual BundlingNamedCache::View getBundlingNamedCache() const;
00236 
00237             // ----- data fields ----------------------------------------
00238 
00239             private:
00240                 /**
00241                  * The BundlingNamedCache for this bundler.
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             // ----- constructors ---------------------------------------
00253 
00254             protected:
00255                 /**
00256                  * @param hBundlingNamedCache  the BundlingNamedCache this 
00257                  *                             bundler is associated with
00258                  */
00259                 PutBundler(BundlingNamedCache::Handle hBundlingNamedCache);
00260 
00261             // ----- bundle operations ----------------------------------
00262 
00263             protected:
00264                 /**
00265                  * A pass through the underlying "putAll" operation.
00266                  *
00267                  * @param vMap  the collection of entries
00268                  */
00269                 virtual void bundle(Map::View vMap);
00270 
00271             // ----- accessors ------------------------------------------
00272 
00273             public:
00274                 /**
00275                  * Obtain the BundlingNamedCache for this bundler.
00276                  *
00277                  * @return the BundlingNamedCache
00278                  */
00279                 virtual BundlingNamedCache::Handle getBundlingNamedCache();
00280 
00281                 /**
00282                  * Obtain the BundlingNamedCache for this bundler.
00283                  *
00284                  * @return the BundlingNamedCache
00285                  */
00286                 virtual BundlingNamedCache::View getBundlingNamedCache() const;
00287 
00288             // ----- data fields ----------------------------------------
00289 
00290             private:
00291                 /**
00292                  * The BundlingNamedCache for this bundler.
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             // ----- constructors ---------------------------------------
00304 
00305             protected:
00306                 /**
00307                  * @param hBundlingNamedCache  the BundlingNamedCache this 
00308                  *                             bundler is associated with
00309                  */
00310                 RemoveBundler(BundlingNamedCache::Handle hBundlingNamedCache);
00311 
00312             // ----- bundle operations ----------------------------------
00313 
00314             protected:
00315                 /**
00316                  * A pass through the underlying keySet()->removeAll() operation.
00317                  *
00318                  * @param vColKeys  the collection of keys to perform the
00319                  *                  bundled operation for
00320                  */
00321                 virtual Map::View bundle(Collection::View vColKeys);
00322 
00323                 /**
00324                  * A pass through the underlying "remove" operation.
00325                  *
00326                  * @param vKey  the entry key
00327                  */
00328                 virtual Object::Holder unbundle(Object::View vKey);
00329 
00330             // ----- accessors ------------------------------------------
00331 
00332             public:
00333                 /**
00334                  * Obtain the BundlingNamedCache for this bundler.
00335                  *
00336                  * @return the BundlingNamedCache
00337                  */
00338                 virtual BundlingNamedCache::Handle getBundlingNamedCache();
00339 
00340                 /**
00341                  * Obtain the BundlingNamedCache for this bundler.
00342                  *
00343                  * @return the BundlingNamedCache
00344                  */
00345                 virtual BundlingNamedCache::View getBundlingNamedCache() const;
00346 
00347             // ----- data fields ----------------------------------------
00348 
00349             private:
00350                 /**
00351                  * The BundlingNamedCache for this bundler.
00352                  */
00353                 FinalHandle<BundlingNamedCache> f_hBundlingNamedCache;
00354             };
00355 
00356     // ----- data fields -----------------------------------------------------
00357 
00358     private:
00359         /**
00360          * The bundler for get() operations.
00361          */
00362         MemberHandle<GetBundler> m_hGetBundler;
00363 
00364         /**
00365          * The bundler for put() operations.
00366          */
00367         MemberHandle<PutBundler> m_hPutBundler;
00368 
00369         /**
00370          * The bundler for remove() operations.
00371          */
00372         MemberHandle<RemoveBundler> m_hRemoveBundler;
00373     };
00374     
00375 COH_CLOSE_NAMESPACE3
00376 
00377 #endif // COH_BUNDLING_NAMED_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.