summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/orbsvcs/Event/EC_Conjunction_Filter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/orbsvcs/Event/EC_Conjunction_Filter.cpp')
-rw-r--r--ACE/TAO/orbsvcs/orbsvcs/Event/EC_Conjunction_Filter.cpp202
1 files changed, 202 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/orbsvcs/Event/EC_Conjunction_Filter.cpp b/ACE/TAO/orbsvcs/orbsvcs/Event/EC_Conjunction_Filter.cpp
new file mode 100644
index 00000000000..ff6f91ecd91
--- /dev/null
+++ b/ACE/TAO/orbsvcs/orbsvcs/Event/EC_Conjunction_Filter.cpp
@@ -0,0 +1,202 @@
+// $Id$
+
+#include "orbsvcs/Event/EC_Conjunction_Filter.h"
+
+ACE_RCSID(Event, EC_Conjunction_Filter, "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+const int bits_per_word = sizeof(TAO_EC_Conjunction_Filter::Word) * CHAR_BIT;
+
+TAO_EC_Conjunction_Filter::
+ TAO_EC_Conjunction_Filter (TAO_EC_Filter* children[],
+ size_t n)
+ : children_ (children),
+ n_ (n)
+{
+ ChildrenIterator end = this->end ();
+ for (ChildrenIterator i = this->begin ();
+ i != end;
+ ++i)
+ {
+ this->adopt_child (*i);
+ }
+
+ this->nwords_ = this->n_ / bits_per_word + 1;
+ ACE_NEW (this->bitvec_, Word[this->nwords_]);
+
+ this->clear ();
+}
+
+TAO_EC_Conjunction_Filter::~TAO_EC_Conjunction_Filter (void)
+{
+ TAO_EC_Filter** end = this->children_ + this->n_;
+ for (TAO_EC_Filter** i = this->children_;
+ i != end;
+ ++i)
+ {
+ delete *i;
+ *i = 0;
+ }
+ delete[] this->children_;
+ this->children_ = 0;
+ this->n_ = 0;
+
+ delete[] this->bitvec_;
+ this->bitvec_ = 0;
+}
+
+int
+TAO_EC_Conjunction_Filter::all_received (void) const
+{
+ Word* i = this->bitvec_;
+ for (;
+ i != this->bitvec_ + this->nwords_;
+ ++i)
+ {
+ if (*i != static_cast<Word> (~0))
+ return 0;
+ }
+ return 1;
+}
+
+TAO_EC_Filter::ChildrenIterator
+TAO_EC_Conjunction_Filter::begin (void) const
+{
+ return this->children_;
+}
+
+TAO_EC_Filter::ChildrenIterator
+TAO_EC_Conjunction_Filter::end (void) const
+{
+ return this->children_ + this->n_;
+}
+
+int
+TAO_EC_Conjunction_Filter::size (void) const
+{
+ return static_cast<int> (this->n_);
+}
+
+int
+TAO_EC_Conjunction_Filter::filter (const RtecEventComm::EventSet& event,
+ TAO_EC_QOS_Info& qos_info)
+{
+ ChildrenIterator end = this->end ();
+ for (this->current_child_ = this->begin ();
+ this->current_child_ != end;
+ ++this->current_child_)
+ {
+ int n = (*this->current_child_)->filter (event, qos_info);
+ if (n != 0)
+ return n;
+ }
+ return 0;
+}
+
+int
+TAO_EC_Conjunction_Filter::filter_nocopy (RtecEventComm::EventSet& event,
+ TAO_EC_QOS_Info& qos_info)
+{
+ ChildrenIterator end = this->end ();
+ for (ChildrenIterator i = this->begin ();
+ i != end;
+ ++i)
+ {
+ int n = (*i)->filter_nocopy (event, qos_info);
+ if (n != 0)
+ return n;
+ }
+ return 0;
+}
+
+void
+TAO_EC_Conjunction_Filter::push (const RtecEventComm::EventSet& event,
+ TAO_EC_QOS_Info& qos_info)
+{
+ CORBA::Long pos = this->current_child_ - this->begin ();
+ int w = pos / bits_per_word;
+ int b = pos % bits_per_word;
+ if (ACE_BIT_ENABLED (this->bitvec_[w], 1<<b))
+ return;
+ ACE_SET_BITS (this->bitvec_[w], 1<<b);
+ CORBA::ULong n = event.length ();
+ CORBA::ULong l = this->event_.length ();
+ this->event_.length (l + n);
+ for (CORBA::ULong i = 0; i != n; ++i)
+ {
+ this->event_[l + i] = event[i];
+ }
+ if (this->all_received () && this->parent () != 0)
+ this->parent ()->push_nocopy (this->event_, qos_info);
+}
+
+void
+TAO_EC_Conjunction_Filter::push_nocopy (RtecEventComm::EventSet& event,
+ TAO_EC_QOS_Info& qos_info)
+{
+ this->push (event, qos_info);
+}
+
+void
+TAO_EC_Conjunction_Filter::clear (void)
+{
+ ChildrenIterator end = this->end ();
+ for (ChildrenIterator i = this->begin ();
+ i != end;
+ ++i)
+ {
+ (*i)->clear ();
+ }
+ Word* j = this->bitvec_;
+ for (;
+ j != this->bitvec_ + this->nwords_ - 1;
+ ++j)
+ {
+ *j = 0;
+ }
+ int b = static_cast<int> (this->n_ % bits_per_word);
+ Word last = ~0 << b;
+ *j = last;
+
+ this->event_.length (0);
+}
+
+CORBA::ULong
+TAO_EC_Conjunction_Filter::max_event_size (void) const
+{
+ CORBA::ULong n = 0;
+ ChildrenIterator end = this->end ();
+ for (ChildrenIterator i = this->begin ();
+ i != end;
+ ++i)
+ {
+ n += (*i)->max_event_size ();
+ }
+ return n;
+}
+
+int
+TAO_EC_Conjunction_Filter::can_match (
+ const RtecEventComm::EventHeader& header) const
+{
+ ChildrenIterator end = this->end ();
+ for (ChildrenIterator i = this->begin ();
+ i != end;
+ ++i)
+ {
+ if ((*i)->can_match (header) != 0)
+ return 1;
+ }
+ return 0;
+}
+
+int
+TAO_EC_Conjunction_Filter::add_dependencies (
+ const RtecEventComm::EventHeader&,
+ const TAO_EC_QOS_Info&)
+{
+ return 0;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL