From 3b473f7a67a8feb694856dd705454fdb9945b319 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Sat, 28 Sep 2013 19:28:19 +0200 Subject: Added URLDecode() and ReplaceAllCharOccurrences() to StringUtils. --- source/StringUtils.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/StringUtils.h') diff --git a/source/StringUtils.h b/source/StringUtils.h index 211799e91..929e6fd5b 100644 --- a/source/StringUtils.h +++ b/source/StringUtils.h @@ -72,6 +72,12 @@ extern AString EscapeString(const AString & a_Message); // tolua_export /// Removes all control codes used by MC for colors and styles extern AString StripColorCodes(const AString & a_Message); // tolua_export +/// URL-Decodes the given string, replacing all "%HH" into the correct characters. Invalid % sequences are left intact +extern AString URLDecode(const AString & a_String); // Cannot export to Lua automatically - would generated an extra return value + +/// Replaces all occurrences of char a_From inside a_String with char a_To. +extern AString ReplaceAllCharOccurrences(const AString & a_String, char a_From, char a_To); // Needn't export to Lua, since Lua doesn't have chars anyway + // If you have any other string helper functions, declare them here -- cgit v1.2.3 From e31343297ee648c799a4d30b578259719f21ede5 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 30 Sep 2013 19:59:40 +0200 Subject: Added StrToLower(), URLDecode() and ReplaceAllCharOccurrences(). --- source/StringUtils.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/StringUtils.h') diff --git a/source/StringUtils.h b/source/StringUtils.h index 929e6fd5b..e35e58c9f 100644 --- a/source/StringUtils.h +++ b/source/StringUtils.h @@ -45,6 +45,9 @@ extern AString TrimString(const AString & str); // tolua_export /// In-place string conversion to uppercase; returns the same string extern AString & StrToUpper(AString & s); +/// In-place string conversion to lowercase; returns the same string +extern AString & StrToLower(AString & s); + /// Case-insensitive string comparison; returns 0 if the strings are the same extern int NoCaseCompare(const AString & s1, const AString & s2); // tolua_export -- cgit v1.2.3 From db3d83b38dd61b90466a0721fa9104e742f3fb8b Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Fri, 4 Oct 2013 20:28:30 +0200 Subject: Added Basic auth support to cHTTPRequest. --- source/StringUtils.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/StringUtils.h') diff --git a/source/StringUtils.h b/source/StringUtils.h index e35e58c9f..ec9ba96ce 100644 --- a/source/StringUtils.h +++ b/source/StringUtils.h @@ -81,6 +81,9 @@ extern AString URLDecode(const AString & a_String); // Cannot export to Lua aut /// Replaces all occurrences of char a_From inside a_String with char a_To. extern AString ReplaceAllCharOccurrences(const AString & a_String, char a_From, char a_To); // Needn't export to Lua, since Lua doesn't have chars anyway +/// Decodes a Base64-encoded string into the raw data +extern AString Base64Decode(const AString & a_Base64String); + // If you have any other string helper functions, declare them here -- cgit v1.2.3 From 675b4aa878f16291ce33fced48a2bc7425f635ae Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sun, 24 Nov 2013 14:19:41 +0000 Subject: Moved source to src --- source/StringUtils.h | 96 ---------------------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 source/StringUtils.h (limited to 'source/StringUtils.h') diff --git a/source/StringUtils.h b/source/StringUtils.h deleted file mode 100644 index ec9ba96ce..000000000 --- a/source/StringUtils.h +++ /dev/null @@ -1,96 +0,0 @@ - -// StringUtils.h - -// Interfaces to various string helper functions - - - - -#ifndef STRINGUTILS_H_INCLUDED -#define STRINGUTILS_H_INCLUDED - - - - - -typedef std::string AString; -typedef std::vector AStringVector; -typedef std::list AStringList; - - - - - -/// Add the formated string to the existing data in the string -extern AString & AppendVPrintf(AString & str, const char * format, va_list args); - -/// Output the formatted text into the string -extern AString & Printf (AString & str, const char * format, ...); - -/// Output the formatted text into string, return string by value -extern AString Printf(const char * format, ...); - -/// Add the formatted string to the existing data in the string -extern AString & AppendPrintf (AString & str, const char * format, ...); - -/// Split the string at any of the listed delimiters, return as a stringvector -extern AStringVector StringSplit(const AString & str, const AString & delim); - -/// Split the string at any of the listed delimiters and trim each value, return as a stringvector -extern AStringVector StringSplitAndTrim(const AString & str, const AString & delim); - -/// Trime whitespace at both ends of the string -extern AString TrimString(const AString & str); // tolua_export - -/// In-place string conversion to uppercase; returns the same string -extern AString & StrToUpper(AString & s); - -/// In-place string conversion to lowercase; returns the same string -extern AString & StrToLower(AString & s); - -/// Case-insensitive string comparison; returns 0 if the strings are the same -extern int NoCaseCompare(const AString & s1, const AString & s2); // tolua_export - -/// Case-insensitive string comparison that returns a rating of equal-ness between [0 - s1.length()] -extern unsigned int RateCompareString(const AString & s1, const AString & s2 ); - -/// Replaces *each* occurence of iNeedle in iHayStack with iReplaceWith -extern void ReplaceString(AString & iHayStack, const AString & iNeedle, const AString & iReplaceWith); // tolua_export - -/// Returns the list of all items in the specified directory (files, folders, nix pipes, whatever's there) -extern AStringList GetDirectoryContents(const char * a_Directory); - -/// Converts a stream of BE shorts into UTF-8 string; returns a ref to a_UTF8 -extern AString & RawBEToUTF8(short * a_RawData, int a_NumShorts, AString & a_UTF8); - -/// Converts a UTF-8 string into a UTF-16 BE string, packing that back into AString; return a ref to a_UTF16 -extern AString & UTF8ToRawBEUTF16(const char * a_UTF8, size_t a_UTF8Length, AString & a_UTF16); - -/// Creates a nicely formatted HEX dump of the given memory block. Max a_BytesPerLine is 120 -extern AString & CreateHexDump(AString & a_Out, const void * a_Data, int a_Size, int a_BytesPerLine); - -/// Returns a copy of a_Message with all quotes and backslashes escaped by a backslash -extern AString EscapeString(const AString & a_Message); // tolua_export - -/// Removes all control codes used by MC for colors and styles -extern AString StripColorCodes(const AString & a_Message); // tolua_export - -/// URL-Decodes the given string, replacing all "%HH" into the correct characters. Invalid % sequences are left intact -extern AString URLDecode(const AString & a_String); // Cannot export to Lua automatically - would generated an extra return value - -/// Replaces all occurrences of char a_From inside a_String with char a_To. -extern AString ReplaceAllCharOccurrences(const AString & a_String, char a_From, char a_To); // Needn't export to Lua, since Lua doesn't have chars anyway - -/// Decodes a Base64-encoded string into the raw data -extern AString Base64Decode(const AString & a_Base64String); - -// If you have any other string helper functions, declare them here - - - - -#endif // STRINGUTILS_H_INCLUDED - - - - -- cgit v1.2.3