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
|
#include "lib/stringinfo.h"
#define booltostr(x) ((x) ? "true" : "false")
static void
removeTrailingDelimiter(StringInfo str)
{
if (str->len >= 1 && str->data[str->len - 1] == ',') {
str->len -= 1;
str->data[str->len] = '\0';
}
}
static void
_outToken(StringInfo buf, const char *str)
{
if (str == NULL)
{
appendStringInfoString(buf, "null");
return;
}
// copied directly from https://github.com/postgres/postgres/blob/master/src/backend/utils/adt/json.c#L2428
const char *p;
appendStringInfoCharMacro(buf, '"');
for (p = str; *p; p++)
{
switch (*p)
{
case '\b':
appendStringInfoString(buf, "\\b");
break;
case '\f':
appendStringInfoString(buf, "\\f");
break;
case '\n':
appendStringInfoString(buf, "\\n");
break;
case '\r':
appendStringInfoString(buf, "\\r");
break;
case '\t':
appendStringInfoString(buf, "\\t");
break;
case '"':
appendStringInfoString(buf, "\\\"");
break;
case '\\':
appendStringInfoString(buf, "\\\\");
break;
default:
if ((unsigned char) *p < ' ' || *p == '<' || *p == '>')
appendStringInfo(buf, "\\u%04x", (int) *p);
else
appendStringInfoCharMacro(buf, *p);
break;
}
}
appendStringInfoCharMacro(buf, '"');
}
|