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

167 lines
5 KiB
C
Raw Normal View History

2011-05-09 07:02:15 +00:00
#ifndef PSYC_TEXT_H
2011-05-03 20:18:35 +00:00
/**
2011-05-03 23:30:09 +00:00
* @file psyc/text.h
* @brief Interface for text template rendering.
*
* All text template functions and the definitions they use are
* defined in this file.
*/
/**
* @defgroup text Text template functions
*
* This module contains all text template functions.
* @{
2011-05-03 20:18:35 +00:00
*/
2011-05-03 23:30:09 +00:00
/**
* Return values for the text template parsing function.
* @see psyc_text()
*/
2011-05-03 20:18:35 +00:00
typedef enum
{
2011-05-03 23:30:09 +00:00
/// No substitution was made, nothing was written to the buffer.
2011-05-03 20:18:35 +00:00
PSYC_TEXT_NO_SUBST = -1,
2011-05-03 23:30:09 +00:00
/// Text template parsing & rendering complete.
2011-05-03 20:18:35 +00:00
PSYC_TEXT_COMPLETE = 0,
2011-05-03 23:30:09 +00:00
/// Text template parsing & rendering is incomplete, because the buffer was too small.
2011-05-28 17:39:42 +00:00
/// Another call is required to this function after setting a new buffer.
2011-05-03 20:18:35 +00:00
PSYC_TEXT_INCOMPLETE = 1,
} psycTextRC;
2011-05-03 23:30:09 +00:00
/**
* Return values for psycTextCB.
*/
2011-05-03 20:18:35 +00:00
typedef enum
{
2011-05-03 23:30:09 +00:00
/// Value not found, don't substitute anything.
2011-05-03 20:18:35 +00:00
PSYC_TEXT_VALUE_NOT_FOUND = -1,
2011-05-03 23:30:09 +00:00
/// Value found, substitute contents of the value variable.
2011-05-03 20:18:35 +00:00
PSYC_TEXT_VALUE_FOUND = 0,
} psycTextValueRC;
/**
* Struct for keeping PSYC text parser state.
*/
typedef struct
{
size_t cursor; ///< current position in the template
size_t written; ///< number of bytes written to buffer
2011-05-28 17:39:42 +00:00
psycString tmpl; ///< input buffer with text template to parse
psycString buffer; ///< output buffer for rendered text
2011-05-03 20:18:35 +00:00
psycString open;
psycString close;
} psycTextState;
/**
* Callback for psyc_text() that produces a value for a match.
*
* The application looks up a match such as _fruit from [_fruit] and
2011-05-03 23:30:09 +00:00
* if found sets value->ptr & value->length to point to the found value,
* "Apple" for example. 0 is a legal value for the length.
* The callbacks returns either PSYC_TEXT_VALUE_FOUND or
* PSYC_TEXT_VALUE_NOT_FOUND if no match found in which case psyc_text
* leaves the original template text as is.
2011-05-03 20:18:35 +00:00
*/
2011-06-12 19:04:11 +00:00
typedef psycTextValueRC (*psycTextCB)(const char *name, size_t len, psycString *value, void *extra);
2011-05-03 20:18:35 +00:00
2011-05-03 23:30:09 +00:00
/**
* Initializes the PSYC text state struct.
*
* @param state Pointer to the PSYC text state struct that should be initialized.
2011-05-28 17:39:42 +00:00
* @param tmpl Input buffer with text template to be parsed.
* @param tmplen Length of input buffer.
* @param buffer Output buffer where the rendered text is going to be written.
* @param buflen Length of output buffer.
2011-05-03 23:30:09 +00:00
*/
static inline
void psyc_initTextState (psycTextState *state,
2011-05-28 17:39:42 +00:00
const char *tmpl, size_t tmplen,
char *buffer, size_t buflen)
{
2011-05-28 17:39:42 +00:00
state->cursor = 0;
state->written = 0;
state->tmpl = (psycString) {tmplen, tmpl};
state->buffer = (psycString) {buflen, buffer};
state->open = (psycString) {1, "["};
state->close = (psycString) {1, "]"};
}
2011-05-03 20:18:35 +00:00
2011-05-03 23:30:09 +00:00
/**
2011-05-28 17:39:42 +00:00
* Initializes the PSYC text state struct with custom opening & closing braces.
2011-05-03 23:30:09 +00:00
*
* @param state Pointer to the PSYC text state struct that should be initialized.
2011-05-28 17:39:42 +00:00
* @param tmpl Input buffer with text template to be parsed.
* @param tmplen Length of input buffer.
* @param buffer Output buffer where the rendered text is going to be written.
* @param buflen Length of output buffer.
2011-05-03 23:30:09 +00:00
* @param open Opening brace.
* @param openlen Length of opening brace.
* @param close Closing brace.
* @param closelen Length of closing brace.
*/
static inline
void psyc_initTextState2 (psycTextState *state,
2011-05-28 17:39:42 +00:00
const char *tmpl, size_t tmplen,
char *buffer, size_t buflen,
const char *open, size_t openlen,
const char *close, size_t closelen)
{
2011-05-28 17:39:42 +00:00
state->cursor = 0;
state->written = 0;
state->tmpl = (psycString) {tmplen, tmpl};
state->buffer = (psycString) {buflen, buffer};
state->open = (psycString) {openlen, open};
state->close = (psycString) {closelen, close};
}
2011-05-03 20:18:35 +00:00
2011-05-03 23:30:09 +00:00
/**
2011-05-28 17:39:42 +00:00
* Sets a new output buffer in the PSYC text state struct.
2011-05-03 23:30:09 +00:00
*/
static inline
void psyc_setTextBuffer (psycTextState *state, psycString buffer)
{
state->buffer = buffer;
state->written = 0;
}
2011-05-03 20:18:35 +00:00
2011-05-03 23:30:09 +00:00
/**
* Sets a new buffer in the PSYC text state struct.
*/
static inline
void psyc_setTextBuffer2 (psycTextState *state,
char *buffer, size_t length)
{
2011-05-06 13:26:28 +00:00
psycString buf = {length, buffer};
psyc_setTextBuffer(state, buf);
}
2011-05-03 20:18:35 +00:00
static inline
size_t psyc_getTextBytesWritten (psycTextState *state)
{
return state->written;
}
2011-05-03 20:18:35 +00:00
/**
* Fills out text templates by asking a callback for content.
*
2011-05-03 23:30:09 +00:00
* Copies the contents of the template into the buffer while looking for the
* opening and closing brace strings and calling the callback for each enclosed
* string between these braces. Should the callback return
* PSYC_TEXT_VALUE_NOT_FOUND, the original template text is copied as is.
2011-05-03 20:18:35 +00:00
*
2011-05-28 17:39:42 +00:00
* Before calling this function psyc_initTextState should be called to initialize
* the state struct. By default PSYC's "[" and "]" are used but you can provide
* any other brace strings such as "${" and "}" or "<!--" and "-->" if you use
* the psyc_initTextState2 variant.
2011-05-03 20:18:35 +00:00
*
2011-05-03 23:30:09 +00:00
* @see http://about.psyc.eu/psyctext
**/
2011-06-12 19:04:11 +00:00
psycTextRC psyc_text (psycTextState *state, psycTextCB getValue, void *extra);
2011-05-03 23:30:09 +00:00
/** @} */ // end of text group
2011-05-09 07:02:15 +00:00
#define PSYC_TEXT_H
#endif