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

F79659-03

coherence/net/DefaultConfigurableCacheFactory.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_DEFAULT_CONFIGURABLE_CACHE_FACTORY_HPP
00008 #define COH_DEFAULT_CONFIGURABLE_CACHE_FACTORY_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/net/ConfigurableCacheFactory.hpp"
00013 #include "coherence/net/OperationalContext.hpp"
00014 
00015 #include "coherence/net/cache/AbstractBundler.hpp"
00016 #include "coherence/net/cache/BundlingNamedCache.hpp"
00017 #include "coherence/net/cache/CacheLoader.hpp"
00018 #include "coherence/net/cache/CacheMap.hpp"
00019 #include "coherence/net/cache/ContinuousQueryCache.hpp"
00020 
00021 #include "coherence/run/xml/XmlDocument.hpp"
00022 #include "coherence/run/xml/XmlElement.hpp"
00023 #include "coherence/run/xml/XmlValue.hpp"
00024 
00025 #include "coherence/util/Map.hpp"
00026 #include "coherence/util/MapListener.hpp"
00027 
00028 COH_OPEN_NAMESPACE2(coherence,net)
00029 
00030 using coherence::net::cache::AbstractBundler;
00031 using coherence::net::cache::BundlingNamedCache;
00032 using coherence::net::cache::CacheLoader;
00033 using coherence::net::cache::CacheMap;
00034 using coherence::net::cache::ContinuousQueryCache;
00035 using coherence::run::xml::XmlDocument;
00036 using coherence::run::xml::XmlElement;
00037 using coherence::run::xml::XmlValue;
00038 using coherence::util::Map;
00039 using coherence::util::MapListener;
00040 
00041 
00042 /**
00043 * DefaultConfigurableCacheFactory provides a facility to access caches
00044 * declared in a "cache-config.dtd" compliant configuration file.
00045 *
00046 * This class is designed to be easily extendable with a collection of factory
00047 * methods allowing subclasses to customize it by overriding any subset of
00048 * %cache instantiation routines or even allowing addition of custom schemes.
00049 *
00050 * There are various ways of using this factory:
00051 * <pre>
00052 *   ConfigurableCacheFactory::Handle factory =
00053 *       DefaultConfigurableCacheFactory::create(sPath);
00054 *   ...
00055 *   NamedCache::Handle cacheOne = factory->ensureCache("one");
00056 *   NamedCache::Handle cacheTwo = factory->ensureCache("two");
00057 * </pre>
00058 * This approach allows an easy customization by extending the
00059 * DefaultConfigurableCacheFactory and changing the instantiation line:
00060 * <pre>
00061 *   ConfigurableCacheFactory::Handle factory =
00062 *       CustomConfigurableCacheFactory::create();
00063 *   ...
00064 * </pre>
00065 *
00066 * Another option is using the static version of the "ensureCache" call:
00067 * <pre>
00068 *   NamedCache cacheOne = CacheFactory::getCache("one");
00069 *   NamedCache cacheTwo = CacheFactory::getCache("two");
00070 * </pre>
00071 * which uses an instance of ConfigurableCacheFactory obtained by
00072 * {@link CacheFactory#getConfigurableCacheFactory()}.
00073 *
00074 * @see CacheFactory#getCache(String::View)
00075 *
00076 * @author mf  2008.04.08
00077 */
00078 class COH_EXPORT DefaultConfigurableCacheFactory
00079     : public class_spec<DefaultConfigurableCacheFactory,
00080         extends<Object>,
00081         implements<ConfigurableCacheFactory> >
00082     {
00083     friend class factory<DefaultConfigurableCacheFactory>;
00084 
00085     // ----- constructors ---------------------------------------------------
00086 
00087     protected:
00088         /**
00089         * Create a new %cache factory.
00090         *
00091         * @param vsFile  the name of the configuration file to load relative
00092         *                to the current working directory, or NULL for an
00093         *                unconfigured CacheFactory
00094         */
00095         DefaultConfigurableCacheFactory(String::View vsFile = String::null_string);
00096 
00097 
00098     // ----- typedef: SchemeType --------------------------------------------
00099 
00100     public:
00101         /**
00102         * Scheme types.
00103         */
00104         typedef enum
00105             {
00106             scheme_local,
00107             scheme_class,
00108             scheme_near,
00109             scheme_remote_cache,
00110             scheme_remote_invocation,
00111             scheme_view,
00112             scheme_unknown
00113             } SchemeType;
00114 
00115 
00116     // ----- nested class: CacheInfo ----------------------------------------
00117 
00118     public:
00119         /**
00120         * CacheInfo is a placeholder for cache attributes retrieved during
00121         * parsing the corresponding cache mapping element.
00122         */
00123         class CacheInfo
00124             : public class_spec<CacheInfo>
00125             {
00126             friend class factory<CacheInfo>;
00127 
00128             // ----- constructors ---------------------------------------
00129 
00130             protected:
00131                 /**
00132                 * Create a new CacheInfo.
00133                 *
00134                 * @param vsCacheName    the cache name
00135                 * @param vsSchemeName   the corresponding scheme name
00136                 * @param vMapAttribute  the corresponding map of attributes
00137                 */
00138                 CacheInfo(String::View vsCacheName, String::View vsSchemeName,
00139                         Map::View vMapAttribute);
00140 
00141             // ----- accessors ------------------------------------------
00142 
00143             public:
00144                 /**
00145                 * Obtain the cache name.
00146                 *
00147                 * @return the cache name
00148                 */
00149                 virtual String::View getCacheName() const;
00150 
00151                 /**
00152                 * Obtain the scheme name.
00153                 *
00154                 * @return the scheme name
00155                 */
00156                 virtual String::View getSchemeName() const;
00157 
00158                 /**
00159                 * Obtain the attribute map.
00160                 *
00161                 * @return the attribute map
00162                 */
00163                 virtual Map::View getAttributes() const;
00164 
00165             // ----- helpers --------------------------------------------
00166 
00167             public:
00168                 /**
00169                 * Find and replace the attributes names in "{}" format with
00170                 * the corresponding values for this cache info.
00171                 *
00172                 * Note: the content of the specified XmlElement could be
00173                 * modified, so the caller is supposed to clone the passed in
00174                 * XML if necessary.
00175                 *
00176                 * @param hXml  the XmlElement to replace "{}" attributes at
00177                 */
00178                 virtual void replaceAttributes(XmlElement::Handle hXml) const;
00179 
00180                 /**
00181                 * Generate a synthetic CacheInfo for a cache that has a name
00182                 * suffixed with the specified string.
00183                 *
00184                 * @param vsSuffix  the cache name suffix
00185                 *
00186                 * @return the "cloned" synthetic CacheInfo
00187                 */
00188                 virtual CacheInfo::Handle getSyntheticInfo(String::View vsSuffix) const;
00189 
00190 
00191             // ----- data fields ----------------------------------------
00192 
00193             protected:
00194                 /**
00195                 * The cache name.
00196                 */
00197                 FinalView<String> f_vsCacheName;
00198 
00199                 /**
00200                 * The corresponding scheme name.
00201                 */
00202                 FinalView<String> f_vsSchemeName;
00203 
00204                 /**
00205                 * Map of scheme attributes.
00206                 */
00207                 FinalView<Map> f_vMapAttribute;
00208             };
00209 
00210     // ----- DefaultConfigurableCacheFactory interface ----------------------
00211 
00212     public:
00213         /**
00214         * In the configuration XML find a "cache-mapping" element associated with a
00215         * given cache name.
00216         *
00217         * @param vsCacheName  the value of the "cache-name" element to look for
00218         *
00219         * @return a CacheInfo object associated with a given cache name
00220         */
00221         virtual CacheInfo::View findSchemeMapping(String::View vsCacheName);
00222 
00223         /**
00224         * In the configuration XML find a "scheme" element associated with a
00225         * given cache and resolve it (recursively) using the "scheme-ref"
00226         * elements. The returned XML is always a clone of the actual configuration
00227         * and could be safely modified.
00228         *
00229         * @param vInfo  the cache info
00230         *
00231         * @return a resolved "scheme" element associated with a given cache
00232         */
00233         virtual XmlElement::View resolveScheme(CacheInfo::View vInfo);
00234 
00235         /**
00236         * Translate the scheme name into the scheme type. Valid scheme types are
00237         * any of the SCHEME_* constants.
00238         *
00239         * @param vsScheme  the scheme name
00240         *
00241         * @return the scheme type
00242         */
00243         virtual SchemeType translateSchemeType(String::View vsScheme);
00244 
00245         /**
00246         * Create an Object using "class-scheme" element.
00247         *
00248         * @param vInfo       the cache info
00249         * @param vXmlScheme  "class-scheme" element.
00250         *
00251         * @return a newly instantiated Object
00252         */
00253         virtual Object::Handle instantiateAny(CacheInfo::View vInfo,
00254                 XmlElement::View vXmlScheme);
00255 
00256         /**
00257         * Ensures a cache for given scheme.
00258         *
00259         * @param vInfo       the cache info
00260         * @param vXmlScheme  the corresponding scheme
00261         *
00262         * @return a named cache created according to the description
00263         *         in the configuration
00264         */
00265         virtual NamedCache::Handle configureCache(CacheInfo::View vInfo,
00266                 XmlElement::View vXmlScheme);
00267 
00268 
00269     protected:
00270         /**
00271         * Resolve the specified "XYZ-scheme" by retrieving the base element
00272         * refered to by the "scheme-ref" element, resolving it recursively,
00273         * and combining it with the specified overrides and cache specific attributes.
00274         *
00275         * @param vXmlScheme  a scheme element to resolve
00276         * @param vInfo       the cache info (optional)
00277         * @param fChild      if true, the actual cache scheme is the only "xyz-scheme"
00278         *                    child of the specified xmlScheme element;
00279         *                    otherwise it's the xmlScheme element itself
00280         * @param fRequired  if true, the child scheme must be present; false otherwise
00281         *
00282         * @return a "scheme" element associated with a given cache name; NULL if
00283         *         the child is missing and is not required
00284         */
00285         virtual XmlElement::Handle resolveScheme(XmlElement::View vXmlScheme,
00286                 CacheInfo::View vInfo, bool fChild, bool fRequired);
00287 
00288         /**
00289         * In the configuration XML find a "scheme" element associated with a
00290         * given cache name.
00291         *
00292         * @param vsSchemeName  the value of the "cache-name" element to look for
00293         *
00294         * @return a "scheme" element associated with a given cache name
00295         */
00296         virtual XmlElement::Handle findScheme(String::View vsSchemeName);
00297 
00298         /**
00299         * In the configuration XML find a "scheme" element associated with a
00300         * given service name.
00301         *
00302         * @param vsServiceName  the value of the "service-name" element to look for
00303         *
00304         * @return a "scheme" element associated with a given service name
00305         */
00306         virtual XmlElement::Handle findServiceScheme(String::View vsServiceName);
00307 
00308         /**
00309         * Release a cache managed by this factory, optionally destroying it.
00310         *
00311         * @param cache     the cache to release
00312         * @param fDestroy  true to destroy the cache as well
00313         */
00314         virtual void releaseCache(NamedCache::Handle hCache, bool fDestroy);
00315 
00316         /**
00317         * Ensure the service for the specified scheme.
00318         *
00319         * @param vXmlScheme  the scheme
00320         *
00321         * @return running Service corresponding to the scheme
00322         */
00323         virtual Service::Handle configureService(XmlElement::View vXmlScheme);
00324 
00325         /**
00326         * Configures a backing map according to the scheme.
00327         *
00328         * @param vInfo         the cache info
00329         * @param vXmlScheme    the scheme element for cache configuration
00330         *
00331         * @return a backing map configured according to the scheme
00332         */
00333         virtual CacheMap::Handle configureBackingMap(CacheInfo::View vInfo,
00334                 XmlElement::View vXmlScheme);
00335 
00336         /**
00337         * Instantiate a BundlingNamedCache based on the "operation-bundling" 
00338         * configuration.
00339         *
00340         * @param hCache        the wrapped cache
00341         * @param vXmlBundling  the "operation-bundling" element
00342         *
00343         * @return a newly instantiated BundlingNamedCache
00344         */
00345         virtual BundlingNamedCache::Handle instantiateBundlingNamedCache(
00346                 NamedCache::Handle hCache, XmlElement::View vXmlBundling);
00347 
00348         /**
00349         * Initialize the specified bundler using the "bundle-config" element.
00350         *
00351         * @param bundler    the bundler
00352         * @param xmlBundle  a "bundle-config" element
00353         */
00354         virtual void initializeBundler(AbstractBundler::Handle hBundler, XmlElement::View vXmlBundle);
00355 
00356         /**
00357         * Instantiate a custom (class-name) based cache based on the supplied
00358         * configuration and scheme.
00359         *
00360         * @param vInfo       the CacheInfo
00361         * @param vXmlScheme  the cache scheme
00362         *
00363         * @return a new NamedCache instance
00364         */
00365         virtual NamedCache::Handle instantiateCustomCache(CacheInfo::View vInfo,
00366                 XmlElement::View vXmlScheme);
00367 
00368         /**
00369         * Instantiate a local cache based on the supplied configuration and
00370         * scheme.
00371         *
00372         * @param vInfo       the CacheInfo
00373         * @param vXmlScheme  the cache scheme
00374         *
00375         * @return a new NamedCache instance
00376         */
00377         virtual NamedCache::Handle instantiateLocalCache(CacheInfo::View vInfo,
00378                 XmlElement::View vXmlScheme);
00379 
00380         /**
00381         * Create a MapListener using the using the "class-scheme" element.
00382         * If the value of any "param-value" element contains the literal
00383         * "{cache-name}", replace it with the actual cache name.
00384         *
00385         * @param vInfo      the cache info
00386         * @param vXmlClass  "class-scheme" element
00387         *
00388         * @return a newly instantiated MapListener
00389         *
00390         * @since Coherence 12.1.2
00391         */
00392         virtual MapListener::Handle instantiateMapListener(CacheInfo::View vInfo, 
00393                 XmlElement::View vXmlClass);
00394 
00395         /**
00396         * Instantiate a remote cache based on the supplied configuration and
00397         * scheme.
00398         *
00399         * @param vInfo       the CacheInfo
00400         * @param vXmlScheme  the cache scheme
00401         *
00402         * @return a new NamedCache instance
00403         */
00404         virtual NamedCache::Handle ensureRemoteCache(CacheInfo::View vInfo,
00405                 XmlElement::View vXmlScheme);
00406 
00407         /**
00408         * Instantiate a near cache based on the supplied configuration and
00409         * scheme.
00410         *
00411         * @param vInfo       the CacheInfo
00412         * @param vXmlScheme  the cache scheme
00413         *
00414         * @return a new NamedCache instance
00415         */
00416         virtual NamedCache::Handle ensureNearCache(CacheInfo::View vInfo,
00417                 XmlElement::View vXmlScheme);
00418 
00419         /**
00420         * Instantiate a cache view based on the supplied configuration and
00421         * scheme.
00422         *
00423         * @param vInfo       the CacheInfo
00424         * @param vXmlScheme  the cache scheme
00425         *
00426         * @return a new NamedCache instance
00427         * 
00428         * @since 12.2.1.4
00429         */
00430         virtual NamedCache::Handle ensureCacheView(CacheInfo::View vInfo,
00431                 XmlElement::View vXmlScheme);
00432 
00433         /**
00434         * Create a backing Map using the "class-scheme" element.
00435         * This method is a thin wrapper around instantiateAny.
00436         *
00437         * @param vInfo       the cache info
00438         * @param vXmlScheme  "class-scheme" element.
00439         *
00440         * @return a newly instantiated Map
00441         */
00442         virtual Map::Handle instantiateMap(CacheInfo::View vInfo,
00443                 XmlElement::View vXmlScheme);
00444 
00445         /**
00446         * Create a CacheLoader or CacheStore using the "cachestore-scheme" element.
00447         *
00448         * @param vInfo      the cache info
00449         * @param vXmlStore  "cachestore-scheme" element for the store or loader
00450         *
00451         * @return a newly instantiated CacheStore or CacheLoader
00452         */
00453         virtual CacheLoader::Handle instantiateCacheStore(CacheInfo::View vInfo,
00454                     XmlElement::View vXmlStore);
00455 
00456         /**
00457         * Convert the value in the specified {@link XmlValue} to an int.  If the
00458         * conversion fails, a warning will be logged.
00459         *
00460         * @param vXmlValue  the element expected to contain an int value
00461         *
00462         * @return the int value in the provided element, or 0 upon a
00463         *         conversion failure
00464         */
00465         virtual int32_t convertInt(XmlValue::View vXmlValue) const;
00466 
00467         /**
00468         * Convert the value in the specified {@link XmlValue} to an int.  If the
00469         * conversion fails, a warning will be logged.
00470         *
00471         * @param vXmlValue  the element expected to contain an int value
00472         * @param nDefault   the value that will be returned if the element does
00473         *                   not contain a value that can be converted to int
00474         *
00475         * @return the int value in the provided element, or nDefault upon a
00476         *         conversion failure
00477         */
00478         virtual int32_t convertInt(XmlValue::View vXmlValue, int32_t nDefault) const;
00479 
00480         /**
00481         * Log a failed type conversion.
00482         *
00483         * @param vXmlValue  element that contains the value that failed conversion
00484         * @param vsType     type that conversion was attempted to
00485         * @param vsDefault  default value that will be substituted
00486         * @param e          root cause of failed type conversion
00487         */
00488         virtual void reportConversionError(XmlValue::View vXmlValue, String::View vsType,
00489                 String::View vsDefault, RuntimeException::View e) const;
00490 
00491         /**
00492         * Resolve and inject service serializer elements based on defaults
00493         * defined in the cache configuration.
00494         *
00495         * @param hXmlConfig  the configuration element to examine and modify
00496         *
00497         * @since Coherence 12.1.2
00498         */
00499         virtual void resolveSerializer(XmlElement::Handle hXmlConfig) const;
00500 
00501         /**
00502         * Check whether or not a MapListener has to be instantiated and
00503         * added to a Map according to a scheme definition.
00504         *
00505         * @param vInfo          the cache info
00506         * @param hMap           an ObservableMap to add a listener to
00507         * @param vXmlScheme     the corresponding scheme
00508         * @param hMapListeners  map of registered map listeners keyed by the
00509         *                       corresponding map references
00510         *
00511         * @throws IllegalArgumentException if the listener is required, but the
00512         *         map does not implement ObservableMap interface or if the
00513         *         listener cannot be instantiated
00514         *
00515         * @since Coherence 12.1.2
00516         */
00517         virtual void verifyMapListener(CacheInfo::View vInfo, Map::Handle hMap, 
00518                 XmlElement::View vXmlScheme, Map::Handle hMapListeners);
00519 
00520     // ----- ConfigurableCacheFactory interface -----------------------------
00521 
00522     public:
00523         /**
00524         * {@inheritDoc}
00525         */
00526         virtual NamedCache::Handle ensureCache(String::View vsCacheName);
00527 
00528         /**
00529         * {@inheritDoc}
00530         */
00531         virtual void destroyCache(NamedCache::Handle hCache);
00532 
00533         /**
00534         * {@inheritDoc}
00535         */
00536         virtual void releaseCache(NamedCache::Handle hCache);
00537 
00538         /**
00539         * {@inheritDoc}
00540         */
00541         virtual Service::Handle ensureService(String::View vsServiceName);
00542 
00543         /**
00544         * {@inheritDoc}
00545         */
00546         virtual void shutdown();
00547 
00548 
00549     // ----- XmlConfigurable interface --------------------------------------
00550 
00551     public:
00552         /**
00553         * {@inheritDoc}
00554         */
00555         virtual XmlElement::View getConfig() const;
00556 
00557         /**
00558         * {@inheritDoc}
00559         */
00560         virtual void setConfig(XmlElement::View vXml);
00561 
00562 
00563     // ----- accessors ------------------------------------------------------
00564 
00565     public:
00566         /**
00567         * Return the OperationalContext for this cache factory.
00568         *
00569         * @return the OperationalContext for this cache factory
00570         *
00571         * @since Coherence 3.7
00572         */
00573         virtual OperationalContext::View ensureOperationalContext();
00574 
00575         /**
00576         * Set the OperationalContext for this cache factory.
00577         *
00578         * @param vContext  the OperationalContext for this cache factory
00579         *
00580         * @throws IllegalStateException if an OperationalContext was already
00581         *         set
00582         *
00583         * @since Coherence 3.7
00584         */
00585         virtual void setOperationalContext(OperationalContext::View vContext);
00586 
00587         /**
00588         * The default XML configuration used when one isn't explicitly passed
00589         * in the constructor for this class.
00590         *
00591         * @return the default XML configuration
00592         *
00593         * @since Coherence 3.7
00594         */
00595         static XmlDocument::Handle getDefaultCacheConfig();
00596 
00597 
00598     protected:
00599         /**
00600         * Return the cache reference store for this cache factory.
00601         *
00602         * @return the cache reference store for this cache factory
00603         *
00604         * @since Coherence 3.7
00605         */
00606         virtual Object::Handle ensureStoreCache();
00607 
00608         /**
00609         * Return the service reference store for this cache factory.
00610         *
00611         * @return the service reference store for this cache factory
00612         *
00613         * @since Coherence 3.7
00614         */
00615         virtual Object::Handle ensureStoreService();
00616 
00617 
00618     // ----- data members ---------------------------------------------------
00619 
00620     protected:
00621         /**
00622         * Operational Context for all Services associated with this factory.
00623         */
00624         FinalView<OperationalContext> f_vContext;
00625 
00626         /**
00627         * XmlElement that corresponds to used XML cache configuration.
00628         */
00629         FinalView<XmlElement> f_vXmlConfig;
00630 
00631         /**
00632         * Store that holds cache references by name and optionally,
00633         * if configured, Subject.
00634         */
00635         FinalHandle<Object> f_hStoreCache;
00636 
00637         /**
00638         * Store that holds service references by name and optionally,
00639         * if configured, Subject.
00640         */
00641         FinalHandle<Object> f_hStoreService;
00642 
00643         /**
00644         * The parent ThreadGroup for all Services associated with this factory.
00645         */
00646         FinalHandle<ThreadGroup> f_hThreadGroup;
00647     };
00648 
00649 COH_CLOSE_NAMESPACE2
00650 
00651 #endif // COH_DEFAULT_CONFIGURABLE_CACHE_FACTORY_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.