summaryrefslogtreecommitdiff
path: root/TAO/tao/operation_details.i
blob: 9135ba81b7d8f477f0ef37327b09e9b9d175be53 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// -*- C++ -*-
//$Id$
ACE_INLINE
TAO_Operation_Details::TAO_Operation_Details (const char *name,
                                              CORBA::ULong len,
                                              CORBA::Boolean argument_flag)
  :opname_ (name),
   opname_len_ (len),
   request_id_ (0),
   argument_flag_ (argument_flag),
   response_flags_ (0),
   addressing_mode_ (TAO_Target_Specification::Key_Addr)
{
  //no-op
}

ACE_INLINE const char*
TAO_Operation_Details::opname (void) const
{
  return this->opname_;
}

ACE_INLINE CORBA::ULong
TAO_Operation_Details::opname_len (void) const
{
  return this->opname_len_;
}

ACE_INLINE CORBA::Boolean
TAO_Operation_Details::argument_flag (void) const
{
  return this->argument_flag_;
}

ACE_INLINE IOP::ServiceContextList &
TAO_Operation_Details::service_info (void)
{
  // @@ This should go ...
  return this->service_info_.service_info ();
}

ACE_INLINE const IOP::ServiceContextList &
TAO_Operation_Details::service_info (void) const
{
  // @@ This should go ...
  return this->service_info_.service_info ();
}

ACE_INLINE TAO_Service_Context &
TAO_Operation_Details::service_context (void)
{
  return this->service_info_;
}

ACE_INLINE const TAO_Service_Context &
TAO_Operation_Details::service_context (void) const
{
  return this->service_info_;
}


ACE_INLINE void
TAO_Operation_Details::request_id (CORBA::ULong id)
{
  this->request_id_ = id;
}

ACE_INLINE void
TAO_Operation_Details::modify_request_id (int flag)
{
  // If the flag value is -1 then BiDirectional connection has not
  // been negotiated
  if (flag >= 0)
    {
      this->request_id_ = (this->request_id_ * 2) + flag;
    }
}

ACE_INLINE CORBA::ULong
TAO_Operation_Details::request_id (void)
{
  return this->request_id_;
}

ACE_INLINE CORBA::ULong
TAO_Operation_Details::request_id (void) const
{
  return this->request_id_;
}

ACE_INLINE void
TAO_Operation_Details::response_flags (CORBA::Octet flags)
{
  this->response_flags_ = flags;
}

ACE_INLINE CORBA::Octet
TAO_Operation_Details::response_flags (void)
{
  return this->response_flags_;
}

ACE_INLINE CORBA::Octet
TAO_Operation_Details::response_flags (void) const
{
  return this->response_flags_;
}

ACE_INLINE TAO_Target_Specification::TAO_Target_Address
TAO_Operation_Details::addressing_mode (void)
{
  return this->addressing_mode_;
}

ACE_INLINE TAO_Target_Specification::TAO_Target_Address
TAO_Operation_Details::addressing_mode (void) const
{
  return this->addressing_mode_;
}

ACE_INLINE void
TAO_Operation_Details::
  addressing_mode (CORBA::Short mode)
{
  if (mode == 0)
      this->addressing_mode_ = TAO_Target_Specification::Key_Addr;
  else if (mode == 1)
    this->addressing_mode_ = TAO_Target_Specification::Profile_Addr;
  else if (mode == 2)
      this->addressing_mode_ = TAO_Target_Specification::Reference_Addr;
}