/usr/include/sipxtapi/utl/UtlString.h is in libsipxtapi-dev 3.3.0~test17-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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 | //
// Copyright (C) 2006-2011 SIPez LLC. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _UtlString_h_
#define _UtlString_h_
// SYSTEM INCLUDES
#include <stdarg.h>
#include "os/OsDefs.h"
// APPLICATION INCLUDES
#include "utl/UtlDefs.h"
#include "utl/UtlCopyableContainable.h"
// DEFINES
#define DEFAULT_UTLSTRING_CAPACITY 100 ///< initial capacity unless overridden by the constructor
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
/**
* UtlString is a resizable string which is also containable in
* any UtlContainer. It may include null characters.
*
* A UtlString will grow as needed to hold any value stored
* in it; because this expansion reallocates and copies memory, it is
* a good idea to specify an expected size either when the object is
* constructed or using the capacity method.
*
* @nosubgrouping
*/
class UtlString : public UtlCopyableContainable
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
static const UtlContainableType TYPE; /** < Class type used for runtime checking */
static const char* ssNull;
static const size_t UTLSTRING_NOT_FOUND; ///< Returned from a search that failed.
static const size_t UTLSTRING_TO_END; /**< When specifying the length of a substring,
* indicates that the substring should extend
* to the end of the string. */
/**
* Flags to the various strip methods
*/
typedef enum StripType
{
leading=1, /**< only strip from the beginning of the string */
trailing, /**< only strip from the end of the string */
both /**< strip from both ends of the string */
} StripType;
/**
* Case sensitivity control constants
*/
typedef enum CompareCase
{
matchCase, /**< Case sensitive comparison */
ignoreCase /**< Case insensitive comparison */
} CompareCase;
// ================================================================
/** @name Constructors
*/
///@{
/// Default Constructor
UtlString();
/// Constructor accepting a null terminated source string.
UtlString(const char* szSource /**< initial string value */ );
/**<
* The source string is copied to this object.
*/
/// Constructor accepting a source string with an explicit length.
UtlString(const char* szSource, size_t length);
/**<
* Any zero byte in the source string is ignored; all length chars of the source
* string are copied to this object.
*/
/// Copy the source UtlString.
UtlString(const UtlString& source);
/// Copy an initial substring.
UtlString(const UtlString& source, size_t length);
/**<
* Constructor accepting a reference to another string and a length.
* Up to length characters are copied from the source string into
* this object. If length is greater than the length of source
* this becomes a copy of source with the same data and length.
*/
/// Clone method for UtlCopyableContainable requirements
virtual UtlCopyableContainable* clone() const;
///@}
// ================================================================
/** @name Assignment Operators
*
*/
///@{
/// Replace the contents of this string with a null terminated string.
UtlString& operator=(const char* szStr);
/// Replace the contents of this string with contents of a UtlString
UtlString& operator=(const UtlString& str);
///@}
// ================================================================
/** @name Accessors
*
*/
///@{
/// The current length of the string value
size_t length() const;
/// Return a read-only pointer to the stored string value..
const char* data() const;
/**<
* This pointer should not be stored, since operations on the UtlString
* may free it.
*
* The returned pointer is never null, even if the UtlString is
* null or newly-allocated.
*
* The stored value will have a null byte at the end, but may also have
* null bytes at other positions within the value.
*/
/// Cast to a const char* - identical to the data() method.
operator const char*() const;
/**<
* Cast this object to a const char* pointer. This is exactly the
* same as calling data().
*/
/// Return the current capacity allocated for this string.
size_t capacity() const;
///@}
// ================================================================
/** @name Substring Operators
*
* Extract a portion of the string value.
*/
///@{
/// Allows references of the form stringVar(start,length) - also see append
UtlString operator() (size_t start, /**< Starting character position
* (zero based) */
size_t len /**< Number of characters to copy or
* UTLSTRING_TO_END for
* "the rest of the string" */
) const;
/**<
* An empty string is returned if the start and/or len is invalid.
*
* @note
* This method constructs a temporary UtlString object. It will usually
* be more efficient to use the append method taking a UtlString, position,
* and length.
*
*/
/// Get the character at position N.
char operator()(size_t N);
/**
* @returns the nth character (zero based)
* @code
* UtlString aString("abc");
* char secondChar = aString(1);
* @endcode
* Sets secondChar to 'b'
*/
///@}
// ================================================================
/** @name Comparison Operations
*
*/
///@{
/// Return true if this is an empty string.
UtlBoolean isNull() const;
/// Compare this string to a null terminated string (case sensitive).
virtual int compareTo(const char *) const;
/**<
* @returns 0 if equal, < 0 if less then and >0 if greater.
*/
/// Compare this string to a null terminated string, with case sensitivity control
int compareTo(const char *, CompareCase type) const;
/// Compare this object to another string, with case sensitivity control
int compareTo(UtlString const *, CompareCase type) const;
/**<
* @returns 0 if equal, < 0 if less then and >0 if greater.
*/
/// Check for a null terminated value in this string.
UtlBoolean contains(const char *) const;
/**<
* This is equivalent to ( index(str) != UTL_NOT_FOUND )
*
* @return true if this string contains the specified string.
*/
friend UtlBoolean operator!=(const char *, const UtlString& );
friend UtlBoolean operator!=(const char , const UtlString& );
friend UtlBoolean operator==(const char , const UtlString& );
friend UtlBoolean operator==(const char *, const UtlString& );
UtlBoolean operator==(const char *) const;
UtlBoolean operator!=(const char *) const;
UtlBoolean operator==(const UtlString&) const;
UtlBoolean operator!=(const UtlString&) const;
///@}
// ================================================================
/** @name Search Operations
*
* Also see the regular expression search operations in the RegEx class.
*/
///@{
/// Find the first instance of a single character.
size_t index(char c) const;
/**<
* @return the offset of the first c or UTL_NOT_FOUND
*/
/// Find the first instance of a single character starting at a specified offset.
size_t index(char c, size_t offset) const;
/**<
* @return the offset from the beginning of the string of the first c after
* offset or UTL_NOT_FOUND
*/
/// Find the first instance of a single character.
size_t first(char c) const;
/**<
* @return the offset of the first c or UTL_NOT_FOUND
*
* (this is the same as index(c) )
*/
/// Find the first instance of a null terminated string.
size_t index(const char* ) const;
/**<
* @return the offset of the first matching string or UTL_NOT_FOUND
*/
/// Find the first instance of a specified length string.
size_t index(const char* , size_t ) const;
/**<
* The search target value may contain null characters.
*
* @return the offset of the first matching string or UTL_NOT_FOUND
*/
/// Find the first instance of a specified length string, with case control
size_t index(const char* , size_t , CompareCase ) const;
/**<
* The search target value may contain null characters.
*
* @return the offset of the first matching string or UTL_NOT_FOUND
*/
/// Find the first match for the specified string (which may contain null characters)
size_t index(const UtlString& ) const;
/**<
* The search target value may contain null characters.
*
* @return the offset of the first matching string or UTL_NOT_FOUND
*/
/// Find a match for the specified string starting at offset
size_t index(const UtlString& match, ///< string value to search for
size_t offset ///< offset in target to start search
) const;
/**<
* The search target value (match) may contain null characters.
*
* @return the offset from the beginning of the string of the match value
* after offset or UTL_NOT_FOUND
*/
/// Find a match for the specified string starting at offset, with case sensitivity control
size_t index(const UtlString& , size_t , CompareCase ) const;
/**<
* The search target value (match) may contain null characters.
*
* @return the offset from the beginning of the string of the match value
* after offset or UTL_NOT_FOUND
*/
/// Find the first instance of a null terminated string
size_t first(const char* ) const;
/**<
* @return the offset of the string or UTL_NOT_FOUND
*/
/// Find the last instance of a character
size_t last(char s) const;
/**<
* @return the offset of the string or UTL_NOT_FOUND
*/
///@}
// ================================================================
/** @name Append Operations
*
* Append operations add to the end of the current value of the string.
*/
///@{
/// Append a null terminated string to the end of the lvalue.
UtlString& operator+=(const char *);
/// Append a null terminated string to the end of this string.
UtlString& append(const char* szStr);
/// Append a UtlString to this string.
UtlString& operator+=(const UtlString& s);
/// Append a UtlString to this string.
UtlString& append(const UtlString& str ///< source string
);
/// Append a substring of a UtlString to this string.
UtlString& append(const UtlString& str, ///< source string
size_t position, ///< offset into source to start copy
size_t length ///< length of substring to copy
);
/**<
* Note the difference between these two copies:
* @code
* UtlString source("0123456789");
*
* UtlString destA;
* destA = source(1,3);
*
* UtlString destB;
* destB.append(source, 6, 2);
* @endcode
* The assignment to destA actually constructs a temporary UtlString on the
* stack as the output of the source(1,3), invokes the copy constructor to
* copy its contents into destA, and then destructs it.
*
* The assignment to destB copies the string contents directly from source
* to destB.
*/
/// Append up to N bytes of the designated string to the end of this string.
UtlString& append(const char* szStr, size_t N);
/// Append a single character to the end of this string.
UtlString& operator+=(const char c);
/// Append a single character to the end of this string.
UtlString& append(const char c);
/// Append format string like pritnf
UtlString& appendFormat(const char* format, ... )
#ifdef __GNUC__
/* with the -Wformat switch, this enables format string checking */
__attribute__ ((format(printf, 2, 3)))
#endif
;
///@}
// ================================================================
/** @name Insertion Operators
*
* These methods insert values into the string; the capacity is increased
* as needed to hold the additional value.
*
* Nothing is overwritten - Any existing value at the insertion point is
* shifted to make room.
*/
///@{
/// Insert a UtlString
UtlString& insert(size_t position, ///< position to insert the src string.
const UtlString& src ///< value to be inserted
);
/**<
* If an invalid position is specified, nothing is performed.
*/
/// Insert a single character
UtlString& insert(size_t position, ///< position to insert newChar.
const char newChar ///< character to insert
);
/**<
* If an invalid position is specified, nothing is performed.
*/
/// Insert a null terminated string
UtlString& insert(size_t position, ///< position to insert src C string
const char* src ///< null terminated string to insert
);
/**<
* If an invalid position is specified, nothing is performed.
*/
/// Prepend a null terminated string at the beginning of this string.
UtlString& prepend(const char* szStr);
/**< Equivalent to insert(0, szStr); */
/// Insert arbitrary length value
UtlString& insert(size_t position, ///< position to insert src value
const char* src, ///< value to insert (may contain null bytes)
size_t sourceLenth ///< number of bytes to insert
);
/**<
* Insert the value at character position.
*
* If an invalid position is specified, nothing is performed.
*/
///@}
// ================================================================
/** @name Replacement Operations
*
*/
///@{
/// Replace a single character at the designated position.
void replaceAt(size_t pos, ///< offset into data to replace - must be < the length
char newChar ///< character to be put into that offset
);
/// Replace all instances of character src with character tgt.
UtlString& replace(const char src, const char tgt);
/// Replace N characters from a char*.
UtlString& replace(size_t pos, ///< position in string to begin replacing
size_t N, ///< number of characters to replace
const char* replaceStr ///< replacement value
);
/**<
* Replace N characters starting at the designated position with the
* designated replacement string. Invalid position or length results
* in no changes.
*/
/// Replace N characters from a char*, with specified length string.
UtlString& replace(size_t pos, ///< starting position of the replacement
size_t N, ///< number of characters to replace
const char* replaceStr, ///< target replacement string
size_t L ///< maximum number of characters of the replacement string to use.
);
/**<
* Replace N characters starting at the designated position with a subset
* of the designated replacement string. Invalid position or length results
* in no changes.
*/
/// Replace N characters from another UtlString.
UtlString& replace(size_t pos, ///< position in string to begin replacing
size_t N, ///< number of characters to replace
const UtlString& replaceStr ///< replacement value
);
/**<
* Replace N characters starting at the designated position with the
* designated replacement string. Invalid position or length results
* in no changes.
*/
///@}
// ================================================================
/** @name Concatenation Operations
*
*/
///@{
/// Concatenate two UtlStrings as: s1 + s2
friend UtlString operator+(const UtlString& s1, const UtlString& s2);
/// Concatenate a UtlString with a constant string as: s + c
friend UtlString operator+(const UtlString& s, const char* c);
/// Concatenate a constant string with a UtlString as: c + s
friend UtlString operator+(const char* c, const UtlString& s);
///@}
// ================================================================
/** @name Remove Operations
*
* Also see Stripping and Trimming, below
*/
///@{
/// Remove all characters after the specified position.
UtlString& remove(size_t pos);
/**<
* Nothing is performed if the position is invalid.
*/
/// Remove N characters from this string starting at designated position.
UtlString& remove(size_t pos, size_t N);
/**<
* Invalid position or length results in no changes.
*/
///@}
// ================================================================
/** @name Stripping and Trimming Operations
*
*/
///@{
/// Removes whitespace (space, tab, Cr, Lf) from the end of the string.
UtlString strip();
/// Removes whitespace (space, tab, Cr, Lf) from either or both ends of the string.
UtlString strip(StripType whichEnd);
/**<
* Removes whitespace (space, tab, Cr, Lf) from the beginning of the string,
* from the end of the string, or from both the beginning and end of the
* string.
*/
/// Removes all instances of the specified character from either or both ends of the string.
UtlString strip(StripType whichEnd, char charToStrip);
/**<
* Remove the designated character from the beginning of the string,
* from the end of the string, or from both the beginning and end of
* the string.
*/
///@}
// ================================================================
/** @name Case Conversion Operations
*
*/
///@{
/**
* Convert the string to all lower case characters (e.g. AbC1 -> abc1)
*/
void toLower();
/**
* Convert the string to all upper case characters (e.g. AbC1 -> ABC1)
*/
void toUpper();
///@}
// ================================================================
/** @name Capacity Management
*
*/
///@{
/// Set the minimum capacity a string can hold without reallocation.
size_t capacity(size_t N);
/**<
* Set the string's storage capacity to the designated value.
* This does not modify the value of the string, but rather
* adjusts the dynamic memory allocated for this string.
*
* This never reduces the capacity - any size less then the
* current capacity is a no-op.
*
* @return The new capacity that was set. In case of success, it
* may be greater than the requested capacity. In case of failure,
* it may be less than the requested capacity.
*/
/// Set a new size for the string.
void resize(size_t N, UtlBoolean clearTail=TRUE);
/**<
* Resize the string to the specified size. If the requested size is less
* then the the current size (string length), the string will be truncated.
* If requested size is larger then current size and \a clearTail is TRUE
* (default), the string will be padded with nulls. If \a clearTail is
* FALSE, string will not be padded with nulls.
*/
///@}
// ================================================================
/** @name Container Support Operations
*
*/
///@{
/// Calculate a hash over the string contents.
virtual unsigned hash() const;
/**<
* If the equals operator returns true for another object, then both
* objects must return the same hashcode.
*/
/// Determine whether or not the values in a containable are comparable.
virtual UtlContainableType getContainableType() const;
/**<
* This returns a unique type for UtlString
*/
/// Compare to any other UtlContainable
virtual int compareTo(UtlContainable const *other) const;
/**<
* Compare this object to another containable object.
* If the UtlContainableType of the other object is not the UtlString type,
* this will return unequal.
*
* @returns 0 if equal, < 0 if less than, and > 0 if greater.
*/
virtual UtlBoolean isEqual(UtlContainable const *) const;
/**<
* Test this object to another like-object for equality. This method
* returns false if unlike-objects are specified.
*/
/// @copydoc UtlContainable::isInstanceOf
virtual UtlBoolean isInstanceOf(const UtlContainableType type) const;
///@}
// ================================================================
/** @name Destructors
*
*/
///@{
/// Destructor
virtual ~UtlString();
///@}
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
char* mpData; //: The value of UtlString.
size_t mSize; //: The number of bytes of data used.
size_t mCapacity; //: The allocated size of data.
char mBuiltIn[DEFAULT_UTLSTRING_CAPACITY];
};
/* ============================ INLINE METHODS ============================ */
#endif // _UtlString_h_
|