/usr/include/OpenMS/DATASTRUCTURES/String.h is in libopenms-dev 1.11.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 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 | // --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universitaet Berlin 2002-2013.
//
// This software is released under a three-clause BSD license:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of any author or any participating institution
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
// For a full list of authors, refer to the file AUTHORS.
// --------------------------------------------------------------------------
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// --------------------------------------------------------------------------
// $Maintainer: Stephan Aiche$
// $Authors: Marc Sturm $
// --------------------------------------------------------------------------
#ifndef OPENMS_DATASTRUCTURES_STRING_H
#define OPENMS_DATASTRUCTURES_STRING_H
#include <OpenMS/CONCEPT/Types.h>
#include <string>
#include <vector>
class QString;
namespace OpenMS
{
class DataValue;
/**
@brief A more convenient string class.
It is based on std::string but adds a lot of methods for convenience.
@ingroup Datastructures
*/
class String :
public std::string
{
public:
/// Empty string for comparisons
OPENMS_DLLAPI static const String EMPTY;
/** @name Type definitions
*/
//@{
/// Iterator
typedef iterator Iterator;
/// Const Iterator
typedef const_iterator ConstIterator;
/// Reverse Iterator
typedef reverse_iterator ReverseIterator;
/// Const reverse Iterator
typedef const_reverse_iterator ConstReverseIterator;
/// UInt type
typedef size_type SizeType;
/// How to handle embedded quotes when quoting strings
enum QuotingMethod {NONE, ESCAPE, DOUBLE};
//@}
/** @name Constructors
*/
//@{
/// Default constructor
OPENMS_DLLAPI String();
/// Constructor from std::string
OPENMS_DLLAPI String(const std::string & s);
/// Constructor from Qt QString
OPENMS_DLLAPI String(const QString & s);
/// Constructor from char*
OPENMS_DLLAPI String(const char * s);
/// Constructor from a char
OPENMS_DLLAPI String(const char c);
/// Constructor from char* (only @p length chracters)
OPENMS_DLLAPI String(const char * s, SizeType length);
/// Constructor from char (repeats the char @p len times)
OPENMS_DLLAPI String(size_t len, char c);
/// Constructor from a char range
template <class InputIterator>
String(InputIterator first, InputIterator last) :
std::string(first, last)
{
}
/// Constructor from an integer
OPENMS_DLLAPI String(int i);
/// Constructor from an unsigned integer
OPENMS_DLLAPI String(unsigned int i);
/// Constructor from an integer
OPENMS_DLLAPI String(short int i);
/// Constructor from an unsigned integer
OPENMS_DLLAPI String(short unsigned int i);
/// Constructor from an integer
OPENMS_DLLAPI String(long int i);
/// Constructor from an unsigned integer
OPENMS_DLLAPI String(long unsigned int i);
/// Constructor from an unsigned integer
OPENMS_DLLAPI String(long long unsigned int i);
/// Constructor from an unsigned integer
OPENMS_DLLAPI String(long long signed int i);
/// Constructor from float
OPENMS_DLLAPI String(float f);
/// Constructor from double
OPENMS_DLLAPI String(double d);
/// Constructor from long double
OPENMS_DLLAPI String(long double ld);
/// Constructor from DataValue (casted to String)
OPENMS_DLLAPI String(const DataValue & d);
//@}
/** @name Predicates
*/
//@{
/// true if String begins with @p string, false otherwise
OPENMS_DLLAPI bool hasPrefix(const String & string) const;
/// true if String ends with @p string, false otherwise
OPENMS_DLLAPI bool hasSuffix(const String & string) const;
/// true if String contains the @p string, false otherwise
OPENMS_DLLAPI bool hasSubstring(const String & string) const;
/// true if String contains the @p byte, false otherwise
OPENMS_DLLAPI bool has(Byte byte) const;
//@}
/** @name Accessors
*/
//@{
/**
@brief returns the prefix of length @p length
@exception Exception::IndexOverflow is thrown if @p length is bigger than the size
*/
OPENMS_DLLAPI String prefix(SizeType length) const;
/**
@brief returns the suffix of length @p length
@exception Exception::IndexOverflow is thrown if @p length is bigger than the size
*/
OPENMS_DLLAPI String suffix(SizeType length) const;
/**
@brief returns the prefix of length @p length
@exception Exception::IndexUnderflow is thrown if @p length is smaller than zero
@exception Exception::IndexOverflow is thrown if @p length is bigger than the size
*/
OPENMS_DLLAPI String prefix(Int length) const;
/**
@brief returns the suffix of length @p length
@exception Exception::IndexUnderflow is thrown if @p length is smaller than zero
@exception Exception::IndexOverflowis thrown if @p length is bigger than the size
*/
OPENMS_DLLAPI String suffix(Int length) const;
/**
@brief returns the prefix up to the first occurence of char @p delim (excluding it)
@exception Exception::ElementNotFound is thrown if @p delim is not found
*/
OPENMS_DLLAPI String prefix(char delim) const;
/**
@brief returns the suffix up to the last occurence of char @p delim (excluding it)
@exception Exception::ElementNotFound is thrown if @p delim is not found
*/
OPENMS_DLLAPI String suffix(char delim) const;
/**
@brief Wrapper for the STL substr() method. Returns a String object with its contents initialized to a substring of the current object.
@param pos Position of a character in the current string object to be used as starting character for the substring.
If the @p pos is past the end of the string, it is set to the end of the string.
@param n Length of the substring.
If this value would make the substring to span past the end of the current string content, only those characters until the end of the string are used.
npos is a static member constant value with the greatest possible value for an element of type size_t, therefore, when this value is used, all the
characters between pos and the end of the string are used as the initialization substring.
*/
OPENMS_DLLAPI String substr(size_t pos = 0, size_t n = npos) const;
/**
@brief Returns a substring where @p n characters were removed from the end of the string.
If @p n is greater than size(), the result is an empty string.
@param n Number of characters that will be removed from the end of the string.
*/
OPENMS_DLLAPI String chop(Size n) const;
//@}
/**
@name Mutators
All these methods return a reference to the string in order to make them chainable
*/
//@{
/// inverts the direction of the string
OPENMS_DLLAPI String & reverse();
/// removes whitespaces (space, tab, line feed, carriage return) at the beginning and the end of the string
OPENMS_DLLAPI String & trim();
/**
@brief Wraps the string in quotation marks
The quotation mark can be specified by parameter @p q (typically single or double quote); embedded quotation marks are handled according to @p method by backslash-escaping, doubling, or not at all.
@see unquote()
*/
OPENMS_DLLAPI String & quote(char q = '"', QuotingMethod method = ESCAPE);
/**
@brief Reverses changes made by the @p quote method
Removes surrounding quotation marks (given by parameter @p q); handles embedded quotes according to @p method.
@exception Exception::ConversionError is thrown if the string does not have the format produced by @p quote
@see quote()
*/
OPENMS_DLLAPI String & unquote(char q = '"', QuotingMethod method = ESCAPE);
/// merges subsequent whitespaces to one blank character
OPENMS_DLLAPI String & simplify();
///Adds @p c on the left side until the size of the string is @p size
OPENMS_DLLAPI String & fillLeft(char c, UInt size);
///Adds @p c on the right side until the size of the string is @p size
OPENMS_DLLAPI String & fillRight(char c, UInt size);
///Converts the string to uppercase
OPENMS_DLLAPI String & toUpper();
///Converts the string to lowercase
OPENMS_DLLAPI String & toLower();
///Converts the first letter of the string to uppercase
OPENMS_DLLAPI String & firstToUpper();
///Replaces all occurences of the character @p from by the character @p to.
OPENMS_DLLAPI String & substitute(char from, char to);
///Replaces all occurences of the string @p from by the string @p to.
OPENMS_DLLAPI String & substitute(const String & from, const String & to);
///Remove all occurences of the character @p what.
OPENMS_DLLAPI String & remove(char what);
///Makes sure the string ends with the character @p end
OPENMS_DLLAPI String & ensureLastChar(char end);
///removes whitespaces (space, tab, line feed, carriage return)
OPENMS_DLLAPI String & removeWhitespaces();
//@}
/** @name Converters
*/
//@{
/**
@brief Conversion to int
This method extracts only the integral part of the string.
If you want the result rounded, use toFloat() and round the result.
@exception Exception::ConversionError is thrown if the string could not be converted to int
*/
OPENMS_DLLAPI Int toInt() const;
/**
@brief Conversion to float
@exception Exception::ConversionError is thrown if the string could not be converted to float
*/
OPENMS_DLLAPI Real toFloat() const;
/**
@brief Conversion to double
@exception Exception::ConversionError is thrown if the string could not be converted to double
*/
OPENMS_DLLAPI DoubleReal toDouble() const;
/// Conversion to Qt QString
OPENMS_DLLAPI QString toQString() const;
//@}
/** @name Sum operator overloads
*/
//@{
/// Sum operator for an integer
OPENMS_DLLAPI String operator+(int i) const;
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String operator+(unsigned int i) const;
/// Sum operator for an integer
OPENMS_DLLAPI String operator+(short int i) const;
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String operator+(short unsigned int i) const;
/// Sum operator for an integer
OPENMS_DLLAPI String operator+(long int i) const;
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String operator+(long unsigned int i) const;
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String operator+(long long unsigned int i) const;
/// Sum operator for float
OPENMS_DLLAPI String operator+(float f) const;
/// Sum operator for double
OPENMS_DLLAPI String operator+(double d) const;
/// Sum operator for long double
OPENMS_DLLAPI String operator+(long double ld) const;
/// Sum operator for char
OPENMS_DLLAPI String operator+(char c) const;
/// Sum operator for char*
OPENMS_DLLAPI String operator+(const char * s) const;
/// Sum operatr for String
OPENMS_DLLAPI String operator+(const String & s) const;
/// Sum operator for std::string
OPENMS_DLLAPI String operator+(const std::string & s) const;
//@}
/** @name Append operator overloads
*/
//@{
/// Sum operator for an integer
OPENMS_DLLAPI String & operator+=(int i);
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String & operator+=(unsigned int i);
/// Sum operator for an integer
OPENMS_DLLAPI String & operator+=(short int i);
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String & operator+=(short unsigned int i);
/// Sum operator for an integer
OPENMS_DLLAPI String & operator+=(long int i);
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String & operator+=(long unsigned int i);
/// Sum operator for an unsigned integer
OPENMS_DLLAPI String & operator+=(long long unsigned int i);
/// Sum operator for float
OPENMS_DLLAPI String & operator+=(float f);
/// Sum operator for double
OPENMS_DLLAPI String & operator+=(double d);
/// Sum operator for long double
OPENMS_DLLAPI String & operator+=(long double d);
/// Sum operator for char
OPENMS_DLLAPI String & operator+=(char c);
/// Sum operator for char*
OPENMS_DLLAPI String & operator+=(const char * s);
/// Sum operatr for String
OPENMS_DLLAPI String & operator+=(const String & s);
/// Sum operator for std::string
OPENMS_DLLAPI String & operator+=(const std::string & s);
//@}
///returns a random string of the given length. It consists of [0-9a-zA-Z]
OPENMS_DLLAPI static String random(UInt length);
///returns a string for @p d with exactly @p n decimal places
OPENMS_DLLAPI static String number(DoubleReal d, UInt n);
/**
@brief Returns a string with at maximum @p n characters for @p d
If @p d is larger, scientific notation is used.
*/
OPENMS_DLLAPI static String numberLength(DoubleReal d, UInt n);
/**
@brief Splits a string into @p substrings using @p splitter as delimiter
If @p splitter is not found, the whole string is put into @p substrings.
If @p splitter is empty, the string is split into individual characters.
If the invoking string is empty, @p substrings will also be empty.
@p quote_protect (default: false) can be used to split only between quoted
blocks e.g. ' "a string" , "another string with , in it" '
results in only two substrings (with double quotation marks @em removed).
Every returned substring is trimmed and then (if present) has surrounding quotation marks removed.
@return @e true if one or more splits occurred, @e false otherwise
@see concatenate().
*/
OPENMS_DLLAPI bool split(const char splitter, std::vector<String> & substrings, bool quote_protect = false) const;
/**
@brief Splits a string into @p substrings using @p splitter (the whole string) as delimiter
If @p splitter is not found, the whole string is put into @p substrings.
If @p splitter is empty, the string is split into individual characters.
If the invoking string is empty, @p substrings will also be empty.
@return @e true if one or more splits occurred, @e false otherwise
@see concatenate().
*/
OPENMS_DLLAPI bool split(const String & splitter, std::vector<String> & substrings) const;
/**
@brief Splits a string into @p substrings using @p splitter (the whole string) as delimiter, but does not split within quoted substrings
A "quoted substring" has the format as produced by @p quote(q, method), where @p q is the quoting character and @p method defines the handling of embedded quotes. Substrings will not be "unquoted" or otherwise processed.
If @p splitter is not found, the whole string is put into @p substrings.
If @p splitter or the invoking string is empty, @p substrings will also be empty.
@return @e true if one or more splits occurred, @e false otherwise
@exception Exception::ConversionError is thrown if quotation marks are not balanced
@see concatenate(), quote().
*/
OPENMS_DLLAPI bool split_quoted(const String & splitter, std::vector<String> & substrings,
char q = '"', QuotingMethod method = ESCAPE) const;
/**
@brief Concatenates all elements from @p first to @p last-1 and inserts @p glue between the elements
@see split().
*/
template <class StringIterator>
void concatenate(StringIterator first, StringIterator last, const String & glue = "")
{
//empty container
if (first == last)
{
std::string::clear();
return;
}
std::string::operator=(* first);
for (StringIterator it = ++first; it != last; ++it)
{
std::string::operator+=(glue + (*it));
}
}
};
} // namespace OPENMS
#endif // OPENMS_DATASTRUCTURES_STRING_H
|