#include <EC_Disjunction_Filter.h>
Inheritance diagram for TAO_EC_Disjunction_Filter:
Public Member Functions | |
TAO_EC_Disjunction_Filter (TAO_EC_Filter *children[], size_t n) | |
virtual | ~TAO_EC_Disjunction_Filter (void) |
Destructor. | |
virtual ChildrenIterator | begin (void) const |
virtual ChildrenIterator | end (void) const |
virtual int | size (void) const |
virtual int | filter (const RtecEventComm::EventSet &event, TAO_EC_QOS_Info &qos_info) |
virtual int | filter_nocopy (RtecEventComm::EventSet &event, TAO_EC_QOS_Info &qos_info) |
virtual void | push (const RtecEventComm::EventSet &event, TAO_EC_QOS_Info &qos_info) |
virtual void | push_nocopy (RtecEventComm::EventSet &event, TAO_EC_QOS_Info &qos_info) |
virtual void | clear (void) |
virtual CORBA::ULong | max_event_size (void) const |
Returns the maximum size of the events pushed by this filter. | |
virtual int | can_match (const RtecEventComm::EventHeader &header) const |
virtual int | add_dependencies (const RtecEventComm::EventHeader &header, const TAO_EC_QOS_Info &qos_info) |
Private Member Functions | |
TAO_EC_Disjunction_Filter (const TAO_EC_Disjunction_Filter &) | |
TAO_EC_Disjunction_Filter & | operator= (const TAO_EC_Disjunction_Filter &) |
Private Attributes | |
TAO_EC_Filter ** | children_ |
The children. | |
size_t | n_ |
The number of children. |
This filter has a set of children (fixed at creation time), if any of the children accepts an event then it also does.
It assumes ownership of the children.
Definition at line 39 of file EC_Disjunction_Filter.h.
|
Constructor. It assumes ownership of both the array and the children. Definition at line 10 of file EC_Disjunction_Filter.cpp. References TAO_EC_Filter::adopt_child(), begin(), and end().
00012 : children_ (children), 00013 n_ (n) 00014 { 00015 ChildrenIterator end = this->end (); 00016 for (ChildrenIterator i = this->begin (); 00017 i != end; 00018 ++i) 00019 { 00020 this->adopt_child (*i); 00021 } 00022 } |
|
Destructor.
Definition at line 24 of file EC_Disjunction_Filter.cpp.
00025 { 00026 TAO_EC_Filter** end = this->children_ + this->n_; 00027 for (TAO_EC_Filter** i = this->children_; 00028 i != end; 00029 ++i) 00030 { 00031 delete *i; 00032 *i = 0; 00033 } 00034 delete[] this->children_; 00035 this->children_ = 0; 00036 this->n_ = 0; 00037 } |
|
|
|
This is used for computing the scheduling dependencies: Leaf filters check if the header could be matched, similar to the can_match() method; if it does they return 1, and 0 otherwise. Intermediate nodes always return 0. This is used to build precise dependencies between the suppliers and the leaf of the filters that accept that event. Notice that only the nodes doing scheduling recurse through the list, so in configurations that do no require scheduling the recursion stops fairly soon. Implements TAO_EC_Filter. Definition at line 149 of file EC_Disjunction_Filter.cpp.
00152 {
00153 return 0;
00154 }
|
|
STL-like iterators Filters follow the Composite pattern. All filters expose the same interface as if they all had children, but for simple filters the iterators return an empty range. Reimplemented from TAO_EC_Filter. Definition at line 40 of file EC_Disjunction_Filter.cpp. Referenced by can_match(), clear(), filter(), filter_nocopy(), max_event_size(), and TAO_EC_Disjunction_Filter().
00041 { 00042 return this->children_; 00043 } |
|
Returns 0 if an event with that header could never be accepted. This can used by the suppliers to filter out consumers that couldn't possibly be interested in their events. The rt_info and Implements TAO_EC_Filter. Definition at line 134 of file EC_Disjunction_Filter.cpp. References begin(), and end().
00136 { 00137 ChildrenIterator end = this->end (); 00138 for (ChildrenIterator i = this->begin (); 00139 i != end; 00140 ++i) 00141 { 00142 if ((*i)->can_match (header) != 0) 00143 return 1; 00144 } 00145 return 0; 00146 } |
|
Clear any saved state, must reset and assume no events have been received. Implements TAO_EC_Filter. Definition at line 106 of file EC_Disjunction_Filter.cpp. References begin(), and end().
00107 { 00108 ChildrenIterator end = this->end (); 00109 for (ChildrenIterator i = this->begin (); 00110 i != end; 00111 ++i) 00112 { 00113 (*i)->clear (); 00114 } 00115 } |
|
Reimplemented from TAO_EC_Filter. Definition at line 46 of file EC_Disjunction_Filter.cpp. Referenced by can_match(), clear(), filter(), filter_nocopy(), max_event_size(), and TAO_EC_Disjunction_Filter().
|
|
Filter this event, returns 1 if the event is accepted, 0 otherwise. Notice that there are two versions of the method, if the event is not const then filter can take ownership of the event.
Implements TAO_EC_Filter. Definition at line 58 of file EC_Disjunction_Filter.cpp. References begin(), end(), and RtecEventComm::EventSet.
00060 { 00061 ChildrenIterator end = this->end (); 00062 for (ChildrenIterator i = this->begin (); 00063 i != end; 00064 ++i) 00065 { 00066 int n = (*i)->filter (event, qos_info); 00067 if (n != 0) 00068 return n; 00069 } 00070 return 0; 00071 } |
|
Implements TAO_EC_Filter. Definition at line 74 of file EC_Disjunction_Filter.cpp. References begin(), end(), and RtecEventComm::EventSet.
00076 { 00077 ChildrenIterator end = this->end (); 00078 for (ChildrenIterator i = this->begin (); 00079 i != end; 00080 ++i) 00081 { 00082 int n = (*i)->filter (event, qos_info); 00083 if (n != 0) 00084 return n; 00085 } 00086 return 0; 00087 } |
|
Returns the maximum size of the events pushed by this filter.
Implements TAO_EC_Filter. Definition at line 118 of file EC_Disjunction_Filter.cpp. References begin(), and end().
00119 { 00120 CORBA::ULong n = 0; 00121 ChildrenIterator end = this->end (); 00122 for (ChildrenIterator i = this->begin (); 00123 i != end; 00124 ++i) 00125 { 00126 CORBA::ULong m = (*i)->max_event_size (); 00127 if (n < m) 00128 n = m; 00129 } 00130 return n; 00131 } |
|
|
|
This is called by the children when they accept an event and which to pass it up. Notice that there are two versions of the method, if the event is not const then filter can take ownership of the event. Implements TAO_EC_Filter. Definition at line 90 of file EC_Disjunction_Filter.cpp. References RtecEventComm::EventSet, TAO_EC_Filter::parent(), and TAO_EC_Filter::push().
|
|
Implements TAO_EC_Filter. Definition at line 98 of file EC_Disjunction_Filter.cpp. References RtecEventComm::EventSet, TAO_EC_Filter::parent(), and TAO_EC_Filter::push_nocopy().
00100 { 00101 if (this->parent () != 0) 00102 this->parent ()->push_nocopy (event, qos_info); 00103 } |
|
Reimplemented from TAO_EC_Filter. Definition at line 52 of file EC_Disjunction_Filter.cpp.
00053 { 00054 return static_cast<int> (this->n_); 00055 } |
|
The children.
Definition at line 76 of file EC_Disjunction_Filter.h. |
|
The number of children.
Definition at line 79 of file EC_Disjunction_Filter.h. |