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

F79659-03

coherence/util/DeltaSet.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_DELTA_SET_HPP
00008 #define COH_DELTA_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.
00021 *
00022 * @author tb 2009.02.10
00023 */
00024 class COH_EXPORT DeltaSet
00025     : public class_spec<DeltaSet,
00026         extends<AbstractSet> >
00027     {
00028     friend class factory<DeltaSet>;
00029 
00030     // ----- constructor ----------------------------------------------------
00031 
00032     public:
00033         /**
00034         * Construct this set based on an existing set.
00035         *
00036         * @param set  the set to base this delta set on
00037         */
00038         DeltaSet(Set::Holder hSet);
00039 
00040 
00041     // ----- DeltaSet accessors ---------------------------------------------
00042 
00043     public:
00044         /**
00045         * Determine what items were in the original set.
00046         *
00047         * @return the set used to construct this DeltaSet
00048         */
00049         virtual Set::View getOriginal() const;
00050 
00051         /**
00052         * Determine if the set has been modified.
00053         *
00054         * @return  true if any items have been removed
00055         */
00056         virtual bool isModified() const;
00057 
00058         /**
00059         * Determine what items were added to the DeltaSet.
00060         *
00061         * @return a set of added items
00062         */
00063         virtual Set::View getAdded() const;
00064 
00065         /**
00066         * Determine what items were removed from the DeltaSet.
00067         *
00068         * @return an immutable set of removed items
00069         */
00070         virtual Set::View getRemoved() const;
00071 
00072         /**
00073         * Get a mutable set of items that were added to the DeltaSet.
00074         *
00075         * @return a mutable set of added items
00076         */
00077         virtual Set::Handle ensureAdded();
00078 
00079         /**
00080         * Get a mutable set of items that are removed in the DeltaSet.
00081         *
00082         * @return a mutable set of removed items
00083         */
00084         virtual Set::Handle ensureRemoved();
00085 
00086         /**
00087         * Apply the changes to the underlying set ("commit").
00088         */
00089         virtual void resolve();
00090 
00091         /**
00092         * Discard the changes to the set ("rollback").
00093         */
00094         virtual void reset();
00095 
00096 
00097     // ----- Set interface --------------------------------------------------
00098 
00099     public:
00100         /**
00101         * {@inheritDoc}
00102         */
00103         virtual size32_t size() const;
00104 
00105         /**
00106         * {@inheritDoc}
00107         */
00108         virtual bool contains(Object::View v) const;
00109 
00110         /**
00111         * {@inheritDoc}
00112         */
00113         virtual Iterator::Handle iterator() const;
00114 
00115         /**
00116         * {@inheritDoc}
00117         */
00118         virtual Muterator::Handle iterator();
00119 
00120         /**
00121         * {@inheritDoc}
00122         */
00123         virtual ObjectArray::Handle toArray(ObjectArray::Handle hao = NULL) const;
00124 
00125         /**
00126         * {@inheritDoc}
00127         */
00128         virtual bool add(Object::Holder oh);
00129 
00130         /**
00131         * {@inheritDoc}
00132         */
00133         virtual bool remove(Object::View v);
00134 
00135         /**
00136         * {@inheritDoc}
00137         */
00138         virtual void clear();
00139 
00140 
00141     // ----- data members ---------------------------------------------------
00142 
00143     protected:
00144         /**
00145         * The underlying set (assumed immutable).
00146         */
00147         FinalHolder<Set> f_ohSetOrig;
00148 
00149         /**
00150         * The added items.
00151         */
00152         MemberHandle<Set> m_hSetAdded;
00153 
00154         /**
00155         * The removed items.
00156         */
00157         MemberHandle<Set> m_hSetRemoved;
00158     };
00159 
00160 COH_CLOSE_NAMESPACE2
00161 
00162 #endif // COH_DELTA_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.