mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
moar doc
This commit is contained in:
parent
f0b97701d0
commit
29ad98a924
4 changed files with 126 additions and 80 deletions
|
@ -18,43 +18,58 @@
|
|||
#include <psyc.h>
|
||||
#include <psyc/syntax.h>
|
||||
|
||||
/** Modifier flags. */
|
||||
typedef enum
|
||||
{
|
||||
/// Modifier needs to be checked if it needs length.
|
||||
PSYC_MODIFIER_CHECK_LENGTH = 0,
|
||||
/// Modifier needs length.
|
||||
PSYC_MODIFIER_NEED_LENGTH = 1,
|
||||
/// Modifier doesn't need length.
|
||||
PSYC_MODIFIER_NO_LENGTH = 2,
|
||||
/// Routing modifier, which implies that it doesn't need length.
|
||||
PSYC_MODIFIER_ROUTING = 3,
|
||||
} psycModifierFlag;
|
||||
|
||||
/** List flags. */
|
||||
typedef enum
|
||||
{
|
||||
/// List needs to be checked if it needs length.
|
||||
PSYC_LIST_CHECK_LENGTH = 0,
|
||||
/// List needs length.
|
||||
PSYC_LIST_NEED_LENGTH = 1,
|
||||
/// List doesn't need length.
|
||||
PSYC_LIST_NO_LENGTH = 2,
|
||||
} psycListFlag;
|
||||
|
||||
/** Packet flags. */
|
||||
typedef enum
|
||||
{
|
||||
/// Packet needs to be checked if it needs content length.
|
||||
PSYC_PACKET_CHECK_LENGTH = 0,
|
||||
/// Packet needs content length.
|
||||
PSYC_PACKET_NEED_LENGTH = 1,
|
||||
/// Packet doesn't need content length.
|
||||
PSYC_PACKET_NO_LENGTH = 2,
|
||||
} psycPacketFlag;
|
||||
|
||||
/** intermediate struct for a PSYC variable modification */
|
||||
/** Structure for a modifier. */
|
||||
typedef struct
|
||||
{
|
||||
t{
|
||||
char oper;
|
||||
psycString name;
|
||||
psycString value;
|
||||
psycModifierFlag flag;
|
||||
} psycModifier;
|
||||
|
||||
/** Structure for an entity or routing header. */
|
||||
typedef struct
|
||||
{
|
||||
size_t lines;
|
||||
psycModifier *modifiers;
|
||||
} psycHeader;
|
||||
|
||||
/** Structure for a list. */
|
||||
typedef struct
|
||||
{
|
||||
size_t num_elems;
|
||||
|
@ -68,16 +83,16 @@ typedef struct
|
|||
{
|
||||
psycHeader routing; ///< Routing header.
|
||||
psycHeader entity; ///< Entity header.
|
||||
psycString method;
|
||||
psycString data;
|
||||
psycString content;
|
||||
psycString method; ///< Contains the method.
|
||||
psycString data; ///< Contains the data.
|
||||
psycString content; ///< Contains the whole content.
|
||||
size_t routingLength; ///< Length of routing part.
|
||||
size_t contentLength; ///< Length of content part.
|
||||
size_t length; ///< Total length of packet.
|
||||
psycPacketFlag flag;
|
||||
psycPacketFlag flag; ///< Packet flag.
|
||||
} psycPacket;
|
||||
|
||||
/** Check if a modifier needs length */
|
||||
/** Check if a modifier needs length. */
|
||||
static inline
|
||||
psycModifierFlag psyc_checkModifierLength (psycModifier *m)
|
||||
{
|
||||
|
@ -93,7 +108,7 @@ psycModifierFlag psyc_checkModifierLength (psycModifier *m)
|
|||
return flag;
|
||||
}
|
||||
|
||||
/** Create new modifier */
|
||||
/** Create new modifier. */
|
||||
static inline
|
||||
psycModifier psyc_newModifier (char oper, psycString *name, psycString *value,
|
||||
psycModifierFlag flag)
|
||||
|
@ -119,40 +134,42 @@ psycModifier psyc_newModifier2 (char oper,
|
|||
return psyc_newModifier(oper, &n, &v, flag);
|
||||
}
|
||||
|
||||
/** Get the total length of a modifier. */
|
||||
/** Get the total length of a modifier when rendered. */
|
||||
size_t psyc_getModifierLength (psycModifier *m);
|
||||
|
||||
/** Check if a list needs length */
|
||||
/** Check if a list needs length. */
|
||||
psycListFlag psyc_checkListLength (psycList *list);
|
||||
|
||||
/** Get the total length of a list. */
|
||||
/** Get the total length of a list when rendered. */
|
||||
psycListFlag psyc_getListLength (psycList *list);
|
||||
|
||||
/** Check if a packet needs length */
|
||||
/** Check if a packet needs length. */
|
||||
psycPacketFlag psyc_checkPacketLength (psycPacket *p);
|
||||
|
||||
/** Calculate and set the length of packet parts and total packet length */
|
||||
/** Calculate and set the rendered length of packet parts and total packet length. */
|
||||
size_t psyc_setPacketLength (psycPacket *p);
|
||||
|
||||
/** Create new list */
|
||||
/** Create new list. */
|
||||
psycList psyc_newList (psycString *elems, size_t num_elems, psycListFlag flag);
|
||||
|
||||
/** Create new packet */
|
||||
/** Create new packet. */
|
||||
psycPacket psyc_newPacket (psycHeader *routing,
|
||||
psycHeader *entity,
|
||||
psycString *method, psycString *data,
|
||||
psycPacketFlag flag);
|
||||
|
||||
/** Create new packet */
|
||||
/** Create new packet. */
|
||||
psycPacket psyc_newPacket2 (psycModifier *routing, size_t routinglen,
|
||||
psycModifier *entity, size_t entitylen,
|
||||
const char *method, size_t methodlen,
|
||||
const char *data, size_t datalen,
|
||||
psycPacketFlag flag);
|
||||
|
||||
/** Create new packet with raw content. */
|
||||
psycPacket psyc_newRawPacket (psycHeader *routing, psycString *content,
|
||||
psycPacketFlag flag);
|
||||
|
||||
/** Create new packet with raw content. */
|
||||
psycPacket psyc_newRawPacket2 (psycModifier *routing, size_t routinglen,
|
||||
const char *content, size_t contentlen,
|
||||
psycPacketFlag flag);
|
||||
|
|
|
@ -117,7 +117,8 @@ typedef enum
|
|||
{
|
||||
/// Parse only the header
|
||||
PSYC_PARSE_ROUTING_ONLY = 1,
|
||||
/// Parse only the content. Parsing starts at the content and the content must be complete.
|
||||
/// Parse only the content.
|
||||
/// Parsing starts at the content and the content must be complete.
|
||||
PSYC_PARSE_START_AT_CONTENT = 2,
|
||||
} psycParseFlag;
|
||||
|
||||
|
@ -209,19 +210,19 @@ typedef enum
|
|||
*/
|
||||
typedef struct
|
||||
{
|
||||
size_t cursor; ///< current position in buffer
|
||||
size_t startc; ///< position where the parsing would be resumed
|
||||
psycString buffer; ///< buffer with data to be parsed
|
||||
uint8_t flags; ///< flags for the parser, see psycParseFlag
|
||||
psycPart part; ///< part of the packet being parsed currently
|
||||
size_t cursor; ///< Current position in buffer.
|
||||
size_t startc; ///< Position where the parsing would be resumed.
|
||||
psycString buffer; ///< Buffer with data to be parsed.
|
||||
uint8_t flags; ///< Flags for the parser, see psycParseFlag.
|
||||
psycPart part; ///< Part of the packet being parsed currently.
|
||||
|
||||
size_t routingLength; ///< length of routing part parsed so far
|
||||
size_t contentParsed; ///< number of bytes parsed from the content so far
|
||||
size_t contentLength; ///< expected length of the content
|
||||
psycBool contentLengthFound; ///< is there a length given for this packet?
|
||||
size_t valueParsed; ///< number of bytes parsed from the value so far
|
||||
size_t valueLength; ///< expected length of the value
|
||||
psycBool valueLengthFound; ///< is there a length given for this modifier?
|
||||
size_t routingLength; ///< Length of routing part parsed so far.
|
||||
size_t contentParsed; ///< Number of bytes parsed from the content so far.
|
||||
size_t contentLength; ///< Expected length of the content.
|
||||
psycBool contentLengthFound; ///< Is there a length given for this packet?
|
||||
size_t valueParsed; ///< Number of bytes parsed from the value so far.
|
||||
size_t valueLength; ///< Expected length of the value.
|
||||
psycBool valueLengthFound; ///< Is there a length given for this modifier?
|
||||
} psycParseState;
|
||||
|
||||
/**
|
||||
|
@ -229,13 +230,13 @@ typedef struct
|
|||
*/
|
||||
typedef struct
|
||||
{
|
||||
size_t cursor; ///< current position in buffer
|
||||
size_t startc; ///< line start position
|
||||
psycString buffer;
|
||||
psycListType type; ///< list type
|
||||
size_t cursor; ///< Current position in buffer.
|
||||
size_t startc; ///< Line start position.
|
||||
psycString buffer; ///< Buffer with data to be parsed.
|
||||
psycListType type; ///< List type.
|
||||
|
||||
size_t elemParsed; ///< number of bytes parsed from the elem so far
|
||||
size_t elemLength; ///< expected length of the elem
|
||||
size_t elemParsed; ///< Number of bytes parsed from the elem so far.
|
||||
size_t elemLength; ///< Expected length of the elem.
|
||||
} psycParseListState;
|
||||
|
||||
/**
|
||||
|
|
|
@ -21,21 +21,49 @@
|
|||
*/
|
||||
typedef enum
|
||||
{
|
||||
PSYC_RENDER_ERROR_METHOD_MISSING = -3, ///< method missing, but data present
|
||||
PSYC_RENDER_ERROR_MODIFIER_NAME_MISSING = -2, ///< modifier name missing
|
||||
/// Error, method is missing, but data is present.
|
||||
PSYC_RENDER_ERROR_METHOD_MISSING = -3,
|
||||
/// Error, a modifier name is missing.
|
||||
PSYC_RENDER_ERROR_MODIFIER_NAME_MISSING = -2,
|
||||
/// Error, buffer is too small to render the packet.
|
||||
PSYC_RENDER_ERROR = -1,
|
||||
/// Packet is rendered successfully in the buffer.
|
||||
PSYC_RENDER_SUCCESS = 0,
|
||||
} psycRenderRC;
|
||||
|
||||
/**
|
||||
* Return codes for psyc_renderList.
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
/// Error, buffer is too small to render the list.
|
||||
PSYC_RENDER_LIST_ERROR = -1,
|
||||
/// List is rendered successfully in the buffer.
|
||||
PSYC_RENDER_LIST_SUCCESS = 0,
|
||||
} psycRenderListRC;
|
||||
|
||||
/**
|
||||
* Render a PSYC packet into a buffer.
|
||||
*
|
||||
* The packet structure should contain the packet parts, either routing, entity,
|
||||
* method & data, or routing & content when rendering raw content.
|
||||
* It should also contain the contentLength & total length of the packet,
|
||||
* you can use psyc_setPacketLength for calculating & setting these values.
|
||||
* This function renders packet->length bytes to buffer,
|
||||
* if it doesn't fit in the buffer an error is returned.
|
||||
*
|
||||
* @see psyc_newPacket
|
||||
* @see psyc_newPacket2
|
||||
* @see psyc_newRawPacket
|
||||
* @see psyc_newRawPacket2
|
||||
* @see psyc_setPacketLength
|
||||
*/
|
||||
psycRenderRC psyc_render (psycPacket *packet, char *buffer, size_t buflen);
|
||||
|
||||
/**
|
||||
* Render a PSYC list into a buffer.
|
||||
*/
|
||||
psycRenderRC psyc_renderList (psycList *list, char *buffer, size_t buflen);
|
||||
psycRenderListRC psyc_renderList (psycList *list, char *buffer, size_t buflen);
|
||||
|
||||
/** @} */ // end of render group
|
||||
|
||||
|
|
12
src/render.c
12
src/render.c
|
@ -2,13 +2,13 @@
|
|||
#include <psyc/render.h>
|
||||
#include <psyc/syntax.h>
|
||||
|
||||
psycRenderRC psyc_renderList (psycList *list, char *buffer, size_t buflen)
|
||||
psycRenderListRC psyc_renderList (psycList *list, char *buffer, size_t buflen)
|
||||
{
|
||||
size_t i, cur = 0;
|
||||
psycString *elem;
|
||||
|
||||
if (list->length > buflen)
|
||||
return PSYC_RENDER_ERROR; // return error if list doesn't fit in buffer
|
||||
if (list->length > buflen) // return error if list doesn't fit in buffer
|
||||
return PSYC_RENDER_LIST_ERROR;
|
||||
|
||||
if (list->flag == PSYC_LIST_NEED_LENGTH)
|
||||
{
|
||||
|
@ -34,7 +34,7 @@ psycRenderRC psyc_renderList (psycList *list, char *buffer, size_t buflen)
|
|||
}
|
||||
}
|
||||
|
||||
return PSYC_RENDER_SUCCESS;
|
||||
return PSYC_RENDER_LIST_SUCCESS;
|
||||
}
|
||||
|
||||
static inline
|
||||
|
@ -66,8 +66,8 @@ psycRenderRC psyc_render (psycPacket *packet, char *buffer, size_t buflen)
|
|||
{
|
||||
size_t i, cur = 0, len;
|
||||
|
||||
if (packet->length > buflen)
|
||||
return PSYC_RENDER_ERROR; // return error if packet doesn't fit in buffer
|
||||
if (packet->length > buflen) // return error if packet doesn't fit in buffer
|
||||
return PSYC_RENDER_ERROR;
|
||||
|
||||
// render routing modifiers
|
||||
for (i = 0; i < packet->routing.lines; i++)
|
||||
|
|
Loading…
Reference in a new issue