CPPMyth
Library to interoperate with MythTV server
urlencoder.h
1 /*
2  * Copyright (C) 2017 Jean-Luc Barriere
3  *
4  * This library is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published
6  * by the Free Software Foundation; either version 3, or (at your option)
7  * any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this library; see the file COPYING. If not, write to
16  * the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
17  * MA 02110-1301 USA
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  */
21 
22 #ifndef URLENCODER_H
23 #define URLENCODER_H
24 
25 #include <cstdio>
26 #include <cstring>
27 #include <string>
28 
29 #define urlencode __urlencode
30 inline std::string __urlencode(const std::string& str) {
31  std::string out;
32  out.reserve(2 * str.length());
33  const char* cstr = str.c_str();
34  while (*cstr)
35  {
36  if (isalnum(*cstr) || *cstr == '-' || *cstr == '_' || *cstr == '.' || *cstr == '~')
37  out.push_back(*cstr);
38  else {
39  char buf[4];
40  sprintf(buf, "%%%.2x", static_cast<unsigned char>(*cstr));
41  out.append(buf);
42  }
43  ++cstr;
44  }
45  return out;
46 }
47 
48 #define urldecode __urldecode
49 inline std::string __urldecode(const std::string& str) {
50  std::string out;
51  out.reserve(str.length());
52  const char* cstr = str.c_str();
53  while (*cstr)
54  {
55  char c = *cstr;
56  if (c == '%')
57  {
58  int v;
59  char buf[3];
60  strncpy(buf, cstr + 1, 3);
61  buf[2] = '\0';
62  if (sscanf(buf, "%x", &v) == 1 || sscanf(buf, "%X", &v) == 1)
63  {
64  c = static_cast<char>(v);
65  cstr += 2;
66  }
67  }
68  out.push_back(c);
69  ++cstr;
70  }
71  return out;
72 }
73 
74 #endif /* URLENCODER_H */
75