/usr/include/tao/TAO_Server_Request.inl is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | // -*- C++ -*-
//
// $Id: TAO_Server_Request.inl 81140 2008-03-28 09:19:19Z vzykov $
#include "tao/GIOP_Utils.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// This constructor is used by the CSD clone.
ACE_INLINE
TAO_ServerRequest::TAO_ServerRequest (void)
: mesg_base_ (0),
operation_ (0),
operation_len_ (0),
release_operation_ (false),
incoming_ (0),
outgoing_ (0),
response_expected_ (false),
deferred_reply_ (false),
sync_with_server_ (false),
is_dsi_ (false),
reply_status_ (GIOP::NO_EXCEPTION),
orb_core_ (0),
request_id_ (0),
profile_ (0),
requesting_principal_ (0),
dsi_nvlist_align_ (0),
operation_details_ (0),
argument_flag_ (true)
#if TAO_HAS_INTERCEPTORS == 1
, interceptor_count_ (0)
, rs_pi_current_ ()
, caught_exception_ (0)
, pi_reply_status_ (-1)
#endif /* TAO_HAS_INTERCEPTORS == 1 */
, transport_(0)
{
}
ACE_INLINE TAO_ORB_Core *
TAO_ServerRequest::orb_core (void) const
{
return this->orb_core_;
}
ACE_INLINE TAO_InputCDR *
TAO_ServerRequest::incoming (void) const
{
return this->incoming_;
}
ACE_INLINE TAO_OutputCDR *
TAO_ServerRequest::outgoing (void) const
{
return this->outgoing_;
}
ACE_INLINE const char *
TAO_ServerRequest::operation (void) const
{
return (this->operation_ == 0 ? "" : this->operation_);
}
ACE_INLINE void
TAO_ServerRequest::operation (const char *operation,
size_t length,
int release)
{
if (this->release_operation_)
CORBA::string_free (const_cast <char*> (this->operation_));
this->operation_len_ = (length == 0 ? ACE_OS::strlen (operation) : length);
this->release_operation_ = release;
this->operation_ = operation;
}
ACE_INLINE size_t
TAO_ServerRequest::operation_length (void) const
{
return this->operation_len_;
}
ACE_INLINE CORBA::Boolean
TAO_ServerRequest::response_expected (void) const
{
return this->response_expected_;
}
ACE_INLINE CORBA::Boolean
TAO_ServerRequest::deferred_reply (void) const
{
return this->deferred_reply_;
}
ACE_INLINE void
TAO_ServerRequest::response_expected (CORBA::Boolean response)
{
this->response_expected_ = response;
}
ACE_INLINE CORBA::Boolean
TAO_ServerRequest::sync_with_server (void) const
{
return this->sync_with_server_;
}
ACE_INLINE void
TAO_ServerRequest::sync_with_server (CORBA::Boolean sync_flag)
{
this->sync_with_server_ = sync_flag;
}
ACE_INLINE TAO::ObjectKey &
TAO_ServerRequest::object_key (void)
{
return this->profile_.object_key ();
}
ACE_INLINE TAO_Service_Context &
TAO_ServerRequest::request_service_context (void)
{
return this->request_service_context_;
}
ACE_INLINE IOP::ServiceContextList &
TAO_ServerRequest::reply_service_info (void)
{
return this->reply_service_context ().service_info ();
}
ACE_INLINE IOP::ServiceContextList &
TAO_ServerRequest::request_service_info (void)
{
return this->request_service_context ().service_info ();
}
ACE_INLINE TAO_Transport *
TAO_ServerRequest::transport (void)
{
return this->transport_.get ();
}
ACE_INLINE CORBA::ULong
TAO_ServerRequest::request_id (void)
{
return this->request_id_;
}
ACE_INLINE void
TAO_ServerRequest::request_id (CORBA::ULong req)
{
this->request_id_ = req;
}
ACE_INLINE void
TAO_ServerRequest::requesting_principal (const CORBA::OctetSeq &principal)
{
this->requesting_principal_ = principal;
}
ACE_INLINE TAO_Tagged_Profile &
TAO_ServerRequest::profile (void)
{
return this->profile_;
}
ACE_INLINE void
TAO_ServerRequest::forward_location (CORBA::Object_ptr forward_reference)
{
this->forward_location_ =
CORBA::Object::_duplicate (forward_reference);
this->is_forwarded_ = true;
}
ACE_INLINE CORBA::Object_ptr
TAO_ServerRequest::forward_location (void)
{
return CORBA::Object::_duplicate (this->forward_location_.in ());
}
ACE_INLINE bool
TAO_ServerRequest::is_forwarded (void) const
{
return this->is_forwarded_;
}
ACE_INLINE GIOP::ReplyStatusType
TAO_ServerRequest::reply_status (void)
{
return this->reply_status_;
}
ACE_INLINE void
TAO_ServerRequest::reply_status (GIOP::ReplyStatusType reply_status)
{
this->reply_status_ = reply_status;
}
ACE_INLINE void
TAO_ServerRequest::is_dsi (void)
{
this->is_dsi_ = true;
}
ACE_INLINE TAO_Operation_Details const *
TAO_ServerRequest::operation_details (void) const
{
return this->operation_details_;
}
ACE_INLINE void
TAO_ServerRequest::dsi_nvlist_align (ptrdiff_t alignment)
{
this->dsi_nvlist_align_ = alignment;
}
ACE_INLINE CORBA::Boolean
TAO_ServerRequest::argument_flag (void)
{
return this->argument_flag_;
}
ACE_INLINE void
TAO_ServerRequest::argument_flag (CORBA::Boolean flag)
{
this->argument_flag_ = flag;
}
ACE_INLINE bool
TAO_ServerRequest::collocated (void) const
{
return this->transport_.get () == 0;
}
#if TAO_HAS_INTERCEPTORS == 1
ACE_INLINE size_t &
TAO_ServerRequest::interceptor_count (void)
{
return this->interceptor_count_;
}
ACE_INLINE CORBA::Exception *
TAO_ServerRequest::caught_exception (void)
{
return this->caught_exception_;
}
ACE_INLINE void
TAO_ServerRequest::pi_reply_status (PortableInterceptor::ReplyStatus s)
{
this->pi_reply_status_ = s;
}
ACE_INLINE PortableInterceptor::ReplyStatus
TAO_ServerRequest::pi_reply_status (void)
{
return this->pi_reply_status_;
}
#endif /* TAO_HAS_INTERCEPTORS == 1 */
TAO_END_VERSIONED_NAMESPACE_DECL
|