| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 #ifndef UTILS_H | 18 #ifndef UTILS_H |
| 19 #define UTILS_H | 19 #define UTILS_H |
| 20 | 20 |
| 21 #include <algorithm> | 21 #include <algorithm> |
| 22 #include <locale> | 22 #include <locale> |
| 23 #include <functional> | 23 #include <functional> |
| 24 #include <string> | 24 #include <string> |
| 25 #include <vector> | |
| 25 | 26 |
| 26 #define WM_ALREADY_UP_TO_DATE WM_APP+1 | 27 #define WM_ALREADY_UP_TO_DATE WM_APP+1 |
| 27 #define WM_UPDATE_CHECK_ERROR WM_APP+2 | 28 #define WM_UPDATE_CHECK_ERROR WM_APP+2 |
| 28 #define WM_DOWNLOADING_UPDATE WM_APP+3 | 29 #define WM_DOWNLOADING_UPDATE WM_APP+3 |
| 29 | 30 |
| 30 // | 31 // |
| 31 // Application Package Authority. | 32 // Application Package Authority. |
| 32 // | 33 // |
| 33 | 34 |
| 34 #define SECURITY_APP_PACKAGE_AUTHORITY {0,0,0,0,0,15} | 35 #define SECURITY_APP_PACKAGE_AUTHORITY {0,0,0,0,0,15} |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 45 // | 46 // |
| 46 | 47 |
| 47 #define SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE (0x00000001L) | 48 #define SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE (0x00000001L) |
| 48 | 49 |
| 49 | 50 |
| 50 bool IsWindowsVistaOrLater(); | 51 bool IsWindowsVistaOrLater(); |
| 51 bool IsWindows8OrLater(); | 52 bool IsWindows8OrLater(); |
| 52 | 53 |
| 53 std::string ToUtf8String(const std::wstring& str); | 54 std::string ToUtf8String(const std::wstring& str); |
| 54 std::wstring ToUtf16String(const std::string& str); | 55 std::wstring ToUtf16String(const std::string& str); |
| 56 std::vector<std::wstring> ToUtf16Strings(const std::vector<std::string>& value); | |
| 55 std::wstring GetDllDir(); | 57 std::wstring GetDllDir(); |
| 56 std::wstring GetAppDataPath(); | 58 std::wstring GetAppDataPath(); |
| 57 void ReplaceString(std::wstring& input, const std::wstring placeholder, const st d::wstring replacement); | 59 void ReplaceString(std::wstring& input, const std::wstring placeholder, const st d::wstring replacement); |
| 60 | |
| 61 /** | |
| 62 * Returns the beginning of the URL which includes the scheme and hierarchical | |
| 63 * part according to http://en.wikipedia.org/wiki/URI_scheme. | |
| 64 */ | |
| 65 std::wstring GetSchemeAndHierarchicalPart(const std::wstring& url); | |
| 66 | |
| 58 std::wstring GetQueryString(const std::wstring& url); | 67 std::wstring GetQueryString(const std::wstring& url); |
| 59 /// Splits the string using delimiter | |
|
Eric
2015/02/02 18:41:58
Might as well use a doxygen-style comment here.
sergei
2015/02/12 14:44:06
fixed.
BTW, it's not necessary to have additional
Eric
2015/02/12 17:24:41
Minimizing whitespace is not always a virtue. I fi
| |
| 60 void SplitString(const std::wstring& value, wchar_t delimiter, | |
| 61 const std::function<bool(std::wstring::const_iterator begin, std::wstring::con st_iterator end)>& tokenHandler); | |
| 62 /// For each parameter in the query string the function calls parameterHandler | |
| 63 /// until it returns false. | |
|
Eric
2015/02/02 18:41:58
/**
* Applies a function to each name=value pair
sergei
2015/02/12 14:44:06
done
| |
| 64 void ProcessQueryStringParameters(const std::wstring& urlQueryString, | |
| 65 const std::function<bool(const std::wstring& name, const std::wstring& value)> & parameterHandler); | |
| 66 | 68 |
| 67 template<class T> | 69 template<class T> |
| 68 T TrimString(T text) | 70 T TrimString(T text) |
| 69 { | 71 { |
| 70 // Via http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-st dstring | 72 // Via http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-st dstring |
| 71 T trimmed(text); | 73 T trimmed(text); |
| 72 std::function<bool(T::value_type)> isspace = std::bind(&std::isspace<T::value_ type>, std::placeholders::_1, std::locale::classic()); | 74 std::function<bool(T::value_type)> isspace = std::bind(&std::isspace<T::value_ type>, std::placeholders::_1, std::locale::classic()); |
| 73 trimmed.erase(trimmed.begin(), std::find_if(trimmed.begin(), trimmed.end(), st d::not1(isspace))); | 75 trimmed.erase(trimmed.begin(), std::find_if(trimmed.begin(), trimmed.end(), st d::not1(isspace))); |
| 74 trimmed.erase(std::find_if(trimmed.rbegin(), trimmed.rend(), std::not1(isspace )).base(), trimmed.end()); | 76 trimmed.erase(std::find_if(trimmed.rbegin(), trimmed.rend(), std::not1(isspace )).base(), trimmed.end()); |
| 75 return trimmed; | 77 return trimmed; |
| 76 } | 78 } |
| 77 | 79 |
| 78 #endif // UTILS_H | 80 #endif // UTILS_H |
| LEFT | RIGHT |