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
|
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "houdini.h"
int
houdini_unescape_js(gh_buf *ob, const uint8_t *src, size_t size)
{
size_t i = 0, org, ch;
while (i < size) {
org = i;
while (i < size && 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 (++i == size) {
gh_buf_putc(ob, '\\');
break;
}
ch = src[i];
switch (ch) {
case 'n':
ch = '\n';
/* pass through */
case '\\':
case '\'':
case '\"':
case '/':
gh_buf_putc(ob, ch);
i++;
break;
default:
gh_buf_putc(ob, '\\');
break;
}
}
return 1;
}
|