summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-14 16:03:49 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-14 16:03:49 +0000
commit65167693771ec7dc6f7bb5b3a8a30fc888509653 (patch)
treec6eaf3abc4fb2490f0b1803acebbb1b336142aec
parente417ce1fd979aa59708c00131d11d71d3fa2927c (diff)
downloadATCD-65167693771ec7dc6f7bb5b3a8a30fc888509653.tar.gz
This commit was manufactured by cvs2svn to create branch
'unlabeled-1.13.2'.
-rw-r--r--TAO/tao/Incoming_Message_Queue.cpp283
1 files changed, 283 insertions, 0 deletions
diff --git a/TAO/tao/Incoming_Message_Queue.cpp b/TAO/tao/Incoming_Message_Queue.cpp
new file mode 100644
index 00000000000..14970106b50
--- /dev/null
+++ b/TAO/tao/Incoming_Message_Queue.cpp
@@ -0,0 +1,283 @@
+#include "Incoming_Message_Queue.h"
+#include "debug.h"
+
+#include "ace/Log_Msg.h"
+
+#if !defined (__ACE_INLINE__)
+# include "Incoming_Message_Queue.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID (tao,
+ Incoming_Message_Queue,
+ "$Id$")
+
+TAO_Incoming_Message_Queue::TAO_Incoming_Message_Queue (TAO_ORB_Core *orb_core)
+ : queued_data_ (0),
+ size_ (0),
+ orb_core_ (orb_core)
+{
+}
+
+TAO_Incoming_Message_Queue::~TAO_Incoming_Message_Queue (void)
+{
+ int sz = this->size_;
+
+ // Delete all the nodes left behind
+ for (int i = 0;
+ i < sz;
+ i++)
+ {
+ TAO_Queued_Data *qd = this->dequeue_head ();
+ TAO_Queued_Data::release (qd);
+ }
+}
+
+size_t
+TAO_Incoming_Message_Queue::copy_tail (ACE_Message_Block &block)
+{
+ // The size of message that is copied
+ size_t n = 0;
+
+ if (this->size_ > 0)
+ {
+ // Check to see if the length of the incoming block is less than
+ // that of the <missing_data_> of the tail.
+ if ((CORBA::Long)block.length () <= this->queued_data_->missing_data_)
+ {
+ n = block.length ();
+ }
+ else
+ {
+ n = this->queued_data_->missing_data_;
+ }
+
+ // Do the copy
+ this->queued_data_->msg_block_->copy (block.rd_ptr (),
+ n);
+
+ // Decerement the missing data
+ this->queued_data_->missing_data_ -= n;
+ }
+
+ return n;
+}
+
+TAO_Queued_Data *
+TAO_Incoming_Message_Queue::dequeue_head (void)
+{
+ // Get the node on the head of the queue...
+ TAO_Queued_Data *tmp =
+ this->queued_data_->next_;
+
+ // Reset the head node..
+ this->queued_data_->next_ = tmp->next_;
+
+ // Decrease the size
+ --this->size_;
+
+ return tmp;
+}
+
+TAO_Queued_Data *
+TAO_Incoming_Message_Queue::dequeue_tail (void)
+{
+ // This is a bit painful stuff...
+ if (this->size_ == 0)
+ return 0;
+
+ // Get the node on the head of the queue...
+ TAO_Queued_Data *tmp =
+ this->queued_data_->next_;
+
+ while (tmp->next_ != this->queued_data_)
+ {
+ tmp = tmp->next_;
+ }
+
+ // Put the head in tmp.
+ tmp->next_ = this->queued_data_->next_;
+
+ TAO_Queued_Data *ret_qd = this->queued_data_;
+
+ this->queued_data_ = tmp;
+
+ // Decrease the size
+ --this->size_;
+
+ return ret_qd;
+}
+
+
+int
+TAO_Incoming_Message_Queue::enqueue_tail (TAO_Queued_Data *nd)
+{
+ if (this->size_ == 0)
+ {
+ this->queued_data_ = nd;
+ this->queued_data_->next_ = this->queued_data_;
+ }
+ else
+ {
+ nd->next_ = this->queued_data_->next_;
+ this->queued_data_->next_ = nd;
+ this->queued_data_ = nd;
+ }
+
+ ++ this->size_;
+ return 0;
+}
+
+
+/************************************************************************/
+// Methods for TAO_Queued_Data
+/************************************************************************/
+
+TAO_Queued_Data::TAO_Queued_Data (ACE_Allocator *alloc)
+ : msg_block_ (0),
+ missing_data_ (0),
+ byte_order_ (0),
+ major_version_ (0),
+ minor_version_ (0),
+ more_fragments_ (0),
+ msg_type_ (TAO_PLUGGABLE_MESSAGE_MESSAGERROR),
+ next_ (0),
+ allocator_ (alloc)
+{
+}
+
+TAO_Queued_Data::TAO_Queued_Data (ACE_Message_Block *mb,
+ ACE_Allocator *alloc)
+ : msg_block_ (mb),
+ missing_data_ (0),
+ byte_order_ (0),
+ major_version_ (0),
+ minor_version_ (0),
+ more_fragments_ (0),
+ msg_type_ (TAO_PLUGGABLE_MESSAGE_MESSAGERROR),
+ next_ (0),
+ allocator_ (alloc)
+{
+}
+
+TAO_Queued_Data::TAO_Queued_Data (const TAO_Queued_Data &qd)
+ : msg_block_ (qd.msg_block_->duplicate ()),
+ missing_data_ (qd.missing_data_),
+ byte_order_ (qd.byte_order_),
+ major_version_ (qd.major_version_),
+ minor_version_ (qd.minor_version_),
+ more_fragments_ (qd.more_fragments_),
+ msg_type_ (qd.msg_type_),
+ next_ (0),
+ allocator_ (qd.allocator_)
+{
+}
+
+/*static*/
+TAO_Queued_Data *
+TAO_Queued_Data::get_queued_data (ACE_Allocator *alloc)
+{
+ TAO_Queued_Data *qd = 0;
+
+ if (alloc)
+ {
+ ACE_NEW_MALLOC_RETURN (qd,
+ ACE_static_cast (TAO_Queued_Data *,
+ alloc->malloc (sizeof (TAO_Queued_Data))),
+ TAO_Queued_Data (alloc),
+ 0);
+
+ return qd;
+ }
+
+ // No allocator, so use the global pool!
+ // @@ TODO: We should be removing this at some point of time!
+ if (TAO_debug_level == 4)
+ {
+ // This debug is for testing purposes!
+ ACE_DEBUG ((LM_DEBUG,
+ "TAO (%P|%t) - Queued_Data::get_queued_data\n",
+ "Using global pool for allocation \n"));
+ }
+
+ ACE_NEW_RETURN (qd,
+ TAO_Queued_Data,
+ 0);
+
+ return qd;
+}
+
+/*static*/
+void
+TAO_Queued_Data::release (TAO_Queued_Data *qd)
+{
+ //// TODO
+ ACE_Message_Block::release (qd->msg_block_);
+
+ if (qd->allocator_)
+ {
+ ACE_DES_FREE (qd,
+ qd->allocator_->free,
+ TAO_Queued_Data);
+
+ return;
+ }
+
+ // @@todo: Need to be removed at some point of time!
+ if (TAO_debug_level == 4)
+ {
+ // This debug is for testing purposes!
+ ACE_DEBUG ((LM_DEBUG,
+ "TAO (%P|%t) - Queued_Data[%d]::release\n",
+ "Using global pool for releasing \n"));
+ }
+ delete qd;
+
+}
+
+
+TAO_Queued_Data *
+TAO_Queued_Data::duplicate (TAO_Queued_Data &sqd)
+{
+ // Check to see if the underlying block is on the stack. If not it
+ // is fine. If the datablock is on stack, try to make a copy of that
+ // before doing a duplicate.
+ // @@ todo: Theoretically this should be within the Message Block,
+ // but we dont have much scope to do this in that mess. Probably in
+ // the next stage of MB rewrite we should be okay
+ ACE_Message_Block::Message_Flags fl =
+ sqd.msg_block_->self_flags ();
+
+ if (ACE_BIT_ENABLED (fl,
+ ACE_Message_Block::DONT_DELETE))
+ (void) TAO_Queued_Data::replace_data_block (*sqd.msg_block_);
+
+
+ TAO_Queued_Data *qd = 0;
+
+ if (sqd.allocator_)
+ {
+ ACE_NEW_MALLOC_RETURN (qd,
+ ACE_static_cast(TAO_Queued_Data *,
+ sqd.allocator_->malloc (sizeof (TAO_Queued_Data))),
+ TAO_Queued_Data (sqd),
+ 0);
+
+ return qd;
+ }
+
+ // No allocator, so use the global pool!
+ // @@ TODO: We should be removing this at some point of time!
+ if (TAO_debug_level == 4)
+ {
+ // This debug is for testing purposes!
+ ACE_DEBUG ((LM_DEBUG,
+ "TAO (%P|%t) - Queued_Data[%d]::duplicate\n",
+ "Using global pool for allocation \n"));
+ }
+
+ ACE_NEW_RETURN (qd,
+ TAO_Queued_Data (sqd),
+ 0);
+
+ return qd;
+}