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

F79659-03

coherence/util/ConverterCollections.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_CONVERTER_COLLECTIONS_HPP
00008 #define COH_CONVERTER_COLLECTIONS_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 
00013 #include "coherence/net/cache/CacheEvent.hpp"
00014 #include "coherence/net/cache/CacheMap.hpp"
00015 #include "coherence/net/CacheService.hpp"
00016 #include "coherence/net/NamedCache.hpp"
00017 #include "coherence/util/Collection.hpp"
00018 #include "coherence/util/ConcurrentMap.hpp"
00019 #include "coherence/util/Converter.hpp"
00020 #include "coherence/util/Filter.hpp"
00021 #include "coherence/util/InvocableMap.hpp"
00022 #include "coherence/util/Iterator.hpp"
00023 #include "coherence/util/MapEvent.hpp"
00024 #include "coherence/util/ObservableMap.hpp"
00025 #include "coherence/util/Set.hpp"
00026 #include "coherence/util/WrapperCollections.hpp"
00027 
00028 COH_OPEN_NAMESPACE2(coherence,util)
00029 
00030 using coherence::net::cache::CacheEvent;
00031 using coherence::net::cache::CacheMap;
00032 using coherence::net::CacheService;
00033 using coherence::net::NamedCache;
00034 
00035 /**
00036 * A collection of Collection implementation classes that use the Converter
00037 * interface to convert the items stored in underlying Collection objects.
00038 *
00039 * @author mf  2007.07.05
00040 */
00041 class COH_EXPORT ConverterCollections
00042     {
00043     // ----- ConverterCollections interface ---------------------------------
00044     public:
00045         /**
00046         * Return a new lang#ObjectArray whose contents are the converted
00047         * contents of the supplied array.
00048         *
00049         * @param hArray  the supplied array
00050         * @param vConvUp the converter to use
00051         *
00052         * @return a handle to the converted array
00053         */
00054         static ObjectArray::Handle convertArray(ObjectArray::Handle hArray,
00055                                                 Converter::View vConvUp);
00056 
00057         /**
00058         * Return a new lang#ObjectArray whose contents are the converted
00059         * contents of the supplied array.
00060         *
00061         * @param vArray  the supplied array
00062         * @param vConvUp the converter to use
00063         *
00064         * @return a view of the converted array
00065         */
00066         static ObjectArray::View convertArray(ObjectArray::View vArray,
00067                                               Converter::View vConvUp);
00068 
00069 
00070     // ----- inner classes --------------------------------------------------
00071 
00072     public:
00073         /**
00074         * A ConverterIterator views an underlying Iterator through a
00075         * Converter.
00076         */
00077         class COH_EXPORT ConverterIterator
00078             : public cloneable_spec<ConverterIterator,
00079                 extends<WrapperCollections::AbstractWrapperIterator> >
00080             {
00081             friend class factory<ConverterIterator>;
00082 
00083             // ----- constructor ----------------------------------------
00084 
00085             protected:
00086                 /**
00087                 * Create a WrapperCollections#AbstractWrapperIterator which
00088                 * delegates to the specified Iterator.
00089                 *
00090                 * @param hiterDelegate the specified Iterator
00091                 * @param vConvUp       the Converter to view through
00092                 */
00093                 ConverterIterator(Iterator::Handle hiterDelegate,
00094                                   Converter::View vConvUp);
00095 
00096                 /**
00097                 * Copy constructor.
00098                 */
00099                 ConverterIterator(const ConverterIterator& that);
00100 
00101             // ----- Iterator interface ---------------------------------
00102 
00103             public:
00104                 /**
00105                 * {@inheritDoc}
00106                 */
00107                 virtual Object::Holder next();
00108 
00109 
00110             // ----- data members ---------------------------------------
00111 
00112             protected:
00113                 /**
00114                 * The Converter from the underlying container
00115                 */
00116                 FinalView<Converter> f_vConvUp;
00117             };
00118 
00119 
00120         /**
00121         * A ConverterCollection views an underlying Collection through a
00122         * Converter.
00123         */
00124         class COH_EXPORT ConverterCollection
00125             : public cloneable_spec<ConverterCollection,
00126                 extends<WrapperCollections::AbstractWrapperCollection> >
00127             {
00128             friend class factory<ConverterCollection>;
00129 
00130             // ----- constructors ---------------------------------------
00131 
00132             protected:
00133                 /**
00134                 * Create a WrapperCollections#AbstractWrapperCollection which
00135                 * delegates to the specified Collection.
00136                 *
00137                 * @param hcollDelegate the specified collection
00138                 * @param vConvUp       the converter from the underlying
00139                 *                      Collection
00140                 * @param vConvDown     the converter to the underlying
00141                 *                      Collection
00142                 */
00143                 ConverterCollection(Collection::Handle hcollDelegate,
00144                                     Converter::View vConvUp,
00145                                     Converter::View vConvDown);
00146 
00147                 /**
00148                 * Create a WrapperCollections#AbstractWrapperCollection which
00149                 * delegates to the specified Collection.
00150                 *
00151                 * @param vcollDelegate the specified collection
00152                 * @param vConvUp       the converter from the underlying
00153                 *                      Collection
00154                 * @param vConvDown     the converter to the underlying
00155                 *                      Collection
00156                 */
00157                 ConverterCollection(Collection::View vcollDelegate,
00158                                     Converter::View vConvUp,
00159                                     Converter::View vConvDown);
00160 
00161                 /**
00162                 * Copy constructor.
00163                 */
00164                 ConverterCollection(const ConverterCollection& that);
00165 
00166 
00167             // ----- Collection interface -------------------------------
00168 
00169             public:
00170                 /**
00171                 * {@inheritDoc}
00172                 */
00173                 virtual bool contains(Object::View v) const;
00174 
00175                 /**
00176                 * {@inheritDoc}
00177                 */
00178                 virtual Iterator::Handle iterator() const;
00179 
00180                 /**
00181                 * {@inheritDoc}
00182                 */
00183                 virtual Muterator::Handle iterator();
00184 
00185                 /**
00186                 * {@inheritDoc}
00187                 */
00188                 virtual ObjectArray::Handle toArray(
00189                         ObjectArray::Handle hao = NULL) const;
00190 
00191                 /**
00192                 * {@inheritDoc}
00193                 */
00194                 virtual bool add(Object::Holder oh);
00195 
00196                 /**
00197                 * {@inheritDoc}
00198                 */
00199                 virtual bool remove(Object::View v);
00200 
00201                 /**
00202                 * {@inheritDoc}
00203                 */
00204                 virtual bool containsAll(Collection::View vc) const;
00205 
00206                 /**
00207                 * {@inheritDoc}
00208                 */
00209                 virtual bool addAll(Collection::View vc);
00210 
00211                 /**
00212                 * {@inheritDoc}
00213                 */
00214                 virtual bool removeAll(Collection::View vc);
00215 
00216                 /**
00217                 * {@inheritDoc}
00218                 */
00219                 virtual bool retainAll(Collection::View vc);
00220 
00221             // ----- Object interface -----------------------------------
00222 
00223             public:
00224                 /**
00225                 * {@inheritDoc}
00226                 */
00227                 virtual bool equals(Object::View that) const;
00228 
00229                 /**
00230                 * {@inheritDoc}
00231                 */
00232                 virtual size32_t hashCode() const;
00233 
00234                 /**
00235                 * {@inheritDoc}
00236                 */
00237                 virtual TypedHandle<const String> toString() const;
00238 
00239             // ----- data members ---------------------------------------
00240 
00241             protected:
00242                 /**
00243                 * The Converter from the underlying container
00244                 */
00245                 FinalView<Converter> f_vConvUp;
00246 
00247                 /**
00248                 * The Converter to the underlying container
00249                 */
00250                 FinalView<Converter> f_vConvDown;
00251             };
00252 
00253 
00254         /**
00255         * A ConverterSet views an underlying Set through a Converter.
00256         */
00257         class COH_EXPORT ConverterSet
00258             : public cloneable_spec<ConverterSet,
00259                 extends<WrapperCollections::AbstractWrapperSet> >
00260             {
00261             friend class factory<ConverterSet>;
00262 
00263             // ----- constructors ---------------------------------------
00264 
00265             protected:
00266                 /**
00267                 * Create a WrapperCollections#AbstractWrapperSet which
00268                 * delegates to the specified Set.
00269                 *
00270                 * @param hSet      the specified Set
00271                 * @param vConvUp   the Converter from the underlying Set
00272                 * @param vConvDown the Converter to the underlying Set
00273                 */
00274                 ConverterSet(Set::Handle hsetDelegate,
00275                              Converter::View vConvUp,
00276                              Converter::View vConvDown);
00277 
00278                 /**
00279                 * Create a WrapperCollections#AbstractWrapperSet which
00280                 * delegates to the specified Set.
00281                 *
00282                 * @param vSet      the specified Set
00283                 * @param vConvUp   the Converter from the underlying Set
00284                 * @param vConvDown the Converter to the underlying Set
00285                 */
00286                 ConverterSet(Set::View vsetDelegate,
00287                              Converter::View vConvUp,
00288                              Converter::View vConvDown);
00289 
00290                 /**
00291                 * Copy constructor.
00292                 */
00293                 ConverterSet(const ConverterSet& that);
00294 
00295             // ----- Set interface --------------------------------------
00296 
00297             public:
00298 
00299                 /**
00300                 * {@inheritDoc}
00301                 */
00302                 virtual bool contains(Object::View v) const;
00303 
00304                 /**
00305                 * {@inheritDoc}
00306                 */
00307                 virtual Iterator::Handle iterator() const;
00308 
00309                 /**
00310                 * {@inheritDoc}
00311                 */
00312                 virtual Muterator::Handle iterator();
00313 
00314                 /**
00315                 * {@inheritDoc}
00316                 */
00317                 virtual ObjectArray::Handle toArray(
00318                         ObjectArray::Handle hoa = NULL) const;
00319 
00320                 /**
00321                 * {@inheritDoc}
00322                 */
00323                 virtual bool add(Object::Holder oh);
00324 
00325                 /**
00326                 * {@inheritDoc}
00327                 */
00328                 virtual bool remove(Object::View v);
00329 
00330                 /**
00331                 * {@inheritDoc}
00332                 */
00333                 virtual bool containsAll(Collection::View vc) const;
00334 
00335                 /**
00336                 * {@inheritDoc}
00337                 */
00338                 virtual bool addAll(Collection::View vc);
00339 
00340                 /**
00341                 * {@inheritDoc}
00342                 */
00343                 virtual bool removeAll(Collection::View vc);
00344 
00345                 /**
00346                 * {@inheritDoc}
00347                 */
00348                 virtual bool retainAll(Collection::View vc);
00349 
00350             // ----- Object interface -----------------------------------
00351 
00352             public:
00353                 /**
00354                 * {@inheritDoc}
00355                 */
00356                 virtual bool equals(Object::View that) const;
00357 
00358                 /**
00359                 * {@inheritDoc}
00360                 */
00361                 virtual size32_t hashCode() const;
00362 
00363                 /**
00364                 * {@inheritDoc}
00365                 */
00366                 virtual TypedHandle<const String> toString() const;
00367 
00368             // ----- data members ---------------------------------------
00369 
00370             protected:
00371                 /**
00372                 * The Converter from the underlying Set
00373                 */
00374                 FinalView<Converter> f_vConvUp;
00375 
00376                 /**
00377                 * The Converter to the underlying Set
00378                 */
00379                 FinalView<Converter> f_vConvDown;
00380             };
00381 
00382 
00383         /**
00384         * Map::Entry Converter, supporting key and value conversion.
00385         */
00386         class COH_EXPORT EntryConverter
00387             : public class_spec<EntryConverter,
00388                 extends<Object>,
00389                 implements<Converter> >
00390             {
00391             friend class factory<EntryConverter>;
00392 
00393             // ----- constructor ----------------------------------------
00394 
00395             public:
00396                 /**
00397                 * Create a Map entry Converter.
00398                 *
00399                 * @param vConvKey   the key Converter
00400                 * @param vConvVal   the value Converter
00401                 */
00402                 EntryConverter(Converter::View vConvKey,
00403                         Converter::View vConvVal);
00404 
00405                 /**
00406                 * Copy constructor.
00407                 */
00408                 EntryConverter(const EntryConverter& that);
00409 
00410             // ----- Converter interface --------------------------------
00411 
00412             public:
00413                 /**
00414                 * {@inheritDoc}
00415                 */
00416                 virtual Object::Holder convert(Object::Holder oh) const;
00417 
00418             // ----- EntryConverter interface ---------------------------
00419 
00420             public:
00421                 /**
00422                 * @return a view of the key Converter
00423                 */
00424                 virtual Converter::View getKeyConverter() const;
00425 
00426                 /**
00427                 * @return a view of the value Converter
00428                 */
00429                 virtual Converter::View getValueConverter() const;
00430 
00431             // ----- static helper methods ------------------------------
00432 
00433             public:
00434                 /**
00435                 * @param vConvert the EntryConverter
00436                 *
00437                 * @return a view of the vConvert's key Converter
00438                 */
00439                 static Converter::View getKeyConverter
00440                     (EntryConverter::View vConvert);
00441 
00442                 /**
00443                 * @param vConvert the EntryConverter
00444                 *
00445                 * @return a view of the vConvert's value Converter
00446                 */
00447                 static Converter::View getValueConverter
00448                     (EntryConverter::View vConvert);
00449 
00450                 /**
00451                 * Convert the key of the map entry referenced by the
00452                 * supplied handle using the supplied EntryConverter.
00453                 *
00454                 * @param vConvert a view of the EntryConverter to use
00455                 * @param vKey     a view to the key to convert
00456                 *
00457                 * @return a handle to the key, or the unconverted key
00458                 *         if the vConvert is NULL
00459                 */
00460                 static Object::View convertKey
00461                     (EntryConverter::View vConvert, Object::View vKey);
00462 
00463                 /**
00464                 * Convert the value of the map entry referenced by
00465                 * the supplied view using the supplied
00466                 * EntryConverter.
00467                 *
00468                 * @param vConvert  a view of the EntryConverter to
00469                 *                  use
00470                 * @param ohValue   a holder to the value to convert
00471                 *
00472                 * @return a view of the value, or the unconverted
00473                 *         value if the vConvert is NULL
00474                 */
00475                 static Object::Holder convertValue
00476                     (EntryConverter::View vConvert, Object::Holder ohValue);
00477 
00478             // ----- data members ---------------------------------------
00479 
00480             protected:
00481                 /**
00482                 * The key Converter.
00483                 */
00484                 FinalView<Converter> f_vConvKey;
00485 
00486                 /**
00487                 * The value Converter.
00488                 */
00489                 FinalView<Converter> f_vConvVal;
00490             };
00491 
00492 
00493         /**
00494         * A ConverterMap views an underlying Map through a Converter.
00495         */
00496         class COH_EXPORT ConverterMap
00497             : public cloneable_spec<ConverterMap,
00498                 extends<WrapperCollections::AbstractWrapperMap> >
00499             {
00500             friend class factory<ConverterMap>;
00501 
00502             // ----- constructors ---------------------------------------
00503 
00504             protected:
00505                 /**
00506                 * Create a WrapperCollections#AbstractWrapperMap which
00507                 * delegates to the specified Map.
00508                 *
00509                 * @param hMap      the specified Map
00510                 * @param vConvUp   the EntryConverter from the underlying Map
00511                 * @param vConvDown the EntryConverter to the underlying Map
00512                 */
00513                 ConverterMap(Map::Handle hMapDelegate,
00514                              EntryConverter::View vConvUp,
00515                              EntryConverter::View vConvDown);
00516 
00517                 /**
00518                 * Create a WrapperCollections#AbstractWrapperMap which
00519                 * delegates to the specified Map.
00520                 *
00521                 * @param vMap      the specified Map
00522                 * @param vConvUp   the EntryConverter from the underlying Map
00523                 * @param vConvDown the EntryConverter to the underlying Map
00524                 */
00525                 ConverterMap(Map::View vMapDelegate,
00526                              EntryConverter::View vConvUp,
00527                              EntryConverter::View vConvDown);
00528 
00529                 /**
00530                 * Copy constructor.
00531                 */
00532                 ConverterMap(const ConverterMap& that);
00533 
00534             // ----- Map interface --------------------------------------
00535 
00536             public:
00537                 /**
00538                 * {@inheritDoc}
00539                 */
00540                 virtual bool containsKey(Object::View vKey) const;
00541 
00542                 /**
00543                 * {@inheritDoc}
00544                 */
00545                 virtual bool containsValue(Object::View vValue) const;
00546 
00547                 /**
00548                 * {@inheritDoc}
00549                 */
00550                 virtual Object::Holder get(Object::View vKey) const;
00551 
00552                 /**
00553                 * {@inheritDoc}
00554                 */
00555                 using Map::get;
00556 
00557                 /**
00558                 * {@inheritDoc}
00559                 */
00560                 virtual Object::Holder put(Object::View vKey,
00561                                          Object::Holder ohValue);
00562 
00563                 /**
00564                 * {@inheritDoc}
00565                 */
00566                 virtual Object::Holder remove(Object::View vKey);
00567                 using Map::remove;
00568 
00569                 /**
00570                 * {@inheritDoc}
00571                 */
00572                 virtual void putAll(Map::View vMap);
00573 
00574                 /**
00575                 * {@inheritDoc}
00576                 */
00577                 virtual Set::View keySet() const;
00578 
00579                 /**
00580                 * {@inheritDoc}
00581                 */
00582                 virtual Set::Handle keySet();
00583 
00584                 /**
00585                 * {@inheritDoc}
00586                 */
00587                 virtual Collection::View values() const;
00588 
00589                 /**
00590                 * {@inheritDoc}
00591                 */
00592                 virtual Collection::Handle values();
00593 
00594                 /**
00595                 * {@inheritDoc}
00596                 */
00597                 virtual Set::View entrySet() const;
00598 
00599                 /**
00600                 * {@inheritDoc}
00601                 */
00602                 virtual Set::Handle entrySet();
00603 
00604             // ----- Object interface -----------------------------------
00605 
00606             public:
00607                 /**
00608                 * {@inheritDoc}
00609                 */
00610                 virtual bool equals(Object::View that) const;
00611 
00612                 /**
00613                 * {@inheritDoc}
00614                 */
00615                 virtual size32_t hashCode() const;
00616 
00617                 /**
00618                 * {@inheritDoc}
00619                 */
00620                 virtual TypedHandle<const String> toString() const;
00621 
00622             // ----- accessors ------------------------------------------
00623 
00624             public:
00625                 /**
00626                 * Get the up converter, which is used to convert from the
00627                 * underlying entries in the Map.
00628                 *
00629                 * @return the up converter
00630                 */
00631                 virtual EntryConverter::View getUpConverter() const;
00632 
00633                 /**
00634                 * Get the down converter, which is used to convert to the
00635                 * underlying entries in the Map.
00636                 *
00637                 * @return the down converter
00638                 */
00639                 virtual EntryConverter::View getDownConverter() const;
00640 
00641             // ----- data members ---------------------------------------
00642 
00643             protected:
00644                 /**
00645                 * The Converter from the underlying entries in the Map
00646                 */
00647                 FinalView<EntryConverter> f_vConvUp;
00648 
00649                 /**
00650                 * The Converter to the underlying entries in the Map
00651                 */
00652                 FinalView<EntryConverter> f_vConvDown;
00653             };
00654 
00655 
00656         /**
00657         * A ConverterEntry views an underlying Map#Entry through a Converter.
00658         */
00659         class COH_EXPORT ConverterEntry
00660             : public cloneable_spec<ConverterEntry,
00661                 extends<WrapperCollections::AbstractWrapperEntry> >
00662             {
00663             friend class factory<ConverterEntry>;
00664 
00665             // ----- constructors ---------------------------------------
00666 
00667             protected:
00668                 /**
00669                 * Create a WrapperCollections::AbstractWrapperEntry which
00670                 * delegates to the specified Map#Entry.
00671                 *
00672                 * @param hMapEntry  a handle to the specified Map#Entry
00673                 * @param vConvUp    the EntryConverter from the underlying
00674                 *                   Map
00675                 * @param vConvDown  the EntryConverter to the underlying Map
00676                 */
00677                 ConverterEntry(Map::Entry::Handle hMapDelegate,
00678                              EntryConverter::View vConvUp,
00679                              EntryConverter::View vConvDown);
00680 
00681                 /**
00682                 * Create a WrapperCollections::AbstractWrapperEntry which
00683                 * delegates to the specified Map#Entry.
00684                 *
00685                 * @param vMapEntry  a view of the specified Map#Entry
00686                 * @param vConvUp    the EntryConverter from the underlying
00687                 *                   Map
00688                 * @param vConvDown  the EntryConverter to the underlying Map
00689                 */
00690                 ConverterEntry(Map::Entry::View vMapDelegate,
00691                              EntryConverter::View vConvUp,
00692                              EntryConverter::View vConvDown);
00693 
00694                 /**
00695                 * Copy constructor.
00696                 */
00697                 ConverterEntry(const ConverterEntry& that);
00698 
00699 
00700             // ----- Map::Entry interface -------------------------------
00701 
00702             public:
00703                 /**
00704                 * {@inheritDoc}
00705                 */
00706                 virtual Object::View getKey() const;
00707 
00708                 /**
00709                 * {@inheritDoc}
00710                 */
00711                 virtual Object::Holder getValue() const;
00712 
00713                 /**
00714                 * {@inheritDoc}
00715                 */
00716                 using Map::Entry::getValue;
00717 
00718                 /**
00719                 * {@inheritDoc}
00720                 */
00721                 virtual Object::Holder setValue(Object::Holder ohValue);
00722 
00723             // ----- Object interface -----------------------------------
00724 
00725             public:
00726                 /**
00727                 * {@inheritDoc}
00728                 */
00729                 virtual bool equals(Object::View that) const;
00730 
00731                 /**
00732                 * {@inheritDoc}
00733                 */
00734                 virtual size32_t hashCode() const;
00735 
00736 
00737                 /**
00738                 * {@inheritDoc}
00739                 */
00740                 virtual TypedHandle<const String> toString() const;
00741 
00742             // ----- data members ---------------------------------------
00743 
00744             protected:
00745                 /**
00746                 * The Converter from the underlying Entry.
00747                 */
00748                 FinalView<EntryConverter> f_vConvUp;
00749 
00750                 /**
00751                 * The Converter from the underlying Entry.
00752                 */
00753                 FinalView<EntryConverter> f_vConvDown;
00754             };
00755 
00756 
00757         // ----- inner class: ConverterCacheEvent ---------------------------
00758 
00759         /**
00760         * A Converter CacheEvent views an underlying CacheEvent through a set
00761         * of key and value Converters.
00762         */
00763         class COH_EXPORT ConverterCacheEvent
00764             : public class_spec<ConverterCacheEvent,
00765                 extends<CacheEvent> >
00766             {
00767             friend class factory<ConverterCacheEvent>;
00768 
00769             // ----- constructors ---------------------------------------
00770 
00771             protected:
00772                 /**
00773                 * Create a ConverterCacheEvent.
00774                 *
00775                 * @param hMap      the new event's source
00776                 * @param vEvent    the underlying CacheEvent
00777                 * @param vConvKey  the Converter to view the underlying
00778                 *                  CacheEvent's key
00779                 * @param vConvVal  the Converter to view the underlying
00780                 *                  CacheEvent's values
00781                 */
00782                 ConverterCacheEvent(ObservableMap::Handle hMap,
00783                         CacheEvent::View vEvent, Converter::View vConvKey,
00784                         Converter::View vConvVal);
00785 
00786             // ----- MapEvent interface ---------------------------------
00787 
00788             public:
00789                 /**
00790                 * {@inheritDoc}
00791                 */
00792                 virtual Object::View getKey() const;
00793 
00794                 /**
00795                 * {@inheritDoc}
00796                 */
00797                 virtual Object::View getOldValue() const;
00798 
00799                 /**
00800                 * {@inheritDoc}
00801                 */
00802                 virtual Object::View getNewValue() const;
00803 
00804             // ----- accessors ------------------------------------------
00805 
00806             public:
00807                 /**
00808                 * Return the underlying CacheEvent.
00809                 *
00810                 * @return the underlying CacheEvent
00811                 */
00812                 virtual CacheEvent::View getCacheEvent() const;
00813 
00814                 /**
00815                 * Return the Converter used to view the underlying
00816                 * CacheEvent's key through.
00817                 *
00818                 * @return the Converter from the underlying CacheEvent's key
00819                 */
00820                 virtual Converter::View getConverterKeyUp() const;
00821 
00822                 /**
00823                 * Return the Converter used to view the underlying
00824                 * CacheEvent's value through.
00825                 *
00826                 * @return the Converter from the underlying CacheEvent's
00827                 *         value
00828                 */
00829                 virtual Converter::View getConverterValueUp() const;
00830 
00831                 /**
00832                 * Set the cached converted old value associated with this
00833                 * event.
00834                 *
00835                 * @param voValue the new converted "old" value
00836                 */
00837                 virtual void setOldValue(Object::View voValue);
00838 
00839                 /**
00840                 * Set the cached converted new value associated with this
00841                 * event.
00842                 *
00843                 * @param voValue the new converted "new" value
00844                 */
00845                 virtual void setNewValue(Object::View voValue);
00846 
00847             // ----- data members ---------------------------------------
00848 
00849             protected:
00850                 /**
00851                 * The underlying CacheEvent.
00852                 */
00853                 FinalView<CacheEvent> f_vEvent;
00854 
00855                 /**
00856                 * The Converter to view the underlying CacheEvent's key.
00857                 */
00858                 FinalView<Converter> f_vConvKey;
00859 
00860                 /**
00861                 * The Converter to view the underlying CacheEvent's value.
00862                 */
00863                 FinalView<Converter> f_vConvVal;
00864             };
00865 
00866 
00867         // ----- inner class: ConverterMapEvent -----------------------------
00868 
00869         /**
00870         * A Converter MapEvent views an underlying MapEvent through a set of
00871         * key and value Converters.
00872         */
00873         class COH_EXPORT ConverterMapEvent
00874             : public class_spec<ConverterMapEvent,
00875                 extends<MapEvent> >
00876             {
00877             friend class factory<ConverterMapEvent>;
00878 
00879             // ----- constructors ---------------------------------------
00880 
00881             protected:
00882                 /**
00883                 * Create a ConverterMapEvent.
00884                 *
00885                 * @param hMap      the new event's source
00886                 * @param vEvent    the underlying MapEvent
00887                 * @param vConvKey  the Converter to view the underlying
00888                 *                  MapEvent's key
00889                 * @param vConvVal  the Converter to view the underlying
00890                 *                  MapEvent's values
00891                 */
00892                 ConverterMapEvent(ObservableMap::Handle hMap,
00893                         MapEvent::View vEvent, Converter::View vConvKey,
00894                         Converter::View vConvVal);
00895 
00896             // ----- MapEvent interface ---------------------------------
00897 
00898             public:
00899                 /**
00900                 * {@inheritDoc}
00901                 */
00902                 virtual Object::View getKey() const;
00903 
00904                 /**
00905                 * {@inheritDoc}
00906                 */
00907                 virtual Object::View getOldValue() const;
00908 
00909                 /**
00910                 * {@inheritDoc}
00911                 */
00912                 virtual Object::View getNewValue() const;
00913 
00914             // ----- accessors ------------------------------------------
00915 
00916             public:
00917                 /**
00918                 * Return the underlying MapEvent.
00919                 *
00920                 * @return the underlying MapEvent
00921                 */
00922                 virtual MapEvent::View getMapEvent() const;
00923 
00924                 /**
00925                 * Return the Converter used to view the underlying MapEvent's
00926                 * key through.
00927                 *
00928                 * @return the Converter from the underlying MapEvent's key
00929                 */
00930                 virtual Converter::View getConverterKeyUp() const;
00931 
00932                 /**
00933                 * Return the Converter used to view the underlying MapEvent's
00934                 * value through.
00935                 *
00936                 * @return the Converter from the underlying MapEvent's value
00937                 */
00938                 virtual Converter::View getConverterValueUp() const;
00939 
00940                 /**
00941                 * Set the cached converted key associated with this event.
00942                 *
00943                 * @param voKey the converted key value
00944                 */
00945                 virtual void setKey(Object::View voKey);
00946 
00947                 /**
00948                 * Set the cached converted old value associated with this
00949                 * event.
00950                 *
00951                 * @param voValue the new converted "old" value
00952                 */
00953                 virtual void setOldValue(Object::View voValue);
00954 
00955                 /**
00956                 * Set the cached converted new value associated with this
00957                 * event.
00958                 *
00959                 * @param voValue the new converted "new" value
00960                 */
00961                 virtual void setNewValue(Object::View voValue);
00962 
00963                 /**
00964                 * Check if the event's key has been converted.
00965                 *
00966                 * @return true iff the key has been converted
00967                 */
00968                 virtual bool isKeyConverted() const;
00969 
00970                 /**
00971                 * Check if the event's old value has been converted.
00972                 *
00973                 * @return true iff the old value has been converted
00974                 */
00975                 virtual bool isOldValueConverted() const;
00976 
00977                 /**
00978                 * Check if the event's new value has been converted.
00979                 *
00980                 * @return true iff the new value has been converted
00981                 */
00982                 virtual bool isNewValueConverted() const;
00983 
00984             // ----- data members ---------------------------------------
00985 
00986             protected:
00987                 /**
00988                 * The underlying MapEvent.
00989                 */
00990                 FinalView<MapEvent> f_vEvent;
00991 
00992                 /**
00993                 * The Converter to view the underlying MapEvent's key.
00994                 */
00995                 FinalView<Converter> f_vConvKey;
00996 
00997                 /**
00998                 * The Converter to view the underlying MapEvent's value.
00999                 */
01000                 FinalView<Converter> f_vConvVal;
01001             };
01002 
01003 
01004         // ----- inner class: ConverterMapListener --------------------------
01005 
01006         /**
01007         * A converter MapListener that converts events of the underlying
01008         * MapListener for the underlying map.
01009         */
01010         class COH_EXPORT ConverterMapListener
01011             : public class_spec<ConverterMapListener,
01012                 extends<Object>,
01013                 implements<MapListener> >
01014             {
01015             friend class factory<ConverterMapListener>;
01016 
01017             // ----- constructors ---------------------------------------
01018 
01019             protected:
01020                 /**
01021                 * Create a ConverterMapListener that converts events of the
01022                 * underlying MapListener for the underlying map.
01023                 */
01024                 ConverterMapListener(ObservableMap::Handle hMap,
01025                         MapListener::Handle hListener, Converter::View vConvKey,
01026                         Converter::View vConvVal);
01027 
01028             // ----- MapListener interface ------------------------------
01029 
01030             public:
01031                 /**
01032                 * {@inheritDoc}
01033                 */
01034                 virtual void entryInserted(MapEvent::View vEvent);
01035 
01036                 /**
01037                 * {@inheritDoc}
01038                 */
01039                 virtual void entryUpdated(MapEvent::View vEvent);
01040 
01041                 /**
01042                 * {@inheritDoc}
01043                 */
01044                 virtual void entryDeleted(MapEvent::View vEvent);
01045 
01046             // ----- Object interface -----------------------------------
01047 
01048             public:
01049                 /**
01050                 * {@inheritDoc}
01051                 */
01052                 virtual bool equals(Object::View v) const;
01053 
01054                 /**
01055                 * {@inheritDoc}
01056                 */
01057                 virtual size32_t hashCode() const;
01058 
01059             // ----- accessors ------------------------------------------
01060 
01061             public:
01062                 /**
01063                 * Get the underlying ObservableMap.
01064                 *
01065                 * @return the underlying map
01066                 */
01067                 virtual ObservableMap::Handle getObservableMap();
01068 
01069                 /**
01070                 * Get the underlying ObservableMap.
01071                 *
01072                 * @return the underlying map
01073                 */
01074                 virtual ObservableMap::View getObservableMap() const;
01075 
01076                 /**
01077                 * Get the underling MapListener.
01078                 *
01079                 * @return the underlying listener
01080                 */
01081                 virtual MapListener::Handle getMapListener();
01082 
01083                 /**
01084                 * Get the underling MapListener.
01085                 *
01086                 * @return the underlying listener
01087                 */
01088                 virtual MapListener::View getMapListener() const;
01089 
01090                 /**
01091                 * Get the Converter used to view an underlying CacheEvent's
01092                 * key through.
01093                 *
01094                 * @return the Converter used to view an underlying
01095                 *         CacheEvent's key
01096                 */
01097                 virtual Converter::View getConverterKeyUp() const;
01098 
01099                 /**
01100                 * Get the Converter used to view an underlying CacheEvent's
01101                 * value through.
01102                 *
01103                 * @return the Converter used to view an underlying
01104                 *         CacheEvent's value
01105                 */
01106                 virtual Converter::View getConverterValueUp() const;
01107 
01108             // ----- data members -------------------------------------------
01109 
01110             protected:
01111                 /**
01112                 * The converting Map the will be the source of converted
01113                 * events.
01114                 */
01115                 FinalHandle<ObservableMap> f_hMap;
01116 
01117                 /**
01118                 * The underlying MapListener.
01119                 */
01120                 FinalHandle<MapListener> f_hListener;
01121 
01122                 /**
01123                 * The Converter to view an underlying CacheEvent's key.
01124                 */
01125                 FinalView<Converter> f_vConvKey;
01126 
01127                 /**
01128                 * The Converter to view an underlying CacheEvent's value.
01129                 */
01130                 FinalView<Converter> f_vConvVal;
01131             };
01132 
01133 
01134         // ----- inner class: ConverterObservableMap ------------------------
01135 
01136         /**
01137         * A Converter ObservableMap views an underlying ObservableMap through
01138         * a set of key and value Converters.
01139         */
01140         class COH_EXPORT ConverterObservableMap
01141             : public class_spec<ConverterObservableMap,
01142                 extends<ConverterMap>,
01143                 implements<ObservableMap> >
01144             {
01145             friend class factory<ConverterObservableMap>;
01146 
01147             // ----- constructors ---------------------------------------
01148 
01149             protected:
01150                 /**
01151                 * Create a ConverterObservableMap which delegates to the
01152                 * specified ObservableMap.
01153                 *
01154                 * @param hMap      underlying ObservableMap
01155                 * @param vConvUp   EntryConverter from the underlying Map
01156                 * @param vConvDown EntryConverter to the underlying Map
01157                 */
01158                 ConverterObservableMap(ObservableMap::Handle hMap,
01159                         EntryConverter::View vConvUp,
01160                         EntryConverter::View vConvDown);
01161 
01162                 /**
01163                 * Create a ConverterObservableMap which delegates to the
01164                 * specified ObservableMap.
01165                 *
01166                 * @param vMap      underlying ObservableMap
01167                 * @param vConvUp   EntryConverter from the underlying Map
01168                 * @param vConvDown EntryConverter to the underlying Map
01169                 */
01170                 ConverterObservableMap(ObservableMap::View vMap,
01171                         EntryConverter::View vConvUp,
01172                         EntryConverter::View vConvDown);
01173 
01174             // ----- ObservableMap interface ----------------------------
01175 
01176             public:
01177                 /**
01178                 * {@inheritDoc}
01179                 */
01180                 virtual void addKeyListener(MapListener::Handle hListener,
01181                         Object::View vKey, bool fLite);
01182 
01183                 /**
01184                 * {@inheritDoc}
01185                 */
01186                 virtual void removeKeyListener(MapListener::Handle hListener,
01187                         Object::View vKey);
01188 
01189                 /**
01190                 * {@inheritDoc}
01191                 */
01192                 virtual void addMapListener(MapListener::Handle hListener);
01193 
01194                 /**
01195                 * {@inheritDoc}
01196                 */
01197                 virtual void removeMapListener(MapListener::Handle hListener);
01198         
01199                 /**
01200                 * {@inheritDoc}
01201                 */
01202                 virtual void addFilterListener(MapListener::Handle hListener,
01203                         Filter::View vFilter, bool fLite);
01204 
01205                 /**
01206                 * {@inheritDoc}
01207                 */
01208                 virtual void removeFilterListener(
01209                         MapListener::Handle hListener, Filter::View vFilter);
01210 
01211             // ----- helper methods -------------------------------------
01212 
01213             protected:
01214                 /**
01215                 * Create a converter listener for the specified listener.
01216                 *
01217                 * @param hListener  the underlying listener
01218                 *
01219                 * @return the converting listener
01220                 */
01221                 virtual MapListener::Handle getConverterListener(
01222                         MapListener::Handle hListener);
01223 
01224             // ----- accessors ------------------------------------------
01225 
01226             public:
01227                 /**
01228                 * Return the underlying ObservableMap.
01229                 *
01230                 * @return the underlying ObservableMap
01231                 */
01232                 virtual ObservableMap::Handle getObservableMap();
01233 
01234                 /**
01235                 * Return the underlying ObservableMap.
01236                 *
01237                 * @return the underlying ObservableMap
01238                 */
01239                 virtual ObservableMap::View getObservableMap() const;
01240             };
01241 
01242 
01243         // ----- inner class: ConverterCacheMap -----------------------------
01244 
01245         /**
01246         * A ConverterCacheMap views an underlying CacheMap through a set
01247         * of key and value Converters.
01248         */
01249         class COH_EXPORT ConverterCacheMap
01250             : public class_spec<ConverterCacheMap,
01251                 extends<ConverterObservableMap>,
01252                 implements<CacheMap> >
01253             {
01254             friend class factory<ConverterCacheMap>;
01255 
01256             // ----- constructors ---------------------------------------
01257 
01258             protected:
01259                 /**
01260                 * Create a ConverterCacheMap which delegates to the specified
01261                 * CacheMap.
01262                 *
01263                 * @param hMap      the specified CacheMap
01264                 * @param vConvUp   the EntryConverter from the underlying
01265                 *                  Map
01266                 * @param vConvDown the EntryConverter to the underlying
01267                 *                  Map
01268                 */
01269                 ConverterCacheMap(CacheMap::Handle hMapDelegate,
01270                              EntryConverter::View vConvUp,
01271                              EntryConverter::View vConvDown);
01272 
01273                 /**
01274                 * Create a ConverterCacheMap which delegates to the specified
01275                 * CacheMap.
01276                 *
01277                 * @param vMap      the specified CacheMap
01278                 * @param vConvUp   the EntryConverter from the underlying
01279                 *                  Map
01280                 * @param vConvDown the EntryConverter to the underlying
01281                 *                  Map
01282                 */
01283                 ConverterCacheMap(CacheMap::View vMapDelegate,
01284                              EntryConverter::View vConvUp,
01285                              EntryConverter::View vConvDown);
01286 
01287             // ----- CacheMap interface -----------------------------
01288 
01289             public:
01290                 /**
01291                 * {@inheritDoc}
01292                 */
01293                 virtual Map::View getAll(Collection::View vKeys) const;
01294 
01295                 /**
01296                 * {@inheritDoc}
01297                 */
01298                 using ConverterMap::put;
01299 
01300                 /**
01301                 * {@inheritDoc}
01302                 */
01303                 virtual Object::Holder put(Object::View vKey,
01304                         Object::Holder ohValue, int64_t cMillis);
01305 
01306             // ----- Map interface ----------------------------------
01307 
01308             public:
01309                 /**
01310                 * {@inheritDoc}
01311                 */
01312                virtual void putAll(Map::View vMap);
01313 
01314 
01315             // ----- accessors --------------------------------------
01316 
01317             public:
01318                 /**
01319                 * Return the underlying CacheMap.
01320                 *
01321                 * @return the underlying CacheMap
01322                 */
01323                 virtual CacheMap::View getCacheMap() const;
01324 
01325                 /**
01326                 * Return the underlying CacheMap.
01327                 *
01328                 * @return the underlying CacheMap
01329                 */
01330                 virtual CacheMap::Handle getCacheMap();
01331             };
01332 
01333         /**
01334         * A Converter ConverterConcurrentMap views an underlying
01335         * ConcurrentMap through a set of key and value Converters.
01336         */
01337         class COH_EXPORT ConverterConcurrentMap
01338             : public class_spec<ConverterConcurrentMap,
01339                 extends<ConverterMap>,
01340                 implements<ConcurrentMap> >
01341             {
01342             friend class factory<ConverterConcurrentMap>;
01343 
01344             // ----- constructors ---------------------------------------
01345 
01346             protected:
01347                 /**
01348                 * Create a ConverterConcurrentMap which delegates to the
01349                 * specified ConcurrentMap.
01350                 *
01351                 * @param hMap      the specified ConcurrentMap
01352                 * @param vConvUp   the EntryConverter from the underlying
01353                 *                  Map
01354                 * @param vConvDown the EntryConverter to the underlying
01355                 *                  Map
01356                 */
01357                 ConverterConcurrentMap(ConcurrentMap::Handle hMapDelegate,
01358                              EntryConverter::View vConvUp,
01359                              EntryConverter::View vConvDown);
01360 
01361                 /**
01362                 * Create a ConverterConcurrentMap which delegates to the
01363                 * specified ConcurrentMap.
01364                 *
01365                 * @param vMap      the specified ConcurrentMap
01366                 * @param vConvUp   the EntryConverter from the underlying
01367                 *                  Map
01368                 * @param vConvDown the EntryConverter to the underlying
01369                 *                  Map
01370                 */
01371                 ConverterConcurrentMap(ConcurrentMap::View vMapDelegate,
01372                              EntryConverter::View vConvUp,
01373                              EntryConverter::View vConvDown);
01374 
01375             // ----- ConcurrentMap interface ----------------------------
01376 
01377             public:
01378                 /**
01379                 * {@inheritDoc}
01380                 */
01381                 virtual bool lock(Object::View vKey, int64_t cWait) const;
01382 
01383                 /**
01384                 * {@inheritDoc}
01385                 */
01386                 virtual bool lock(Object::View vKey) const;
01387 
01388                 /**
01389                 * {@inheritDoc}
01390                 */
01391                 virtual bool unlock(Object::View vKey) const;
01392 
01393             // ----- accessors ------------------------------------------
01394 
01395             public:
01396                 /**
01397                 * Return the underlying ConcurrentMap.
01398                 *
01399                 * @return the underlying ConcurrentMap
01400                 */
01401                 virtual ConcurrentMap::View getConcurrentMap() const;
01402 
01403                 /**
01404                 * Return the underlying ConcurrentMap.
01405                 *
01406                 * @return the underlying ConcurrentMap
01407                 */
01408                 virtual ConcurrentMap::Handle getConcurrentMap();
01409 
01410             };
01411 
01412         /**
01413         * A ConverterInvocable views an underlying InvocableMap through a set
01414         * of key and value Converters.
01415         */
01416         class COH_EXPORT ConverterInvocableMap
01417             : public class_spec<ConverterInvocableMap,
01418                 extends<ConverterMap>,
01419                 implements<InvocableMap> >
01420             {
01421             friend class factory<ConverterInvocableMap>;
01422 
01423             // ----- constructors ---------------------------------------
01424 
01425             protected:
01426                 /**
01427                 * Create a ConverterInvocableMap which delegates to the s
01428                 * pecified InvocableMap.
01429                 *
01430                 * @param hMap      the specified InvocableMap
01431                 * @param vConvUp   the EntryConverter from the underlying
01432                 *                  Map
01433                 * @param vConvDown the EntryConverter to the underlying
01434                 *                  Map
01435                 */
01436                 ConverterInvocableMap(InvocableMap::Handle hMapDelegate,
01437                              EntryConverter::View vConvUp,
01438                              EntryConverter::View vConvDown);
01439 
01440                 /**
01441                 * Create a ConverterInvocableMap which delegates to the s
01442                 * pecified InvocableMap.
01443                 *
01444                 * @param vMap      the specified InvocableMap
01445                 * @param vConvUp   the EntryConverter from the underlying
01446                 *                  Map
01447                 * @param vConvDown the EntryConverter to the underlying
01448                 *                  Map
01449                 */
01450                 ConverterInvocableMap(InvocableMap::View vMapDelegate,
01451                              EntryConverter::View vConvUp,
01452                              EntryConverter::View vConvDown);
01453 
01454             // ----- InvocableMap interface -----------------------------
01455 
01456             public:
01457                 /**
01458                 * {@inheritDoc}
01459                 */
01460                 virtual Object::Holder invoke(Object::View vKey,
01461                         InvocableMap::EntryProcessor::Handle hAgent);
01462 
01463                 /**
01464                 * {@inheritDoc}
01465                 */
01466                 virtual Map::View invokeAll(Collection::View vCollKeys,
01467                         InvocableMap::EntryProcessor::Handle hAgent);
01468 
01469                 /**
01470                 * {@inheritDoc}
01471                 */
01472                 virtual Map::View invokeAll(Filter::View vFilter,
01473                         InvocableMap::EntryProcessor::Handle hAgent);
01474 
01475                 /**
01476                 * {@inheritDoc}
01477                 */
01478                 virtual Object::Holder aggregate(Collection::View vCollKeys,
01479                         InvocableMap::EntryAggregator::Handle hAgent) const;
01480 
01481                 /**
01482                 * {@inheritDoc}
01483                 */
01484                 virtual Object::Holder aggregate(Filter::View vFilter,
01485                         InvocableMap::EntryAggregator::Handle hAgent) const;
01486 
01487             // ----- accessors ------------------------------------------
01488 
01489             public:
01490                 /**
01491                 * Return the underlying InvocableMap.
01492                 *
01493                 * @return the underlying InvocableMap
01494                 */
01495                 virtual InvocableMap::View getInvocableMap() const;
01496 
01497                 /**
01498                 * Return the underlying CacheMap.
01499                 *
01500                 * @return the underlying CacheMap
01501                 */
01502                 virtual InvocableMap::Handle getInvocableMap();
01503             };
01504 
01505 
01506         // ----- inner class: ConverterQueryMap -----------------------------
01507 
01508         /**
01509         * A Converter QueryMap views an underlying QueryMap through a set of
01510         * key and value Converters.
01511         */
01512         class COH_EXPORT ConverterQueryMap
01513             : public class_spec<ConverterQueryMap,
01514                 extends<ConverterMap>,
01515                 implements<QueryMap> >
01516             {
01517             friend class factory<ConverterQueryMap>;
01518 
01519             // ----- constructors -----------------------------------
01520 
01521             protected:
01522                 /**
01523                 * Create a ConverterQueryMap which delegates to the specified
01524                 * QueryMap.
01525                 *
01526                 * @param hMap      the specified InvocableMap
01527                 * @param vConvUp   the EntryConverter from the underlying
01528                 *                  Map
01529                 * @param vConvDown the EntryConverter to the underlying
01530                 *                  Map
01531                 */
01532                 ConverterQueryMap(QueryMap::Handle hMapDelegate,
01533                              EntryConverter::View vConvUp,
01534                              EntryConverter::View vConvDown);
01535 
01536                 /**
01537                 * Create a ConverterQueryMap which delegates to the s
01538                 * pecified QueryMap.
01539                 *
01540                 * @param vMap      the specified InvocableMap
01541                 * @param vConvUp   the EntryConverter from the underlying
01542                 *                  Map
01543                 * @param vConvDown the EntryConverter to the underlying
01544                 *                  Map
01545                 */
01546                 ConverterQueryMap(QueryMap::View vMapDelegate,
01547                              EntryConverter::View vConvUp,
01548                              EntryConverter::View vConvDown);
01549 
01550             // ----- QueryMap interface ---------------------------------
01551 
01552             public:
01553                 /**
01554                 * {@inheritDoc}
01555                 */
01556                 virtual Set::View keySet(Filter::View vFilter) const;
01557 
01558                 /**
01559                 * {@inheritDoc}
01560                 */
01561                 virtual Set::View entrySet(Filter::View vFilter) const;
01562 
01563                 /**
01564                 * {@inheritDoc}
01565                 */
01566                 virtual Set::View entrySet(Filter::View vFilter,
01567                         Comparator::View vComparator) const;
01568 
01569                 /**
01570                 * {@inheritDoc}
01571                 */
01572                 virtual void addIndex(ValueExtractor::View vExtractor,
01573                         bool fOrdered, Comparator::View vComparator);
01574 
01575                 /**
01576                 * {@inheritDoc}
01577                 */
01578                 virtual void removeIndex(ValueExtractor::View vExtractor);
01579 
01580             // ----- Map interface --------------------------------------
01581 
01582             public:
01583                 /**
01584                 * {@inheritDoc}
01585                 */
01586                 using Map::keySet;
01587 
01588                 /**
01589                 * {@inheritDoc}
01590                 */
01591                 using Map::entrySet;
01592 
01593             // ----- accessors ----------------------------------------------
01594 
01595             public:
01596                 /**
01597                 * Return the underlying InvocableMap.
01598                 *
01599                 * @return the underlying InvocableMap
01600                 */
01601                 virtual QueryMap::View getQueryMap() const;
01602 
01603                 /**
01604                 * Return the underlying CacheMap.
01605                 *
01606                 * @return the underlying CacheMap
01607                 */
01608                 virtual QueryMap::Handle getQueryMap();
01609             };
01610 
01611 
01612         /**
01613         * A ConverterNamedCache views an underlying NamedCache through a set
01614         * of key and value Converters.
01615         */
01616         class COH_EXPORT ConverterNamedCache
01617             : public class_spec<ConverterNamedCache,
01618                 extends<ConverterCacheMap>,
01619                 implements<NamedCache> >
01620             {
01621             friend class factory<ConverterNamedCache>;
01622 
01623             // ----- constructors -----------------------------------
01624 
01625             protected:
01626                 /**
01627                 * Create a ConverterQueryMap which delegates to the s
01628                 * pecified QueryMap.
01629                 *
01630                 * @param hMap      the specified InvocableMap
01631                 * @param vConvUp   the EntryConverter from the underlying
01632                 *                  Map
01633                 * @param vConvDown the EntryConverter to the underlying
01634                 *                  Map
01635                 */
01636                 ConverterNamedCache(NamedCache::Handle hMapDelegate,
01637                              EntryConverter::View vConvUp,
01638                              EntryConverter::View vConvDown);
01639 
01640                 /**
01641                 * Create a ConverterQueryMap which delegates to the s
01642                 * pecified QueryMap.
01643                 *
01644                 * @param vMap      the specified InvocableMap
01645                 * @param vConvUp   the EntryConverter from the underlying
01646                 *                  Map
01647                 * @param vConvDown the EntryConverter to the underlying
01648                 *                  Map
01649                 */
01650                 ConverterNamedCache(NamedCache::View vMapDelegate,
01651                              EntryConverter::View vConvUp,
01652                              EntryConverter::View vConvDown);
01653 
01654             // ----- NamedCache interface -------------------------------
01655 
01656             public:
01657                 /**
01658                 * Return the cache name.
01659                 *
01660                 * @return the cache name
01661                 */
01662                 virtual String::View getCacheName() const;
01663 
01664                 /**
01665                 * Return the CacheService that this NamedCache is a part of.
01666                 *
01667                 * @return the CacheService
01668                 */
01669                 virtual CacheService::Handle getCacheService();
01670 
01671                 /**
01672                 * Return the CacheService that this NamedCache is a part of.
01673                 *
01674                 * @return the CacheService
01675                 */
01676                 virtual CacheService::View getCacheService() const;
01677 
01678                 /**
01679                 * Specifies whether or not the NamedCache is active.
01680                 *
01681                 * @return true if the NamedCache is active; false otherwise
01682                 */
01683                 virtual bool isActive() const;
01684 
01685                 /**
01686                 * Release local resources associated with this instance of
01687                 * NamedCache.
01688                 *
01689                 * Releasing a cache makes it no longer usable, but does not
01690                 * affect the cache itself. In other words, all other
01691                 * references to the cache will still be valid, and the cache
01692                 * data is not affected by releasing the reference. Any
01693                 * attempt to use this reference afterword will result in an
01694                 * exception.
01695                 *
01696                 * @see CacheService#releaseCache
01697                 */
01698                 virtual void release();
01699 
01700                 /**
01701                 * Release and destroy this instance of NamedCache.
01702                 *
01703                 * <b>Warning:</b> This method is used to completely destroy
01704                 * the specified cache across the cluster. All references in
01705                 * the entire cluster to this cache will be invalidated, the
01706                 * cached data will be cleared, and all resources will be
01707                 * released.
01708                 *
01709                 * @see CacheService#destroyCache
01710                 */
01711                 virtual void destroy();
01712 
01713             // ----- ConcurrentMap interface ----------------------------
01714 
01715             public:
01716                 /**
01717                 * {@inheritDoc}
01718                 */
01719                 virtual bool lock(Object::View vKey, int64_t cWait) const;
01720 
01721                 /**
01722                 * {@inheritDoc}
01723                 */
01724                 virtual bool lock(Object::View vKey) const;
01725 
01726                 /**
01727                 * {@inheritDoc}
01728                 */
01729                 virtual bool unlock(Object::View vKey) const;
01730 
01731             // ----- InvocableMap interface -----------------------------
01732 
01733             public:
01734                 /**
01735                 * {@inheritDoc}
01736                 */
01737                 virtual Object::Holder invoke(Object::View vKey,
01738                         InvocableMap::EntryProcessor::Handle hAgent);
01739 
01740                 /**
01741                 * {@inheritDoc}
01742                 */
01743                 virtual Map::View invokeAll(Collection::View vCollKeys,
01744                         InvocableMap::EntryProcessor::Handle hAgent);
01745 
01746                 /**
01747                 * {@inheritDoc}
01748                 */
01749                 virtual Map::View invokeAll(Filter::View vFilter,
01750                         InvocableMap::EntryProcessor::Handle hAgent);
01751 
01752                 /**
01753                 * {@inheritDoc}
01754                 */
01755                 virtual Object::Holder aggregate(Collection::View vCollKeys,
01756                         InvocableMap::EntryAggregator::Handle hAgent) const;
01757 
01758                 /**
01759                 * {@inheritDoc}
01760                 */
01761                 virtual Object::Holder aggregate(Filter::View vFilter,
01762                         InvocableMap::EntryAggregator::Handle hAgent) const;
01763 
01764             // ----- QueryMap interface ---------------------------------
01765 
01766             public:
01767                 /**
01768                 * {@inheritDoc}
01769                 */
01770                 virtual Set::View keySet(Filter::View vFilter) const;
01771 
01772                 /**
01773                 * {@inheritDoc}
01774                 */
01775                 virtual Set::View entrySet(Filter::View vFilter) const;
01776 
01777                 /**
01778                 * {@inheritDoc}
01779                 */
01780                 virtual Set::View entrySet(Filter::View vFilter,
01781                         Comparator::View vComparator) const;
01782 
01783                 /**
01784                 * {@inheritDoc}
01785                 */
01786                 virtual void addIndex(ValueExtractor::View vExtractor,
01787                         bool fOrdered, Comparator::View vComparator);
01788 
01789                 /**
01790                 * {@inheritDoc}
01791                 */
01792                 virtual void removeIndex(ValueExtractor::View vExtractor);
01793 
01794             // ----- Map interface --------------------------------------
01795 
01796             public:
01797                 /**
01798                 * {@inheritDoc}
01799                 */
01800                 using Map::keySet;
01801 
01802                 /**
01803                 * {@inheritDoc}
01804                 */
01805                 using Map::entrySet;
01806 
01807             // ----- accessors ------------------------------------------
01808 
01809             public:
01810                 /**
01811                 * Return the underlying InvocableMap.
01812                 *
01813                 * @return the underlying InvocableMap
01814                 */
01815                 virtual NamedCache::View getNamedCache() const;
01816 
01817                 /**
01818                 * Return the underlying CacheMap.
01819                 *
01820                 * @return the underlying CacheMap
01821                 */
01822                 virtual NamedCache::Handle getNamedCache();
01823 
01824                 /**
01825                 * Return the underlying ConcurrentMap.
01826                 *
01827                 * @return the underlying ConcurrentMap
01828                 */
01829                 virtual ConcurrentMap::View getConcurrentMap() const;
01830 
01831                 /**
01832                 * Return the underlying ConcurrentMap.
01833                 *
01834                 * @return the underlying ConcurrentMap
01835                 */
01836                 virtual ConcurrentMap::Handle getConcurrentMap();
01837 
01838                 /**
01839                 * Return the underlying InvocableMap.
01840                 *
01841                 * @return the underlying InvocableMap
01842                 */
01843                 virtual InvocableMap::View getInvocableMap() const;
01844 
01845                 /**
01846                 * Return the underlying InvocableMap.
01847                 *
01848                 * @return the underlying InvocableMap
01849                 */
01850                 virtual InvocableMap::Handle getInvocableMap();
01851 
01852                 /**
01853                 * Return the underlying QueryMap.
01854                 *
01855                 * @return the underlying QueryMap
01856                 */
01857                 virtual QueryMap::View getQueryMap() const;
01858 
01859                 /**
01860                 * Return the underlying QueryMap.
01861                 *
01862                 * @return the underlying QueryMap
01863                 */
01864                 virtual QueryMap::Handle getQueryMap();
01865 
01866             // ---- data members ----------------------------------------
01867 
01868             protected:
01869                 /**
01870                 * A Converter ConcurrentMap around the underlying NamedCache.
01871                 */
01872                 FinalHolder<ConverterConcurrentMap> f_ohMapConcurrent;
01873 
01874                 /**
01875                 * A Converter InvocableMap around the underlying NamedCache.
01876                 */
01877                 FinalHolder<ConverterInvocableMap> f_ohMapInvocable;
01878 
01879                 /**
01880                 * A Converter QueryMap around the underlying NamedCache.
01881                 */
01882                 FinalHolder<ConverterQueryMap> f_ohMapQuery;
01883             };
01884 
01885 
01886         // ----- inner class: UnsupportedConverter --------------------------
01887 
01888         /**
01889         * Converter which always throws an UnsupportedOperationException.
01890         */
01891         class COH_EXPORT UnsupportedConverter
01892             : public class_spec<UnsupportedConverter,
01893                 extends<Object>,
01894                 implements<Converter> >
01895             {
01896             friend class factory<UnsupportedConverter>;
01897 
01898             // ----- constructor ----------------------------------------
01899 
01900             public:
01901                 /**
01902                 * Create an UnsupportedConverter
01903                 *
01904                 * return a handle to the new UnsupportedConverter
01905                 */
01906                 UnsupportedConverter();
01907 
01908             // ----- Converter interface --------------------------------
01909 
01910             public:
01911                 /**
01912                 * {@inheritDoc}
01913                 *
01914                 * @throws UnsupportedOperationException always
01915                 */
01916                 virtual Object::Holder convert(Object::Holder oh) const;
01917 
01918                 /**
01919                 * Return a singleton instance of the UnsupportedConverter.
01920                 */
01921                 static UnsupportedConverter::View getInstance();
01922             };
01923     };
01924 
01925 COH_CLOSE_NAMESPACE2
01926 
01927 #endif // COH_CONVERTER_COLLECTIONS_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.