NetServices Stack source

Dependents:   HelloWorld ServoInterfaceBoardExample1 4180_Lab4

Committer:
donatien
Date:
Fri Jun 11 16:05:15 2010 +0000
Revision:
0:632c9925f013

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:632c9925f013 1
donatien 0:632c9925f013 2 /*
donatien 0:632c9925f013 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
donatien 0:632c9925f013 4
donatien 0:632c9925f013 5 Permission is hereby granted, free of charge, to any person obtaining a copy
donatien 0:632c9925f013 6 of this software and associated documentation files (the "Software"), to deal
donatien 0:632c9925f013 7 in the Software without restriction, including without limitation the rights
donatien 0:632c9925f013 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
donatien 0:632c9925f013 9 copies of the Software, and to permit persons to whom the Software is
donatien 0:632c9925f013 10 furnished to do so, subject to the following conditions:
donatien 0:632c9925f013 11
donatien 0:632c9925f013 12 The above copyright notice and this permission notice shall be included in
donatien 0:632c9925f013 13 all copies or substantial portions of the Software.
donatien 0:632c9925f013 14
donatien 0:632c9925f013 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
donatien 0:632c9925f013 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
donatien 0:632c9925f013 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
donatien 0:632c9925f013 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
donatien 0:632c9925f013 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
donatien 0:632c9925f013 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
donatien 0:632c9925f013 21 THE SOFTWARE.
donatien 0:632c9925f013 22 */
donatien 0:632c9925f013 23
donatien 0:632c9925f013 24 #include "url.h"
donatien 0:632c9925f013 25 #include <stdlib.h>
donatien 0:632c9925f013 26 #include <ctype.h>
donatien 0:632c9925f013 27
donatien 0:632c9925f013 28 //From http://www.geekhideout.com/urlcode.shtml
donatien 0:632c9925f013 29
donatien 0:632c9925f013 30 char from_hex(char ch);
donatien 0:632c9925f013 31 char to_hex(char code);
donatien 0:632c9925f013 32
donatien 0:632c9925f013 33 /* Converts a hex character to its integer value */
donatien 0:632c9925f013 34 char from_hex(char ch) {
donatien 0:632c9925f013 35 return isdigit(ch) ? ch - '0' : tolower(ch) - 'a' + 10;
donatien 0:632c9925f013 36 }
donatien 0:632c9925f013 37
donatien 0:632c9925f013 38 /* Converts an integer value to its hex character*/
donatien 0:632c9925f013 39 char to_hex(char code) {
donatien 0:632c9925f013 40 static char hex[] = "0123456789abcdef";
donatien 0:632c9925f013 41 return hex[code & 15];
donatien 0:632c9925f013 42 }
donatien 0:632c9925f013 43
donatien 0:632c9925f013 44 /* Returns a url-encoded version of str */
donatien 0:632c9925f013 45 /* IMPORTANT: be sure to free() the returned string after use */
donatien 0:632c9925f013 46 char *url_encode(char *str) {
donatien 0:632c9925f013 47 char *pstr = str, *buf = (char*)malloc(strlen(str) * 3 + 1), *pbuf = buf;
donatien 0:632c9925f013 48 while (*pstr) {
donatien 0:632c9925f013 49 if (isalnum(*pstr) || *pstr == '-' || *pstr == '_' || *pstr == '.' || *pstr == '~')
donatien 0:632c9925f013 50 *pbuf++ = *pstr;
donatien 0:632c9925f013 51 else if (*pstr == ' ')
donatien 0:632c9925f013 52 *pbuf++ = '+';
donatien 0:632c9925f013 53 else
donatien 0:632c9925f013 54 *pbuf++ = '%', *pbuf++ = to_hex(*pstr >> 4), *pbuf++ = to_hex(*pstr & 15);
donatien 0:632c9925f013 55 pstr++;
donatien 0:632c9925f013 56 }
donatien 0:632c9925f013 57 *pbuf = '\0';
donatien 0:632c9925f013 58 return buf;
donatien 0:632c9925f013 59 }
donatien 0:632c9925f013 60
donatien 0:632c9925f013 61 /* Returns a url-decoded version of str */
donatien 0:632c9925f013 62 /* IMPORTANT: be sure to free() the returned string after use */
donatien 0:632c9925f013 63 char *url_decode(char *str) {
donatien 0:632c9925f013 64 char *pstr = str, *buf = (char*)malloc(strlen(str) + 1), *pbuf = buf;
donatien 0:632c9925f013 65 while (*pstr) {
donatien 0:632c9925f013 66 if (*pstr == '%') {
donatien 0:632c9925f013 67 if (pstr[1] && pstr[2]) {
donatien 0:632c9925f013 68 *pbuf++ = from_hex(pstr[1]) << 4 | from_hex(pstr[2]);
donatien 0:632c9925f013 69 pstr += 2;
donatien 0:632c9925f013 70 }
donatien 0:632c9925f013 71 } else if (*pstr == '+') {
donatien 0:632c9925f013 72 *pbuf++ = ' ';
donatien 0:632c9925f013 73 } else {
donatien 0:632c9925f013 74 *pbuf++ = *pstr;
donatien 0:632c9925f013 75 }
donatien 0:632c9925f013 76 pstr++;
donatien 0:632c9925f013 77 }
donatien 0:632c9925f013 78 *pbuf = '\0';
donatien 0:632c9925f013 79 return buf;
donatien 0:632c9925f013 80 }