blob: a76d964115c2ef2d967172edf2335139d639bf5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// -*- C++ -*-
// $Id$
#include "Synch_Queued_Message.h"
ACE_RCSID(tao, Synch_Queued_Message, "$Id$")
TAO_Synch_Queued_Message::
TAO_Synch_Queued_Message (const ACE_Message_Block *contents)
: contents_ (ACE_const_cast (ACE_Message_Block*,contents))
, current_block_ (contents_)
{
}
TAO_Synch_Queued_Message::~TAO_Synch_Queued_Message (void)
{
}
const ACE_Message_Block *
TAO_Synch_Queued_Message::current_block (void) const
{
return this->current_block_;
}
size_t
TAO_Synch_Queued_Message::message_length (void) const
{
if (this->current_block_ == 0)
return 0;
return this->current_block_->total_length ();
}
int
TAO_Synch_Queued_Message::all_data_sent (void) const
{
return this->current_block_ == 0;
}
void
TAO_Synch_Queued_Message::fill_iov (int iovcnt_max,
int &iovcnt,
iovec iov[]) const
{
ACE_ASSERT (iovcnt_max > iovcnt);
for (const ACE_Message_Block *message_block = this->current_block_;
message_block != 0 && iovcnt < iovcnt_max;
message_block = message_block->cont ())
{
size_t message_block_length = message_block->length ();
// Check if this block has any data to be sent.
if (message_block_length > 0)
{
// Collect the data in the iovec.
iov[iovcnt].iov_base = message_block->rd_ptr ();
iov[iovcnt].iov_len = message_block_length;
// Increment iovec counter.
iovcnt++;
}
}
}
void
TAO_Synch_Queued_Message::bytes_transferred (size_t &byte_count)
{
while (this->current_block_ != 0 && byte_count > 0)
{
size_t l = this->current_block_->length ();
if (byte_count < l)
{
this->current_block_->rd_ptr (byte_count);
byte_count = 0;
return;
}
byte_count -= l;
this->current_block_->rd_ptr (l);
this->current_block_ = this->current_block_->cont ();
while (this->current_block_ != 0
&& this->current_block_->length () == 0)
{
this->current_block_ = this->current_block_->cont ();
}
}
}
void
TAO_Synch_Queued_Message::destroy (void)
{
}
|