Oracle® Fusion Middleware C++ API Reference for Oracle Coherence
12c (12.2.1.1.0)

E69640-01

GroupAggregator Class Reference

#include <coherence/util/aggregator/GroupAggregator.hpp>

List of all members.


Detailed Description

The GroupAggregator provides an ability to split a subset of entries in an InvocableMap into a collection of non-intersecting subsets and then aggregate them separately and independently.

The splitting (grouping) is performed using the results of the underlying ValueExtractor in such a way that two entries will belong to the same group if and only if the result of the corresponding ValueExtractor::extract extract call produces the same value or tuple (list of values). After the entries are split into the groups, the underlying aggregator is applied separately to each group. The result of the aggregation by the GroupAggregator is a Map that has distinct values (or tuples) as keys and results of the individual aggregation as values. Additionally, those results could be further reduced using an optional Filter object.

Informally speaking, this aggregator is analogous to the SQL "group by" and "having" clauses. Note that the "having" Filter is applied independently on each server against the partial aggregation results; this generally implies that data affinity is required to ensure that all required data used to generate a given result exists within a single cache partition. In other words, the "group by" predicate should not span multiple partitions if the "having" clause is used.

The GroupAggregator is somewhat similar to the DistinctValues aggregator, which returns back a list of distinct values (tuples) without performing any additional aggregation work.

Unlike many other concrete EntryAggregator implementations that are constructed directly, instances of GroupAggregator should only be created using one of the factory methods: create(ValueExtractor, InvocableMap::EntryAggregator) create(vExtractor, hAggregator), create(ValueExtractor, InvocableMap::EntryAggregator, Filter),

Author:
djl 2008.05.16

Public Types

typedef spec::Handle Handle
 GroupAggregator Handle definition.
typedef spec::View View
 GroupAggregator View definition.
typedef spec::Holder Holder
 GroupAggregator Holder definition.

Public Member Functions

virtual Object::Holder aggregate (Set::View vSetEntries)
 
virtual void readExternal (PofReader::Handle hIn)
 
virtual void writeExternal (PofWriter::Handle hOut) const
 
virtual bool equals (Object::View v) const
 
virtual size32_t hashCode () const
 
virtual TypedHandle
< const String > 
toString () const
 
virtual
ValueExtractor::View 
getExtractor () const
 Obtain the underlying ValueExtractor.
virtual
InvocableMap::EntryAggregator::Handle 
getAggregator ()
 Obtain the underlying EntryAggregator.
virtual
InvocableMap::EntryAggregator::View 
getAggregator () const
 Obtain the underlying EntryAggregator.

Static Public Member Functions

static
GroupAggregator::Handle 
create ()
 Default constructor (necessary for the PortableObject interface).
static
GroupAggregator::Handle 
create (ValueExtractor::View vExtractor, InvocableMap::EntryAggregator::Handle hAggregator, Filter::View vFilter=NULL)
 Create an instance of GroupAggregator based on a specified extractor and an coherence::util::InvocableMap::EntryAggregator and a result evaluation filter.

Protected Attributes

FinalView
< ValueExtractor > 
f_vExtractor
 The underlying ValueExtractor.
FinalHandle
< InvocableMap::EntryAggregator > 
f_hAggregator
 The underlying EntryAggregator.
FinalView< Filter > f_vFilter
 The underlying Filter.

Member Function Documentation

static GroupAggregator::Handle create ( ValueExtractor::View  vExtractor,
InvocableMap::EntryAggregator::Handle  hAggregator,
Filter::View  vFilter = NULL 
) [static]

Create an instance of GroupAggregator based on a specified extractor and an coherence::util::InvocableMap::EntryAggregator and a result evaluation filter.

Parameters:
vExtractor a ValueExtractor that will be used to split a set of InvocableMap entries into distinct groups
hAggregator an underlying EntryAggregator
vFilter an optional Filter object used to filter out results of individual group aggregation results

virtual ValueExtractor::View getExtractor (  )  const [virtual]

Obtain the underlying ValueExtractor.

Returns:
the underlying ValueExtractor

virtual InvocableMap::EntryAggregator::Handle getAggregator (  )  [virtual]

Obtain the underlying EntryAggregator.

Returns:
the underlying EntryAggregator

virtual InvocableMap::EntryAggregator::View getAggregator (  )  const [virtual]

Obtain the underlying EntryAggregator.

Returns:
the underlying EntryAggregator


The documentation for this class was generated from the following file:
Copyright © 2000, 2016, Oracle and/or its affiliates. All rights reserved.