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

F79659-03

coherence/util/aggregator/TopNAggregator.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_TOP_N_AGGREGATOR_HPP
00008 #define COH_TOP_N_AGGREGATOR_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofWriter.hpp"
00014 #include "coherence/io/pof/PortableObject.hpp"
00015 #include "coherence/util/InvocableMap.hpp"
00016 #include "coherence/util/SortedBag.hpp"
00017 #include "coherence/util/ValueExtractor.hpp"
00018 
00019 
00020 COH_OPEN_NAMESPACE3(coherence,util,aggregator)
00021 
00022 using coherence::io::pof::PofReader;
00023 using coherence::io::pof::PofWriter;
00024 using coherence::io::pof::PortableObject;
00025 
00026 
00027 /**
00028 * TopNAggregator is a ParallelAwareAggregator that aggregates the top <i>N</i>
00029 * extracted values into an array.  The extracted values must not be null, but
00030 * do not need to be unique.
00031 *
00032 * @author rhl 2013.04.24
00033 */
00034 class COH_EXPORT TopNAggregator
00035     : public class_spec<TopNAggregator,
00036         extends<Object>,
00037         implements<PortableObject, InvocableMap::ParallelAwareAggregator,
00038                    InvocableMap::ParallelAwareAggregator::PartialResultAggregator> >
00039     {
00040     friend class factory<TopNAggregator>;
00041 
00042     // ----- constructors ---------------------------------------------------
00043 
00044     protected:
00045         /**
00046         * @internal
00047         */
00048         TopNAggregator();
00049 
00050         /**
00051         * Construct a TopNAggregator that will aggregate the top extracted values,
00052         * as determined by the specified comparator.
00053         *
00054         * @param vExtractor   the extractor
00055         * @param vComparator  the comparator for extracted values
00056         * @param cResults     the maximum number of results to return
00057         */
00058         TopNAggregator(ValueExtractor::View vExtractor, Comparator::View vComparator, int32_t cResults);
00059 
00060     private:
00061         /**
00062         * Blocked copy constructor.
00063         */
00064         TopNAggregator(const TopNAggregator&);
00065 
00066 
00067     // ----- inner class: PartialResult -------------------------------------
00068 
00069     public:
00070         /**
00071         * The sorted partial result.
00072         */
00073         class COH_EXPORT PartialResult
00074             : public class_spec<PartialResult,
00075                 extends<SortedBag>,
00076                 implements<PortableObject> >
00077         {
00078         friend class factory<PartialResult>;
00079 
00080         // ----- constructors -----------------------------------------------
00081 
00082         protected:
00083             /**
00084             * @internal
00085             */
00086            PartialResult();
00087 
00088             /**
00089             * @internal
00090             */
00091             PartialResult(Comparator::View vComparator);
00092 
00093         private:
00094             /**
00095             * Blocked copy constructor.
00096             */
00097             PartialResult(const PartialResult& that);
00098 
00099 
00100         // ----- PortableObject methods -------------------------------------
00101 
00102         public:
00103             /**
00104             * {@inheritDoc}
00105             */
00106             virtual void readExternal(PofReader::Handle hIn);
00107 
00108             /**
00109             * {@inheritDoc}
00110             */
00111             virtual void writeExternal(PofWriter::Handle hOut) const;
00112         };
00113 
00114 
00115     // ----- ParallelAwareAggregator Interface  -----------------------------
00116 
00117     public:
00118         /**
00119         * {@inheritDoc}
00120         */
00121         InvocableMap::EntryAggregator::Handle getParallelAggregator();
00122 
00123         /**
00124         * {@inheritDoc}
00125         */
00126         Object::Holder aggregateResults(Collection::View vColResults);
00127 
00128         /**
00129         * {@inheritDoc}
00130         */
00131         Object::Holder aggregate(Set::View vSetEntries);
00132 
00133 
00134 
00135     // ----- PartialResultAggregator methods --------------------------------
00136 
00137     public:
00138         /**
00139         * {@inheritDoc}
00140         */
00141         Object::Holder aggregatePartialResults(Collection::View vColPartialResults);
00142 
00143 
00144 
00145     // ----- internal methods -----------------------------------------------
00146 
00147     protected:
00148         /**
00149         * Add the specified values to the result if they are within the top-N.
00150         *
00151         * @param vIterValues  the iterator of values to add
00152         * @param hResult      the result
00153         */
00154         void addToResult(Iterator::Handle hIterValues, PartialResult::Handle hResult);
00155 
00156         /**
00157         * Finalize the partial aggregation result.
00158         *
00159         * @param result  the partial result
00160         *
00161         * @return the final aggregation result
00162         */
00163         ObjectArray::Handle finalizeResult(PartialResult::View vResult);
00164 
00165 
00166     // ----- PortableObject methods -----------------------------------------
00167 
00168     public:
00169         /**
00170         * {@inheritDoc}
00171         */
00172         virtual void readExternal(PofReader::Handle hIn);
00173 
00174         /**
00175         * {@inheritDoc}
00176         */
00177         virtual void writeExternal(PofWriter::Handle hOut) const;
00178 
00179 
00180     // ----- data members ---------------------------------------------------
00181 
00182     public:
00183         /**
00184         * True iff this aggregator is to be used in parallel.
00185         */
00186         bool m_fParallel;
00187 
00188         /**
00189         * The ValueExtractor used by this aggregator.
00190         */
00191         FinalView<ValueExtractor> f_vExtractor;
00192 
00193         /**
00194         * The Comparator used to order the extracted values.
00195         */
00196         FinalView<Comparator> f_vComparator;
00197 
00198         /**
00199         * The maximum number of results to include in the aggregation result.
00200         */
00201         int32_t m_cResults;
00202     };
00203 
00204 COH_CLOSE_NAMESPACE3
00205 
00206 #endif // COH_TOP_N_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.