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_PARALLEL_GROUP_AGGREGATOR_HPP 00008 #define COH_PARALLEL_GROUP_AGGREGATOR_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/util/aggregator/GroupAggregator.hpp" 00013 #include "coherence/util/InvocableMap.hpp" 00014 00015 COH_OPEN_NAMESPACE3(coherence,util,aggregator) 00016 00017 00018 /** 00019 * The ParallelGroupAggregator provides an ability to split a subset of 00020 * entries in an InvocableMap into a collection of non-intersecting subsets 00021 * and then aggregate them separately and independently. The splitting 00022 * (grouping) is performed using the results of the underlying ValueExtractor 00023 * in such a way that two entries will belong to the same group if and only if 00024 * the result of the corresponding ValueExtractor#extract extract call 00025 * produces the same value or tuple (list of values). After the entries are 00026 * split into the groups, the underlying aggregator is applied separately to 00027 * each group. The result of the aggregation by the GroupAggregator is a Map 00028 * that has distinct values (or tuples) as keys and results of the individual 00029 * aggregation as values. Additionally, those results could be further reduced 00030 * using an optional Filter object. 00031 * 00032 * Informally speaking, this aggregator is analogous to the SQL "group by" and 00033 * "having" clauses. Note that the "having" Filter is applied independently on 00034 * each server against the partial aggregation results; this generally implies 00035 * that data affinity is required to ensure that all required data used to 00036 * generate a given result exists within a single cache partition. 00037 * In other words, the "group by" predicate should not span multiple 00038 * partitions if the "having" clause is used. 00039 * 00040 * The ParallelGroupAggregator is somewhat similar to the DistinctValues 00041 * aggregator, which returns back a list of distinct values (tuples) without 00042 * performing any additional aggregation work. 00043 * 00044 * Unlike many other concrete EntryAggregator implementations that are 00045 * constructed directly, instances of ParallelGroupAggregator should only be 00046 * created indirectly by using the factory method of GroupAggregator. 00047 * 00048 * @deprecated as of Coherence 12.2.1 00049 * 00050 * @author djl 2008.05.16 00051 */ 00052 00053 class COH_EXPORT ParallelGroupAggregator 00054 : public class_spec<ParallelGroupAggregator, 00055 extends<GroupAggregator>, 00056 implements<InvocableMap::ParallelAwareAggregator> > 00057 { 00058 friend class factory<ParallelGroupAggregator>; 00059 00060 // ----- constructors --------------------------------------------------- 00061 00062 protected: 00063 /** 00064 * Default constructor (necessary for the PortableObject 00065 * interface). 00066 */ 00067 ParallelGroupAggregator(); 00068 00069 /** 00070 * Create an instance of GroupAggregator based on a specified 00071 * extractor and anInvocableMap::EntryAggregator 00072 * and a result evaluation filter. 00073 * <br> 00074 * If the specified aggregator is an instance of 00075 * coherence::util::InvocableMap::ParallelAwareAggregator, then a 00076 * parallel-aware instance of the GroupAggregator will be created. 00077 * Otherwise, the resulting GroupAggregator will not be 00078 * parallel-aware and could be ill-suited for aggregations run 00079 * against large partitioned caches. 00080 * 00081 * @param vExtractor a ValueExtractor that will be used to 00082 * split a set of InvocableMap entries into 00083 * distinct 00084 * groups 00085 * @param hAggregator an underlying EntryAggregator 00086 * @param vFilter an optional Filter object used to filter 00087 * out results of individual group 00088 * aggregation results 00089 */ 00090 ParallelGroupAggregator(ValueExtractor::View vExtractor, 00091 InvocableMap::ParallelAwareAggregator::Handle hAggregator, 00092 Filter::View vFilter); 00093 00094 private: 00095 /** 00096 * Blocked copy constructor. 00097 */ 00098 ParallelGroupAggregator(const ParallelGroupAggregator&); 00099 00100 00101 // ----- InvocableMap::ParallelAwareAggregator interface ---------------- 00102 00103 public: 00104 /** 00105 * {@inheritDoc} 00106 */ 00107 virtual InvocableMap::EntryAggregator::Handle 00108 getParallelAggregator(); 00109 00110 /** 00111 * {@inheritDoc} 00112 */ 00113 virtual Object::Holder aggregateResults( 00114 Collection::View vCollResults); 00115 }; 00116 00117 COH_CLOSE_NAMESPACE3 00118 00119 #endif // COH_PARALLEL_GROUP_AGGREGATOR_HPP