1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "houdini.h"
#define hex2c(c) ((c | 32) % 39 - 9)
static int
unescape(gh_buf *ob, const uint8_t *src, size_t size, bool unescape_plus)
{
size_t i = 0, org;
while (i < size) {
org = i;
while (i < size && src[i] != '%' && src[i] != '+')
i++;
if (likely(i > org)) {
if (unlikely(org == 0)) {
if (i >= size)
return 0;
gh_buf_grow(ob, HOUDINI_UNESCAPED_SIZE(size));
}
gh_buf_put(ob, src + org, i - org);
}
/* escaping */
if (i >= size)
break;
if (src[i++] == '+') {
gh_buf_putc(ob, unescape_plus ? ' ' : '+');
continue;
}
if (i + 1 < size && _isxdigit(src[i]) && _isxdigit(src[i + 1])) {
unsigned char new_char = (hex2c(src[i]) << 4) + hex2c(src[i + 1]);
gh_buf_putc(ob, new_char);
i += 2;
} else {
gh_buf_putc(ob, '%');
}
}
return 1;
}
int
houdini_unescape_uri(gh_buf *ob, const uint8_t *src, size_t size)
{
return unescape(ob, src, size, false);
}
int
houdini_unescape_uri_component(gh_buf *ob, const uint8_t *src, size_t size)
{
return unescape(ob, src, size, false);
}
int
houdini_unescape_url(gh_buf *ob, const uint8_t *src, size_t size)
{
return unescape(ob, src, size, true);
}
|