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_GROUP_AGGREGATOR_HPP 00008 #define COH_GROUP_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/Filter.hpp" 00017 #include "coherence/util/ValueExtractor.hpp" 00018 00019 COH_OPEN_NAMESPACE3(coherence,util,aggregator) 00020 00021 using coherence::io::pof::PofReader; 00022 using coherence::io::pof::PofWriter; 00023 using coherence::io::pof::PortableObject; 00024 00025 00026 /** 00027 * The GroupAggregator provides an ability to split a subset of entries in an 00028 * InvocableMap into a collection of non-intersecting subsets and then 00029 * aggregate them separately and independently. The splitting (grouping) is 00030 * performed using the results of the underlying ValueExtractor in such a way 00031 * that two entries will belong to the same group if and only if the result of 00032 * the corresponding ValueExtractor#extract extract call produces the 00033 * same value or tuple (list of values). After the entries are split into the 00034 * groups, the underlying aggregator is applied separately to each group. The 00035 * result of the aggregation by the GroupAggregator is a Map that has distinct 00036 * values (or tuples) as keys and results of the individual aggregation as 00037 * values. Additionally, those results could be further reduced using an 00038 * optional Filter object. 00039 * 00040 * Informally speaking, this aggregator is analogous to the SQL "group by" and 00041 * "having" clauses. Note that the "having" Filter is applied independently on 00042 * each server against the partial aggregation results; this generally implies 00043 * that data affinity is required to ensure that all required data used to 00044 * generate a given result exists within a single cache partition. 00045 * In other words, the "group by" predicate should not span multiple 00046 * partitions if the "having" clause is used. 00047 * 00048 * The GroupAggregator is somewhat similar to the DistinctValues 00049 * aggregator, which returns back a list of distinct values (tuples) without 00050 * performing any additional aggregation work. 00051 * 00052 * <b>Unlike many other concrete EntryAggregator implementations that are 00053 * constructed directly, instances of GroupAggregator should only be created 00054 * using one of the factory methods:</b> 00055 * #create(ValueExtractor, InvocableMap::EntryAggregator) 00056 * #create(vExtractor, hAggregator), 00057 * #create(ValueExtractor, InvocableMap::EntryAggregator, Filter), 00058 * 00059 * @author djl 2008.05.16 00060 */ 00061 class COH_EXPORT GroupAggregator 00062 : public class_spec<GroupAggregator, 00063 extends<Object>, 00064 implements<PortableObject, InvocableMap::EntryAggregator> > 00065 { 00066 friend class factory<GroupAggregator>; 00067 00068 // ----- factory methods ------------------------------------------------ 00069 00070 public: 00071 /** 00072 * Default constructor (necessary for the PortableObject interface). 00073 */ 00074 static GroupAggregator::Handle create(); 00075 00076 /** 00077 * Create an instance of GroupAggregator based on a specified 00078 * extractor and an coherence::util::InvocableMap::EntryAggregator 00079 * and a result evaluation filter. 00080 * 00081 * @param vExtractor a ValueExtractor that will be used to split a 00082 * set of InvocableMap entries into distinct 00083 * groups 00084 * @param hAggregator an underlying EntryAggregator 00085 * @param vFilter an optional Filter object used to filter out 00086 * results of individual group aggregation 00087 * results 00088 */ 00089 static GroupAggregator::Handle create( 00090 ValueExtractor::View vExtractor, 00091 InvocableMap::EntryAggregator::Handle hAggregator, 00092 Filter::View vFilter = NULL); 00093 00094 00095 // ----- constructors --------------------------------------------------- 00096 00097 protected: 00098 /** 00099 * @internal 00100 */ 00101 GroupAggregator(); 00102 00103 /** 00104 * @internal 00105 */ 00106 GroupAggregator(ValueExtractor::View vExtractor, 00107 InvocableMap::EntryAggregator::Handle hAggregator, 00108 Filter::View vFilter); 00109 00110 private: 00111 /** 00112 * Blocked copy constructor. 00113 */ 00114 GroupAggregator(const GroupAggregator&); 00115 00116 00117 // ----- InvocableMap::EntryAggregator interface ------------------------ 00118 00119 public: 00120 /** 00121 * {@inheritDoc} 00122 */ 00123 virtual Object::Holder aggregate(Set::View vSetEntries); 00124 00125 00126 // ----- PortableObject interface --------------------------------------- 00127 00128 public: 00129 /** 00130 * {@inheritDoc} 00131 */ 00132 virtual void readExternal(PofReader::Handle hIn); 00133 00134 /** 00135 * {@inheritDoc} 00136 */ 00137 virtual void writeExternal(PofWriter::Handle hOut) const; 00138 00139 00140 // ----- Object interface ----------------------------------------------- 00141 00142 public: 00143 /** 00144 * {@inheritDoc} 00145 */ 00146 virtual bool equals(Object::View v) const; 00147 00148 /** 00149 * {@inheritDoc} 00150 */ 00151 virtual size32_t hashCode() const; 00152 00153 /** 00154 * {@inheritDoc} 00155 */ 00156 virtual TypedHandle<const String> toString() const; 00157 00158 00159 // ----- data member accessors ------------------------------------------ 00160 00161 public: 00162 /** 00163 * Obtain the underlying ValueExtractor. 00164 * 00165 * @return the underlying ValueExtractor 00166 */ 00167 virtual ValueExtractor::View getExtractor() const; 00168 00169 /** 00170 * Obtain the underlying EntryAggregator. 00171 * 00172 * @return the underlying EntryAggregator 00173 */ 00174 virtual InvocableMap::EntryAggregator::Handle getAggregator(); 00175 00176 /** 00177 * Obtain the underlying EntryAggregator. 00178 * 00179 * @return the underlying EntryAggregator 00180 */ 00181 virtual InvocableMap::EntryAggregator::View getAggregator() const; 00182 00183 00184 // ----- data members --------------------------------------------------- 00185 00186 protected: 00187 /** 00188 * The underlying ValueExtractor. 00189 */ 00190 FinalView<ValueExtractor> f_vExtractor; 00191 00192 /** 00193 * The underlying EntryAggregator. 00194 */ 00195 FinalHandle<InvocableMap::EntryAggregator> f_hAggregator; 00196 00197 /** 00198 * The underlying Filter. 00199 */ 00200 FinalView<Filter> f_vFilter; 00201 }; 00202 00203 COH_CLOSE_NAMESPACE3 00204 00205 #endif // COH_GROUP_AGGREGATOR_HPP