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

F79659-03

coherence/util/aggregator/AbstractComparableAggregator.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_ABSTRACT_COMPARABLE_AGGREGATOR_HPP
00008 #define COH_ABSTRACT_COMPARABLE_AGGREGATOR_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/aggregator/AbstractAggregator.hpp"
00013 #include "coherence/util/Comparator.hpp"
00014 #include "coherence/util/ValueExtractor.hpp"
00015 
00016 COH_OPEN_NAMESPACE3(coherence,util,aggregator)
00017 
00018 using coherence::io::pof::PofReader;
00019 using coherence::io::pof::PofWriter;
00020 using coherence::io::pof::PortableObject;
00021 
00022 using coherence::util::Comparator;
00023 using coherence::util::ValueExtractor;
00024 
00025 
00026 /**
00027 * Abstract aggregator that processes values extracted from a set of entries
00028 * in a Map, with knowledge of how to compare those values. There are two ways
00029 * to use the AbstractComparableAggregator:
00030 * <ul>
00031 * <li>All the extracted objects must implement <tt>Comparable</tt>, or</li>
00032 * <li>The AbstractComparableAggregator has to be provided with a
00033 * <tt>Comparator object</tt>.</li>
00034 * </ul>
00035 * If the set of entries passed to <tt>aggregate</tt> is empty, a
00036 * <tt>NULL</tt> result is returned.
00037 *
00038 * @author djl/pp  2008.05.09
00039 */
00040 class COH_EXPORT AbstractComparableAggregator
00041     : public abstract_spec<AbstractComparableAggregator,
00042         extends<AbstractAggregator> >
00043     {
00044     // ----- constructors ---------------------------------------------------
00045 
00046     protected:
00047         /**
00048         * @internal
00049         */
00050         AbstractComparableAggregator();
00051 
00052         /**
00053         * Construct an AbstractComparableAggregator object.
00054         *
00055         * @param vExtractor   the extractor that provides an object to be 
00056         *                     compared
00057         * @param vComparator  the comparator used to compare the extracted
00058         *                     object, if NULL then the extracted object must
00059         *                     implement Comparable
00060         */
00061         AbstractComparableAggregator(ValueExtractor::View vExtractor,
00062                 Comparator::View vComparator = NULL);
00063 
00064         /**
00065         * Construct an AbstractComparableAggregator that will aggregate 
00066         * values extracted from a set of InvocableMap::Entry objects.
00067         *
00068         * @param vsMethod     the name of the method that could be 
00069         *                     invoked via reflection and that returns values 
00070         *                     to aggregate; this parameter can also be a 
00071         *                     dot-delimited sequence of method names which 
00072         *                     would result in an aggregator based on the
00073         *                     ChainedExtractor that is based on an array of
00074         *                     corresponding ReflectionExtractor objects
00075         * @param vComparator  the comparator used to compare the extracted
00076         *                     object, if NULL then the extracted object must
00077         *                     implement Comparable
00078         *
00079         * @since Coherence 12.1.2
00080         */
00081         AbstractComparableAggregator(String::View vsMethod,
00082                 Comparator::View vComparator = NULL);
00083 
00084     private:
00085         /**
00086         * Blocked copy constructor.
00087         */
00088         AbstractComparableAggregator(const AbstractComparableAggregator&);
00089 
00090 
00091     // ----- AbstractAggregator Interface  ----------------------------------
00092 
00093     protected:
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual void init(bool fFinal);
00098 
00099         /**
00100         * {@inheritDoc}
00101         */
00102         virtual Object::Holder finalizeResult(bool fFinal);
00103 
00104 
00105     // ----- PortableObject interface ---------------------------------------
00106 
00107     public:
00108         /**
00109         * {@inheritDoc}
00110         */
00111         virtual void readExternal(PofReader::Handle hIn);
00112 
00113         /**
00114         * {@inheritDoc}
00115         */
00116         virtual void writeExternal(PofWriter::Handle hOut) const;
00117 
00118 
00119     // ----- data members ---------------------------------------------------
00120 
00121     protected:
00122         /**
00123         * The count of processed entries.
00124         */
00125         int32_t m_count;
00126 
00127         /**
00128         * The running result value.
00129         */
00130         MemberView<Object> m_vResult;
00131 
00132         /**
00133         * The comparator to use for comparing extracted values.
00134         */
00135         FinalView<Comparator> f_vComparator;
00136     };
00137 
00138 COH_CLOSE_NAMESPACE3
00139 
00140 #endif // COH_ABSTRACT_COMPARABLE_AGGREGATOR_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.