/* * Phusion Passenger - http://www.modrails.com/ * Copyright (c) 2010 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 "StaticString.h" namespace Passenger { using namespace std; /** * 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. * * @param str The string to split. * @param sep The separator to use. * @param output The vector to write the output to. */ void split(const string &str, char sep, vector &output); /** * 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); /** * Converts the given integer string to a long long integer. */ long long stringToLL(const StaticString &str); /** * Converts the given hexadecimal string to an unsigned long long integer. */ unsigned long long hexToULL(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 &data, char *output, bool upperCase = false); /** * Convert the given integer to some other radix, 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. Supported radices are 2-36. * * @return The size of the created string, excluding * terminating NULL. */ template unsigned int integerToOtherBase(IntegerType value, char *output) { static const char hex_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' }; char buf[sizeof(value) * 2]; IntegerType remainder = value; unsigned int size = 0; do { buf[size] = hex_chars[remainder % radix]; remainder = remainder / radix; size++; } while (remainder != 0); for (unsigned int i = 0; i < size; i++) { output[size - i - 1] = buf[i]; } output[size] = '\0'; return size; } /** * 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); } /** * 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); } /** * Convert the given integer to a hexatridecimal string. */ string integerToHexatri(long long value); /** * 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; } /** * 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); } // namespace Passenger #endif /* _PASSENGER_STR_INT_UTILS_H_ */