blob: 29e983a90dbb1c0e489509bfdd652b10bffab831 (
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
|
// $Id$
#include "tao/Wait_On_Read.h"
#include "Transport.h"
#include "Resume_Handle.h"
ACE_RCSID(tao, Wait_On_Read, "$Id$")
// Constructor.
TAO_Wait_On_Read::TAO_Wait_On_Read (TAO_Transport *transport)
: TAO_Wait_Strategy (transport)
{
}
// Destructor.
TAO_Wait_On_Read::~TAO_Wait_On_Read (void)
{
}
// Wait on the read operation.
int
TAO_Wait_On_Read::wait (ACE_Time_Value * max_wait_time,
int &reply_received)
{
reply_received = 0;
// Do the same sort of looping that is done in other wait
// strategies.
int retval = 0;
TAO_Resume_Handle rh;
while (1)
{
retval =
this->transport_->handle_input_i (rh,
max_wait_time,
1);
// If we got our reply, no need to run the loop any
// further.
if (reply_received)
break;
// @@ We are not checking for timeouts here...
// If we got an error just break
if (retval == -1)
break;
}
if (reply_received == -1 || retval == -1)
{
this->transport_->close_connection ();
}
return (reply_received == 1 ? 0 : reply_received);
}
// No-op.
int
TAO_Wait_On_Read::register_handler (void)
{
return 0;
}
int
TAO_Wait_On_Read::non_blocking (void)
{
return 0;
}
|