#include <EC_Negation_Filter.h>
Inheritance diagram for TAO_EC_Negation_Filter:
Public Member Functions | |
TAO_EC_Negation_Filter (TAO_EC_Filter *child) | |
Constructor. It assumes ownership of the child. | |
virtual | ~TAO_EC_Negation_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_Negation_Filter (const TAO_EC_Negation_Filter &) | |
TAO_EC_Negation_Filter & | operator= (const TAO_EC_Negation_Filter &) |
Private Attributes | |
TAO_EC_Filter * | child_ |
The child. |
This filter accepts all the events rejected by its child, and rejects any events accepted by the child.
It assumes ownership of its child.
Definition at line 40 of file EC_Negation_Filter.h.
|
Constructor. It assumes ownership of the child.
Definition at line 9 of file EC_Negation_Filter.cpp. References TAO_EC_Filter::adopt_child().
00010 : child_ (child) 00011 { 00012 this->adopt_child (this->child_); 00013 } |
|
Destructor.
Definition at line 15 of file EC_Negation_Filter.cpp.
00016 { 00017 delete this->child_; 00018 } |
|
|
|
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 98 of file EC_Negation_Filter.cpp.
00101 {
00102 return 0;
00103 }
|
|
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 21 of file EC_Negation_Filter.cpp.
00022 { 00023 return const_cast<TAO_EC_Filter**> (&this->child_); 00024 } |
|
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 91 of file EC_Negation_Filter.cpp. References TAO_EC_Filter::can_match().
|
|
Clear any saved state, must reset and assume no events have been received. Implements TAO_EC_Filter. Definition at line 79 of file EC_Negation_Filter.cpp. References TAO_EC_Filter::clear().
|
|
Reimplemented from TAO_EC_Filter. Definition at line 27 of file EC_Negation_Filter.cpp.
00028 { 00029 return const_cast<TAO_EC_Filter**> (&this->child_) + 1; 00030 } |
|
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 39 of file EC_Negation_Filter.cpp. References RtecEventComm::EventSet, TAO_EC_Filter::filter(), TAO_EC_Filter::parent(), and TAO_EC_Filter::push().
|
|
Implements TAO_EC_Filter. Definition at line 53 of file EC_Negation_Filter.cpp. References RtecEventComm::EventSet, TAO_EC_Filter::filter_nocopy(), TAO_EC_Filter::parent(), and TAO_EC_Filter::push_nocopy().
00055 { 00056 int n = 00057 this->child_->filter_nocopy (event, qos_info); 00058 if (this->parent () != 0 && n == 0) 00059 { 00060 this->parent ()->push_nocopy (event, qos_info); 00061 return 1; 00062 } 00063 return 0; 00064 } |
|
Returns the maximum size of the events pushed by this filter.
Implements TAO_EC_Filter. Definition at line 85 of file EC_Negation_Filter.cpp. References TAO_EC_Filter::max_event_size().
00086 { 00087 return this->child_->max_event_size (); 00088 } |
|
|
|
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 67 of file EC_Negation_Filter.cpp. References RtecEventComm::EventSet.
00069 { 00070 } |
|
Implements TAO_EC_Filter. Definition at line 73 of file EC_Negation_Filter.cpp. References RtecEventComm::EventSet.
00075 { 00076 } |
|
Reimplemented from TAO_EC_Filter. Definition at line 33 of file EC_Negation_Filter.cpp.
00034 {
00035 return 1;
00036 }
|
|
The child.
Definition at line 75 of file EC_Negation_Filter.h. |