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
|
/*
* 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 <string>
#include <vector>
#include <sstream>
#include <stdexcept>
#include <new>
#include <cstdlib>
#include <cstddef>
#include <ctime>
#include <oxt/macros.hpp>
#include <StaticString.h>
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 <tt>prefix + middle + postfix</tt>, with as many characters from
* <tt>midle</tt> preserved as possible.
*
* If <tt>prefix + middle + postfix</tt> does not fit in <tt>max</tt> characters,
* then <tt>middle</tt> will be truncated so that it fits. If <tt>max</tt> is too
* small to contain even 1 character from <tt>middle</tt>, 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 <tt>middle</tt> possibly truncated.
* @throws ArgumentException <tt>max</tt> is too small to contain even 1
* character from <tt>middle</tt>.
* @post result.size() <= max
*/
string fillInMiddle(unsigned int max, const string &prefix, const string &middle,
const string &postfix = "");
/**
* Checks whether <tt>str</tt> starts with <tt>substr</tt>.
*/
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<string> & restrict_ref output);
void split(const StaticString & restrict_ref str,
char sep,
vector<StaticString> & 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<string> & restrict_ref output);
void splitIncludeSep(const StaticString & restrict_ref str,
char sep,
vector<StaticString> & 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);
/**
* Given a pointer to a NULL-terminated string, update it to a
* position where all leading whitespaces (0x20) have been skipped.
*/
inline void
skipLeadingWhitespaces(const char **data) {
while (**data == ' ') {
(*data)++;
}
}
/**
* Given a pointer to a string and its end, update the begin pointer to a
* position where all leading whitespaces (0x20) have been skipped.
* The pointer will not be moved past `end`.
*/
inline void
skipLeadingWhitespaces(const char **data, const char *end) {
while (*data < end && **data == ' ') {
(*data)++;
}
}
/**
* Given a string and a pointer to its position within it, update the pointer
* to a position where all trailing whitespaces (0x20) have been skipped.
* The pointer will not be moved before `begin`.
*/
inline void
skipTrailingWhitespaces(const char *begin, const char **pos) {
while (*pos > begin && (*pos)[-1] == ' ') {
(*pos)--;
}
}
/**
* Convert anything to a string.
*/
template<typename T> string
toString(T something) {
stringstream s;
s << something;
return s.str();
}
string toString(const vector<string> &vec);
string toString(const vector<StaticString> &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 <tt>data.size() * 2</tt> 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<typename IntegerType, int radix>
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
* <tt>2 * sizeof(IntegerType) + 1</tt> bytes. The output buffer
* will be NULL terminated.
*
* @return The size of the created hexadecimal string, excluding
* terminating NULL.
*/
template<typename IntegerType>
unsigned int
integerToHex(IntegerType value, char *output) {
return integerToOtherBase<IntegerType, 16>(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
* <tt>2 * sizeof(IntegerType) + 1</tt> bytes. The output buffer
* will be NULL terminated.
*
* @return The size of the created hexatridecimal string, excluding
* terminating NULL.
*/
template<typename IntegerType>
unsigned int
integerToHexatri(IntegerType value, char *output) {
return integerToOtherBase<IntegerType, 36>(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 <em>number</em> up to the nearest multiple of <em>multiple</em>.
*/
template<typename IntegerType>
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_ */
|