libdap++ Updated for version 3.8.2

libdap::Clause Struct Reference

Holds a fragment of a constraint expression. More...

#include <Clause.h>

Collaboration diagram for libdap::Clause:

List of all members.

Public Member Functions

bool boolean_clause ()
 Return true if the clause returns a boolean value.
 Clause (bool_func func, rvalue_list *rv)
 Clause ()
 Clause (const int oper, rvalue *a1, rvalue_list *rv)
 Clause (btp_func func, rvalue_list *rv)
bool OK ()
 Checks the "representation invariant" of a clause.
bool value (DDS &dds, BaseType **value)
 Evaluate a clause that returns a value via a BaseType pointer. This method should be called only for those clauses that return values.
bool value (DDS &dds)
 Evaluate a clause which returns a boolean value This method must only be evaluated for clauses with relational expressions or boolean functions.
bool value_clause ()
 Return true if the clause returns a value in a BaseType pointer.
virtual ~Clause ()

Detailed Description

The selection part of a a DAP constraint expression may contain one or more clauses, separated by ampersands (&). This is modeled in the DDS class structure as a singly-linked list of Clause objects. In addition, a constraint expression may be a single function call, also represented in the DDS using an instance of Clause.

Each clause object can contain a representation of one of three possible forms:

  1. A relational clause, where an operator tests the relation between two operands. This kind of clause evaluates to a boolean value. For example: a > b.

  2. A boolean function, where some function operates on arguments in the clause to return a boolean value. For example, consider a scalar A and a list L. The clause find(A,L) might return TRUE if A is a member of L (if the find() function is defined).

  3. A clause that returns a pointer to a DAP BaseType value. This is a clause that evaluates to some data value (be it scalar or vector). For example, sig0() might be included in the constraint expression parser to calculate density from pressure, temperature, and salinity. In this case, sig0(p,t,s) would be a clause that evaluates to a data value.

This might be a bit confusing; in the first, and by far more common, form of constraint expressions (CEs) only the first two types of clauses may appear. In the second form of the CE only the last type of clause may occur. The Clause class, however, can store them all.

The Clause object holds the constraint expression after it has been parsed. The parser renders the relational operator into an integer, and the functions into pointers.

See also:
DDS::parse_constraint

Definition at line 90 of file Clause.h.


Constructor & Destructor Documentation

libdap::Clause::Clause ( const int  oper,
rvalue a1,
rvalue_list rv 
)

Definition at line 54 of file Clause.cc.

References OK().

Here is the call graph for this function:

libdap::Clause::Clause ( bool_func  func,
rvalue_list rv 
)

Definition at line 60 of file Clause.cc.

References OK().

Here is the call graph for this function:

libdap::Clause::Clause ( btp_func  func,
rvalue_list rv 
)

Definition at line 71 of file Clause.cc.

References OK().

Here is the call graph for this function:

libdap::Clause::Clause ( )

Definition at line 82 of file Clause.cc.

libdap::Clause::~Clause ( ) [virtual]

Definition at line 91 of file Clause.cc.


Member Function Documentation

bool libdap::Clause::boolean_clause ( )

Definition at line 130 of file Clause.cc.

References OK().

Here is the call graph for this function:

bool libdap::Clause::OK ( )

Definition at line 107 of file Clause.cc.

Referenced by boolean_clause(), Clause(), value(), and value_clause().

bool libdap::Clause::value ( DDS dds)
Parameters:
datasetThis is passed to the rvalue::bvalue() method.
ddsUse variables from this DDS when evaluating the expression
Returns:
True if the clause is true, false otherwise.
Exceptions:
InternalErrif called for a clause that returns a BaseType pointer.

Definition at line 156 of file Clause.cc.

References libdap::build_btp_args(), libdap::rvalue::bvalue(), OK(), and libdap::BaseType::ops().

Referenced by libdap::ConstraintEvaluator::eval_function(), libdap::ConstraintEvaluator::eval_function_clauses(), and value().

Here is the call graph for this function:

bool libdap::Clause::value ( DDS dds,
BaseType **  value 
)
Parameters:
datasetThis is passed to the function.
ddsUse variables from this DDS when evaluating the expression
valueA value-result parameter
Returns:
True if the the BaseType pointer is not null, false otherwise.
Exceptions:
InternalErrif called for a clause that returns a boolean value. Not that this method itself does return a boolean value.

Definition at line 204 of file Clause.cc.

References libdap::build_btp_args(), OK(), and value().

Here is the call graph for this function:

bool libdap::Clause::value_clause ( )

Definition at line 139 of file Clause.cc.

References OK().

Referenced by libdap::ConstraintEvaluator::function_clauses(), and libdap::ConstraintEvaluator::functional_expression().

Here is the call graph for this function:


The documentation for this struct was generated from the following files: