2012-04-23 00:02:42 +01:00
|
|
|
/* Parser combinators for binary formats.
|
|
|
|
|
* Copyright (C) 2012 Meredith L. Patterson, Dan "TQ" Hirsch
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation, version 2.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-04-22 04:47:08 +01:00
|
|
|
#include "hammer.h"
|
2012-05-01 00:33:47 +01:00
|
|
|
#include "internal.h"
|
|
|
|
|
#include <assert.h>
|
2012-04-22 04:47:08 +01:00
|
|
|
#include <string.h>
|
2012-04-30 03:44:10 +01:00
|
|
|
/* TODO(thequux): rewrite to follow new parse_state_t layout
|
2012-04-22 23:40:25 +01:00
|
|
|
parse_state_t* from(parse_state_t *ps, const size_t index) {
|
|
|
|
|
parse_state_t p = { ps->input, ps->index + index, ps->length - index, ps->cache };
|
|
|
|
|
parse_state_t *ret = g_new(parse_state_t, 1);
|
2012-04-22 04:47:08 +01:00
|
|
|
*ret = p;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2012-04-30 03:44:10 +01:00
|
|
|
*/
|
2012-04-22 23:40:25 +01:00
|
|
|
const uint8_t* substring(const parse_state_t *ps, const size_t start, const size_t end) {
|
2012-04-30 03:44:10 +01:00
|
|
|
if (end > start && (ps->input_stream.index + end) < ps->input_stream.length) {
|
2012-04-22 04:47:08 +01:00
|
|
|
gpointer ret = g_malloc(end - start);
|
2012-04-30 03:44:10 +01:00
|
|
|
memcpy(ret, ps->input_stream.input, end - start);
|
2012-04-22 04:47:08 +01:00
|
|
|
return (const uint8_t*)ret;
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-22 23:40:25 +01:00
|
|
|
const GVariant* at(parse_state_t *ps, const size_t index) {
|
2012-04-22 04:47:08 +01:00
|
|
|
GVariant *ret = NULL;
|
2012-04-30 03:44:10 +01:00
|
|
|
if (index + ps->input_stream.index < ps->input_stream.length)
|
|
|
|
|
ret = g_variant_new_byte((ps->input_stream.input)[index + ps->input_stream.index]);
|
2012-04-22 04:47:08 +01:00
|
|
|
return g_variant_new_maybe(G_VARIANT_TYPE_BYTE, ret);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-22 23:40:25 +01:00
|
|
|
const gchar* to_string(parse_state_t *ps) {
|
2012-04-30 03:44:10 +01:00
|
|
|
return g_strescape((const gchar*)(ps->input_stream.input), NULL);
|
2012-04-22 04:47:08 +01:00
|
|
|
}
|
|
|
|
|
|
2012-04-30 03:44:10 +01:00
|
|
|
uint8_t djbhash(size_t index, char bit_offset) {
|
|
|
|
|
unsigned int hash = 5381;
|
|
|
|
|
for (uint8_t i = 0; i < sizeof(size_t); ++i) {
|
|
|
|
|
hash = hash * 33 + (index & 0xFF);
|
|
|
|
|
index >>= 8;
|
|
|
|
|
}
|
|
|
|
|
hash = hash * 33 + bit_offset;
|
|
|
|
|
return hash;
|
2012-04-22 04:47:08 +01:00
|
|
|
}
|
2012-04-22 05:15:40 +01:00
|
|
|
|
2012-04-30 03:44:10 +01:00
|
|
|
parse_result_t* get_cached(parse_state_t *ps, const parser_t *p) {
|
|
|
|
|
gpointer t = g_hash_table_lookup(ps->cache, p);
|
|
|
|
|
if (NULL != t) {
|
|
|
|
|
parse_result_t* ret = g_hash_table_lookup(t, GUINT_TO_POINTER(djbhash(ps->input_stream.index,
|
|
|
|
|
ps->input_stream.length)));
|
|
|
|
|
if (NULL != ret) {
|
|
|
|
|
return ret;
|
|
|
|
|
} else {
|
|
|
|
|
// TODO(mlp): need a return value for "this parser was in the cache but nothing was at this location"
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// TODO(mlp): need a return value for "this parser wasn't in the cache"
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int put_cached(parse_state_t *ps, const parser_t *p, parse_result_t *cached) {
|
|
|
|
|
gpointer t = g_hash_table_lookup(ps->cache, p);
|
|
|
|
|
if (NULL != t) {
|
|
|
|
|
g_hash_table_insert(t, GUINT_TO_POINTER(djbhash(ps->input_stream.index, ps->input_stream.length)), (gpointer)cached);
|
|
|
|
|
} else {
|
|
|
|
|
GHashTable *t = g_hash_table_new(g_direct_hash, g_direct_equal);
|
|
|
|
|
g_hash_table_insert(t, GUINT_TO_POINTER(djbhash(ps->input_stream.index, ps->input_stream.length)), (gpointer)cached);
|
|
|
|
|
g_hash_table_insert(ps->cache, (parser_t*)p, t);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-01 00:33:47 +01:00
|
|
|
parse_result_t* do_parse(const parser_t* parser, parse_state_t *state);
|
|
|
|
|
|
|
|
|
|
/* Helper function, since these lines appear in every parser */
|
|
|
|
|
inline parse_result_t* make_result(GSequence *ast) {
|
|
|
|
|
parse_result_t *ret = g_new(parse_result_t, 1);
|
|
|
|
|
ret->ast = ast;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
uint8_t *str;
|
|
|
|
|
uint8_t len;
|
|
|
|
|
} token_t;
|
|
|
|
|
|
|
|
|
|
static parse_result_t* parse_token(void *env, parse_state_t *state) {
|
|
|
|
|
token_t *t = (token_t*)env;
|
|
|
|
|
for (int i=0; i<t->len; ++i) {
|
|
|
|
|
uint8_t chr = (uint8_t)read_bits(&state->input_stream, 8, false);
|
|
|
|
|
if (t->str[i] != chr) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
parsed_token_t *tok = g_new(parsed_token_t, 1);
|
|
|
|
|
tok->token = t->str; tok->len = t->len;
|
|
|
|
|
GSequence *ast = g_sequence_new(NULL);
|
|
|
|
|
g_sequence_append(ast, tok);
|
|
|
|
|
return make_result(ast);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const parser_t* token(const uint8_t *str, const size_t len) {
|
|
|
|
|
token_t *t = g_new(token_t, 1);
|
|
|
|
|
t->str = (uint8_t*)str, t->len = len;
|
|
|
|
|
parser_t *ret = g_new(parser_t, 1);
|
|
|
|
|
ret->fn = parse_token; ret->env = t;
|
|
|
|
|
return (const parser_t*)ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static parse_result_t* parse_ch(void* env, parse_state_t *state) {
|
|
|
|
|
uint8_t c = (uint8_t)env;
|
|
|
|
|
uint8_t r = (uint8_t)read_bits(&state->input_stream, 8, false);
|
|
|
|
|
if (c == r) {
|
|
|
|
|
parsed_token_t *tok = g_new(parsed_token_t, 1);
|
|
|
|
|
tok->token = GUINT_TO_POINTER(c); tok->len = 1;
|
|
|
|
|
GSequence *ast = g_sequence_new(NULL);
|
|
|
|
|
g_sequence_append(ast, tok);
|
|
|
|
|
return make_result(ast);
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const parser_t* ch(const uint8_t c) {
|
|
|
|
|
parser_t *ret = g_new(parser_t, 1);
|
|
|
|
|
ret->fn = parse_ch; ret->env = (void*)c;
|
|
|
|
|
return (const parser_t*)ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
uint8_t lower;
|
|
|
|
|
uint8_t upper;
|
|
|
|
|
} range_t;
|
|
|
|
|
|
|
|
|
|
static parse_result_t* parse_range(void* env, parse_state_t *state) {
|
|
|
|
|
range_t *range = (range_t*)env;
|
|
|
|
|
uint8_t r = (uint8_t)read_bits(&state->input_stream, 8, false);
|
|
|
|
|
if (range->lower <= r && range->upper >= r) {
|
|
|
|
|
parsed_token_t *tok = g_new(parsed_token_t, 1);
|
|
|
|
|
tok->token = GUINT_TO_POINTER(r); tok->len = 1;
|
|
|
|
|
GSequence *ast = g_sequence_new(NULL);
|
|
|
|
|
g_sequence_append(ast, tok);
|
|
|
|
|
return make_result(ast);
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const parser_t* range(const uint8_t lower, const uint8_t upper) {
|
|
|
|
|
range_t *r = g_new(range_t, 1);
|
|
|
|
|
r->lower = lower; r->upper = upper;
|
|
|
|
|
parser_t *ret = g_new(parser_t, 1);
|
|
|
|
|
ret->fn = parse_range; ret->env = (void*)r;
|
|
|
|
|
return (const parser_t*)ret;
|
|
|
|
|
}
|
2012-04-30 03:44:10 +01:00
|
|
|
const parser_t* whitespace(const parser_t* p) { return NULL; }
|
|
|
|
|
//const parser_t* action(const parser_t* p, /* fptr to action on AST */) { return NULL; }
|
2012-05-01 00:33:47 +01:00
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
parser_t *parser;
|
|
|
|
|
uint8_t *sep;
|
|
|
|
|
size_t len;
|
|
|
|
|
} join_t;
|
|
|
|
|
|
|
|
|
|
void join_collect(gpointer tok, gpointer ret) {
|
|
|
|
|
size_t sz = GPOINTER_TO_SIZE(ret);
|
|
|
|
|
sz += ((parsed_token_t*)tok)->len;
|
|
|
|
|
ret = GSIZE_TO_POINTER(sz);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static parse_result_t* parse_join(void *env, parse_state_t *state) {
|
|
|
|
|
join_t *j = (join_t*)env;
|
|
|
|
|
parse_result_t *result = do_parse(j->parser, state);
|
|
|
|
|
size_t num_tokens = g_sequence_get_length((GSequence*)result->ast);
|
|
|
|
|
if (0 < num_tokens) {
|
|
|
|
|
gpointer sz = GSIZE_TO_POINTER(0);
|
|
|
|
|
// aggregate length of tokens in AST
|
|
|
|
|
g_sequence_foreach((GSequence*)result->ast, join_collect, sz);
|
|
|
|
|
// plus aggregate length of all separators
|
|
|
|
|
size_t ret_len = GPOINTER_TO_SIZE(sz) + (num_tokens - 1) * j->len;
|
|
|
|
|
gpointer ret_str = g_malloc(ret_len);
|
|
|
|
|
// first the first token ...
|
|
|
|
|
GSequenceIter *it = g_sequence_get_begin_iter((GSequence*)result->ast);
|
|
|
|
|
parsed_token_t *tok = g_sequence_get(it);
|
|
|
|
|
memcpy(ret_str, tok->token, tok->len);
|
|
|
|
|
ret_str += tok->len;
|
|
|
|
|
// if there was only one token, don't enter the while loop
|
|
|
|
|
it = g_sequence_iter_next(it);
|
|
|
|
|
while (!g_sequence_iter_is_end(it)) {
|
|
|
|
|
// add a separator
|
|
|
|
|
memcpy(ret_str, j->sep, j->len);
|
|
|
|
|
ret_str += j->len;
|
|
|
|
|
// then the next token
|
|
|
|
|
tok = g_sequence_get(it);
|
|
|
|
|
memcpy(ret_str, tok->token, tok->len);
|
|
|
|
|
// finally, advance the pointer and the iterator
|
|
|
|
|
ret_str += tok->len;
|
|
|
|
|
it = g_sequence_iter_next(it);
|
|
|
|
|
}
|
|
|
|
|
// reset the return pointer and construct the return parse_result_t
|
|
|
|
|
ret_str -= ret_len;
|
|
|
|
|
parsed_token_t *ret_tok = g_new(parsed_token_t, 1);
|
|
|
|
|
ret_tok->token = ret_str; ret_tok->len = ret_len;
|
|
|
|
|
GSequence *ast = g_sequence_new(NULL);
|
|
|
|
|
g_sequence_append(ast, tok);
|
|
|
|
|
return make_result(ast);
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const parser_t* join_action(const parser_t* p, const uint8_t *sep, const size_t len) {
|
|
|
|
|
join_t *j = g_new(join_t, 1);
|
|
|
|
|
j->parser = (parser_t*)p; j->sep = (uint8_t*)sep; j->len = len;
|
|
|
|
|
parser_t *ret = g_new(parser_t, 1);
|
|
|
|
|
ret->fn = parse_join; ret->env = (void*)j;
|
|
|
|
|
return (const parser_t*)ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const parser_t* left_factor_action(const parser_t* p) { return NULL; }
|
|
|
|
|
|
|
|
|
|
static parse_result_t* parse_negate(void *env, parse_state_t *state) {
|
|
|
|
|
parser_t *p = (parser_t*)env;
|
|
|
|
|
parse_result_t *result = do_parse(p, state);
|
|
|
|
|
if (NULL == result) {
|
|
|
|
|
uint8_t r = (uint8_t)read_bits(&state->input_stream, 8, false);
|
|
|
|
|
parsed_token_t *tok = g_new(parsed_token_t, 1);
|
|
|
|
|
tok->token = GUINT_TO_POINTER(r); tok->len = 1;
|
|
|
|
|
GSequence *ast = g_sequence_new(NULL);
|
|
|
|
|
g_sequence_append(ast, tok);
|
|
|
|
|
return make_result(ast);
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const parser_t* negate(const parser_t* p) {
|
|
|
|
|
assert(parse_ch == p->fn || parse_range == p->fn);
|
|
|
|
|
parser_t *ret = g_new(parser_t, 1);
|
|
|
|
|
ret->fn = parse_negate; ret->env = (void*)p;
|
|
|
|
|
return (const parser_t*)ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static parse_result_t* parse_end(void *env, parse_state_t *state) {
|
|
|
|
|
if (state->input_stream.index == state->input_stream.length) {
|
|
|
|
|
parse_result_t *ret = g_new(parse_result_t, 1);
|
|
|
|
|
ret->ast = NULL;
|
|
|
|
|
return ret;
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const parser_t* end_p() {
|
|
|
|
|
parser_t *ret = g_new(parser_t, 1);
|
|
|
|
|
ret->fn = parse_end; ret->env = NULL;
|
|
|
|
|
return (const parser_t*)ret;
|
|
|
|
|
}
|
|
|
|
|
const parser_t* nothing_p() {
|
|
|
|
|
// not a mistake, this parser always fails
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2012-04-30 03:44:10 +01:00
|
|
|
const parser_t* sequence(const parser_t* p_array[]) { return NULL; }
|
|
|
|
|
const parser_t* choice(const parser_t* p_array[]) { return NULL; }
|
|
|
|
|
const parser_t* butnot(const parser_t* p1, const parser_t* p2) { return NULL; }
|
|
|
|
|
const parser_t* difference(const parser_t* p1, const parser_t* p2) { return NULL; }
|
|
|
|
|
const parser_t* xor(const parser_t* p1, const parser_t* p2) { return NULL; }
|
|
|
|
|
const parser_t* repeat0(const parser_t* p) { return NULL; }
|
|
|
|
|
const parser_t* repeat1(const parser_t* p) { return NULL; }
|
|
|
|
|
const parser_t* repeat_n(const parser_t* p, const size_t n) { return NULL; }
|
|
|
|
|
const parser_t* optional(const parser_t* p) { return NULL; }
|
|
|
|
|
const parser_t* expect(const parser_t* p) { return NULL; }
|
|
|
|
|
const parser_t* chain(const parser_t* p1, const parser_t* p2, const parser_t* p3) { return NULL; }
|
|
|
|
|
const parser_t* chainl(const parser_t* p1, const parser_t* p2) { return NULL; }
|
|
|
|
|
const parser_t* list(const parser_t* p1, const parser_t* p2) { return NULL; }
|
|
|
|
|
const parser_t* epsilon_p() { return NULL; }
|
|
|
|
|
//const parser_t* semantic(/* fptr to nullary function? */) { return NULL; }
|
|
|
|
|
const parser_t* and(const parser_t* p) { return NULL; }
|
|
|
|
|
const parser_t* not(const parser_t* p) { return NULL; }
|
|
|
|
|
|
|
|
|
|
parse_result_t* parse(const parser_t* parser, const uint8_t* input) { return NULL; }
|