qse/ase/stx/token.c

103 lines
2.3 KiB
C
Raw Normal View History

2005-05-22 10:32:37 +00:00
/*
2005-05-22 13:41:14 +00:00
* $Id: token.c,v 1.2 2005-05-22 13:41:14 bacon Exp $
2005-05-22 10:32:37 +00:00
*/
#include <xp/stx/token.h>
#include <xp/stx/misc.h>
xp_stx_token_t* xp_stx_token_new (
xp_stx_token_t* token, xp_stx_word_t capacity)
{
xp_stx_assert (capacity > 0);
if (token == XP_NULL) {
token = (xp_stx_token_t*)
2005-05-22 13:41:14 +00:00
xp_stx_malloc (xp_sizeof(xp_stx_token_t));
2005-05-22 10:32:37 +00:00
if (token == XP_NULL) return XP_NULL;
token->__malloced = xp_true;
}
else token->__malloced = xp_false;
2005-05-22 13:41:14 +00:00
token->buffer = (xp_stx_char_t*)
xp_stx_malloc ((capacity + 1) * xp_sizeof(xp_stx_char_t));
2005-05-22 10:32:37 +00:00
if (token->buffer == XP_NULL) {
if (token->__malloced) xp_stx_free (token);
return XP_NULL;
}
/*
token->ivalue = 0;
token->fvalue = .0;
*/
token->size = 0;
token->capacity = capacity;
token->buffer[0] = XP_STX_CHAR('\0');
return token;
}
void xp_stx_token_close (xp_stx_token_t* token)
{
xp_stx_free (token->buffer);
if (token->__malloced) xp_stx_free (token);
}
2005-05-22 13:41:14 +00:00
int xp_stx_token_addc (xp_stx_token_t* token, xp_stx_cint_t c)
2005-05-22 10:32:37 +00:00
{
if (token->size >= token->capacity) {
// double the capacity.
2005-05-22 13:41:14 +00:00
xp_stx_char_t* space = (xp_stx_char_t*)xp_stx_realloc (
token->buffer, (token->capacity * 2 + 1) * xp_sizeof(xp_stx_char_t));
if (space == XP_NULL) return -1;
token->buffer = space;
2005-05-22 10:32:37 +00:00
token->capacity = token->capacity * 2;
}
token->buffer[token->size++] = c;
token->buffer[token->size] = XP_STX_CHAR('\0');
return 0;
}
void xp_stx_token_clear (xp_stx_token_t* token)
{
2005-05-22 13:41:14 +00:00
/*
2005-05-22 10:32:37 +00:00
token->ivalue = 0;
token->fvalue = .0;
2005-05-22 13:41:14 +00:00
*/
2005-05-22 10:32:37 +00:00
token->size = 0;
token->buffer[0] = XP_STX_CHAR('\0');
}
2005-05-22 13:41:14 +00:00
xp_stx_char_t* xp_stx_token_yield (xp_stx_token_t* token, xp_stx_word_t capacity)
2005-05-22 10:32:37 +00:00
{
2005-05-22 13:41:14 +00:00
xp_stx_char_t* old_buffer, * new_buffer;
2005-05-22 10:32:37 +00:00
2005-05-22 13:41:14 +00:00
new_buffer = (xp_stx_char_t*)
xp_stx_malloc((capacity + 1) * xp_sizeof(xp_stx_char_t));
2005-05-22 10:32:37 +00:00
if (new_buffer == XP_NULL) return XP_NULL;
old_buffer = token->buffer;
token->buffer = new_buffer;
token->size = 0;
token->capacity = capacity;
token->buffer[0] = XP_STX_CHAR('\0');
return old_buffer;
}
2005-05-22 13:41:14 +00:00
int xp_stx_token_compare (xp_stx_token_t* token, const xp_stx_char_t* str)
2005-05-22 10:32:37 +00:00
{
2005-05-22 13:41:14 +00:00
xp_stx_char_t* p = token->buffer;
xp_stx_word_t index = 0;
2005-05-22 10:32:37 +00:00
while (index < token->size) {
if (*p > *str) return 1;
if (*p < *str) return -1;
index++; p++; str++;
}
return (*str == XP_STX_CHAR('\0'))? 0: -1;
}