libpsyc/include/psyc/parse.h

612 lines
17 KiB
C
Raw Normal View History

2011-05-09 07:02:15 +00:00
#ifndef PSYC_PARSE_H
2011-11-11 21:18:24 +00:00
#define PSYC_PARSE_H
2011-05-09 07:02:15 +00:00
/**
2011-05-09 07:02:15 +00:00
* @file psyc/parse.h
2011-05-09 12:37:57 +00:00
* @brief Interface for PSYC packet parsing.
2011-04-19 20:27:38 +00:00
*
2011-05-09 12:37:57 +00:00
* All parsing functions and the definitions they use are defined here.
*/
2011-04-19 20:27:38 +00:00
/**
2011-05-09 10:42:42 +00:00
* @defgroup parse Parsing Functions
*
2011-05-08 23:36:57 +00:00
* This module contains packet and list parsing functions.
2011-10-31 19:04:16 +00:00
* The parser adheres to the definition of a packet found at
*
2011-05-09 00:07:13 +00:00
* http://about.psyc.eu/Spec:Packet
*
* and the according terms are used throughout this documentation and in the
* return codes. You should be at least
2011-05-15 18:26:52 +00:00
* vaguely familiar with differences between "body" and "content" as
* well as "routing variable" and "entity variable".
2011-05-09 00:07:13 +00:00
*
2011-05-08 23:36:57 +00:00
*
* To parse a packet you first have to initialize a state:
*
* @code
2011-10-31 19:26:47 +00:00
* PsycParseState state;
2011-10-31 19:04:16 +00:00
* psyc_parse_state_init(&state, flags);
2011-05-08 23:36:57 +00:00
* @endcode
*
2011-10-31 19:04:16 +00:00
* With the flags parameter you can fine-tune what
2011-10-31 19:26:47 +00:00
* part of the packet should be parsed. @see PsycParseFlag
2011-05-08 23:36:57 +00:00
*
* Next, you have to tell the parser what it should parse. Assuming the variable
* raw_data points to our packet and raw_len contains the length, you can pass
* it to the parser as follows:
*
* @code
* char* raw_data; // points to our (possibly incomplete) packet
* size_t raw_len; // how many bytes of data
*
2011-11-14 21:02:02 +00:00
* // state is our initialized state from before
* psyc_parse_buffer_set(&state, raw_data, raw_len);
2011-05-08 23:36:57 +00:00
* @endcode
*
* Now the the variables that will save the output of the parser need to be
* declared:
*
* @code
2011-10-31 19:26:47 +00:00
* PsycString name, // Name of the variable or method
2011-05-08 23:36:57 +00:00
* value; // Value of the variable or body
* char oper; // operator of the variable (if any)
* @endcode
*
* They will be passed to the parsing function which will set them to
2011-05-08 23:36:57 +00:00
* the according positions and lengths.
*
* Now the real parsing begins. The parsing function needs to be called
* repeatedly with various actions in between, depending on the return values.
*
* A simplified example follows, see test/testPsyc.c for actual code that
2011-06-12 12:16:39 +00:00
* handles incomplete packets as well.
2011-05-08 23:36:57 +00:00
*
* @code
*
* int ret;
2011-05-08 23:36:57 +00:00
*
* do // run the parsing in a loop, each time parsing one line
* {
* name.length = value.length = oper = 0; // reset the output variables
*
* ret = psyc_parse(&state, &oper, &name, &value); // call the parsing function
*
* switch (ret) // look at the return value
* {
* case PSYC_PARSE_ROUTING: // it is a routing variable
* case PSYC_PARSE_ENTITY: // it is a entity variable
* // Name, value and operator of the variable can now be found in the
* // respective variables:
2011-10-31 19:04:16 +00:00
* printf("Variable: %.*s Value: %.*s Operator: %c\n",
2011-11-01 11:06:58 +00:00
* name.length, name.data,
* value.length, value.data,
2011-05-08 23:49:04 +00:00
* oper);
2011-11-01 11:06:58 +00:00
* // Note that the .data member still points at your original buffer. If
2011-05-08 23:36:57 +00:00
* // you want to reuse that buffer for the next packet, you better copy it
* // before passing it to the parser or you copy each variable now.
* break;
* case PSYC_PARSE_BODY: // it is the method and the body of the packet.
2011-10-31 19:04:16 +00:00
* printf("Method Name: %.*s Body: %.*s\n",
2011-11-01 11:06:58 +00:00
* name.length, name.data, // name of the method
* value.length, value.data); // value of the body
2011-05-08 23:36:57 +00:00
* break;
2011-05-08 23:53:30 +00:00
* case PSYC_PARSE_COMPLETE: // parsing of this packet is complete
2011-05-08 23:36:57 +00:00
* // You can simply continue parsing till you get the
* // PSYC_PARSE_INSUFFICIENT code which means the line is incomplete.
2011-05-08 23:36:57 +00:00
* continue;
2011-10-31 19:04:16 +00:00
* default: //
2011-05-08 23:36:57 +00:00
* perror("Error %i happened :(\n", res);
* return res;
* }
2011-10-31 19:04:16 +00:00
* }
2011-05-15 22:01:02 +00:00
* while (ret > 0)
2011-05-08 23:36:57 +00:00
* @endcode
*
2011-05-09 07:11:59 +00:00
* This simple example does not consider some more complex cases when you
* receive incomplete packets but still want to access the data. This code would
2011-05-08 23:36:57 +00:00
* simply reject incomplete packets as error. A more detailed tutorial for
2011-05-09 07:11:59 +00:00
* incomplete packets will follow. In the mean time, have look at the return
2011-10-31 19:26:47 +00:00
* codes in PsycParseRC and their explanations. @see PsycParseRC
2011-04-19 20:57:49 +00:00
*/
2011-05-08 23:53:30 +00:00
/** @{ */ // begin of parser group
2010-02-20 16:40:09 +00:00
#include <stdint.h>
2011-04-15 23:42:36 +00:00
#include <string.h>
#include <psyc.h>
2011-04-15 23:42:36 +00:00
2011-10-13 22:29:32 +00:00
typedef enum {
2011-11-11 21:18:24 +00:00
/// Default Flag. Parse everything.
PSYC_PARSE_ALL = 0,
/// Parse only the header
PSYC_PARSE_ROUTING_ONLY = 1,
/// Parse only the content.
/// Parsing starts at the content and the content must be complete.
PSYC_PARSE_START_AT_CONTENT = 2,
2011-10-31 19:26:47 +00:00
} PsycParseFlag;
2011-04-17 10:56:24 +00:00
/**
* The return value definitions for the packet parsing function.
* @see psyc_parse()
2011-04-19 20:57:49 +00:00
*/
2011-10-13 22:29:32 +00:00
typedef enum {
2011-11-11 21:18:24 +00:00
/// Error, packet is not ending with a valid delimiter.
PSYC_PARSE_ERROR_END = -8,
/// Error, expected NL after the method.
PSYC_PARSE_ERROR_METHOD = -7,
/// Error, expected NL after a modifier.
PSYC_PARSE_ERROR_MOD_NL = -6,
/// Error, modifier length is not numeric.
PSYC_PARSE_ERROR_MOD_LEN = -5,
/// Error, expected TAB before modifier value.
PSYC_PARSE_ERROR_MOD_TAB = -4,
/// Error, modifier name is missing.
PSYC_PARSE_ERROR_MOD_NAME = -3,
/// Error, expected NL after the content length.
PSYC_PARSE_ERROR_LENGTH = -2,
/// Error in packet.
PSYC_PARSE_ERROR = -1,
/// 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.
PSYC_PARSE_INSUFFICIENT = 1,
/// Routing modifier parsing done.
/// Operator, name & value contains the respective parts.
PSYC_PARSE_ROUTING = 2,
/// State sync operation.
PSYC_PARSE_STATE_RESYNC = 3,
/// State reset operation.
PSYC_PARSE_STATE_RESET = 4,
/// Start of an incomplete entity modifier.
/// Operator & name are complete, value is incomplete.
PSYC_PARSE_ENTITY_START = 5,
/// Continuation of an incomplete entity modifier.
PSYC_PARSE_ENTITY_CONT = 6,
/// End of an incomplete entity modifier.
PSYC_PARSE_ENTITY_END = 7,
/// Entity modifier parsing done in one go.
/// Operator, name & value contains the respective parts.
PSYC_PARSE_ENTITY = 8,
/// Start of an incomplete body.
/// Name contains method, value contains part of the body.
/// Used when packet length is given
PSYC_PARSE_BODY_START = 9,
/// Continuation of an incomplete body.
/// Used when packet length is given
PSYC_PARSE_BODY_CONT = 10,
/// End of an incomplete body.
/// Used when packet length is given
PSYC_PARSE_BODY_END = 11,
/// Body parsing done in one go, name contains method, value contains body.
PSYC_PARSE_BODY = 12,
/// Start of an incomplete content, value contains part of content.
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
PSYC_PARSE_CONTENT_START = 9,
/// Continuation of an incomplete content.
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
PSYC_PARSE_CONTENT_CONT = 10,
/// End of an incomplete content.
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
PSYC_PARSE_CONTENT_END = 11,
/// Content parsing done in one go, value contains the whole content.
/// Used when PSYC_PARSE_ROUTING_ONLY is set.
PSYC_PARSE_CONTENT = 12,
/// Finished parsing packet.
PSYC_PARSE_COMPLETE = 13,
2011-10-31 19:26:47 +00:00
} PsycParseRC;
/**
* The return value definitions for the list parsing function.
2011-10-31 19:04:16 +00:00
* @see psyc_parse_list()
*/
2011-10-13 22:29:32 +00:00
typedef enum {
2011-11-11 21:18:24 +00:00
PSYC_PARSE_LIST_ERROR_DELIM = -4,
PSYC_PARSE_LIST_ERROR_LEN = -3,
PSYC_PARSE_LIST_ERROR_TYPE = -2,
PSYC_PARSE_LIST_ERROR = -1,
/// Completed parsing a list element.
PSYC_PARSE_LIST_ELEM = 1,
/// Reached end of buffer.
PSYC_PARSE_LIST_END = 2,
/// Binary list is incomplete.
PSYC_PARSE_LIST_INCOMPLETE = 3,
2011-10-31 19:26:47 +00:00
} PsycParseListRC;
2011-04-15 23:42:36 +00:00
2011-11-14 21:02:02 +00:00
typedef enum {
PSYC_PARSE_TABLE_ERROR_BODY = -5,
PSYC_PARSE_TABLE_ERROR_DELIM = -4,
PSYC_PARSE_TABLE_ERROR_HEAD = -3,
PSYC_PARSE_TABLE_ERROR_WIDTH = -2,
PSYC_PARSE_TABLE_ERROR = -1,
/// Completed parsing the width of the table.
PSYC_PARSE_TABLE_WIDTH = 1,
#ifdef PSYC_PARSE_TABLE_HEAD
/// Completed parsing the name of the key column.
PSYC_PARSE_TABLE_NAME_KEY = 2,
/// Completed parsing the name of a value column.
PSYC_PARSE_TABLE_NAME_VALUE = 3,
#endif
/// Completed parsing a key.
PSYC_PARSE_TABLE_KEY = 4,
/// Completed parsing a value.
PSYC_PARSE_TABLE_VALUE = 5,
/// Completed parsing a key and reached end of buffer.
PSYC_PARSE_TABLE_KEY_END = 6,
/// Completed parsing a value and reached end of buffer.
PSYC_PARSE_TABLE_VALUE_END = 7,
/// Binary table is incomplete.
PSYC_PARSE_TABLE_INCOMPLETE = 8,
} PsycParseTableRC;
typedef enum {
PSYC_TABLE_PART_START = 0,
PSYC_TABLE_PART_WIDTH = 1,
#ifdef PSYC_PARSE_TABLE_HEAD
PSYC_TABLE_PART_HEAD_START = 2,
PSYC_TABLE_PART_HEAD = 3,
#endif
PSYC_TABLE_PART_BODY_START = 4,
PSYC_TABLE_PART_BODY = 5,
} PsycTablePart;
/**
* Struct for keeping parser state.
*/
2011-10-13 22:29:32 +00:00
typedef struct {
2011-11-11 21:18:24 +00:00
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?
2011-10-31 19:26:47 +00:00
} PsycParseState;
2011-04-15 23:42:36 +00:00
/**
* Struct for keeping list parser state.
*/
2011-10-13 22:29:32 +00:00
typedef struct {
2011-11-11 21:18:24 +00:00
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.
2011-11-14 21:02:02 +00:00
char term; ///< Terminator character at the end.
uint8_t term_set; ///< Look for terminator.
2011-04-19 17:41:25 +00:00
2011-11-11 21:18:24 +00:00
size_t elemParsed; ///< Number of bytes parsed from the elem so far.
size_t elemLength; ///< Expected length of the elem.
2011-10-31 19:26:47 +00:00
} PsycParseListState;
2011-04-19 17:41:25 +00:00
2011-11-14 21:02:02 +00:00
/**
* Struct for keeping table parser state.
*/
typedef struct {
size_t cursor; ///< Current position in buffer.
size_t startc; ///< Line start position.
PsycString buffer; ///< Buffer with data to be parsed.
PsycTablePart part; ///< Table type.
size_t width; ///< Width of table.
size_t elems; ///< Elems parsed so far in the table.
PsycParseListState list;
} PsycParseTableState;
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-10-31 19:26:47 +00:00
* @param flags Flags to be set for the parser, see PsycParseFlag.
* @see PsycParseFlag
2011-04-19 17:41:25 +00:00
*/
2011-11-11 21:18:24 +00:00
static inline void
psyc_parse_state_init (PsycParseState *state, uint8_t flags)
{
2011-11-11 21:18:24 +00:00
memset(state, 0, sizeof(PsycParseState));
state->flags = flags;
2011-11-11 21:18:24 +00:00
if (flags & PSYC_PARSE_START_AT_CONTENT)
state->part = PSYC_PART_CONTENT;
}
2011-04-15 23:42:36 +00:00
/**
* Sets a new buffer in the parser state struct with data to be parsed.
*
* This function does NOT copy the buffer. It will parse whatever is
* at the memory pointed to by buffer.
*
* @param state Pointer to the initialized state of the parser
2011-10-31 19:04:16 +00:00
* @param buffer pointer to the data that should be parsed
* @param length length of the data in bytes
2011-10-31 19:26:47 +00:00
* @see PsycString
*/
2011-11-11 21:18:24 +00:00
static inline void
2011-11-14 21:02:02 +00:00
psyc_parse_buffer_set (PsycParseState *state, const char *buffer, size_t length)
{
2011-11-11 21:18:24 +00:00
state->buffer = (PsycString) {length, buffer};
state->cursor = 0;
2011-11-11 21:18:24 +00:00
if (state->flags & PSYC_PARSE_START_AT_CONTENT) {
state->contentLength = length;
state->contentLengthFound = PSYC_TRUE;
}
}
2011-04-19 19:54:44 +00:00
/**
2011-11-14 21:02:02 +00:00
* Initializes the list state.
2011-04-19 17:41:25 +00:00
*/
2011-11-11 21:18:24 +00:00
static inline void
psyc_parse_list_state_init (PsycParseListState *state)
{
2011-11-11 21:18:24 +00:00
memset(state, 0, sizeof(PsycParseListState));
}
2011-04-19 17:41:25 +00:00
/**
* Sets a new buffer in the list parser state struct with data to be parsed.
*/
2011-11-11 21:18:24 +00:00
static inline void
psyc_parse_list_buffer_set (PsycParseListState *state, char *buffer, size_t length)
{
2011-11-11 21:18:24 +00:00
state->buffer = (PsycString) {length, buffer};
state->cursor = 0;
}
2011-04-19 17:41:25 +00:00
2011-11-14 21:02:02 +00:00
static inline void
psyc_parse_list_term_set (PsycParseListState *state, char term)
{
state->term = term;
state->term_set = PSYC_TRUE;
}
/**
* Initializes the table state.
*/
static inline void
psyc_parse_table_state_init (PsycParseTableState *state)
{
memset(state, 0, sizeof(PsycParseTableState));
}
/**
* Sets a new buffer in the list parser state struct with data to be parsed.
*/
static inline void
psyc_parse_table_buffer_set (PsycParseTableState *state, char *buffer, size_t length)
{
state->buffer = (PsycString) {length, buffer};
state->cursor = 0;
}
2011-11-11 21:18:24 +00:00
static inline size_t
psyc_parse_content_length (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->contentLength;
}
2011-11-11 21:18:24 +00:00
static inline PsycBool
psyc_parse_content_length_found (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->contentLengthFound;
}
2011-11-11 21:18:24 +00:00
static inline size_t
psyc_parse_value_length (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->valueLength;
}
2011-11-11 21:18:24 +00:00
static inline PsycBool
psyc_parse_value_length_found (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->valueLengthFound;
}
2011-11-11 21:18:24 +00:00
static inline size_t
psyc_parse_cursor (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->cursor;
}
2011-11-11 21:18:24 +00:00
static inline size_t
psyc_parse_buffer_length (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->buffer.length;
}
2011-11-11 21:18:24 +00:00
static inline size_t
psyc_parse_remaining_length (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->buffer.length - state->cursor;
}
2011-11-11 21:18:24 +00:00
static inline const char *
psyc_parse_remaining_buffer (PsycParseState *state)
{
2011-11-11 21:18:24 +00:00
return state->buffer.data + state->cursor;
}
2011-04-18 08:09:35 +00:00
/**
* Parse PSYC packets.
*
* This function parses a full or partial PSYC packet while keeping parsing
* state in a state variable that you have to pass in every time, and returns
2011-10-31 19:26:47 +00:00
* whenever a modifier or the body is found. See PsycParseRC for the possible
* return codes. When it returns oper, name & value will point to the respective
* parts of the buffer, no memory allocation is done.
*
2011-10-31 19:26:47 +00:00
* @param state An initialized PsycParseState.
* @param oper In case of a modifier it will be set to the operator.
* @param name In case of a modifier it will point to the name,
* in case of the body it will point to the method.
* @param value In case of a modifier it will point to the value,
* in case of the body it will point to the data.
2011-04-19 20:31:43 +00:00
*/
#ifdef __INLINE_PSYC_PARSE
static inline
#endif
2011-11-11 21:18:24 +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 parser.
*
* This function parses a _list modifier value and returns one element a time
* while keeping parsing state in a state variable that you have to pass in
* every time. When it returns elem will point to the next element in value, no
* memory allocation is done.
*
2011-10-31 19:26:47 +00:00
* @param state An initialized PsycParseListState.
* @param elem It will point to the next element in the list.
2011-04-19 20:31:43 +00:00
*/
#ifdef __INLINE_PSYC_PARSE
static inline
#endif
2011-11-11 21:18:24 +00:00
PsycParseListRC
psyc_parse_list (PsycParseListState *state, PsycString *elem);
2011-04-19 19:55:22 +00:00
2011-11-14 21:02:02 +00:00
PsycParseTableRC
psyc_parse_table (PsycParseTableState *state, PsycString *elem);
static inline PsycRC
2011-11-11 21:18:24 +00:00
psyc_parse_number (const char *value, size_t len, int64_t *n)
{
2011-11-11 21:18:24 +00:00
size_t c = 0;
uint8_t neg = 0;
2011-11-11 21:18:24 +00:00
if (!value)
2011-11-14 21:02:02 +00:00
return PSYC_ERROR;
2011-11-11 21:18:24 +00:00
if (value[0] == '-')
neg = ++c;
2011-11-11 21:18:24 +00:00
*n = 0;
while (c < len && value[c] >= '0' && value[c] <= '9')
*n = 10 * *n + (value[c++] - '0');
2011-11-11 21:18:24 +00:00
if (c != len)
2011-11-14 21:02:02 +00:00
return PSYC_ERROR;
2011-11-11 21:18:24 +00:00
if (neg)
*n = 0 - *n;
2011-11-14 21:02:02 +00:00
return PSYC_OK;
}
2011-11-14 21:02:02 +00:00
static inline PsycRC
2011-11-11 21:18:24 +00:00
psyc_parse_number_unsigned (const char *value, size_t len, uint64_t *n)
2011-11-03 13:15:42 +00:00
{
2011-11-11 21:18:24 +00:00
size_t c = 0;
if (!value)
2011-11-14 21:02:02 +00:00
return PSYC_ERROR;
2011-11-03 13:15:42 +00:00
2011-11-11 21:18:24 +00:00
*n = 0;
while (c < len && value[c] >= '0' && value[c] <= '9')
*n = 10 * *n + (value[c++] - '0');
2011-11-03 13:15:42 +00:00
2011-11-14 21:02:02 +00:00
return c == len ? PSYC_OK : PSYC_ERROR;
2011-11-03 13:15:42 +00:00
}
2011-11-14 21:02:02 +00:00
static inline PsycRC
2011-11-11 21:18:24 +00:00
psyc_parse_time (const char *value, size_t len, time_t *t)
{
2011-11-11 21:18:24 +00:00
return psyc_parse_number(value, len, t);
}
2011-11-14 21:02:02 +00:00
static inline PsycRC
2011-11-11 21:18:24 +00:00
psyc_parse_date (const char *value, size_t len, time_t *t)
{
2011-11-11 21:18:24 +00:00
if (psyc_parse_number(value, len, t)) {
*t += PSYC_EPOCH;
2011-11-14 21:02:02 +00:00
return PSYC_OK;
2011-11-11 21:18:24 +00:00
}
2011-11-14 21:02:02 +00:00
return PSYC_ERROR;
}
2011-10-13 22:29:32 +00:00
/**
* Determines if the argument is a glyph.
* Glyphs are: : = + - ? !
*/
2011-11-11 21:18:24 +00:00
static inline char
psyc_is_glyph (uint8_t g)
2011-10-13 22:29:32 +00:00
{
2011-11-11 21:18:24 +00:00
switch (g) {
case ':':
case '=':
case '+':
case '-':
case '?':
case '!':
return 1;
default:
return 0;
}
2011-10-13 22:29:32 +00:00
}
/**
* Determines if the argument is numeric.
*/
2011-11-11 21:18:24 +00:00
static inline char
psyc_is_numeric (uint8_t c)
2011-10-13 22:29:32 +00:00
{
2011-11-11 21:18:24 +00:00
return c >= '0' && c <= '9';
2011-10-13 22:29:32 +00:00
}
/**
* Determines if the argument is alphabetic.
*/
2011-11-11 21:18:24 +00:00
static inline char
psyc_is_alpha (uint8_t c)
2011-10-13 22:29:32 +00:00
{
2011-11-11 21:18:24 +00:00
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
2011-10-13 22:29:32 +00:00
}
/**
* Determines if the argument is alphanumeric.
*/
2011-11-11 21:18:24 +00:00
static inline char
psyc_is_alpha_numeric (uint8_t c)
2011-10-13 22:29:32 +00:00
{
2011-11-11 21:18:24 +00:00
return psyc_is_alpha(c) || psyc_is_numeric(c);
2011-10-13 22:29:32 +00:00
}
/**
* Determines if the argument is a keyword character.
* Keyword characters are: alphanumeric and _
*/
2011-11-11 21:18:24 +00:00
static inline char
psyc_is_kw_char (uint8_t c)
2011-10-13 22:29:32 +00:00
{
2011-11-11 21:18:24 +00:00
return psyc_is_alpha_numeric(c) || c == '_';
2011-10-13 22:29:32 +00:00
}
/**
* Determines if the argument is a name character.
* Name characters are: see opaque_part in RFC 2396
*/
2011-11-11 21:18:24 +00:00
static inline char
psyc_is_name_char (uint8_t c)
2011-10-13 22:29:32 +00:00
{
2011-11-11 21:18:24 +00:00
return psyc_is_alpha(c) || (c >= '$' && c <= ';')
|| c == '_' || c == '!' || c == '?' || c == '=' || c == '@' || c == '~';
2011-10-13 22:29:32 +00:00
}
/**
* Determines if the argument is a hostname character.
* Hostname characters are: alphanumeric and -
*/
2011-11-11 21:18:24 +00:00
static inline char
psyc_is_host_char (uint8_t c)
2011-10-13 22:29:32 +00:00
{
2011-11-11 21:18:24 +00:00
return psyc_is_alpha_numeric(c) || c == '.' || c == '-';
2011-10-13 22:29:32 +00:00
}
2011-05-09 10:42:42 +00:00
/** @} */ // end of parse group
2011-05-09 07:02:15 +00:00
#endif