2011-04-20 12:52:40 +00:00
|
|
|
/**
|
2011-04-19 20:27:38 +00:00
|
|
|
* @file psyc/parser.h
|
2011-04-25 21:14:22 +00:00
|
|
|
* @brief Interface for various PSYC parser functions.
|
2011-04-19 20:27:38 +00:00
|
|
|
*
|
2011-04-20 12:52:40 +00:00
|
|
|
* All parsing functions and the definitions they use are
|
2011-04-19 20:27:38 +00:00
|
|
|
* defined in this file.
|
2011-05-05 22:13:37 +00:00
|
|
|
*/
|
2011-04-19 20:27:38 +00:00
|
|
|
|
2011-04-20 12:52:40 +00:00
|
|
|
/**
|
2011-05-03 23:30:09 +00:00
|
|
|
* @defgroup parser Parsing Functions
|
2011-04-20 12:52:40 +00:00
|
|
|
*
|
|
|
|
* This module contains all parsing functions.
|
|
|
|
* @{
|
2011-04-19 20:57:49 +00:00
|
|
|
*/
|
|
|
|
|
2011-04-19 20:01:51 +00:00
|
|
|
#ifndef PSYC_PARSER_H
|
|
|
|
# define PSYC_PARSER_H
|
|
|
|
|
2010-02-20 16:40:09 +00:00
|
|
|
#include <stdint.h>
|
2011-04-15 23:42:36 +00:00
|
|
|
#include <string.h>
|
2011-05-03 20:56:54 +00:00
|
|
|
#include <psyc.h>
|
2011-04-15 23:42:36 +00:00
|
|
|
|
2011-04-20 14:28:15 +00:00
|
|
|
typedef enum
|
2011-04-17 10:56:24 +00:00
|
|
|
{
|
2011-04-30 13:48:52 +00:00
|
|
|
/// Parse only the header
|
2011-04-30 15:07:01 +00:00
|
|
|
PSYC_PARSE_ROUTING_ONLY = 1,
|
|
|
|
/// Expects only the content part of a packet. The buffer should contain the whole content in this case.
|
|
|
|
PSYC_PARSE_START_AT_CONTENT = 2,
|
2011-04-25 21:40:38 +00:00
|
|
|
} psycParseFlag;
|
2011-04-17 10:56:24 +00:00
|
|
|
|
2011-04-20 12:52:40 +00:00
|
|
|
/**
|
|
|
|
* The return value definitions for the packet parsing function.
|
2011-04-25 21:40:38 +00:00
|
|
|
* @see psyc_parse()
|
2011-04-19 20:57:49 +00:00
|
|
|
*/
|
2011-04-20 14:28:15 +00:00
|
|
|
typedef enum
|
2011-04-17 10:05:14 +00:00
|
|
|
{
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Error, packet is not ending with a valid delimiter.
|
|
|
|
PSYC_PARSE_ERROR_END = -8,
|
|
|
|
/// Error, expected NL after the method.
|
2011-04-27 16:37:03 +00:00
|
|
|
PSYC_PARSE_ERROR_METHOD = -7,
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Error, expected NL after a modifier.
|
2011-04-27 16:37:03 +00:00
|
|
|
PSYC_PARSE_ERROR_MOD_NL = -6,
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Error, modifier length is not numeric.
|
2011-04-27 16:37:03 +00:00
|
|
|
PSYC_PARSE_ERROR_MOD_LEN = -5,
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Error, expected TAB before modifier value.
|
2011-04-27 16:37:03 +00:00
|
|
|
PSYC_PARSE_ERROR_MOD_TAB = -4,
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Error, modifier name is missing.
|
2011-04-27 16:37:03 +00:00
|
|
|
PSYC_PARSE_ERROR_MOD_NAME = -3,
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Error, expected NL after the content length.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_ERROR_LENGTH = -2,
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Error in packet.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_ERROR = -1,
|
2011-05-07 17:25:18 +00:00
|
|
|
// Success, used internally.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_SUCCESS = 0,
|
2011-04-20 17:18:35 +00:00
|
|
|
/// Buffer contains insufficient amount of data.
|
|
|
|
/// Fill another buffer and concatenate it with the end of the current buffer,
|
|
|
|
/// from the cursor position to the end.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_INSUFFICIENT = 1,
|
2011-04-27 16:37:03 +00:00
|
|
|
/// Routing modifier parsing done.
|
2011-04-22 18:50:59 +00:00
|
|
|
/// Operator, name & value contains the respective parts.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_ROUTING = 2,
|
2011-05-07 17:25:18 +00:00
|
|
|
/// Start of an incomplete entity modifier.
|
2011-04-22 18:50:59 +00:00
|
|
|
/// Operator & name are complete, value is incomplete.
|
2011-05-07 17:25:18 +00:00
|
|
|
PSYC_PARSE_ENTITY_START = 3,
|
|
|
|
/// Continuation of an incomplete entity modifier.
|
|
|
|
PSYC_PARSE_ENTITY_CONT = 4,
|
|
|
|
/// End of an incomplete entity modifier.
|
|
|
|
PSYC_PARSE_ENTITY_END = 5,
|
|
|
|
/// Entity modifier parsing done in one go.
|
|
|
|
/// Operator, name & value contains the respective parts.
|
|
|
|
PSYC_PARSE_ENTITY = 6,
|
|
|
|
/// Start of an incomplete body.
|
|
|
|
/// Name contains method, value contains part of the body.
|
|
|
|
PSYC_PARSE_BODY_START = 7,
|
|
|
|
/// Continuation of an incomplete body.
|
|
|
|
PSYC_PARSE_BODY_CONT = 8,
|
|
|
|
/// End of an incomplete body.
|
|
|
|
PSYC_PARSE_BODY_END = 9,
|
|
|
|
/// Body parsing done in one go, name contains method, value contains body.
|
|
|
|
PSYC_PARSE_BODY = 10,
|
|
|
|
/// Start of an incomplete content, value contains part of content.
|
|
|
|
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
|
|
|
|
PSYC_PARSE_CONTENT_START = 7,
|
|
|
|
/// Continuation of an incomplete body.
|
|
|
|
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
|
|
|
|
PSYC_PARSE_CONTENT_CONT = 8,
|
|
|
|
/// End of an incomplete body.
|
2011-05-01 10:08:09 +00:00
|
|
|
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
|
2011-05-07 17:25:18 +00:00
|
|
|
PSYC_PARSE_CONTENT_END = 9,
|
|
|
|
/// Content parsing done in one go, value contains the whole content.
|
2011-05-01 10:08:09 +00:00
|
|
|
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
|
2011-05-07 17:25:18 +00:00
|
|
|
PSYC_PARSE_CONTENT = 10,
|
|
|
|
// Binary value parsing complete, used internally.
|
2011-05-07 16:13:59 +00:00
|
|
|
PSYC_PARSE_COMPLETE = 11,
|
2011-05-07 17:25:18 +00:00
|
|
|
// Binary value parsing incomplete, used internally.
|
2011-05-07 16:13:59 +00:00
|
|
|
PSYC_PARSE_INCOMPLETE = 12,
|
2011-04-25 21:40:38 +00:00
|
|
|
} psycParseRC;
|
2011-04-19 07:21:00 +00:00
|
|
|
|
2011-04-20 12:52:40 +00:00
|
|
|
/**
|
|
|
|
* The return value definitions for the list parsing function.
|
2011-04-25 21:40:38 +00:00
|
|
|
* @see psyc_parseList()
|
2011-04-20 12:52:40 +00:00
|
|
|
*/
|
2011-04-20 14:28:15 +00:00
|
|
|
typedef enum
|
2011-04-19 17:41:25 +00:00
|
|
|
{
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_LIST_ERROR_DELIM = -5,
|
|
|
|
PSYC_PARSE_LIST_ERROR_LEN = -4,
|
|
|
|
PSYC_PARSE_LIST_ERROR_TYPE = -3,
|
|
|
|
PSYC_PARSE_LIST_ERROR_NAME = -2,
|
|
|
|
PSYC_PARSE_LIST_ERROR= -1,
|
2011-04-20 17:18:35 +00:00
|
|
|
/// Completed parsing a list element.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_LIST_ELEM = 1,
|
2011-04-20 17:18:35 +00:00
|
|
|
/// Reached end of buffer.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_LIST_END = 2,
|
2011-04-20 17:18:35 +00:00
|
|
|
/// Binary list is incomplete.
|
2011-04-22 15:09:32 +00:00
|
|
|
PSYC_PARSE_LIST_INCOMPLETE = 3,
|
2011-04-25 21:40:38 +00:00
|
|
|
} psycParseListRC;
|
2011-04-15 23:42:36 +00:00
|
|
|
|
2011-04-20 12:52:40 +00:00
|
|
|
/**
|
|
|
|
* Struct for keeping parser state.
|
|
|
|
*/
|
2011-04-19 17:41:25 +00:00
|
|
|
typedef struct
|
2011-04-15 23:42:36 +00:00
|
|
|
{
|
2011-04-19 19:54:44 +00:00
|
|
|
size_t cursor; ///< current position in buffer
|
2011-04-20 17:18:35 +00:00
|
|
|
size_t startc; ///< position where the parsing would be resumed
|
2011-04-25 21:40:38 +00:00
|
|
|
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
|
2011-04-15 23:42:36 +00:00
|
|
|
|
2011-04-27 16:37:03 +00:00
|
|
|
size_t routingLength; ///< length of routing part parsed so far
|
2011-04-19 19:54:44 +00:00
|
|
|
size_t contentParsed; ///< number of bytes parsed from the content so far
|
|
|
|
size_t contentLength; ///< expected length of the content
|
2011-04-25 21:40:38 +00:00
|
|
|
psycBool contentLengthFound; ///< is there a length given for this packet?
|
2011-04-19 19:54:44 +00:00
|
|
|
size_t valueParsed; ///< number of bytes parsed from the value so far
|
|
|
|
size_t valueLength; ///< expected length of the value
|
2011-05-04 15:59:51 +00:00
|
|
|
psycBool valueLengthFound; ///< is there a length given for this modifier?
|
2011-04-25 21:40:38 +00:00
|
|
|
} psycParseState;
|
2011-04-15 23:42:36 +00:00
|
|
|
|
2011-04-20 12:52:40 +00:00
|
|
|
/**
|
|
|
|
* Struct for keeping list parser state.
|
|
|
|
*/
|
2011-04-19 17:41:25 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2011-04-19 19:54:44 +00:00
|
|
|
size_t cursor; ///< current position in buffer
|
|
|
|
size_t startc; ///< line start position
|
2011-04-25 21:40:38 +00:00
|
|
|
psycString buffer;
|
|
|
|
psycListType type; ///< list type
|
2011-04-19 17:41:25 +00:00
|
|
|
|
2011-04-19 19:54:44 +00:00
|
|
|
size_t elemParsed; ///< number of bytes parsed from the elem so far
|
|
|
|
size_t elemLength; ///< expected length of the elem
|
2011-04-25 21:40:38 +00:00
|
|
|
} psycParseListState;
|
2011-04-19 17:41:25 +00:00
|
|
|
|
2011-04-19 19:54:44 +00:00
|
|
|
/**
|
2011-05-03 23:30:09 +00:00
|
|
|
* Initializes the state struct.
|
2011-04-17 12:47:25 +00:00
|
|
|
*
|
2011-05-03 23:30:09 +00:00
|
|
|
* @param state Pointer to the state struct that should be initialized.
|
2011-04-19 17:41:25 +00:00
|
|
|
*/
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
void psyc_initParseState (psycParseState *state)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
|
|
|
memset(state, 0, sizeof(psycParseState));
|
|
|
|
}
|
2011-04-17 10:56:24 +00:00
|
|
|
|
2011-04-19 19:54:44 +00:00
|
|
|
/**
|
2011-05-03 23:30:09 +00:00
|
|
|
* Initializes the state struct with flags.
|
2011-04-18 08:09:35 +00:00
|
|
|
*
|
2011-05-03 23:30:09 +00:00
|
|
|
* @param state Pointer to the state struct that should be initialized.
|
2011-04-25 21:40:38 +00:00
|
|
|
* @param flags Flags to be set for the parser, see psycParseFlag.
|
2011-04-19 17:41:25 +00:00
|
|
|
*/
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
void psyc_initParseState2 (psycParseState *state, uint8_t flags)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
|
|
|
memset(state, 0, sizeof(psycParseState));
|
|
|
|
state->flags = flags;
|
|
|
|
|
|
|
|
if (flags & PSYC_PARSE_START_AT_CONTENT)
|
|
|
|
state->part = PSYC_PART_CONTENT;
|
|
|
|
}
|
2011-04-15 23:42:36 +00:00
|
|
|
|
2011-05-03 20:24:50 +00:00
|
|
|
/**
|
|
|
|
* Sets a new buffer in the parser state struct with data to be parsed.
|
2011-05-03 20:56:54 +00:00
|
|
|
*
|
|
|
|
* @param state Pointer to the initialized state of the parser
|
|
|
|
* @param buffer the buffer that should be parsed now
|
|
|
|
* @see psycString
|
2011-05-03 20:24:50 +00:00
|
|
|
*/
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
void psyc_setParseBuffer (psycParseState *state, psycString buffer)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
|
|
|
state->buffer = buffer;
|
|
|
|
state->cursor = 0;
|
2011-05-03 20:24:50 +00:00
|
|
|
|
2011-05-03 20:56:54 +00:00
|
|
|
if (state->flags & PSYC_PARSE_START_AT_CONTENT)
|
|
|
|
{
|
|
|
|
state->contentLength = buffer.length;
|
|
|
|
state->contentLengthFound = PSYC_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a new buffer in the parser state struct with data to be parsed.
|
|
|
|
*
|
|
|
|
* @param state Pointer to the initialized state of the parser
|
|
|
|
* @param buffer pointer to the data that should be parsed
|
|
|
|
* @param length length of the data in bytes
|
|
|
|
* @see psycString
|
|
|
|
*/
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
void psyc_setParseBuffer2 (psycParseState *state, char *buffer, size_t length)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
2011-05-06 13:26:28 +00:00
|
|
|
psycString buf = {length, buffer};
|
|
|
|
psyc_setParseBuffer(state, buf);
|
2011-05-03 20:56:54 +00:00
|
|
|
}
|
2011-05-03 20:24:50 +00:00
|
|
|
|
2011-04-19 19:54:44 +00:00
|
|
|
/**
|
2011-05-03 23:30:09 +00:00
|
|
|
* Initializes the list state struct.
|
2011-04-19 17:41:25 +00:00
|
|
|
*
|
2011-05-03 23:30:09 +00:00
|
|
|
* @param state Pointer to the list state struct that should be initialized.
|
2011-04-19 17:41:25 +00:00
|
|
|
*/
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
void psyc_initParseListState (psycParseListState *state)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
|
|
|
memset(state, 0, sizeof(psycParseListState));
|
|
|
|
}
|
2011-04-19 17:41:25 +00:00
|
|
|
|
2011-05-03 20:24:50 +00:00
|
|
|
/**
|
|
|
|
* Sets a new buffer in the list parser state struct with data to be parsed.
|
|
|
|
*/
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
void psyc_setParseListBuffer (psycParseListState *state, psycString buffer)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
|
|
|
state->buffer = buffer;
|
|
|
|
state->cursor = 0;
|
|
|
|
}
|
2011-04-19 17:41:25 +00:00
|
|
|
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
void psyc_setParseListBuffer2 (psycParseListState *state, char *buffer, size_t length)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
2011-05-06 13:26:28 +00:00
|
|
|
psycString buf = {length, buffer};
|
|
|
|
psyc_setParseListBuffer(state, buf);
|
2011-05-03 20:56:54 +00:00
|
|
|
}
|
2011-04-15 23:42:36 +00:00
|
|
|
|
2011-05-03 21:11:13 +00:00
|
|
|
static inline
|
2011-05-04 02:01:21 +00:00
|
|
|
size_t psyc_getParseContentLength (psycParseState *state)
|
2011-05-03 20:56:54 +00:00
|
|
|
{
|
2011-05-04 02:01:21 +00:00
|
|
|
return state->contentLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
psycBool psyc_isParseContentLengthFound (psycParseState *state)
|
|
|
|
{
|
|
|
|
return state->contentLengthFound;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
size_t psyc_getParseValueLength (psycParseState *state)
|
|
|
|
{
|
|
|
|
return state->valueLength;
|
|
|
|
}
|
|
|
|
|
2011-05-04 15:59:51 +00:00
|
|
|
static inline
|
|
|
|
psycBool psyc_isParseValueLengthFound (psycParseState *state)
|
|
|
|
{
|
|
|
|
return state->valueLengthFound;
|
|
|
|
}
|
|
|
|
|
2011-05-04 02:01:21 +00:00
|
|
|
static inline
|
|
|
|
size_t psyc_getParseCursor (psycParseState *state)
|
|
|
|
{
|
|
|
|
return state->cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
size_t psyc_getParseBufferLength (psycParseState *state)
|
|
|
|
{
|
|
|
|
return state->buffer.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
size_t psyc_getParseRemainingLength (psycParseState *state)
|
|
|
|
{
|
|
|
|
return state->buffer.length - state->cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
const char * psyc_getParseRemainingBuffer (psycParseState *state)
|
|
|
|
{
|
|
|
|
return state->buffer.ptr + state->cursor;
|
2011-05-03 20:56:54 +00:00
|
|
|
}
|
2011-04-18 08:09:35 +00:00
|
|
|
|
2011-04-20 12:52:40 +00:00
|
|
|
/**
|
|
|
|
* Parse PSYC packets.
|
|
|
|
*
|
2011-04-19 20:57:49 +00:00
|
|
|
* Generalized line-based packet parser.
|
2011-04-20 12:52:40 +00:00
|
|
|
*
|
2011-04-25 21:40:38 +00:00
|
|
|
* @param state An initialized psycParseState
|
2011-04-22 18:50:59 +00:00
|
|
|
* @param operator A pointer to a character. In case of a variable, it will
|
|
|
|
* be set to the operator of that variable
|
2011-04-25 21:40:38 +00:00
|
|
|
* @param name A pointer to a psycString. It will point to the name of
|
2011-04-19 20:57:49 +00:00
|
|
|
* the variable or method and its length will be set accordingly
|
2011-04-25 21:40:38 +00:00
|
|
|
* @param value A pointer to a psycString. It will point to the
|
2011-04-19 20:57:49 +00:00
|
|
|
* value/body the variable/method and its length will be set accordingly
|
2011-04-19 20:31:43 +00:00
|
|
|
*/
|
2011-05-04 02:01:21 +00:00
|
|
|
psycParseRC psyc_parse (psycParseState *state, char *oper,
|
|
|
|
psycString *name, psycString *value);
|
2011-04-19 17:41:25 +00:00
|
|
|
|
2011-04-19 20:31:43 +00:00
|
|
|
/**
|
|
|
|
* List value parser.
|
|
|
|
*/
|
2011-05-04 02:01:21 +00:00
|
|
|
psycParseListRC psyc_parseList (psycParseListState *state, psycString *name,
|
|
|
|
psycString *value, psycString *elem);
|
2011-04-19 19:55:22 +00:00
|
|
|
|
2011-04-19 20:01:51 +00:00
|
|
|
#endif // PSYC_PARSER_H
|
2011-04-19 20:57:49 +00:00
|
|
|
|
2011-05-03 23:30:09 +00:00
|
|
|
/** @} */ // end of parser group
|