TTTT Analysis  0.1
filter.hpp
Go to the documentation of this file.
1 
37 #ifndef filter_h
38 #define filter_h
39 #include <iostream>
40 #include <functional>
41 #include "value.hpp"
42 namespace fv {
43 
44 class Filter : public DerivedValue<bool>{
45  private:
46  Function<bool()>& filter_function;
47 
48  void update_value(){
49  value = filter_function();
50  }
51 
52  void verify_integrity(){ };
53 
54  public:
55  Filter(const std::string& name, std::function<bool()> filter_function, const std::string& impl="")
57  filter_function(GenFunction::register_function<bool()>("filter::"+name, filter_function, impl)){ }
58 
63  auto new_name = this->get_name() + "&&" + f->get_name();
64  return new Filter(new_name, [this, f](){return this->get_value() && f->get_value();});
65  }
66 
71  auto new_name = this->get_name() + "||" + f->get_name();
72  return new Filter(new_name, [this, f](){return this->get_value() || f->get_value();});
73  }
74 
78  auto new_name = std::string("!(") + this->get_name() + std::string(")");
79  return new Filter(new_name, [this](){return !this->get_value();});
80  }
81 };
82 
83 template <typename T>
84 class RangeFilter : public Filter{
85  private:
86  public:
87  RangeFilter(const std::string name, Value<T>* test_value, T range_low, T range_high):
88  Filter(name, [test_value, range_low, range_high]{
89  T val = test_value->get_value();
90  return (val >= range_low) && (val < range_high);
91  }) { }
92 };
93 }
94 #endif // filter_h
bool & get_value()
Definition: value.hpp:412
std::string name
The name of the value.
Definition: value.hpp:220
Definition: filter.hpp:44
The namespace containing all filval classes and functions.
Definition: api.hpp:6
Filter * operator+(Filter *f)
Return a new filter that is the disjunction of the two source filters.
Definition: filter.hpp:70
A generic value.
Definition: value.hpp:338
Definition: filter.hpp:84
A generic, derived, value.
Definition: value.hpp:389
Filter * operator*(Filter *f)
Return a new filter that is the conjuction of the two source filters.
Definition: filter.hpp:62
void update_value()
Updates the internal value.
Definition: filter.hpp:48
Filter * operator!()
Return a new filter that is the negation of the source filter.
Definition: filter.hpp:77
virtual T & get_value()=0
Calculate, if necessary, and return the value held by this object.