/usr/include/ace/SString.inl is in libace-dev 6.3.3+dfsg-1.
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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | // -*- C++ -*-
// Include ACE.h only if it hasn't already been included, e.g., if
// ACE_TEMPLATES_REQUIRE_SOURCE, ACE.h won't have been pulled in by
// String_Base.cpp.
#ifndef ACE_ACE_H
# include "ace/ACE.h"
#endif /* !ACE_ACE_H */
#include "ace/OS_NS_stdlib.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
ACE_NS_WString::ACE_NS_WString (ACE_Allocator *alloc)
: ACE_WString (alloc)
{
}
ACE_INLINE
ACE_NS_WString::ACE_NS_WString (const ACE_WSTRING_TYPE *s,
size_type len,
ACE_Allocator *alloc)
: ACE_WString (s, len, alloc)
{
}
ACE_INLINE
ACE_NS_WString::ACE_NS_WString (const ACE_WSTRING_TYPE *s,
ACE_Allocator *alloc)
: ACE_WString (s, alloc)
{
}
ACE_INLINE
ACE_NS_WString::ACE_NS_WString (size_type len, ACE_Allocator *alloc)
: ACE_WString (len, 0, alloc)
{
}
ACE_INLINE
ACE_NS_WString::ACE_NS_WString (const ACE_NS_WString &s)
: ACE_WString (s)
{
}
ACE_INLINE
ACE_NS_WString::ACE_NS_WString (ACE_WSTRING_TYPE c, ACE_Allocator *alloc)
: ACE_WString (c, alloc)
{
}
ACE_INLINE ACE_NS_WString
operator+ (const ACE_NS_WString &s, const ACE_NS_WString &t)
{
ACE_NS_WString temp (s);
temp += t;
return temp;
}
// -------------------------------------------------------
ACE_INLINE
ACE_SString::~ACE_SString (void)
{
}
ACE_INLINE ACE_SString
ACE_SString::substr (size_type offset,
size_type length) const
{
return this->substring (offset, length);
}
// Return the <slot'th> character in the string.
ACE_INLINE char
ACE_SString::operator[] (size_type slot) const
{
ACE_TRACE ("ACE_SString::operator[]");
return this->rep_[slot];
}
// Return the <slot'th> character in the string by reference.
ACE_INLINE char &
ACE_SString::operator[] (size_type slot)
{
ACE_TRACE ("ACE_SString::operator[]");
return this->rep_[slot];
}
// Get the underlying pointer (does not make a copy, so beware!).
ACE_INLINE const char *
ACE_SString::rep (void) const
{
ACE_TRACE ("ACE_SString::rep");
return this->rep_;
}
// Get the underlying pointer (does not make a copy, so beware!).
ACE_INLINE const char *
ACE_SString::fast_rep (void) const
{
ACE_TRACE ("ACE_SString::fast_rep");
return this->rep_;
}
// Get the underlying pointer (does not make a copy, so beware!).
ACE_INLINE const char *
ACE_SString::c_str (void) const
{
ACE_TRACE ("ACE_SString::c_str");
return this->rep_;
}
// Comparison operator.
ACE_INLINE bool
ACE_SString::operator== (const ACE_SString &s) const
{
ACE_TRACE ("ACE_SString::operator==");
return this->len_ == s.len_
&& ACE_OS::strcmp (this->rep_, s.rep_) == 0;
}
// Less than comparison operator.
ACE_INLINE bool
ACE_SString::operator < (const ACE_SString &s) const
{
ACE_TRACE ("ACE_SString::operator <");
return (this->rep_ && s.rep_)
? ACE_OS::strcmp (this->rep_, s.rep_) < 0
: ((s.rep_) ? true : false);
}
// Greater than comparison operator.
ACE_INLINE bool
ACE_SString::operator > (const ACE_SString &s) const
{
ACE_TRACE ("ACE_SString::operator >");
return (this->rep_ && s.rep_)
? ACE_OS::strcmp (this->rep_, s.rep_) > 0
: ((this->rep_) ? true : false );
}
// Comparison operator.
ACE_INLINE bool
ACE_SString::operator!= (const ACE_SString &s) const
{
ACE_TRACE ("ACE_SString::operator!=");
return !(*this == s);
}
ACE_INLINE int
ACE_SString::compare (const ACE_SString &s) const
{
ACE_TRACE ("ACE_SString::compare");
return ACE_OS::strcmp (this->rep_, s.rep_);
}
ACE_INLINE ACE_SString::size_type
ACE_SString::find (const char *s, size_type pos) const
{
char *substr = this->rep_ + pos;
char *pointer = ACE_OS::strstr (substr, s);
if (pointer == 0)
return ACE_SString::npos;
else
return pointer - this->rep_;
}
ACE_INLINE ACE_SString::size_type
ACE_SString::find (char c, size_type pos) const
{
char *substr = this->rep_ + pos;
char *pointer = ACE_OS::strchr (substr, c);
if (pointer == 0)
return ACE_SString::npos;
else
return pointer - this->rep_;
}
ACE_INLINE ACE_SString::size_type
ACE_SString::strstr (const ACE_SString &s) const
{
ACE_TRACE ("ACE_SString::strstr");
return this->find (s.rep_);
}
ACE_INLINE ACE_SString::size_type
ACE_SString::find (const ACE_SString &str, size_type pos) const
{
return this->find (str.rep_, pos);
}
ACE_INLINE ACE_SString::size_type
ACE_SString::rfind (char c, size_type pos) const
{
if (pos == ACE_SString::npos)
pos = this->len_;
// Do not change to prefix operator! Proper operation of this loop
// depends on postfix decrement behavior.
for (size_type i = pos; i-- != 0; )
if (this->rep_[i] == c)
return i;
return ACE_SString::npos;
}
ACE_INLINE u_long
ACE_SString::hash (void) const
{
return ACE::hash_pjw (this->rep_);
}
ACE_INLINE ACE_SString::size_type
ACE_SString::length (void) const
{
ACE_TRACE ("ACE_SString::length");
return this->len_;
}
ACE_INLINE
ACE_Auto_String_Free::ACE_Auto_String_Free (char* p)
: p_ (p)
{
}
ACE_INLINE
ACE_Auto_String_Free::ACE_Auto_String_Free (ACE_Auto_String_Free& rhs)
: p_ (rhs.p_)
{
rhs.p_ = 0;
}
ACE_INLINE void
ACE_Auto_String_Free::reset (char* p)
{
ACE_OS::free (this->p_);
this->p_ = p;
}
ACE_INLINE ACE_Auto_String_Free&
ACE_Auto_String_Free::operator= (ACE_Auto_String_Free& rhs)
{
if (this != &rhs)
{
this->reset (rhs.p_);
rhs.p_ = 0;
}
return *this;
}
ACE_INLINE
ACE_Auto_String_Free::~ACE_Auto_String_Free (void)
{
this->reset (0);
}
ACE_INLINE char*
ACE_Auto_String_Free::operator* (void) const
{
return this->p_;
}
ACE_INLINE char
ACE_Auto_String_Free::operator[] (size_t i) const
{
return this->p_[i];
}
ACE_INLINE char*
ACE_Auto_String_Free::get (void) const
{
return this->p_;
}
ACE_INLINE char*
ACE_Auto_String_Free::release (void)
{
char* p = this->p_;
this->p_ = 0;
return p;
}
ACE_END_VERSIONED_NAMESPACE_DECL
|