MADARA  3.1.8
CompositeImpliesNode.cpp
Go to the documentation of this file.
1 /* -*- C++ -*- */
2 
3 #ifndef _COMPOSITE_IMPLIES_NODE_CPP
4 #define _COMPOSITE_IMPLIES_NODE_CPP
5 
6 #ifndef _MADARA_NO_KARL_
7 
8 #include <iostream>
9 
14 
15 
16 // Ctor
17 
20  ComponentNode *left, ComponentNode *right)
21 : madara::expression::CompositeBinaryNode (logger, left, right)
22 {
23 }
24 
27 {
29  record.set_value ("=>");
30  return record;
31 }
32 
33 
39 {
40  bool left_child_can_change = false;
41  bool right_child_can_change = false;
44 
45  if (this->left_)
46  {
47  left_value = this->left_->prune (left_child_can_change);
48  if (!left_child_can_change && dynamic_cast <LeafNode *> (left_) == 0)
49  {
50  delete this->left_;
51  this->left_ = new LeafNode (*(this->logger_), left_value);
52  }
53  }
54  else
55  {
57  "KARL COMPILE ERROR: Implies has no condition\n");
58 
59  exit (-1);
60  }
61 
62  if (this->right_)
63  {
64  right_value = this->right_->prune (right_child_can_change);
65  if (!right_child_can_change && dynamic_cast <LeafNode *> (right_) == 0)
66  {
67  delete this->right_;
68  this->right_ = new LeafNode (*(this->logger_), right_value);
69  }
70  }
71  else
72  {
74  "KARL COMPILE ERROR: Implies has no expression to "
75  "evaluate if conditional is true\n");
76 
77  exit (-1);
78  }
79 
80  can_change = left_child_can_change || right_child_can_change;
81 
82  // if left_value, then return the right_value. Otherwise, 0
83  return left_value;
84 }
85 
91 {
92  madara::knowledge::KnowledgeRecord left_value = left_->evaluate (settings);
93 
94  // only evaluate right if left evaluates to non-zero
95  if (left_value.is_true ())
96  right_->evaluate (settings);
97 
98  return left_value;
99 }
100 
101 
102 // accept a visitor
103 void
105 {
106  visitor.visit (*this);
107 }
108 
109 #endif // _MADARA_NO_KARL_
110 
111 #endif /* _COMPOSITE_IMPLIES_NODE_CPP */
This class encapsulates an entry in a KnowledgeBase.
virtual madara::knowledge::KnowledgeRecord prune(bool &can_change)=0
Prunes the expression tree of unnecessary nodes.
bool is_true(void) const
Checks to see if the record is true.
ComponentNode * right_
Right expression.
logger::Logger * logger_
handle the context
Definition: ComponentNode.h:96
virtual madara::knowledge::KnowledgeRecord evaluate(const madara::knowledge::KnowledgeUpdateSettings &settings)=0
Evaluates the expression tree.
Defines a left and right node (via inheritance from CompositeUnaryNode).
virtual madara::knowledge::KnowledgeRecord prune(bool &can_change)
Prunes the expression tree of unnecessary nodes.
Defines a node that contains a madara::knowledge::KnowledgeRecord::Integer value. ...
Definition: LeafNode.h:23
Provides knowledge logging services to files and terminals.
Definition: GlobalLogger.h:11
ComponentNode * left_
left expression
A multi-threaded logger for logging to one or more destinations.
Definition: Logger.h:88
void set_value(const KnowledgeRecord &new_value)
Sets the value from another KnowledgeRecord, does not copy clock and write_quality.
#define madara_logger_ptr_log(logger, level,...)
Fast version of the madara::logger::log method for Logger pointers.
Definition: Logger.h:32
virtual madara::knowledge::KnowledgeRecord evaluate(const madara::knowledge::KnowledgeUpdateSettings &settings)
Evaluates the expression tree.
An abstract base class defines a simple abstract implementation of an expression tree node...
Definition: ComponentNode.h:35
Abstract base class for all visitors to all classes that derive from ComponentNode.
Definition: Visitor.h:90
Settings for applying knowledge updates.
virtual void accept(Visitor &visitor) const
Accepts a visitor subclassed from the Visitor class.
virtual void visit(const LeafNode &node)=0
Visit a LeafNode.
Copyright (c) 2015 Carnegie Mellon University.
virtual madara::knowledge::KnowledgeRecord item(void) const
Returns the printable character of the node.
CompositeImpliesNode(logger::Logger &logger, ComponentNode *left, ComponentNode *right)
Constructor.