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_CACHE_FACTORY_HPP 00008 #define COH_CACHE_FACTORY_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/io/IOException.hpp" 00013 #include "coherence/net/ConfigurableCacheFactory.hpp" 00014 #include "coherence/net/OperationalContext.hpp" 00015 #include "coherence/net/NamedCache.hpp" 00016 #include "coherence/net/Service.hpp" 00017 #include "coherence/run/xml/XmlElement.hpp" 00018 00019 #include <istream> 00020 #include <sstream> 00021 00022 COH_OPEN_NAMESPACE2(coherence,net) 00023 00024 using coherence::run::xml::XmlElement; 00025 using coherence::io::IOException; 00026 00027 00028 /** 00029 * Factory for the <b>Oracle Coherence for C++</b> %cache product. 00030 * 00031 * One of the most common functions provided by the CacheFactory is ability to 00032 * obtain an instance of a %cache. There are various %cache services and %cache 00033 * topologies that are supported by Coherence. 00034 * 00035 * To get a %cache reference use getCache() method. 00036 * 00037 * When a %cache retrieved by any of the above methods is no longer used, it is 00038 * preferable to call #releaseCache to release the associated resources. To 00039 * destroy all instances of the %cache across the cluster, use #destroyCache. 00040 */ 00041 class COH_EXPORT CacheFactory 00042 : public abstract_spec<CacheFactory> 00043 { 00044 // ----- constructors --------------------------------------------------- 00045 00046 private: 00047 /** 00048 * This constructor is blocked (private) as CacheFactory provides only 00049 * static interface and no instances may be created. 00050 */ 00051 CacheFactory(); 00052 00053 00054 // ----- caches --------------------------------------------------------- 00055 00056 public: 00057 /** 00058 * Return an instance of a %cache configured by the current 00059 * ConfigurableCacheFactory. This helper method is a simple wrapper 00060 * around the ConfigurableCacheFactory#ensureCache method. 00061 * 00062 * @param vsName %cache name (unique for a given configurable %cache 00063 * factory). If the NamedCache with the specified name 00064 * already exists, a reference to the same object will be 00065 * returned 00066 * 00067 * @return a handle to the NamedCache object 00068 */ 00069 static NamedCache::Handle getCache(String::View vsName); 00070 00071 /** 00072 * Releases and destroys the specified NamedCache. 00073 * 00074 * <b>Warning:</b> This method is used to completely destroy the 00075 * specified %cache across the cluster. All references in the entire 00076 * cluster to this %cache will be invalidated, the cached data will be 00077 * cleared, and all resources will be released. 00078 * 00079 * @param hCache the NamedCache object to be destroyed 00080 * 00081 * @see releaseCache 00082 */ 00083 static void destroyCache(NamedCache::Handle hCache); 00084 00085 /** 00086 * Release local resources associated with the specified instance of 00087 * the %cache. 00088 * 00089 * Releasing a NamedCache reference makes it no longer usable, but 00090 * does not affect the content of the %cache. In other words, all other 00091 * references to the %cache will still be valid, and the %cache data is 00092 * not affected by releasing the reference. 00093 * 00094 * The reference that is released using this method can no longer be 00095 * used; any attempt to use the reference will result in an exception. 00096 * 00097 * @param hCache the NamedCache object to be released 00098 * 00099 * @see destroyCache 00100 */ 00101 static void releaseCache(NamedCache::Handle hCache); 00102 00103 00104 // ----- Service -------------------------------------------------------- 00105 00106 public: 00107 /** 00108 * Factory method returning an instance the named service. 00109 * 00110 * @param vsName service name (unique across the cluster). If the 00111 * service with the specified name already exists, the 00112 * reference to the same service will be returned. If 00113 * the name is not specified the default service name 00114 * will be used 00115 * 00116 * @return an instance of the running service 00117 */ 00118 static Service::Handle getService(String::View vsName); 00119 00120 00121 // ----- common --------------------------------------------------------- 00122 00123 public: 00124 /** 00125 * Shutdown all clustered services. 00126 */ 00127 static void shutdown(); 00128 00129 00130 // ----- configuration -------------------------------------------------- 00131 00132 public: 00133 /** 00134 * Configure the CacheFactory and local member. 00135 * 00136 * @param vXmlCache an XML element corresponding to cache-config.dtd 00137 * @param vXmlCoherence an XML element corresponding to coherence.dtd 00138 * 00139 * @throws IllegalStateException if the factory has already been 00140 * configured 00141 * 00142 * @see loadXml to read an XmlElement from an std::istream, String, or file 00143 */ 00144 static void configure(XmlElement::View vXmlCache, 00145 XmlElement::View vXmlCoherence = NULL); 00146 00147 /** 00148 * Read an XmlElement from the supplied stream. 00149 * 00150 * This method does not configure the CacheFactory, but it can be used 00151 * to obtain a configuration which can be supplied to the configure 00152 * method. 00153 * 00154 * @param in the stream from which to read the XML element 00155 * 00156 * @return the XmlElement 00157 */ 00158 COH_INLINE static XmlElement::Handle loadXml(std::istream& in) 00159 { 00160 if (in.fail()) 00161 { 00162 COH_THROW_STREAM (IOException, 00163 "Exception occurred during parsing: The stream " 00164 << " is in a failed state."); 00165 } 00166 std::stringstream ss; 00167 char caLine[256]; 00168 00169 while (!in.eof()) 00170 { 00171 in.read(caLine, 255); 00172 caLine[in.gcount()] = 0x00; 00173 ss << caLine; 00174 } 00175 00176 return loadXml(ss.str()); 00177 } 00178 00179 /** 00180 * Read an XmlElement from the supplied string. 00181 * 00182 * This method does not configure the CacheFactory, but it can be used 00183 * to obtain a configuration which can be supplied to the configure 00184 * method. 00185 * 00186 * @param vsXml the string containing the XML 00187 * 00188 * @return the XmlElement 00189 */ 00190 static XmlElement::Handle loadXml(String::View vsXml); 00191 00192 /** 00193 * Read an XmlElement from the named file. 00194 * 00195 * This method does not configure the CacheFactory, but it can be used 00196 * to obtain a configuration which can be supplied to the configure 00197 * method. 00198 * 00199 * @param vsFile name of the file to read from relative to the current 00200 * working directory. 00201 * 00202 * @return the XmlElement 00203 */ 00204 static XmlElement::Handle loadXmlFile(String::View vsFile); 00205 00206 /** 00207 * Obtain the ConfigurableCacheFactory singleton. 00208 * 00209 * @return an instance of ConfigurableCacheFactory 00210 */ 00211 static ConfigurableCacheFactory::Handle getConfigurableCacheFactory(); 00212 00213 /** 00214 * Specify a singleton of ConfigurableCacheFactory. 00215 * 00216 * @param hFactory an instance of ConfigurableCacheFactory 00217 * @param vContext an (optional) OperationalContext 00218 */ 00219 static void setConfigurableCacheFactory( 00220 ConfigurableCacheFactory::Handle hFactory, 00221 OperationalContext::View vContext = NULL); 00222 00223 /** 00224 * Invoke the Coherence C++ command line tool. 00225 */ 00226 static void main(ObjectArray::View vasArg); 00227 }; 00228 00229 COH_CLOSE_NAMESPACE2 00230 00231 #endif // COH_CACHE_FACTORY_HPP