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_CONTINUOUS_QUERY_CACHE_HPP 00008 #define COH_CONTINUOUS_QUERY_CACHE_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/net/CacheService.hpp" 00013 #include "coherence/net/NamedCache.hpp" 00014 00015 #include "coherence/util/AbstractMap.hpp" 00016 #include "coherence/util/Comparator.hpp" 00017 #include "coherence/util/MapEvent.hpp" 00018 #include "coherence/util/MapIndex.hpp" 00019 #include "coherence/util/MapListener.hpp" 00020 #include "coherence/util/MapListenerSupport.hpp" 00021 #include "coherence/util/MultiplexingMapListener.hpp" 00022 #include "coherence/util/Set.hpp" 00023 #include "coherence/util/Supplier.hpp" 00024 #include "coherence/util/ValueExtractor.hpp" 00025 00026 #include "coherence/util/filter/MapEventFilter.hpp" 00027 00028 COH_OPEN_NAMESPACE3(coherence,net,cache) 00029 00030 using coherence::net::CacheService; 00031 using coherence::net::NamedCache; 00032 using coherence::util::AbstractMap; 00033 using coherence::util::Comparator; 00034 using coherence::util::Filter; 00035 using coherence::util::MapEvent; 00036 using coherence::util::MapIndex; 00037 using coherence::util::MapListener; 00038 using coherence::util::MapListenerSupport; 00039 using coherence::util::MultiplexingMapListener; 00040 using coherence::util::Set; 00041 using coherence::util::Supplier; 00042 using coherence::util::ValueExtractor; 00043 using coherence::util::filter::MapEventFilter; 00044 00045 /** 00046 * Create a materialized view of a NamedCache using the Coherence 00047 * <i>Continuous Query</i> capability. 00048 * 00049 * @author tb, js 2008.07.23 00050 */ 00051 class COH_EXPORT ContinuousQueryCache 00052 : public class_spec<ContinuousQueryCache, 00053 extends<AbstractMap>, 00054 implements<NamedCache> > 00055 { 00056 friend class factory<ContinuousQueryCache>; 00057 00058 // ----- constructors --------------------------------------------------- 00059 00060 protected: 00061 /** 00062 * Create a materialized view of a NamedCache using a Filter. A 00063 * materialized view is an implementation of <i>Continuous Query</i> 00064 * exposed through the standard NamedCache API. This constructor 00065 * allows a client to receive all events, including those that result 00066 * from the initial population of the ContinuousQueryCache. In other 00067 * words, all contents of the ContinuousQueryCache will be delivered 00068 * to the listener as a sequence of events, including those items that 00069 * already exist in the underlying (unfiltered) cache. 00070 * 00071 * @param hCache the NamedCache to create a view of 00072 * @param vFilter the Filter that defines the view 00073 * @param fCacheValues pass true to cache both the keys and values of 00074 * the materialized view locally, or false to 00075 * only cache the keys. Override of false described 00076 * in isCacheValues() 00077 * @param hListener an initial MapListener that will receive all 00078 * the events from the ContinuousQueryCache, 00079 * including those corresponding to its initial 00080 * population 00081 * @param vTransformer the transformer that should be used to convert 00082 * values from the underlying cache before storing 00083 * them locally 00084 * Note: When parameter fCacheValues is false, it is inferred that provided parameter 00085 * listener is a lite listener as described by fLite parameter of 00086 * addMapListener(MapListener, Filter, boolean). 00087 */ 00088 ContinuousQueryCache(NamedCache::Handle hCache, 00089 Filter::View vFilter, bool fCacheValues = false, 00090 MapListener::Handle hListener = NULL, 00091 ValueExtractor::View vTransformer = NULL); 00092 00093 /** 00094 * Create a materialized view of a NamedCache using a Filter. A 00095 * materialized view is an implementation of <i>Continuous Query</i> 00096 * exposed through the standard NamedCache API. This constructor 00097 * allows a client to receive all events, including those that result 00098 * from the initial population of the ContinuousQueryCache. In other 00099 * words, all contents of the ContinuousQueryCache will be delivered 00100 * to the listener as a sequence of events, including those items that 00101 * already exist in the underlying (unfiltered) cache. 00102 * 00103 * @param vCacheSupplier the Supplier returning the NamedCache to create 00104 * a view of 00105 * @param vFilter the Filter that defines the view 00106 * @param fCacheValues pass true to cache both the keys and values of 00107 * the materialized view locally, or false to 00108 * only cache the keys. Override of false described 00109 * in isCacheValues() 00110 * @param hListener an initial MapListener that will receive all 00111 * the events from the ContinuousQueryCache, 00112 * including those corresponding to its initial 00113 * population 00114 * @param vTransformer the transformer that should be used to convert 00115 * values from the underlying cache before storing 00116 * them locally 00117 * Note: When parameter fCacheValues is false, it is inferred that provided parameter 00118 * listener is a lite listener as described by fLite parameter of 00119 * addMapListener(MapListener, Filter, boolean). 00120 */ 00121 ContinuousQueryCache(Supplier::View vCacheSupplier, 00122 Filter::View vFilter, bool fCacheValues, 00123 MapListener::Handle hListener, 00124 ValueExtractor::View vTransformer); 00125 00126 00127 // ----- accessors ------------------------------------------------------ 00128 00129 public: 00130 /** 00131 * Obtain the NamedCache that this ContinuousQueryCache is based on. 00132 * 00133 * @return the underlying NamedCache 00134 */ 00135 virtual NamedCache::View getCache() const; 00136 00137 /** 00138 * Obtain the NamedCache that this ContinuousQueryCache is based on. 00139 * 00140 * @return the underlying NamedCache 00141 */ 00142 virtual NamedCache::Handle getCache(); 00143 00144 /** 00145 * Obtain the Filter that this ContinuousQueryCache is using to query 00146 * the underlying NamedCache. 00147 * 00148 * @return the Filter that this cache uses to select its contents from 00149 * the underlying NamedCache 00150 */ 00151 virtual Filter::View getFilter() const; 00152 00153 /** 00154 * Obtain the transformer that this ContinuousQueryCache is using to transform 00155 * the results from the underlying cache. 00156 * 00157 * @return the ValueExtractor that this cache uses to transform entries from 00158 * the underlying cache 00159 * 00160 * @since 12.2.1.4 00161 */ 00162 virtual ValueExtractor::View getTransformer() const; 00163 00164 /** 00165 * Obtain the MapListener provided at construction time for 00166 * this ContinuousQueryCache. 00167 * 00168 * @return the MapListener provided at construction time for 00169 * this ContinuousQueryCache 00170 * 00171 * @since 12.2.1.4 00172 */ 00173 virtual MapListener::View getMapListener() const; 00174 00175 /** 00176 * Determine if this ContinuousQueryCache caches values locally. 00177 * 00178 * @return true if this object caches values locally, and false if it 00179 * relies on the underlying NamedCache 00180 * 00181 * Note: if addMapListener(MapListener, Filter, boolean) adds a standard 00182 * (non-lite) listener or a filter to this ObservableMap, cache values are 00183 * always maintained locally. The locally cached values are used to filter events 00184 * and to supply the old and new values for the events that it raises. 00185 * Additionally, a non-null transformer infers caches values being stored locally. 00186 */ 00187 virtual bool isCacheValues() const; 00188 00189 /** 00190 * Modify the local-caching option for the ContinuousQueryCache. By 00191 * changing this value from <tt>false</tt> to <tt>true</tt>, the 00192 * ContinuousQueryCache will fully realize its contents locally and 00193 * maintain them coherently in a manner analogous to the Coherence 00194 * NearCache. By changing this value from <tt>true</tt> to 00195 * <tt>false</tt>, the ContinuousQueryCache will discard its locally 00196 * cached data and rely on the underlying NamedCache. 00197 * 00198 * @param fCacheValues pass true to enable local caching, or false to 00199 * disable it. Override of false described 00200 * in isCacheValues() 00201 */ 00202 virtual void setCacheValues(bool fCacheValues); 00203 00204 /** 00205 * Determine if this ContinuousQueryCache disallows data modification 00206 * operations. 00207 * 00208 * @return true if this ContinuousQueryCache has been configured as 00209 * read-only 00210 */ 00211 virtual bool isReadOnly() const; 00212 00213 /** 00214 * Modify the read-only option for the ContinuousQueryCache. Note that 00215 * the cache can be made read-only, but the opposite (making it 00216 * mutable) is explicitly disallowed. 00217 * 00218 * @param fReadOnly pass true to prohibit clients from making 00219 * modifications to this cache 00220 */ 00221 virtual void setReadOnly(bool fReadOnly); 00222 00223 /** 00224 * Obtain the state of the ContinuousQueryCache. 00225 * 00226 * @return one of the STATE_ enums 00227 */ 00228 virtual int32_t getState() const; 00229 00230 /** 00231 * Return the reconnection interval (in milliseconds). This value indicates the period 00232 * in which re-synchronization with the underlying cache will be delayed in the case the 00233 * connection is severed. During this time period, local content can be accessed without 00234 * triggering re-synchronization of the local content. 00235 * 00236 * @return a reconnection interval (in milliseconds) 00237 */ 00238 virtual int64_t getReconnectInterval() const; 00239 00240 /** 00241 * Specify the reconnection interval (in milliseconds). This value indicates the period 00242 * in which re-synchronization with the underlying cache will be delayed in the case the 00243 * connection is severed. During this time period, local content can be accessed without 00244 * triggering re-synchronization of the local content. 00245 * 00246 * @param cReconnectMillis reconnection interval (in milliseconds). A value of zero 00247 * or less means that the ContinuousQueryCache cannot 00248 * be used when not connected. 00249 */ 00250 virtual void setReconnectInterval(int64_t cReconnectMillis); 00251 00252 /** 00253 * Return the Supplier used to provide the name of this ContinuousQueryCache. 00254 * 00255 * @return the Supplier used to provide the name of this ContinuousQueryCache 00256 * 00257 * @since 12.2.1.4 00258 */ 00259 virtual Supplier::View getCacheNameSupplier() const; 00260 00261 /** 00262 * Provide the Supplier used to provide the name of this ContinuousQueryCache. 00263 * 00264 * @param vCacheNameSupplier the Supplier used to provide the name of this ContinuousQueryCache 00265 * 00266 * @since 12.2.1.4 00267 */ 00268 virtual void setCacheNameSupplier(Supplier::View vCacheNameSupplier); 00269 00270 protected: 00271 /** 00272 * Create the internal cache used by the ContinuousQueryCache. 00273 * 00274 * @return a new ObservableMap that will represent the materialized 00275 * view of the ContinuousQueryCache 00276 */ 00277 virtual ObservableMap::Handle instantiateInternalCache() const; 00278 00279 /** 00280 * Obtain a reference to the internal cache. The internal cache 00281 * maintains all of the keys in the ContinuousQueryCache, and if 00282 * isCacheValues()is true, it also maintains the up-to-date values 00283 * corresponding to those keys. 00284 * 00285 * @return the internal cache that represents the materialized view of 00286 * the ContinuousQueryCache 00287 */ 00288 virtual ObservableMap::View getInternalCache() const; 00289 00290 /** 00291 * Obtain a reference to the internal cache. The internal cache 00292 * maintains all of the keys in the ContinuousQueryCache, and if 00293 * isCacheValues()is true, it also maintains the up-to-date values 00294 * corresponding to those keys. 00295 * 00296 * @return the internal cache that represents the materialized view of 00297 * the ContinuousQueryCache 00298 */ 00299 virtual ObservableMap::Handle getInternalCache(); 00300 00301 /** 00302 * Determine if the ContinuousQueryCache has any listeners that cannot 00303 * be served by this Map listening to lite events. 00304 * 00305 * @return true iff there is at least one listener 00306 */ 00307 virtual bool isObserved() const; 00308 00309 /** 00310 * Specify whether the ContinuousQueryCache has any listeners that 00311 * cannot be served by this Map listening to lite events. 00312 * 00313 * @param fObserved true iff there is at least one listener 00314 */ 00315 virtual void setObserved(bool fObserved); 00316 00317 /** 00318 * Change the state of the ContinuousQueryCache. 00319 * 00320 * @param nState one of the STATE_ enums 00321 */ 00322 virtual void changeState(int32_t nState) const; 00323 00324 00325 // ----- Map interface -------------------------------------------------- 00326 00327 public: 00328 /** 00329 * {@inheritDoc} 00330 */ 00331 virtual Object::Holder get(Object::View vKey) const; 00332 00333 /** 00334 * {@inheritDoc} 00335 */ 00336 using Map::get; 00337 00338 /** 00339 * {@inheritDoc} 00340 */ 00341 virtual Object::Holder put(Object::View vKey, Object::Holder ohValue); 00342 00343 /** 00344 * {@inheritDoc} 00345 */ 00346 virtual Object::Holder remove(Object::View vKey); 00347 using Map::remove; 00348 00349 /** 00350 * {@inheritDoc} 00351 */ 00352 virtual void putAll(Map::View vMap); 00353 00354 /** 00355 * {@inheritDoc} 00356 */ 00357 virtual void clear(); 00358 00359 /** 00360 * {@inheritDoc} 00361 */ 00362 virtual bool containsKey(Object::View vKey) const; 00363 00364 /** 00365 * {@inheritDoc} 00366 */ 00367 virtual Set::View keySet() const; 00368 00369 /** 00370 * {@inheritDoc} 00371 */ 00372 virtual Set::Handle keySet(); 00373 00374 /** 00375 * {@inheritDoc} 00376 */ 00377 virtual Set::View entrySet() const; 00378 00379 /** 00380 * {@inheritDoc} 00381 */ 00382 virtual Set::Handle entrySet(); 00383 00384 /** 00385 * {@inheritDoc} 00386 */ 00387 virtual size32_t size() const; 00388 00389 00390 // ----- CacheMap interface --------------------------------------------- 00391 00392 public: 00393 /** 00394 * {@inheritDoc} 00395 */ 00396 virtual Map::View getAll(Collection::View vKeys) const; 00397 00398 /** 00399 * {@inheritDoc} 00400 */ 00401 virtual Object::Holder put(Object::View vKey, 00402 Object::Holder ohValue, int64_t cMillis); 00403 00404 00405 // ----- ObservableMap interface ---------------------------------------- 00406 00407 public: 00408 /** 00409 * {@inheritDoc} 00410 */ 00411 virtual void addKeyListener(MapListener::Handle hListener, 00412 Object::View vKey, bool fLite); 00413 00414 /** 00415 * {@inheritDoc} 00416 */ 00417 virtual void removeKeyListener(MapListener::Handle hListener, 00418 Object::View vKey); 00419 00420 /** 00421 * {@inheritDoc} 00422 */ 00423 virtual void addMapListener(MapListener::Handle hListener); 00424 00425 /** 00426 * {@inheritDoc} 00427 */ 00428 virtual void removeMapListener(MapListener::Handle hListener); 00429 00430 /** 00431 * {@inheritDoc} 00432 */ 00433 virtual void addFilterListener(MapListener::Handle hListener, 00434 Filter::View vFilter = NULL, bool fLite = false); 00435 00436 /** 00437 * {@inheritDoc} 00438 */ 00439 virtual void removeFilterListener(MapListener::Handle hListener, 00440 Filter::View vFilter = NULL); 00441 00442 00443 // ----- QueryMap interface --------------------------------------------- 00444 00445 public: 00446 /** 00447 * {@inheritDoc} 00448 */ 00449 virtual Set::View keySet(Filter::View vFilter) const; 00450 00451 /** 00452 * {@inheritDoc} 00453 */ 00454 virtual Set::View entrySet(Filter::View vFilter) const; 00455 00456 /** 00457 * {@inheritDoc} 00458 */ 00459 virtual Set::View entrySet(Filter::View vFilter, 00460 Comparator::View vComparator) const; 00461 00462 /** 00463 * If isCacheValues is true, the index will be created locally as well as 00464 * on the NamedCache this ContinuousQueryCache wraps, otherwise, the index will be 00465 * created on the wrapped NamedCache only. 00466 * 00467 * See QueryMap::addIndex(ValueExtractor, bool, Comparator) 00468 */ 00469 virtual void addIndex(ValueExtractor::View vExtractor, 00470 bool fOrdered, Comparator::View vComparator); 00471 00472 /** 00473 * If isCacheValues() is true, the index will be removed locally, however, this call 00474 * will not cause the index on the NamedCache this ContinuousQueryCache wraps. 00475 * Developers must remove the index on the wrapped cache manually. 00476 * 00477 * @see QueryMap::removeIndex(ValueExtractor) 00478 */ 00479 virtual void removeIndex(ValueExtractor::View vExtractor); 00480 00481 00482 // ----- InvocableMap interface ----------------------------------------- 00483 00484 public: 00485 /** 00486 * {@inheritDoc} 00487 */ 00488 virtual Object::Holder invoke(Object::View vKey, 00489 InvocableMap::EntryProcessor::Handle hAgent); 00490 00491 /** 00492 * {@inheritDoc} 00493 */ 00494 virtual Map::View invokeAll(Collection::View vCollKeys, 00495 InvocableMap::EntryProcessor::Handle hAgent); 00496 00497 /** 00498 * {@inheritDoc} 00499 */ 00500 virtual Map::View invokeAll(Filter::View vFilter, 00501 InvocableMap::EntryProcessor::Handle hAgent); 00502 00503 /** 00504 * {@inheritDoc} 00505 */ 00506 virtual Object::Holder aggregate(Collection::View vCollKeys, 00507 InvocableMap::EntryAggregator::Handle hAgent) const; 00508 00509 /** 00510 * {@inheritDoc} 00511 */ 00512 virtual Object::Holder aggregate(Filter::View vFilter, 00513 InvocableMap::EntryAggregator::Handle hAgent) const; 00514 00515 00516 // ----- ConcurrentMap interface ---------------------------------------- 00517 00518 public: 00519 /** 00520 * {@inheritDoc} 00521 */ 00522 virtual bool lock(Object::View vKey, int64_t cWait) const; 00523 00524 /** 00525 * {@inheritDoc} 00526 */ 00527 virtual bool lock(Object::View vKey) const; 00528 00529 /** 00530 * {@inheritDoc} 00531 */ 00532 virtual bool unlock(Object::View vKey) const; 00533 00534 00535 // ----- NamedCache interface ------------------------------------------- 00536 00537 public: 00538 /** 00539 * {@inheritDoc} 00540 */ 00541 virtual String::View getCacheName() const; 00542 00543 /** 00544 * {@inheritDoc} 00545 */ 00546 virtual CacheService::Handle getCacheService(); 00547 00548 /** 00549 * {@inheritDoc} 00550 */ 00551 virtual CacheService::View getCacheService() const; 00552 00553 /** 00554 * {@inheritDoc} 00555 */ 00556 virtual bool isActive() const; 00557 00558 /** 00559 * {@inheritDoc} 00560 */ 00561 virtual void release(); 00562 00563 /** 00564 * {@inheritDoc} 00565 */ 00566 virtual void destroy(); 00567 00568 /** 00569 * {@inheritDoc} 00570 */ 00571 virtual void truncate(); 00572 00573 00574 // ----- inner class: AsynchronousEvent --------------------------------- 00575 00576 public: 00577 /** 00578 * Encapsulates an event and a listener that are to be dispatched 00579 * asynchronously. 00580 */ 00581 class AsynchronousEvent 00582 : public class_spec<AsynchronousEvent> 00583 { 00584 friend class factory<AsynchronousEvent>; 00585 00586 // ----- constructors/destructor ---------------------------- 00587 00588 protected: 00589 /** 00590 * @internal 00591 */ 00592 AsynchronousEvent(MapEvent::Handle hEvent, 00593 MapListener::Handle hListener); 00594 00595 // ----- AsynchronousEvent interface ------------------------- 00596 00597 public: 00598 /** 00599 * Dispatch the event. 00600 */ 00601 virtual void dispatch(); 00602 00603 // ----- data members --------------------------------------- 00604 00605 protected: 00606 /** 00607 * The event to dispatch. 00608 */ 00609 FinalHandle<MapEvent> f_hEvent; 00610 00611 /** 00612 * The listener to receive the event. 00613 */ 00614 FinalHandle<MapListener> f_hListener; 00615 }; 00616 00617 00618 // ----- inner interface: EventQueueDaemon ------------------------------ 00619 00620 public: 00621 /** 00622 * Daemon thread used to dispatch messages asynchronously. 00623 */ 00624 class COH_EXPORT TaskDaemon 00625 : public interface_spec<TaskDaemon> 00626 { 00627 public: 00628 /** 00629 * Schedule an event for asynchronous processing 00630 * 00631 * @param hEvent the event to dispatch 00632 */ 00633 virtual void scheduleDispatch( 00634 AsynchronousEvent::Handle hEvent) = 0; 00635 00636 /** 00637 * Start the daemon thread. 00638 */ 00639 virtual void start() = 0; 00640 00641 /** 00642 * Stop the daemon thread. 00643 */ 00644 virtual void stop() = 0; 00645 }; 00646 00647 00648 // ----- internal ------------------------------------------------------- 00649 00650 protected: 00651 /** 00652 * Return a filter which merges the ContinousQueueCache's filter with 00653 * the supplied filter. 00654 * 00655 * @param vFilter the filter to merge with this cache's filter 00656 * 00657 * @return the merged filter 00658 */ 00659 virtual Filter::View mergeFilter(Filter::View vFilter) const; 00660 00661 /** 00662 * Check the read-only setting to verify that the cache is NOT 00663 * read-only. 00664 * 00665 * @throws IllegalStateException if the ContinuousQueryCache is 00666 * read-only 00667 */ 00668 virtual void checkReadOnly() const; 00669 00670 /** 00671 * Check the passed value to verify that it does belong in this 00672 * ContinuousQueryCache. 00673 * 00674 * @param vEntry a key value pair to check. 00675 * 00676 * @throws IllegalArgumentException if the entry does not belong in 00677 * this ContinuousQueryCache (based on the cache's filter) 00678 */ 00679 virtual void checkEntry(Map::Entry::View vEntry); 00680 00681 /** 00682 * Check the passed value to verify that it does belong in this 00683 * ContinuousQueryCache. 00684 * 00685 * @param vKey the key for the entry 00686 * @param ohValue the value for the entry 00687 * 00688 * @throws IllegalArgumentException if the entry does not belong in 00689 * this ContinuousQueryCache (based on the cache's filter) 00690 */ 00691 virtual void checkEntry(Object::View vKey, Object::Holder ohValue); 00692 00693 /** 00694 * Return a String description of the provided STATE_* variables. 00695 * 00696 * @param nState the state for which a description will be returned 00697 * 00698 * @return the state description 00699 * 00700 * @throws IllegalStateException if an unknown state is provided 00701 * 00702 * @since 12.2.1.4.5 00703 */ 00704 virtual String::View getStateString(int32_t nState) const; 00705 00706 /** 00707 * Set up the listeners that keep the ContinuousQueryCache up-to-date. 00708 * 00709 * @param fReload pass true to force a data reload 00710 */ 00711 virtual void configureSynchronization(bool fReload) const; 00712 00713 /** 00714 * Simple helper to create an exception for communicating invalid state transitions. 00715 * 00716 * @param nExpectedState expected state 00717 * @param nActualState actual state 00718 * 00719 * @return a new {@link RuntimeException} with a description of the invalid state transition 00720 * 00721 * @since 12.2.1.4.5 00722 */ 00723 virtual RuntimeException::View createUnexpectedStateException(int32_t nExpectedState, int32_t nActualState) const; 00724 00725 /** 00726 * Wrap specified MapEventFilter with a MapEventTransformerFilter that 00727 * will either transform cache value using transformer defined for this 00728 * ContinuousQueryCache, or remove the old value from the event using 00729 * SemiLiteEventTransformer, if no transformer is defined for this CQC. 00730 * 00731 * @param filterAdd add filter to wrap 00732 * 00733 * @return MapEventTransformerFilter that wraps specified add filter 00734 * 00735 * @since Coherence 12.1.2 00736 */ 00737 virtual Filter::View createTransformerFilter( 00738 MapEventFilter::View vFilterAdd) const; 00739 00740 /** 00741 * Ensure that the ContinousQueryCache listeners have been registered 00742 * and its content synchronized with the underlying NamedCache. 00743 * 00744 * @param fReload the value to pass to the #configureSynchronization 00745 * method if the ContinousQueryCache needs to be 00746 * configured and synchronized 00747 */ 00748 virtual void ensureSynchronized(bool fReload) const; 00749 00750 /** 00751 * Called when an event has occurred. Allows the key to be logged as 00752 * requiring deferred synchronization if the event occurs during the 00753 * configuration or population of the ContinuousQueryCache. 00754 * 00755 * @param vKey the key that the event is related to 00756 * 00757 * @return true if the event processing has been deferred 00758 */ 00759 virtual bool isEventDeferred(Object::View vKey) const; 00760 00761 /** 00762 * Removes the mapping for this key from this map if present. This 00763 * method exists to allow sub-classes to optmiize remove 00764 * functionalitly for situations in which the original value is not 00765 * required. 00766 * 00767 * @param vKey key whose mapping is to be removed from the map 00768 * 00769 * @return true iff the Map changed as the result of this operation 00770 */ 00771 virtual bool removeBlind(Object::View vKey); 00772 00773 /** 00774 * Obtain a set of keys that are represented by this Map. 00775 * 00776 * @return an internal Set of keys that are contained by this Map 00777 */ 00778 virtual Set::View getInternalKeySet() const; 00779 00780 /** 00781 * Return the underlying cache. 00782 * 00783 * @return the underlying cache 00784 */ 00785 virtual NamedCache::Handle getCacheInternal() const; 00786 00787 /** 00788 * Factory Method: Instantiate a MapListener for adding items to the 00789 * query, and (if there are listeners on the ContinuousQueryCache) for 00790 * dispatching inserts and updates. 00791 * 00792 * @return a new MapListener that will add items to and update items 00793 * in the ContinuousQueryCache 00794 */ 00795 virtual MapListener::Handle instantiateAddListener() const; 00796 00797 /** 00798 * Factory Method: Instantiate a MapListener for evicting items from 00799 * the query. 00800 * 00801 * @return a new MapListener that will listen to all events that will 00802 * remove items from the ContinuousQueryCache 00803 */ 00804 virtual MapListener::Handle instantiateRemoveListener() const; 00805 00806 /** 00807 * Instantiate and register a MemberListener with the underlying 00808 * caches's service. 00809 * 00810 * The primary goal of that listener is invalidation of the front map 00811 * in case of the service [automatic] restart. 00812 */ 00813 virtual void registerServiceListener() const; 00814 00815 /** 00816 * Unregister underlying caches's service member listener. 00817 */ 00818 virtual void unregisterServiceListener() const; 00819 00820 /** 00821 * Create and initialize this ContinuousQueryCache's (if not already present) internal cache. 00822 * This method is called by configureSynchronization, as such, it shouldn't be called 00823 * directly. Use getInternalCache. 00824 * 00825 * @return the ObservableMap functioning as this ContinuousQueryCache's 00826 * internal cache 00827 * 00828 * @since 12.2.1.4 00829 */ 00830 virtual ObservableMap::Handle ensureInternalCache() const; 00831 00832 /** 00833 * Instantiate and register a NamedCacheDeactivationListener with the underlying cache 00834 * service. 00835 * 00836 * The primary goal of that listener is invalidation of the named cache 00837 * in case the named caches is destroyed / truncated. 00838 * 00839 * @since 12.2.1.4 00840 */ 00841 virtual void registerDeactivationListener() const; 00842 00843 /** 00844 * Unregister underlying cache service member listener. 00845 * 00846 * @since 12.2.1.4 00847 */ 00848 virtual void unregisterDeactivationListener() const; 00849 00850 /** 00851 * Release the listeners. 00852 * 00853 * @since 12.2.1.4 00854 */ 00855 virtual void releaseListeners() const; 00856 00857 /** 00858 * Factory Method: Instantiate a listener on the internal map that 00859 * will direct events to the passed listener, either synchronously or 00860 * asynchronously as appropriate. 00861 * 00862 * @param hListener the listener to route to 00863 * @param fLite true to indicate that the MapEvent objects do 00864 * not have to include the OldValue and NewValue 00865 * property values in order to allow optimizations 00866 * 00867 * @return a new EventRouter specific to the passed listener 00868 */ 00869 virtual MultiplexingMapListener::Handle instantiateEventRouter( 00870 MapListener::Handle hListener, bool fLite) const; 00871 00872 /** 00873 * Create a self-processing event queue. 00874 * 00875 * @return a QueueProcessor onto which events can be placed in order 00876 * to be dispatched asynchronously 00877 */ 00878 virtual TaskDaemon::Handle instantiateEventQueue() const; 00879 00880 /** 00881 * Obtain this ContinuousQueryCache's event queue. 00882 * 00883 * @return the event queue that this ContinuousQueryCache uses to 00884 * dispatch its events to its non-synchronous listeners 00885 */ 00886 virtual TaskDaemon::Handle getEventQueue() const; 00887 00888 /** 00889 * Obtain the existing event queue or create one if none exists. 00890 * 00891 * @return the event queue that this ContinuousQueryCache uses to 00892 * dispatch its events to its non-synchronous listeners 00893 */ 00894 virtual TaskDaemon::Handle ensureEventQueue() const; 00895 00896 /** 00897 * Shut down running event queue. 00898 */ 00899 virtual void shutdownEventQueue(); 00900 00901 /** 00902 * Create a new key set. 00903 * 00904 * @return the new key set 00905 */ 00906 virtual Set::Handle instantiateKeySet(); 00907 00908 /** 00909 * Create a new EntrySet 00910 * 00911 * @return the new empty set 00912 */ 00913 virtual Set::Handle instantiateEntrySet(); 00914 00915 /** 00916 * Ensure that the map of indexes maintained by this cache exists. 00917 * 00918 * @return the map of indexes. 00919 */ 00920 virtual Map::Handle ensureIndexMap(); 00921 00922 /** 00923 * Get the map of indexes maintained by this cache. 00924 * 00925 * @return the map of indexes. 00926 */ 00927 virtual Map::View getIndexMap() const; 00928 00929 /** 00930 * Get the map of indexes maintained by this cache. 00931 * 00932 * @return the map of indexes. 00933 */ 00934 virtual Map::Handle getIndexMap(); 00935 00936 /** 00937 * Release the the entire index map. 00938 */ 00939 virtual void releaseIndexMap(); 00940 00941 // ----- Object interface ----------------------------------------------- 00942 00943 protected: 00944 /** 00945 * {@inheritDoc} 00946 */ 00947 virtual void onInit(); 00948 00949 00950 // ----- constants ------------------------------------------------------ 00951 00952 public: 00953 /** 00954 * State: Disconnected state. The content of the ContinousQueryCache is 00955 * not fully synchronized with the underlying [clustered] cache. If the 00956 * value of the ReconnectInterval property is zero, it must be 00957 * configured (synchronized) before it can be used. 00958 */ 00959 static const int32_t state_disconnected = 0; 00960 00961 /** 00962 * State: The ContinuousQueryCache is configuring or re-configuring its 00963 * listeners and content. 00964 */ 00965 static const int32_t state_configuring = 1; 00966 00967 /** 00968 * State: The ContinousQueryCache has been configured. 00969 */ 00970 static const int32_t state_configured = 2; 00971 00972 /** 00973 * State: The ContinousQueryCache has been configured and fully 00974 * synchronized. 00975 */ 00976 static const int32_t state_synchronized = 3; 00977 00978 00979 // ----- data members --------------------------------------------------- 00980 00981 protected: 00982 /** 00983 * The underlying NamedCache object. 00984 */ 00985 mutable MemberHandle<NamedCache> m_hCache; 00986 00987 /** 00988 * The name of the underlying NamedCache. A copy is kept here because 00989 * the reference to the underlying NamedCache is discarded when this 00990 * cache is released. 00991 */ 00992 FinalView<String> f_vsName; 00993 00994 /** 00995 * The filter that represents the subset of information from the 00996 * underlying NamedCache that this ContinuousQueryCache represents. 00997 */ 00998 FinalView<Filter> f_vFilter; 00999 01000 /** 01001 * The option of whether or not to locally cache values. 01002 */ 01003 bool m_fCacheValues; 01004 01005 /** 01006 * The option to disallow modifications through this 01007 * ContinuousQueryCache interface. 01008 */ 01009 bool m_fReadOnly; 01010 01011 /** 01012 * The interval (in milliseconds) that indicates how often the 01013 * ContinuousQueryCache should attempt to synchronize its content with 01014 * the underlying cache in case the connection is severed. 01015 */ 01016 int64_t m_cReconnectMillis; 01017 01018 /** 01019 * The timestamp when the synchronization was last attempted. 01020 */ 01021 mutable Volatile<int64_t> m_ldtConnectionTimestamp; 01022 01023 /** 01024 * The keys that are in this ContinuousQueryCache, and (if 01025 * m_fCacheValues is true) the corresponding values as well. 01026 */ 01027 mutable MemberHandle<ObservableMap> m_hMapLocal; 01028 01029 /** 01030 * State of the ContinousQueryCache. One of the STATE_* enums. 01031 */ 01032 mutable Volatile<int32_t> m_nState; 01033 01034 /** 01035 * While the ContinuousQueryCache is configuring or re-configuring its 01036 * listeners and content, any events that are received must be logged 01037 * to ensure that the corresponding content is in sync. 01038 */ 01039 mutable MemberHandle<Map> m_hMapSyncReq; 01040 01041 /** 01042 * The event queue for this ContinuousQueryCache. 01043 */ 01044 mutable MemberHandle<TaskDaemon> m_hTaskQueue; 01045 01046 /** 01047 * Keeps track of whether the ContinuousQueryCache has listeners that 01048 * require this cache to cache values. 01049 */ 01050 bool m_fListeners; 01051 01052 /** 01053 * The MapEventFilter that uses the ContinuousQueryCache's filter to 01054 * select events that would add elements to this cache's contents. 01055 */ 01056 mutable MemberView<MapEventFilter> m_vFilterAdd; 01057 01058 /** 01059 * The MapEventFilter that uses the ContinuousQueryCache's filter to 01060 * select events that would remove elements from this cache's contents. 01061 */ 01062 mutable MemberView<MapEventFilter> m_vFilterRemove; 01063 01064 /** 01065 * The listener that gets information about what should be in this 01066 * cache. 01067 */ 01068 mutable WeakHandle<MapListener> m_whListenerAdd; 01069 01070 /** 01071 * The listener that gets information about what should be thrown out 01072 * of this cache. 01073 */ 01074 mutable WeakHandle<MapListener> m_whListenerRemove; 01075 01076 /** 01077 * The cache service MemberListener for the underlying NamedCache. 01078 */ 01079 mutable WeakHandle<MemberListener> m_whListenerService; 01080 01081 /* 01082 * The initial MapListener that will receive all the events from the 01083 * ContinuousQueryCache, including those corresponding to its initial 01084 * population. 01085 */ 01086 mutable MemberHandle<MapListener> m_hListener; 01087 01088 /** 01089 * The transformer that should be used to convert values from the 01090 * underlying cache. 01091 */ 01092 FinalView<ValueExtractor> f_vTransformer; 01093 01094 /** 01095 * The map of indexes maintained by this cache. The keys of the Map are 01096 * ValueExtractor objects, and for each key, the corresponding value 01097 * stored in the Map is a MapIndex object. 01098 */ 01099 FinalHandle<Map> f_hMapIndex; 01100 01101 /** 01102 * KeySet backed by this cache 01103 */ 01104 FinalHandle<Set> f_hSetKeys; 01105 01106 /** 01107 * EntrySet backed by this cache 01108 */ 01109 FinalHandle<Set> f_hSetEntries; 01110 01111 /** 01112 * The Supplier of the NamedCache to create a view of. The Supplier must return 01113 * a new instance every time the supplier's get() method is called. 01114 * 01115 * @since 12.2.1.4 01116 */ 01117 FinalView<Supplier> f_vCacheSupplier; 01118 01119 /** 01120 * The optional supplier to obtain this cache's name. 01121 * 01122 * @since 12.2.1.4 01123 */ 01124 MemberView<Supplier> m_vCacheNameSupplier; 01125 01126 /** 01127 * The NamedCache deactivation listener. 01128 * 01129 * @since 12.2.1.4 01130 */ 01131 mutable MemberHandle<MapListener> m_hListenerDeactivation; 01132 01133 01134 // ----- friends -------------------------------------------------------- 01135 01136 friend class AddListener; 01137 friend class RemoveListener; 01138 friend class ServiceListener; 01139 friend class EventRouter; 01140 friend class KeySet; 01141 friend class EntrySet; 01142 friend class KeySetMuterator; 01143 friend class EntrySetIterator; 01144 friend class DeactivationListener; 01145 }; 01146 01147 COH_CLOSE_NAMESPACE3 01148 01149 #endif // COH_CONTINUOUS_QUERY_CACHE_HPP 01150