1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
libpsyc/include/psyc/parser.h

95 lines
1.8 KiB
C
Raw Normal View History

2010-02-20 16:40:09 +00:00
#include <stdint.h>
2011-04-15 23:42:36 +00:00
#include <string.h>
2011-04-17 10:56:24 +00:00
enum PSYC_Flags
{
PSYC_HEADER_ONLY = 1
};
enum PSYC_ReturnCodes
2011-04-17 10:05:14 +00:00
{
2011-04-18 08:09:35 +00:00
PSYC_ERROR_EXPECTED_TAB = -8,
PSYC_BODY = 1,
PSYC_BODY_INCOMPLETE,
PSYC_INSUFFICIENT,
PSYC_ROUTING,
PSYC_ENTITY,
2011-04-18 08:09:35 +00:00
PSYC_ENTITY_INCOMPLETE,
2011-04-18 11:27:48 +00:00
PSYC_HEADER_COMPLETE,
PSYC_COMPLETE,
2011-04-17 10:05:14 +00:00
};
2011-04-15 23:42:36 +00:00
typedef struct
{
unsigned int length;
const uint8_t * ptr;
2011-04-15 23:42:36 +00:00
} PSYC_Array;
2011-04-18 08:09:35 +00:00
2011-04-15 23:42:36 +00:00
typedef struct
{
unsigned int cursor; // current position in buffer
PSYC_Array buffer;
uint8_t flags;
2011-04-18 08:09:35 +00:00
unsigned int contentParsed; //
char inContent;
unsigned int valueRemaining;
2011-04-17 10:05:14 +00:00
unsigned int contentLength;
2011-04-15 23:42:36 +00:00
} PSYC_State;
#ifndef PSYC_COMPILE_LIBRARY
2011-04-17 12:47:25 +00:00
/* @brief shortcut for creating an array
*
* @param memory pointer to the buffer
* @param length length of that buffer
*
* @returns an instance of the PSYC_Array struct */
2011-04-18 08:09:35 +00:00
inline PSYC_Array PSYC_createArray (uint8_t* const memory, unsigned int length)
2011-04-15 23:42:36 +00:00
{
PSYC_Array arr = {length, memory};
return arr;
}
2011-04-18 08:09:35 +00:00
2011-04-17 12:47:25 +00:00
/* @brief initiates the state struct with flags
*
* @param state pointer to the state struct that should be initiated
2011-04-18 08:09:35 +00:00
* @param flags the flags that one ones to set, see PSYC_Flags */
2011-04-17 10:56:24 +00:00
inline void PSYC_initState2 (PSYC_State* state, uint8_t flags )
{
memset(state, 0, sizeof(PSYC_State));
state->flags = flags;
}
2011-04-18 08:09:35 +00:00
/* @brief initiates the state struct
*
* @param state pointer to the state struct that should be initiated */
2011-04-15 23:42:36 +00:00
inline void PSYC_initState (PSYC_State* state)
{
memset(state, 0, sizeof(PSYC_State));
}
inline void PSYC_nextBuffer (PSYC_State* state, PSYC_Array newBuf)
{
state->buffer = newBuf;
2011-04-18 08:09:35 +00:00
state->cursor = 0;
2011-04-15 23:42:36 +00:00
}
2011-04-18 08:09:35 +00:00
inline unsigned int PSYC_getContentLength (PSYC_State* s)
2011-04-15 23:42:36 +00:00
{
2011-04-18 08:09:35 +00:00
return s->contentLength;
2011-04-15 23:42:36 +00:00
}
2011-04-18 08:09:35 +00:00
inline unsigned int PSYC_getValueRemaining (PSYC_State* s)
{
return s->valueRemaining;
}
#endif
2011-04-15 23:42:36 +00:00
int PSYC_parse(PSYC_State* state,
2011-04-18 11:27:48 +00:00
uint8_t* modifier, PSYC_Array* name, PSYC_Array* value);