2014-03-28 23:33:35 +08:00
|
|
|
#ifndef GMIO_INTERNAL_ASCII_PARSE_H
|
|
|
|
#define GMIO_INTERNAL_ASCII_PARSE_H
|
|
|
|
|
|
|
|
#include "../global.h"
|
|
|
|
#include "../stream.h"
|
|
|
|
|
2014-03-31 21:39:21 +08:00
|
|
|
struct gmio_ascii_string_buffer
|
2014-03-28 23:33:35 +08:00
|
|
|
{
|
|
|
|
char* ptr; /*!< Buffer contents */
|
|
|
|
size_t len; /*!< Size(length) of current contents */
|
|
|
|
size_t max_len; /*!< Maximum contents size(length) */
|
2014-03-31 21:39:21 +08:00
|
|
|
};
|
2014-03-28 23:33:35 +08:00
|
|
|
|
2014-03-31 21:39:21 +08:00
|
|
|
typedef struct gmio_ascii_string_buffer gmio_ascii_string_buffer_t;
|
|
|
|
|
|
|
|
struct gmio_ascii_stream_fwd_iterator
|
2014-03-28 23:33:35 +08:00
|
|
|
{
|
|
|
|
gmio_stream_t* stream;
|
|
|
|
gmio_ascii_string_buffer_t buffer;
|
|
|
|
size_t buffer_pos; /*!< Position indicator in buffer */
|
|
|
|
|
|
|
|
void* cookie;
|
2014-03-31 21:39:21 +08:00
|
|
|
void (*stream_read_hook)(void* cookie, const gmio_ascii_string_buffer_t* str_buffer);
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct gmio_ascii_stream_fwd_iterator gmio_ascii_stream_fwd_iterator_t;
|
2014-03-28 23:33:35 +08:00
|
|
|
|
|
|
|
void gmio_ascii_stream_fwd_iterator_init(gmio_ascii_stream_fwd_iterator_t* it);
|
|
|
|
char* gmio_current_char(const gmio_ascii_stream_fwd_iterator_t* it);
|
|
|
|
void gmio_skip_spaces(gmio_ascii_stream_fwd_iterator_t* it);
|
|
|
|
int gmio_eat_word(gmio_ascii_stream_fwd_iterator_t* it, gmio_ascii_string_buffer_t* buffer);
|
2015-01-29 05:39:03 +08:00
|
|
|
|
|
|
|
/*! \brief Converts the string pointed to by \p str to gmio_real32_t representation
|
|
|
|
*
|
|
|
|
* \retval 0 On success
|
|
|
|
* \retval -1 On error(check \c errno to see what happened)
|
|
|
|
*/
|
2014-03-28 23:33:35 +08:00
|
|
|
int gmio_get_real32(const char* str, gmio_real32_t* value_ptr);
|
|
|
|
|
|
|
|
char* gmio_next_char(gmio_ascii_stream_fwd_iterator_t* it);
|
|
|
|
gmio_bool_t gmio_checked_next_chars(gmio_ascii_stream_fwd_iterator_t* it, const char* str);
|
|
|
|
|
|
|
|
#endif /* GMIO_INTERNAL_ASCII_PARSE_H */
|