From ac6607c5f76566c2c840ca3955a22448738df9b3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 28 Jan 2019 15:51:04 +0300 Subject: mir_urlDecode & mir_urlEncode to return CMStringA --- src/core/stdcrypt/src/stdafx.h | 1 - src/core/stdfile/src/stdafx.h | 1 - src/mir_app/src/MHttpRequest.cpp | 4 +-- src/mir_app/src/stdafx.h | 1 - src/mir_core/src/http.cpp | 68 ++++++++++++++-------------------------- src/mir_core/src/stdafx.h | 1 - 6 files changed, 25 insertions(+), 51 deletions(-) (limited to 'src') diff --git a/src/core/stdcrypt/src/stdafx.h b/src/core/stdcrypt/src/stdafx.h index 2ae40fe576..6ce79cf7e1 100644 --- a/src/core/stdcrypt/src/stdafx.h +++ b/src/core/stdcrypt/src/stdafx.h @@ -58,7 +58,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include #include -#include #include #include "version.h" diff --git a/src/core/stdfile/src/stdafx.h b/src/core/stdfile/src/stdafx.h index 31e8c09be0..acd785ff7c 100644 --- a/src/core/stdfile/src/stdafx.h +++ b/src/core/stdfile/src/stdafx.h @@ -66,7 +66,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include #include -#include #include "version.h" diff --git a/src/mir_app/src/MHttpRequest.cpp b/src/mir_app/src/MHttpRequest.cpp index 0ffd73f894..832b087bc5 100644 --- a/src/mir_app/src/MHttpRequest.cpp +++ b/src/mir_app/src/MHttpRequest.cpp @@ -78,7 +78,7 @@ MIR_APP_DLL(MHttpRequest*) operator<<(MHttpRequest *pReq, const CHAR_PARAM ¶ CMStringA &s = pReq->m_szParam; if (!s.IsEmpty()) s.AppendChar('&'); - s.AppendFormat("%s=%s", param.szName, ptrA(mir_urlEncode(param.szValue))); + s.AppendFormat("%s=%s", param.szName, mir_urlEncode(param.szValue).c_str()); return pReq; } @@ -88,6 +88,6 @@ MIR_APP_DLL(MHttpRequest*) operator<<(MHttpRequest *pReq, const WCHAR_PARAM &par CMStringA &s = pReq->m_szParam; if (!s.IsEmpty()) s.AppendChar('&'); - s.AppendFormat("%s=%s", param.szName, ptrA(mir_urlEncode(szValue))); + s.AppendFormat("%s=%s", param.szName, mir_urlEncode(szValue).c_str()); return pReq; } diff --git a/src/mir_app/src/stdafx.h b/src/mir_app/src/stdafx.h index f9c6d70b84..17179644b5 100644 --- a/src/mir_app/src/stdafx.h +++ b/src/mir_app/src/stdafx.h @@ -61,7 +61,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include -#include #include #include #include diff --git a/src/mir_core/src/http.cpp b/src/mir_core/src/http.cpp index d1386e4519..312647405e 100755 --- a/src/mir_core/src/http.cpp +++ b/src/mir_core/src/http.cpp @@ -21,71 +21,49 @@ along with this program. If not, see . static const char szHexDigits[] = "0123456789ABCDEF"; -MIR_CORE_DLL(char*) mir_urlDecode(const char *szUrl) +MIR_CORE_DLL(CMStringA) mir_urlDecode(const char *szUrl) { if (szUrl == nullptr) - return nullptr; - - char *ret = mir_strdup(szUrl); + return CMStringA(); - for (char *p = ret; *p; p++) { - switch (*p) { - case '%': - int ii; - sscanf(p+1, "%2x", &ii); - strdel(p, 2); - *p = ii; - break; + CMStringA ret(szUrl); + ret.Replace("+", " "); - case '+': - *p = ' '; - break; - } + for (int i = ret.Find("%", 0); i != -1; i = ret.Find("%", i)) { + int ii; + sscanf(ret.c_str()+i+1, "%2x", &ii); + ret.Delete(i, 3); + ret.Insert(i, ii); } return ret; } -MIR_CORE_DLL(char*) mir_urlEncode(const char *szUrl) +MIR_CORE_DLL(CMStringA) mir_urlEncode(const char *szUrl) { if (szUrl == nullptr) - return nullptr; + return CMStringA(); - const BYTE *s; - int outputLen; - for (outputLen = 0, s = (const BYTE*)szUrl; *s; s++) { - if (('0' <= *s && *s <= '9') || //0-9 - ('A' <= *s && *s <= 'Z') || //ABC...XYZ - ('a' <= *s && *s <= 'z') || //abc...xyz - *s == '-' || *s == '_' || *s == '.' || *s == ' ' || *s == '~') - outputLen++; - else - outputLen += 3; - } - - char *szOutput = (char*)mir_alloc(outputLen+1); - if (szOutput == nullptr) - return nullptr; + CMStringA ret; - char *d = szOutput; - for (s = (const BYTE*)szUrl; *s; s++) { - if (('0' <= *s && *s <= '9') || //0-9 - ('A' <= *s && *s <= 'Z') || //ABC...XYZ - ('a' <= *s && *s <= 'z') || //abc...xyz + for (const BYTE *s = (const BYTE*)szUrl; *s; s++) { + if (('0' <= *s && *s <= '9') || // 0-9 + ('A' <= *s && *s <= 'Z') || // ABC...XYZ + ('a' <= *s && *s <= 'z') || // abc...xyz *s == '-' || *s == '_' || *s == '.' || *s == '~') { - *d++ = *s; + ret.AppendChar(*s); } else if (*s == ' ') { - *d++ = '+'; + ret.AppendChar('+'); } else { - *d++ = '%'; - *d++ = szHexDigits[*s >> 4]; - *d++ = szHexDigits[*s & 0xF]; + ret.AppendChar('%'); + ret.AppendChar(szHexDigits[*s >> 4]); + ret.AppendChar(szHexDigits[*s & 0xF]); } } - *d = '\0'; - return szOutput; + + return ret; } ///////////////////////////////////////////////////////////////////////////////////////// diff --git a/src/mir_core/src/stdafx.h b/src/mir_core/src/stdafx.h index 60155a4846..6486e2fbfa 100644 --- a/src/mir_core/src/stdafx.h +++ b/src/mir_core/src/stdafx.h @@ -56,7 +56,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include #include -#include #include #include #include -- cgit v1.2.3