/usr/include/ace/Token_Request_Reply.inl is in libace-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 | // -*- C++ -*-
//
// $Id: Token_Request_Reply.inl 80826 2008-03-04 14:51:23Z wotte $
#if defined (ACE_HAS_TOKENS_LIBRARY)
#include "ace/Truncate.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// = Set/get the length of the encoded/decoded message.
ACE_INLINE ACE_UINT32
ACE_Token_Request::length (void) const
{
return ntohl (this->transfer_.length_);
}
ACE_INLINE void
ACE_Token_Request::length (ACE_UINT32 l)
{
this->transfer_.length_ = htonl (l);
}
// = Set/get the type of the message.
ACE_INLINE int
ACE_Token_Request::token_type (void) const
{
return (int) ntohl (this->transfer_.token_type_);
}
ACE_INLINE void
ACE_Token_Request::token_type (int t)
{
this->transfer_.token_type_ = htonl ((ACE_UINT32) t);
}
// = Set/get the type of the message.
ACE_INLINE int
ACE_Token_Request::proxy_type (void) const
{
return (int) ntohl (this->transfer_.proxy_type_);
}
ACE_INLINE void
ACE_Token_Request::proxy_type (int t)
{
this->transfer_.proxy_type_ = htonl ((ACE_UINT32) t);
}
// = Set/get the type of the message.
ACE_INLINE ACE_UINT32
ACE_Token_Request::operation_type (void) const
{
return ntohl (this->transfer_.operation_type_);
}
ACE_INLINE void
ACE_Token_Request::operation_type (ACE_UINT32 t)
{
this->transfer_.operation_type_ = htonl (t);
}
// = Set/get the requeue position
ACE_INLINE ACE_UINT32
ACE_Token_Request::requeue_position (void) const
{
return ntohl (this->transfer_.requeue_position_);
}
ACE_INLINE void
ACE_Token_Request::requeue_position (ACE_UINT32 rq)
{
this->transfer_.requeue_position_ = htonl (rq);
}
// = Set/get the requeue position
ACE_INLINE ACE_UINT32
ACE_Token_Request::notify (void) const
{
return ntohl (this->transfer_.notify_);
}
ACE_INLINE void
ACE_Token_Request::notify (ACE_UINT32 rq)
{
this->transfer_.notify_ = htonl (rq);
}
// = Set/get the blocking semantics.
ACE_INLINE ACE_Synch_Options &
ACE_Token_Request::options (void) const
{
return (ACE_Synch_Options &) options_;
}
ACE_INLINE void
ACE_Token_Request::options (const ACE_Synch_Options &opt)
{
// fight the friggin const from hell
ACE_Synch_Options *options = (ACE_Synch_Options *) &opt;
transfer_.use_timeout_ = options->operator[](ACE_Synch_Options::USE_TIMEOUT);
if (transfer_.use_timeout_ == 1)
{
transfer_.usec_ = options->timeout ().usec ();
if (options->timeout ().sec () > (time_t) ACE_UINT32_MAX)
transfer_.sec_ = ACE_UINT32_MAX;
else
transfer_.sec_ = static_cast<ACE_UINT32> (options->timeout ().sec ());
}
else
{
transfer_.usec_ = 0;
transfer_.sec_ = 0;
}
}
// = Set/get the name of the token.
ACE_INLINE ACE_TCHAR *
ACE_Token_Request::token_name (void) const
{
return token_name_;
}
ACE_INLINE void
ACE_Token_Request::token_name (const ACE_TCHAR *token_name,
const ACE_TCHAR *client_id)
{
size_t token_name_length = ACE_OS::strlen (token_name) + 1; // Add 1 for '\0'.
size_t client_id_length = ACE_OS::strlen (client_id) + 1; // Add 1 for '\0'.
// Set up pointers and copy token_name and client_id into request.
token_name_ = this->transfer_.data_;
client_id_ = &this->token_name_[token_name_length + 1]; // Add 1 for ':';
client_id_[-1] = ACE_TEXT (':'); // Insert the ':' before this->clientId_.
(void) ACE_OS::memcpy (this->token_name_,
token_name,
token_name_length * sizeof (ACE_TCHAR));
(void) ACE_OS::memcpy (this->client_id_,
client_id,
client_id_length * sizeof (ACE_TCHAR));
// Fixed length header size
size_t len = ACE_TOKEN_REQUEST_HEADER_SIZE;
// ... then add in the amount of the variable-sized portion.
len += token_name_length + client_id_length + 1;
this->length (ACE_Utils::truncate_cast<ACE_UINT32> (len));
}
// = Set/get the id of the client.
ACE_INLINE ACE_TCHAR *
ACE_Token_Request::client_id (void) const
{
return this->client_id_;
}
// ************************************************************
// ************************************************************
// ************************************************************
// = Set/get the length of the encoded/decoded message.
ACE_INLINE ACE_UINT32
ACE_Token_Reply::length (void) const
{
return ntohl (this->transfer_.length_);
}
ACE_INLINE void
ACE_Token_Reply::length (ACE_UINT32 l)
{
this->transfer_.length_ = htonl (l);
}
// = Set/get the errno of a failed reply.
ACE_INLINE ACE_UINT32
ACE_Token_Reply::errnum (void) const
{
return ntohl (this->transfer_.errno_);
}
ACE_INLINE void
ACE_Token_Reply::errnum (ACE_UINT32 e)
{
this->transfer_.errno_ = htonl (e);
}
// = Set/get the length of the encoded/decoded message.
ACE_INLINE ACE_UINT32
ACE_Token_Reply::arg (void) const
{
return ntohl (this->transfer_.arg_);
}
ACE_INLINE void
ACE_Token_Reply::arg (ACE_UINT32 arg)
{
this->transfer_.arg_ = htonl (arg);
}
ACE_END_VERSIONED_NAMESPACE_DECL
#endif /* ACE_HAS_TOKENS_LIBRARY */
|