souffle  2.0.2-371-g6315b36
Public Member Functions | Protected Member Functions
souffle::ram::Aggregate Class Reference

Aggregation function applied on some relation. More...

#include <Aggregate.h>

Inheritance diagram for souffle::ram::Aggregate:
Inheritance graph
Collaboration diagram for souffle::ram::Aggregate:
Collaboration graph

Public Member Functions

 Aggregate (Own< Operation > nested, AggregateOp fun, std::string rel, Own< Expression > expression, Own< Condition > condition, int ident)
 
void apply (const NodeMapper &map) override
 Apply the mapper to all child nodes. More...
 
Aggregateclone () const override
 Create a clone (i.e. More...
 
std::vector< const Node * > getChildNodes () const override
 Obtain list of all embedded child nodes. More...
 
- Public Member Functions inherited from souffle::ram::RelationOperation
const std::string & getRelation () const
 Get search relation. More...
 
 RelationOperation (std::string rel, int ident, Own< Operation > nested, std::string profileText="")
 
- Public Member Functions inherited from souffle::ram::TupleOperation
std::vector< const Node * > getChildNodes () const override
 Obtain list of all embedded child nodes. More...
 
int getTupleId () const
 Get identifier. More...
 
void setTupleId (int id)
 Set identifier. More...
 
 TupleOperation (int ident, Own< Operation > nested, std::string profileText="")
 
- Public Member Functions inherited from souffle::ram::NestedOperation
void apply (const NodeMapper &map) override
 Apply the mapper to all child nodes. More...
 
OperationgetOperation () const
 Get nested operation. More...
 
const std::string & getProfileText () const
 Get profile text. More...
 
 NestedOperation (Own< Operation > nested, std::string profileText="")
 
- Public Member Functions inherited from souffle::ram::Node
bool operator!= (const Node &other) const
 Inequality check for two RAM nodes. More...
 
bool operator== (const Node &other) const
 Equivalence check for two RAM nodes. More...
 
virtual void rewrite (const Node *oldNode, Own< Node > newNode)
 Rewrite a child node. More...
 
virtual ~Node ()=default
 
- Public Member Functions inherited from souffle::ram::AbstractAggregate
 AbstractAggregate (AggregateOp fun, Own< Expression > expr, Own< Condition > cond)
 
std::vector< const Node * > getChildNodes () const
 
const ConditiongetCondition () const
 Get condition. More...
 
const ExpressiongetExpression () const
 Get target expression. More...
 
AggregateOp getFunction () const
 Get aggregation function. More...
 
virtual ~AbstractAggregate ()=default
 

Protected Member Functions

bool equal (const Node &node) const override
 Equality check for two RAM nodes. More...
 
void print (std::ostream &os, int tabpos) const override
 Pretty print with indentation. More...
 
- Protected Member Functions inherited from souffle::ram::RelationOperation
bool equal (const Node &node) const override
 Equality check for two RAM nodes. More...
 
- Protected Member Functions inherited from souffle::ram::TupleOperation
bool equal (const Node &node) const override
 Equality check for two RAM nodes. More...
 
- Protected Member Functions inherited from souffle::ram::NestedOperation
void print (std::ostream &os, int tabpos) const override
 Pretty print with indentation. More...
 
- Protected Member Functions inherited from souffle::ram::Operation
void print (std::ostream &os) const override
 Print RAM node. More...
 
- Protected Member Functions inherited from souffle::ram::AbstractAggregate
bool equal (const Node &node) const
 
void print (std::ostream &os, int) const
 

Additional Inherited Members

- Static Protected Member Functions inherited from souffle::ram::Operation
static void print (const Operation *operation, std::ostream &os, int tabpos)
 Pretty print jump-bed. More...
 
- Protected Attributes inherited from souffle::ram::RelationOperation
const std::string relation
 Search relation. More...
 
- Protected Attributes inherited from souffle::ram::TupleOperation
int identifier
 Identifier for the tuple, corresponding to its position in the loop nest. More...
 
- Protected Attributes inherited from souffle::ram::NestedOperation
Own< OperationnestedOperation
 Nested operation. More...
 
const std::string profileText
 Text used by the profiler. More...
 
- Protected Attributes inherited from souffle::ram::AbstractAggregate
Own< Conditioncondition
 Aggregation tuple condition. More...
 
Own< Expressionexpression
 Aggregation expression. More...
 
const AggregateOp function
 Aggregation function. More...
 

Detailed Description

Aggregation function applied on some relation.

For example:

t0.0 = COUNT FOR ALL t0 IN A

Applies the function COUNT to determine the number of elements in A.

Definition at line 53 of file Aggregate.h.

Constructor & Destructor Documentation

◆ Aggregate()

souffle::ram::Aggregate::Aggregate ( Own< Operation nested,
AggregateOp  fun,
std::string  rel,
Own< Expression expression,
Own< Condition condition,
int  ident 
)
inline

Definition at line 55 of file Aggregate.h.

56  {
58  auto children = AbstractAggregate::getChildNodes();

References souffle::ram::TupleOperation::getChildNodes(), and souffle::ram::AbstractAggregate::getChildNodes().

Here is the call graph for this function:

Member Function Documentation

◆ apply()

void souffle::ram::Aggregate::apply ( const NodeMapper )
inlineoverridevirtual

Apply the mapper to all child nodes.

Reimplemented from souffle::ram::Node.

Definition at line 72 of file Aggregate.h.

74  :
75  void print(std::ostream& os, int tabpos) const override {
76  os << times(" ", tabpos);

◆ clone()

Aggregate* souffle::ram::Aggregate::clone ( ) const
inlineoverridevirtual

Create a clone (i.e.

deep copy) of this node

Implements souffle::ram::RelationOperation.

Reimplemented in souffle::ram::ParallelAggregate.

Definition at line 67 of file Aggregate.h.

68  {
70  condition = map(std::move(condition));

References souffle::ram::NestedOperation::apply(), souffle::ram::AbstractAggregate::condition, souffle::ram::AbstractAggregate::expression, and souffle::map().

Here is the call graph for this function:

◆ equal()

bool souffle::ram::Aggregate::equal ( const Node ) const
inlineoverrideprotectedvirtual

Equality check for two RAM nodes.

Default action is that nothing needs to be checked.

Reimplemented from souffle::ram::Node.

Definition at line 91 of file Aggregate.h.

◆ getChildNodes()

std::vector<const Node*> souffle::ram::Aggregate::getChildNodes ( ) const
inlineoverridevirtual

Obtain list of all embedded child nodes.

Reimplemented from souffle::ram::Node.

Definition at line 60 of file Aggregate.h.

◆ print()

void souffle::ram::Aggregate::print ( std::ostream &  os,
int  tabpos 
) const
inlineoverrideprotectedvirtual

Pretty print with indentation.

Implements souffle::ram::Operation.

Reimplemented in souffle::ram::ParallelAggregate.

Definition at line 79 of file Aggregate.h.

80  {
81  os << " WHERE " << getCondition();
82  }
83  os << std::endl;
84  RelationOperation::print(os, tabpos + 1);
85  }
86 
87  bool equal(const Node& node) const override {
88  const auto& other = static_cast<const Aggregate&>(node);

The documentation for this class was generated from the following file:
souffle::ram::AbstractAggregate::equal
bool equal(const Node &node) const
Definition: AbstractAggregate.h:94
souffle::ram::TupleOperation::getChildNodes
std::vector< const Node * > getChildNodes() const override
Obtain list of all embedded child nodes.
Definition: TupleOperation.h:52
souffle::ram::AbstractAggregate::getCondition
const Condition & getCondition() const
Get condition.
Definition: AbstractAggregate.h:53
souffle::ram::NestedOperation::apply
void apply(const NodeMapper &map) override
Apply the mapper to all child nodes.
Definition: NestedOperation.h:75
souffle::ram::NestedOperation::getOperation
Operation & getOperation() const
Get nested operation.
Definition: NestedOperation.h:62
souffle::map
auto map(const std::vector< A > &xs, F &&f)
Applies a function to each element of a vector and returns the results.
Definition: ContainerUtil.h:158
souffle::ram::Aggregate::Aggregate
Aggregate(Own< Operation > nested, AggregateOp fun, std::string rel, Own< Expression > expression, Own< Condition > condition, int ident)
Definition: Aggregate.h:55
souffle::ram::Aggregate::equal
bool equal(const Node &node) const override
Equality check for two RAM nodes.
Definition: Aggregate.h:91
souffle::ram::RelationOperation::relation
const std::string relation
Search relation.
Definition: RelationOperation.h:60
souffle::clone
auto clone(const std::vector< A * > &xs)
Definition: ContainerUtil.h:172
souffle::times
detail::multiplying_printer< T > times(const T &value, unsigned num)
A utility printing a given value multiple times.
Definition: StreamUtil.h:322
souffle::ram::AbstractAggregate::expression
Own< Expression > expression
Aggregation expression.
Definition: AbstractAggregate.h:104
souffle::ram::RelationOperation::equal
bool equal(const Node &node) const override
Equality check for two RAM nodes.
Definition: RelationOperation.h:54
souffle::ram::TupleOperation::getTupleId
int getTupleId() const
Get identifier.
Definition: TupleOperation.h:43
souffle::AggregateOp::COUNT
@ COUNT
souffle::ram::Aggregate::print
void print(std::ostream &os, int tabpos) const override
Pretty print with indentation.
Definition: Aggregate.h:79
souffle::ram::AbstractAggregate::getChildNodes
std::vector< const Node * > getChildNodes() const
Definition: AbstractAggregate.h:69
souffle::ram::NestedOperation::print
void print(std::ostream &os, int tabpos) const override
Pretty print with indentation.
Definition: NestedOperation.h:80
souffle::ram::AbstractAggregate::condition
Own< Condition > condition
Aggregation tuple condition.
Definition: AbstractAggregate.h:107