/* * Phusion Passenger - https://www.phusionpassenger.com/ * Copyright (c) 2010-2013 Phusion * * "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #ifndef _PASSENGER_STR_INT_UTILS_H_ #define _PASSENGER_STR_INT_UTILS_H_ #include #include #include #include #include #include #include #include #include namespace Passenger { using namespace std; /** * A RAII construct for memory buffers that are dynamically allocated with malloc(). * Upon destruction of a DynamicBuffer, the memory buffer is freed. */ struct DynamicBuffer { typedef string::size_type size_type; char *data; size_type size; /** * @throws std::bad_alloc The buffer cannot be allocated. */ DynamicBuffer(size_type _size) : size(_size) { data = (char *) malloc(_size); if (data == NULL) { throw std::bad_alloc(); } } ~DynamicBuffer() throw() { free(data); } }; /** * Given a prefix string, a middle string and a postfix string, try to build a string * that looks like prefix + middle + postfix, with as many characters from * midle preserved as possible. * * If prefix + middle + postfix does not fit in max characters, * then middle will be truncated so that it fits. If max is too * small to contain even 1 character from middle, then an ArgumentException * will be thrown. * * @code * fillInMiddle(18, "server.", "1234", ".socket"); // "server.1234.socket" * fillInMiddle(16, "server.", "1234", ".socket"); // "server.12.socket" * fillInMiddle(14, "server.", "1234", ".socket"); // ArgumentException * @endcode * * @returns The resulting string, with middle possibly truncated. * @throws ArgumentException max is too small to contain even 1 * character from middle. * @post result.size() <= max */ string fillInMiddle(unsigned int max, const string &prefix, const string &middle, const string &postfix = ""); /** * Checks whether str starts with substr. */ bool startsWith(const StaticString &str, const StaticString &substr); /** * Split the given string using the given separator. Excludes the * separator from the output. * * @param str The string to split. * @param sep The separator to use. * @param output The vector to write the output to. */ void split(const StaticString & restrict_ref str, char sep, vector & restrict_ref output); void split(const StaticString & restrict_ref str, char sep, vector & restrict_ref output); /** * Split the given string using the given separator. Includes the * separator in the output, at the end of an item. * * @param str The string to split. * @param sep The separator to use. * @param output The vector to write the output to. */ void splitIncludeSep(const StaticString & restrict_ref str, char sep, vector & restrict_ref output); void splitIncludeSep(const StaticString & restrict_ref str, char sep, vector & restrict_ref output); /** * Look for 'toFind' inside 'str', replace it with 'replaceWith' and return the result. * Only the first occurence of 'toFind' is replaced. */ string replaceString(const string &str, const string &toFind, const string &replaceWith); /** * Like replaceString(), but replace all occurrences of `toFind`. */ string replaceAll(const string &str, const string &toFind, const string &replaceWith); /** * Strips leading and trailing whitespaces. */ string strip(const StaticString &str); /** * Convert anything to a string. */ template string toString(T something) { stringstream s; s << something; return s.str(); } string toString(const vector &vec); string toString(const vector &vec); string pointerToIntString(void *pointer); /** * Converts the given integer string to an unsigned long long integer. */ unsigned long long stringToULL(const StaticString &str); unsigned int stringToUint(const StaticString &str); /** * Converts the given integer string to a long long integer. */ long long stringToLL(const StaticString &str); int stringToInt(const StaticString &str); /** * Converts the given hexadecimal string to an unsigned long long integer. */ unsigned long long hexToULL(const StaticString &str); unsigned int hexToUint(const StaticString &str); /** * Converts the given hexatridecimal (base 36) string to an unsigned long long integer. */ unsigned long long hexatriToULL(const StaticString &str); /** * Convert the given binary data to hexadecimal. */ string toHex(const StaticString &data); /** * Convert the given binary data to hexadecimal. This form accepts an * output buffer which must be at least data.size() * 2 bytes large. */ void toHex(const StaticString & restrict_ref data, char * restrict output, bool upperCase = false); /** * Reverse a string in-place. */ inline void reverseString(char *str, unsigned int size) { char *end = str + size; for (--end; str < end; str++, end--) { *str = *str ^ *end, *end = *str ^ *end, *str = *str ^ *end; } } /** * Convert the given integer to some other radix, placing * the result into the given output buffer. The output buffer * will be NULL terminated. Supported radices are 2-36. * * @param outputSize The size of the output buffer, including space for * the terminating NULL. * @return The size of the created string, excluding * terminating NULL. * @throws std::length_error The output buffer is not large enough. */ template unsigned int integerToOtherBase(IntegerType value, char *output, unsigned int outputSize) { static const char chars[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' }; IntegerType remainder = value; unsigned int size = 0; do { output[size] = chars[remainder % radix]; remainder = remainder / radix; size++; } while (remainder != 0 && size < outputSize - 1); if (remainder == 0) { reverseString(output, size); output[size] = '\0'; return size; } else { throw std::length_error("Buffer not large enough to for integerToOtherBase()"); return -1; // Shut up compiler warning. } } /** * Convert the given integer to hexadecimal, placing the result * into the given output buffer. This buffer must be at least * 2 * sizeof(IntegerType) + 1 bytes. The output buffer * will be NULL terminated. * * @return The size of the created hexadecimal string, excluding * terminating NULL. */ template unsigned int integerToHex(IntegerType value, char *output) { return integerToOtherBase(value, output, 2 * sizeof(IntegerType) + 1); } /** * Convert the given integer to a hexadecimal string. */ string integerToHex(long long value); /** * Convert the given integer to hexatridecimal (Base 36), placing the * result into the given output buffer. This buffer must be at least * 2 * sizeof(IntegerType) + 1 bytes. The output buffer * will be NULL terminated. * * @return The size of the created hexatridecimal string, excluding * terminating NULL. */ template unsigned int integerToHexatri(IntegerType value, char *output) { return integerToOtherBase(value, output, 2 * sizeof(IntegerType) + 1); } /** * Convert the given integer to a hexatridecimal string. */ string integerToHexatri(long long value); /** * Checks whether the given string looks like a number >= 0. */ bool looksLikePositiveNumber(const StaticString &str); /** * Converts the given string to an integer. */ int atoi(const string &s); /** * Converts the given string to a long integer. */ long atol(const string &s); /** * Round number up to the nearest multiple of multiple. */ template IntegerType roundUp(IntegerType number, IntegerType multiple) { return (number + multiple - 1) / multiple * multiple; } /** * Compare two strings using a constant time algorithm to avoid timing attacks. */ bool constantTimeCompare(const StaticString &a, const StaticString &b); string distanceOfTimeInWords(time_t fromTime, time_t toTime = 0); /** * Append the given data to the address at 'pos', but do not cross 'end'. * Returns the end of the appended string. */ char *appendData(char *pos, const char *end, const char *data, size_t size); char *appendData(char *pos, const char *end, const StaticString &data); /** * Escape non-ASCII-printable characters in the given string with C-style escape sequences, * e.g. "foo\nbar\0" becomes "foo\\nbar\\0". */ string cEscapeString(const StaticString &input); /** * Escapes HTML special characters the given input string, which is assumed to * contain UTF-8 data. Returns a UTF-8 encoded string. * * @throws utf8::exception A UTF-8 decoding error occurred. */ string escapeHTML(const StaticString &input); StaticString makeStaticStringWithNull(const char *data); StaticString makeStaticStringWithNull(const string &data); } // namespace Passenger #endif /* _PASSENGER_STR_INT_UTILS_H_ */