00001
00002
00003
00004
00005
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
00029
00030
00031
00032
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
00043
00044 protected:
00045
00046
00047
00048 TopNAggregator();
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058 TopNAggregator(ValueExtractor::View vExtractor, Comparator::View vComparator, int32_t cResults);
00059
00060 private:
00061
00062
00063
00064 TopNAggregator(const TopNAggregator&);
00065
00066
00067
00068
00069 public:
00070
00071
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
00081
00082 protected:
00083
00084
00085
00086 PartialResult();
00087
00088
00089
00090
00091 PartialResult(Comparator::View vComparator);
00092
00093 private:
00094
00095
00096
00097 PartialResult(const PartialResult& that);
00098
00099
00100
00101
00102 public:
00103
00104
00105
00106 virtual void readExternal(PofReader::Handle hIn);
00107
00108
00109
00110
00111 virtual void writeExternal(PofWriter::Handle hOut) const;
00112 };
00113
00114
00115
00116
00117 public:
00118
00119
00120
00121 InvocableMap::EntryAggregator::Handle getParallelAggregator();
00122
00123
00124
00125
00126 Object::Holder aggregateResults(Collection::View vColResults);
00127
00128
00129
00130
00131 Object::Holder aggregate(Set::View vSetEntries);
00132
00133
00134
00135
00136
00137 public:
00138
00139
00140
00141 Object::Holder aggregatePartialResults(Collection::View vColPartialResults);
00142
00143
00144
00145
00146
00147 protected:
00148
00149
00150
00151
00152
00153
00154 void addToResult(Iterator::Handle hIterValues, PartialResult::Handle hResult);
00155
00156
00157
00158
00159
00160
00161
00162
00163 ObjectArray::Handle finalizeResult(PartialResult::View vResult);
00164
00165
00166
00167
00168 public:
00169
00170
00171
00172 virtual void readExternal(PofReader::Handle hIn);
00173
00174
00175
00176
00177 virtual void writeExternal(PofWriter::Handle hOut) const;
00178
00179
00180
00181
00182 public:
00183
00184
00185
00186 bool m_fParallel;
00187
00188
00189
00190
00191 FinalView<ValueExtractor> f_vExtractor;
00192
00193
00194
00195
00196 FinalView<Comparator> f_vComparator;
00197
00198
00199
00200
00201 int32_t m_cResults;
00202 };
00203
00204 COH_CLOSE_NAMESPACE3
00205
00206 #endif // COH_TOP_N_AGGREGATOR_HPP