1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
libpsyc/src/render.c

71 lines
2.1 KiB
C
Raw Normal View History

2011-04-20 20:22:55 +00:00
#include "psyc/lib.h"
#include "psyc/render.h"
2011-04-22 15:09:32 +00:00
PSYC_RenderRC PSYC_renderVar(PSYC_RenderState* state,
const char* name, size_t nlength,
const char* value, size_t vlength,
const PSYC_RenderFlag flags, char modifier)
{
size_t startc = state->cursor;
2011-04-22 09:50:13 +00:00
unless (nlength) nlength = strlen(name);
// vlength 0 means an empty variable.. no cheating there
unless (modifier) modifier = C_GLYPH_MODIFIER_SET;
2011-04-22 15:09:32 +00:00
state->buffer[state->cursor++] = modifier;
strncpy(&state->buffer[state->cursor], name, nlength);
state->cursor += nlength;
if (vlength)
{
state->buffer[state->cursor++] = '\t';
strncpy(&state->buffer[state->cursor], value, vlength);
state->cursor += vlength;
2011-04-22 09:50:13 +00:00
}
2011-04-22 15:09:32 +00:00
//if (flags == PSYC_RENDER_ROUTING)
if (PSYC_isRoutingVar(name, nlength))
{ // no more routing headers allowed after content started
if (state->part != PSYC_PART_ROUTING)
{
P1(("Too late to add a routing variable!\n"));
return PSYC_RENDER_ERROR_ROUTING;
2011-04-22 09:50:13 +00:00
}
2011-04-22 15:09:32 +00:00
}
else if (state->part == PSYC_PART_ROUTING)
{ // first entity header, set part to content
state->part = PSYC_PART_CONTENT;
2011-04-22 09:50:13 +00:00
// add "\n000000000" to buffer
// and make spot point to the first 0
}
2011-04-22 15:09:32 +00:00
// update content length if we're in the content part
if (state->part == PSYC_PART_CONTENT)
state->contentLength += state->cursor - startc;
return PSYC_RENDER_SUCCESS;
2011-04-22 09:50:13 +00:00
}
2011-04-20 20:22:55 +00:00
2011-04-22 15:09:32 +00:00
/* render PSYC packets */
PSYC_RenderRC PSYC_renderBody(PSYC_RenderState* state,
2011-04-22 09:50:13 +00:00
const char* method, size_t mlength,
2011-04-22 15:09:32 +00:00
const char* data, size_t dlength)
{
if (state->flag == PSYC_RENDER_CHECK_BINARY)
{
// find out if this packet needs a prepended length
if (dlength == 1 && data[0] == C_GLYPH_PACKET_DELIMITER)
state->flag = PSYC_RENDER_BINARY;
else if (dlength > 404)
state->flag = PSYC_RENDER_BINARY;
else if (memmem(data, dlength, PSYC_PACKET_DELIMITER, sizeof(PSYC_PACKET_DELIMITER)))
state->flag = PSYC_RENDER_BINARY;
else
state->flag = PSYC_RENDER_NOT_BINARY;
}
2011-04-20 20:22:55 +00:00
// TBD
2011-04-22 15:09:32 +00:00
return PSYC_RENDER_SUCCESS;
2011-04-20 20:22:55 +00:00
}