Oracle® Fusion Middleware C++ API Reference for Oracle Coherence
12c (12.2.1.3.0)

E80355-01

coherence/util/processor/VersionedPutAll.hpp

00001 /*
00002 * VersionedPutAll.hpp
00003 *
00004 * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
00005 *
00006 * Oracle is a registered trademarks of Oracle Corporation and/or its
00007 * affiliates.
00008 *
00009 * This software is the confidential and proprietary information of Oracle
00010 * Corporation. You shall not disclose such confidential and proprietary
00011 * information and shall use it only in accordance with the terms of the
00012 * license agreement you entered into with Oracle.
00013 *
00014 * This notice may not be removed or altered.
00015 */
00016 #ifndef COH_VERSIONED_PUT_ALL_HPP
00017 #define COH_VERSIONED_PUT_ALL_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/io/pof/PofReader.hpp"
00022 #include "coherence/io/pof/PofWriter.hpp"
00023 #include "coherence/io/pof/PortableObject.hpp"
00024 #include "coherence/util/InvocableMap.hpp"
00025 #include "coherence/util/Map.hpp"
00026 #include "coherence/util/processor/AbstractProcessor.hpp"
00027 
00028 COH_OPEN_NAMESPACE3(coherence,util, processor)
00029 
00030 using coherence::io::pof::PofReader;
00031 using coherence::io::pof::PofWriter;
00032 using coherence::io::pof::PortableObject;
00033 using coherence::util::InvocableMap;
00034 using coherence::util::Map;
00035 
00036 
00037 /**
00038 * VersionedPutAll is an EntryProcessor that assumes that entry values
00039 * implement Versionable interface and performs an
00040 * InvocableMap::Entry#setValue operation only for entries whose versions
00041 * match to versions of the corresponding current values. In case of the
00042 * match, the VersionedPutAll will increment the version indicator before
00043 * each value is updated.
00044 *
00045 * @author tb  2008.04.28
00046 */
00047 class COH_EXPORT VersionedPutAll
00048     : public class_spec<VersionedPutAll,
00049         extends<AbstractProcessor>,
00050         implements<PortableObject> >
00051     {
00052     friend class factory<VersionedPutAll>;
00053 
00054     // ----- constructors ---------------------------------------------------
00055 
00056     protected:
00057         /**
00058         * Construct a VersionedPutAll.
00059         */
00060         VersionedPutAll();
00061 
00062         /**
00063         * Construct a VersionedPutAll processor that updates an entry with a
00064         * new value if and only if the version of the new value matches to
00065         * the version of the current entry's value (which must exist). This
00066         * processor optionally returns a map of entries that have not been
00067         * updated (the versions did not match).
00068         *
00069         * @param vMap          a map of values to update entries with
00070         * @param fAllowInsert  specifies whether or not an insert should be
00071         *                      allowed (no currently existing value)
00072         * @param fReturn       specifies whether or not the processor should
00073         *                      return the entries that have not been updated
00074         */
00075         VersionedPutAll(Map::View vMap, bool fAllowInsert = false,
00076                 bool fReturn = false);
00077 
00078 
00079     // ----- InvocableMap::EntryProcessor interface -------------------------
00080 
00081     public:
00082         /**
00083         * {@inheritDoc}
00084         */
00085         virtual Object::Holder process(InvocableMap::Entry::Handle hEntry) const;
00086 
00087         /**
00088         * {@inheritDoc}
00089         */
00090         virtual Map::View processAll(Set::View vsetEntries) const;
00091 
00092 
00093     // ----- PortableObject interface ---------------------------------------
00094 
00095     public:
00096         /**
00097         * {@inheritDoc}
00098         */
00099         virtual void readExternal(PofReader::Handle hIn);
00100 
00101         /**
00102         * {@inheritDoc}
00103         */
00104         virtual void writeExternal(PofWriter::Handle hOut) const;
00105 
00106 
00107     // ----- Object interface -----------------------------------------------
00108 
00109     public:
00110         /**
00111         * {@inheritDoc}
00112         */
00113         virtual bool equals(Object::View v) const;
00114 
00115         /**
00116         * {@inheritDoc}
00117         */
00118         virtual size32_t hashCode() const;
00119 
00120 
00121     // ----- helper functions -----------------------------------------------
00122 
00123     protected:
00124         /**
00125         * Process the given entry.
00126         */
00127         virtual Object::Holder processEntry(
00128             InvocableMap::Entry::Handle hEntry,
00129             Map::View vMap,
00130             bool fInsert,
00131             bool fReturn) const;
00132 
00133 
00134     // ----- data members ---------------------------------------------------
00135 
00136     protected:
00137         /**
00138         * Specifies the map of new values.
00139         */
00140         FinalView<Map> f_vMap;
00141 
00142         /**
00143         * Specifies whether or not an insert is allowed.
00144         */
00145         bool m_fInsert;
00146 
00147         /**
00148         * Specifies whether or not a return value is required.
00149         */
00150         bool m_fReturn;
00151     };
00152 
00153 COH_CLOSE_NAMESPACE3
00154 
00155 #endif // COH_VERSIONED_PUT_ALL_HPP
Copyright © 2000, 2017, Oracle and/or its affiliates. All rights reserved.