/* * barrier -- mouse and keyboard sharing utility * Copyright (C) 2012-2016 Symless Ltd. * Copyright (C) 2002 Chris Schoeneman * * This package is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * found in the file LICENSE that should have accompanied this file. * * This package 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include "common/common.h" #include "common/stdstring.h" #include #include // use standard C++ string class for our string class typedef std::string String; namespace barrier { //! std::string utilities /*! Provides functions for string manipulation. */ namespace string { //! Format positional arguments /*! Format a string using positional arguments. fmt has literal characters and conversion specifications introduced by `\%': - \%\% -- literal `\%' - \%{n} -- positional element n, n a positive integer, {} are literal All arguments in the variable list are const char*. Positional elements are indexed from 1. */ std::string format(const char* fmt, ...); //! Format positional arguments /*! Same as format() except takes va_list. */ std::string vformat(const char* fmt, va_list); //! Print a string using sprintf-style formatting /*! Equivalent to sprintf() except the result is returned as a std::string. */ std::string sprintf(const char* fmt, ...); //! Find and replace all /*! Finds \c find inside \c subject and replaces it with \c replace */ void findReplaceAll(std::string& subject, const std::string& find, const std::string& replace); //! Remove file extension /*! Finds the last dot and remove all characters from the dot to the end */ std::string removeFileExt(std::string filename); //! Convert into hexdecimal /*! Convert each character in \c subject into hexdecimal form with \c width */ void toHex(std::string& subject, int width, const char fill = '0'); //! Convert to all uppercase /*! Convert each character in \c subject to uppercase */ void uppercase(std::string& subject); //! Remove all specific char in suject /*! Remove all specific \c c in \c suject */ void removeChar(std::string& subject, const char c); //! Convert a size type to a string /*! Convert an size type to a string */ std::string sizeTypeToString(size_t n); //! Convert a string to a size type /*! Convert an a \c string to an size type */ size_t stringToSizeType(std::string string); //! Split a string into substrings /*! Split a \c string that separated by a \c c into substrings */ std::vector splitString(std::string string, const char c); //! Case-insensitive comparisons /*! This class provides case-insensitve comparison functions. */ class CaselessCmp { public: //! Same as less() bool operator()(const std::string& a, const std::string& b) const; //! Returns true iff \c a is lexicographically less than \c b static bool less(const std::string& a, const std::string& b); //! Returns true iff \c a is lexicographically equal to \c b static bool equal(const std::string& a, const std::string& b); //! Returns true iff \c a is lexicographically less than \c b static bool cmpLess(const std::string::value_type& a, const std::string::value_type& b); //! Returns true iff \c a is lexicographically equal to \c b static bool cmpEqual(const std::string::value_type& a, const std::string::value_type& b); }; } }