/usr/include/gromacs/utility/stringutil.h is in libgromacs-dev 5.1.2-1ubuntu1.
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 | /*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 2011,2012,2013,2014,2015, by the GROMACS development team, led by
* Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
* and including many others, as listed in the AUTHORS file in the
* top-level source directory and at http://www.gromacs.org.
*
* GROMACS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* GROMACS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GROMACS; if not, see
* http://www.gnu.org/licenses, or write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* If you want to redistribute modifications to GROMACS, please
* consider that scientific software is very special. Version
* control is crucial - bugs must be traceable. We will be happy to
* consider code for inclusion in the official distribution, but
* derived work must not be called official GROMACS. Details are found
* in the README & COPYING files - if they are missing, get the
* official version at http://www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the research papers on the package. Check out http://www.gromacs.org.
*/
/*! \file
* \brief
* Declares common string utility and formatting routines.
*
* \author Teemu Murtola <teemu.murtola@gmail.com>
* \inpublicapi
* \ingroup module_utility
*/
#ifndef GMX_UTILITY_STRINGUTIL_H
#define GMX_UTILITY_STRINGUTIL_H
#include <cstring>
#include <string>
#include <vector>
namespace gmx
{
//! \addtogroup module_utility
//! \{
/*! \brief
* Tests whether a string is null or empty.
*
* Does not throw.
*/
bool inline isNullOrEmpty(const char *str)
{
return str == NULL || str[0] == '\0';
}
/*! \brief
* Tests whether a string starts with another string.
*
* \param[in] str String to process.
* \param[in] prefix Prefix to find.
* \returns true if \p str starts with \p prefix.
*
* Returns true if \p prefix is empty.
* Does not throw.
*/
bool inline startsWith(const std::string &str, const std::string &prefix)
{
return str.compare(0, prefix.length(), prefix) == 0;
}
//! \copydoc startsWith(const std::string &, const std::string &)
bool inline startsWith(const char *str, const char *prefix)
{
return std::strncmp(str, prefix, std::strlen(prefix)) == 0;
}
/*! \brief
* Tests whether a string ends with another string.
*
* \param[in] str String to process.
* \param[in] suffix Suffix to find.
* \returns true if \p str ends with \p suffix.
*
* Returns true if \p suffix is NULL or empty.
* Does not throw.
*/
bool endsWith(const std::string &str, const char *suffix);
/*! \brief
* Removes a suffix from a string.
*
* \param[in] str String to process.
* \param[in] suffix Suffix to remove.
* \returns \p str with \p suffix removed, or \p str unmodified if it does
* not end with \p suffix.
* \throws std::bad_alloc if out of memory.
*
* Returns \p str if \p suffix is NULL or empty.
*/
std::string stripSuffixIfPresent(const std::string &str, const char *suffix);
/*! \brief
* Removes leading and trailing whitespace from a string.
*
* \param[in] str String to process.
* \returns \p str with leading and trailing whitespaces removed.
* \throws std::bad_alloc if out of memory.
*/
std::string stripString(const std::string &str);
/*! \brief
* Formats a string (snprintf() wrapper).
*
* \throws std::bad_alloc if out of memory.
*
* This function works like sprintf(), except that it returns an std::string
* instead of requiring a preallocated buffer. Arbitrary length output is
* supported.
*/
std::string formatString(const char *fmt, ...);
/*! \brief Function object that wraps a call to formatString() that
* expects a single conversion argument, for use with algorithms. */
class StringFormatter
{
public:
/*! \brief Constructor
*
* \param[in] format The printf-style format string that will
* be applied to convert values of type T to
* string. Exactly one argument to the conversion
* specification(s) in `format` is supported. */
explicit StringFormatter(const char *format) : format_(format)
{
}
//! Implements the formatting functionality
template <typename T>
std::string operator()(const T &value) const
{
return formatString(format_, value);
}
private:
//! Format string to use
const char *format_;
};
/*! \brief Function object to implement the same interface as
* `StringFormatter` to use with strings that should not be formatted
* further. */
class IdentityFormatter
{
public:
//! Implements the formatting non-functionality
std::string operator()(const std::string &value) const
{
return value;
}
};
/*! \brief Formats all the range as strings, and then joins them with
* a separator in between.
*
* \param[in] begin Iterator the beginning of the range to join.
* \param[in] end Iterator the end of the range to join.
* \param[in] separator String to put in between the joined strings.
* \param[in] formatter Function object to format the objects in
* `container` as strings
* \returns All objects in the range from `begin` to `end` formatted
* as strings and concatenated with `separator` between each pair.
* \throws std::bad_alloc if out of memory.
*/
template <typename InputIterator, typename FormatterType>
std::string formatAndJoin(InputIterator begin, InputIterator end, const char *separator, const FormatterType &formatter)
{
std::string result;
const char *currentSeparator = "";
for (InputIterator i = begin; i != end; ++i)
{
result.append(currentSeparator);
result.append(formatter(*i));
currentSeparator = separator;
}
return result;
}
/*! \brief Formats all elements of the container as strings, and then
* joins them with a separator in between.
*
* \param[in] container Objects to join.
* \param[in] separator String to put in between the joined strings.
* \param[in] formatter Function object to format the objects in
* `container` as strings
* \returns All objects from `container` formatted as strings and
* concatenated with `separator` between each pair.
* \throws std::bad_alloc if out of memory.
*/
template <typename ContainerType, typename FormatterType>
std::string formatAndJoin(const ContainerType &container, const char *separator, const FormatterType &formatter)
{
return formatAndJoin(container.begin(), container.end(), separator, formatter);
}
/*! \brief
* Joins strings from a range with a separator in between.
*
* \param[in] begin Iterator the beginning of the range to join.
* \param[in] end Iterator the end of the range to join.
* \param[in] separator String to put in between the joined strings.
* \returns All strings from (`begin`, `end`) concatenated with `separator`
* between each pair.
* \throws std::bad_alloc if out of memory.
*/
template <typename InputIterator>
std::string joinStrings(InputIterator begin, InputIterator end,
const char *separator)
{
return formatAndJoin(begin, end, separator, IdentityFormatter());
}
/*! \brief
* Joins strings from a container with a separator in between.
*
* \param[in] container Strings to join.
* \param[in] separator String to put in between the joined strings.
* \returns All strings from `container` concatenated with `separator`
* between each pair.
* \throws std::bad_alloc if out of memory.
*/
template <typename ContainerType>
std::string joinStrings(const ContainerType &container, const char *separator)
{
return joinStrings(container.begin(), container.end(), separator);
}
/*! \brief
* Joins strings from an array with a separator in between.
*
* \param[in] array Array of strings to join.
* \param[in] separator String to put in between the joined strings.
* \tparam count Deduced number of elements in \p array.
* \returns All strings from `aray` concatenated with `separator`
* between each pair.
* \throws std::bad_alloc if out of memory.
*/
template <size_t count>
std::string joinStrings(const char *const (&array)[count], const char *separator)
{
return joinStrings(array, array + count, separator);
}
/*! \brief
* Splits a string to whitespace separated tokens.
*
* \param[in] str String to process.
* \returns \p str split into tokens at each whitespace sequence.
* \throws std::bad_alloc if out of memory.
*
* This function works like `split` in Python, i.e., leading and trailing
* whitespace is ignored, and consecutive whitespaces are treated as a single
* separator.
*/
std::vector<std::string> splitString(const std::string &str);
/*! \brief
* Replace all occurrences of a string with another string.
*
* \param[in] input Input string.
* \param[in] from String to find.
* \param[in] to String to use to replace \p from.
* \returns Copy of \p input with all occurrences of \p from replaced with \p to.
* \throws std::bad_alloc if out of memory.
*
* The replacement is greedy and not recursive: starting from the beginning of
* \p input, each match of \p from is replaced with \p to, and the search for
* the next match begins after the end of the previous match.
*
* Compexity is O(N), where N is length of output.
*
* \see replaceAllWords()
*/
std::string replaceAll(const std::string &input,
const char *from, const char *to);
//! \copydoc replaceAll(const std::string &, const char *, const char *)
std::string replaceAll(const std::string &input,
const std::string &from, const std::string &to);
/*! \brief
* Replace whole words with others.
*
* \param[in] input Input string.
* \param[in] from String to find.
* \param[in] to String to use to replace \p from.
* \returns Copy of \p input with all \p from words replaced with \p to.
* \throws std::bad_alloc if out of memory.
*
* Works as replaceAll(), but a match is only considered if it is delimited by
* non-alphanumeric characters.
*
* \see replaceAll()
*/
std::string replaceAllWords(const std::string &input,
const char *from, const char *to);
//! \copydoc replaceAllWords(const std::string &, const char *, const char *)
std::string replaceAllWords(const std::string &input,
const std::string &from, const std::string &to);
class TextLineWrapper;
/*! \brief
* Stores settings for line wrapping.
*
* Methods in this class do not throw.
*
* \see TextLineWrapper
*
* \inpublicapi
*/
class TextLineWrapperSettings
{
public:
/*! \brief
* Initializes default wrapper settings.
*
* Default settings are:
* - No maximum line width (only explicit line breaks).
* - No indentation.
* - No continuation characters.
* - Ignore whitespace after an explicit newline.
*/
TextLineWrapperSettings();
/*! \brief
* Sets the maximum length for output lines.
*
* \param[in] length Maximum length for the lines after wrapping.
*
* If this method is not called, or is called with zero \p length, the
* wrapper has no maximum length (only wraps at explicit line breaks).
*/
void setLineLength(int length) { maxLength_ = length; }
/*! \brief
* Sets the indentation for output lines.
*
* \param[in] indent Number of spaces to add for indentation.
*
* If this method is not called, the wrapper does not add indentation.
*/
void setIndent(int indent) { indent_ = indent; }
/*! \brief
* Sets the indentation for first output line after a line break.
*
* \param[in] indent Number of spaces to add for indentation.
*
* If this method is not called, or called with \p indent equal to -1,
* the value set with setIndent() is used.
*/
void setFirstLineIndent(int indent) { firstLineIndent_ = indent; }
/*! \brief
* Sets whether to remove spaces after an explicit newline.
*
* \param[in] bStrip If true, spaces after newline are ignored.
*
* If not removed, the space is added to the indentation set with
* setIndent().
* The default is to not strip such whitespace.
*/
void setStripLeadingWhitespace(bool bStrip)
{
bStripLeadingWhitespace_ = bStrip;
}
/*! \brief
* Sets a continuation marker for wrapped lines.
*
* \param[in] continuationChar Character to use to mark continuation
* lines.
*
* If set to non-zero character code, this character is added at the
* end of each line where a line break is added by TextLineWrapper
* (but not after lines produced by explicit line breaks).
* The default (\c '\0') is to not add continuation markers.
*
* Note that currently, the continuation char may cause the output line
* length to exceed the value set with setLineLength() by at most two
* characters.
*/
void setContinuationChar(char continuationChar)
{
continuationChar_ = continuationChar;
}
//! Returns the maximum length set with setLineLength().
int lineLength() const { return maxLength_; }
//! Returns the indentation set with setIndent().
int indent() const { return indent_; }
/*! \brief
* Returns the indentation set with setFirstLineIndent().
*
* If setFirstLineIndent() has not been called or has been called with
* -1, indent() is returned.
*/
int firstLineIndent() const
{
return (firstLineIndent_ >= 0 ? firstLineIndent_ : indent_);
}
private:
//! Maximum length of output lines, or <= 0 if no limit.
int maxLength_;
//! Number of spaces to indent each output line with.
int indent_;
/*! \brief
* Number of spaces to indent the first line after a newline.
*
* If -1, \a indent_ is used.
*/
int firstLineIndent_;
//! Whether to ignore or preserve space after a newline.
bool bStripLeadingWhitespace_;
//! If not \c '\0', mark each wrapping point with this character.
char continuationChar_;
//! Needed to access the members.
friend class TextLineWrapper;
};
/*! \brief
* Wraps lines to a predefined length.
*
* This utility class wraps lines at word breaks to produce lines that are not
* longer than a predefined length. Explicit newlines ('\\n') are preserved.
* Only space is considered a word separator. If a single word exceeds the
* maximum line length, it is still printed on a single line.
* Extra whitespace is stripped from the end of produced lines.
* Other options on the wrapping, such as the line length or indentation,
* can be changed using a TextLineWrapperSettings object.
*
* Two interfaces to do the wrapping are provided:
* -# High-level interface using either wrapToString() (produces a single
* string with embedded newlines) or wrapToVector() (produces a vector of
* strings with each line as one element).
* These methods operate on std::string and wrap the entire input string.
* -# Low-level interface using findNextLine() and formatLine().
* findNextLine() operates either on a C string or an std::string, and does
* not do any memory allocation (so it does not throw). It finds the next
* line to be wrapped, considering the wrapping settings.
* formatLine() does whitespace operations on the line found by
* findNextLine() and returns an std::string.
* These methods allow custom wrapping implementation to either avoid
* exceptions or to wrap only a part of the input string.
*
* Typical usage:
* \code
gmx::TextLineWrapper wrapper;
wrapper.settings().setLineLength(78);
printf("%s\n", wrapper.wrapToString(textToWrap).c_str());
\endcode
*
* \inpublicapi
*/
class TextLineWrapper
{
public:
/*! \brief
* Constructs a new line wrapper with default settings.
*
* Does not throw.
*/
TextLineWrapper()
{
}
/*! \brief
* Constructs a new line wrapper with given settings.
*
* \param[in] settings Wrapping settings.
*
* Does not throw.
*/
explicit TextLineWrapper(const TextLineWrapperSettings &settings)
: settings_(settings)
{
}
/*! \brief
* Provides access to settings of this wrapper.
*
* \returns The settings object for this wrapper.
*
* The returned object can be used to modify settings for the wrapper.
* All subsequent calls to wrapToString() and wrapToVector() use the
* modified settings.
*
* Does not throw.
*/
TextLineWrapperSettings &settings() { return settings_; }
/*! \brief
* Finds the next line to be wrapped.
*
* \param[in] input String to wrap.
* \param[in] lineStart Index of first character of the line to find.
* \returns Index of first character of the next line.
*
* If this is the last line, returns the length of \p input.
* In determining the length of the returned line, this function
* considers the maximum line length, leaving space for indentation,
* and also whitespace stripping behavior.
* Thus, the line returned may be longer than the maximum line length
* if it has leading and/or trailing space.
* When wrapping a line on a space (not on an explicit line break),
* the returned index is always on a non-whitespace character after the
* space.
*
* To iterate over lines in a string, use the following code:
* \code
gmx::TextLineWrapper wrapper;
// <set desired wrapping settings>
size_t lineStart = 0;
size_t length = input.length();
while (lineStart < length)
{
size_t nextLineStart = wrapper.findNextLine(input, lineStart);
std::string line = wrapper.formatLine(input, lineStart, nextLineStart));
// <do something with the line>
lineStart = nextLineStart;
}
return result;
\endcode
*
* Does not throw.
*/
size_t findNextLine(const char *input, size_t lineStart) const;
//! \copydoc findNextLine(const char *, size_t)const
size_t findNextLine(const std::string &input, size_t lineStart) const;
/*! \brief
* Formats a single line for output according to wrapping settings.
*
* \param[in] input Input string.
* \param[in] lineStart Index of first character of the line to format.
* \param[in] lineEnd Index of first character of the next line.
* \returns The line with leading and/or trailing whitespace removed
* and indentation applied.
* \throws std::bad_alloc if out of memory.
*
* Intended to be used on the lines found by findNextLine().
* When used with the lines returned from findNextLine(), the returned
* line conforms to the wrapper settings.
* Trailing whitespace is always stripped (including any newlines,
* i.e., the return value does not contain a newline).
*/
std::string formatLine(const std::string &input,
size_t lineStart, size_t lineEnd) const;
/*! \brief
* Formats a string, producing a single string with all the lines.
*
* \param[in] input String to wrap.
* \returns \p input with added newlines such that maximum line
* length is not exceeded.
* \throws std::bad_alloc if out of memory.
*
* Newlines in the input are preserved, including terminal newlines.
* Note that if the input does not contain a terminal newline, the
* output does not either.
*/
std::string wrapToString(const std::string &input) const;
/*! \brief
* Formats a string, producing a vector with all the lines.
*
* \param[in] input String to wrap.
* \returns \p input split into lines such that maximum line length
* is not exceeded.
* \throws std::bad_alloc if out of memory.
*
* The strings in the returned vector do not contain newlines at the
* end.
* Note that a single terminal newline does not affect the output:
* "line\\n" and "line" both produce the same output (but "line\\n\\n"
* produces two lines, the second of which is empty).
*/
std::vector<std::string> wrapToVector(const std::string &input) const;
private:
TextLineWrapperSettings settings_;
};
//! \}
} // namespace gmx
#endif
|