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

F79659-03

coherence/util/SubSet.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_SUB_SET_HPP
00008 #define COH_SUB_SET_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/AbstractSet.hpp"
00013 #include "coherence/util/Set.hpp"
00014 
00015 COH_OPEN_NAMESPACE2(coherence,util)
00016 
00017 
00018 /**
00019 * Implements a set which is based on another set, which is assumed to be
00020 * immutable. Unlike DeltaSet, the SubSet is assumed to be a subset of the
00021 * underlying set, and optimizes for both remove and retain operations.
00022 *
00023 * @author tb 2009.02.10
00024 */
00025 class COH_EXPORT SubSet
00026     : public cloneable_spec<SubSet,
00027         extends<AbstractSet> >
00028     {
00029     friend class factory<SubSet>;
00030 
00031     // ----- constructors ---------------------------------------------------
00032 
00033     protected:
00034         /**
00035         * Construct this set based on an existing set.
00036         *
00037         * @param hSet  the set to base this subset on
00038         */
00039         SubSet(Set::Holder hSet);
00040 
00041         /**
00042         * Copy constructor.
00043         */
00044         SubSet(const SubSet& that);
00045 
00046 
00047     // ----- SubSet accessors -----------------------------------------------
00048 
00049     public:
00050         /**
00051         * Determine what items were in the original set.
00052         *
00053         * @return the set used to construct this SubSet
00054         */
00055         virtual Set::View getOriginal() const;
00056 
00057         /**
00058         * Determine if the set has been modified.
00059         *
00060         * @return  true if any items have been removed
00061         */
00062         virtual bool isModified() const;
00063 
00064         /**
00065         * Determine if the SubSet is tracking retained items versus removed
00066         * items.
00067         *
00068         * @return true if the SubSet is tracking just the retained items,
00069         *         false if the SubSet is tracking just the removed items
00070         */
00071         virtual bool isTrackingRetained() const;
00072 
00073         /**
00074         * Determine what items were added to the subset. Do not modify the
00075         * returned set.
00076         *
00077         * @return a set of retained items
00078         */
00079         virtual Set::View getRetained() const;
00080 
00081         /**
00082         * Determine if the SubSet is tracking removed items versus retained
00083         * items.
00084         *
00085         * @return true if the SubSet is tracking just the removed items,
00086         *         false if the SubSet is tracking just the retained items
00087         */
00088         virtual bool isTrackingRemoved() const;
00089 
00090         /**
00091         * Determine what items were removed from the subset.
00092         *
00093         * @return an immutable set of removed items
00094         */
00095         virtual Set::View getRemoved() const;
00096 
00097     protected:
00098         /**
00099          * Instantiate a new modification set containing either removed or
00100          * retained items.
00101          *
00102          * @param cSize  an initial size of the modification set
00103          */
00104         virtual Set::Handle instantiateModificationSet(size32_t cSize) const;
00105 
00106     public:
00107         /**
00108         * Get a mutable set of items that are retained in the subset.
00109         *
00110         * @return a mutable set of retained items
00111         */
00112         virtual Set::Handle ensureRetained();
00113 
00114         /**
00115         * Get a mutable set of items that are removed in the subset.
00116         *
00117         * @return a mutable set of removed items
00118         */
00119         virtual Set::Handle ensureRemoved();
00120 
00121         /**
00122         * Apply the changes to the underlying set ("commit").
00123         */
00124         virtual void resolve();
00125 
00126         /**
00127         * Discard the changes to the set ("rollback").
00128         */
00129         virtual void reset();
00130 
00131 
00132     // ----- Collection interface -------------------------------------------
00133 
00134     public:
00135         /**
00136         * {@inheritDoc}
00137         */
00138         virtual size32_t size() const;
00139 
00140         /**
00141         * {@inheritDoc}
00142         */
00143         virtual bool isEmpty() const;
00144 
00145         /**
00146         * {@inheritDoc}
00147         */
00148         virtual bool contains(Object::View v) const;
00149 
00150         /**
00151         * {@inheritDoc}
00152         */
00153         virtual bool containsAll(Collection::View vCol) const;
00154 
00155         /**
00156         * {@inheritDoc}
00157         */
00158         virtual Iterator::Handle iterator() const;
00159 
00160         /**
00161         * {@inheritDoc}
00162         */
00163         virtual Muterator::Handle iterator();
00164 
00165         /**
00166         * {@inheritDoc}
00167         */
00168         virtual ObjectArray::Handle toArray(
00169                 ObjectArray::Handle hao = NULL) const;
00170 
00171         /**
00172         * {@inheritDoc}
00173         */
00174         virtual bool add(Object::Holder oh);
00175 
00176         /**
00177         * {@inheritDoc}
00178         */
00179         virtual bool addAll(Collection::View vCol);
00180 
00181         /**
00182         * {@inheritDoc}
00183         */
00184         virtual bool remove(Object::View v);
00185 
00186         /**
00187         * {@inheritDoc}
00188         */
00189         virtual bool removeAll(Collection::View vCol);
00190 
00191         /**
00192         * {@inheritDoc}
00193         */
00194         virtual bool retainAll(Collection::View vCol);
00195 
00196         /**
00197         * {@inheritDoc}
00198         */
00199         virtual void clear();
00200 
00201 
00202     // ----- helpers --------------------------------------------------------
00203 
00204     protected:
00205         /**
00206          * Instantiate a new retained set with all elements in the specified
00207          * collection that also exist in the specified set and are not excluded.
00208          *
00209          * @param vColOuter    collection to iterate
00210          * @param vSetMatch    set to test the presence for each iterated element
00211          * @param vSetExclude  optional set of excluded elements
00212          */
00213      void retainAllInternal(Collection::View vColOuter, 
00214              Set::View vSetMatch, Set::View vSetExclude);
00215 
00216 
00217     // ----- data members ---------------------------------------------------
00218 
00219     protected:
00220         /**
00221         * The underlying set (assumed immutable).
00222         */
00223         FinalHolder<Set> f_ohSetOrig;
00224 
00225         /**
00226         * The removed or retained items.
00227         */
00228         MemberHandle<Set> m_hSetMod;
00229 
00230         /**
00231         * Toggles between whether the modifications are removed or retained.
00232         */
00233         bool m_fRetained;
00234     };
00235 
00236 COH_CLOSE_NAMESPACE2
00237 
00238 #endif // COH_SUB_SET_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.