Example self-announcing webserver which controls a servo through a smallHTML userinterface.

Dependencies:   mbed

Committer:
dirkx
Date:
Sat Aug 14 15:56:01 2010 +0000
Revision:
0:a259777c45a3

        

Who changed what in which revision?

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