2013-12-15 20:28:20 +01:00
|
|
|
%module hammer;
|
2013-12-16 03:33:01 +01:00
|
|
|
%include "exception.i";
|
2013-12-15 20:28:20 +01:00
|
|
|
|
|
|
|
|
%ignore HCountedArray_;
|
|
|
|
|
|
|
|
|
|
%inline %{
|
|
|
|
|
static int h_tt_php;
|
2013-12-16 10:57:59 +01:00
|
|
|
static int le_h_tt_php_descriptor;
|
2013-12-15 20:28:20 +01:00
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
%init %{
|
2013-12-16 10:57:59 +01:00
|
|
|
#define PHP_H_TT_PHP_DESCRIPTOR_RES_NAME "Hammer Token"
|
2013-12-15 20:28:20 +01:00
|
|
|
h_tt_php = h_allocate_token_type("com.upstandinghackers.hammer.php");
|
2013-12-16 11:03:50 +01:00
|
|
|
// TODO: implement h_arena_free, register a token dtor here
|
2013-12-16 10:57:59 +01:00
|
|
|
le_h_tt_php_descriptor = zend_register_list_destructors_ex(NULL, NULL, PHP_H_TT_PHP_DESCRIPTOR_RES_NAME, module_number);
|
2013-12-15 20:28:20 +01:00
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
%inline {
|
|
|
|
|
struct HParsedToken_;
|
|
|
|
|
struct HParseResult_;
|
2013-12-16 11:03:50 +01:00
|
|
|
void hpt_to_php(const struct HParsedToken_ *token, zval *return_value);
|
2013-12-15 20:28:20 +01:00
|
|
|
|
|
|
|
|
static struct HParsedToken_* call_action(const struct HParseResult_ *p, void* user_data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%typemap(in) (const uint8_t* str, const size_t len) {
|
|
|
|
|
$1 = (uint8_t*)(*$input)->value.str.val;
|
|
|
|
|
$2 = (*$input)->value.str.len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%apply (const uint8_t* str, const size_t len) { (const uint8_t* input, size_t length) }
|
|
|
|
|
%apply (const uint8_t* str, const size_t len) { (const uint8_t* charset, size_t length) }
|
|
|
|
|
|
|
|
|
|
%typemap(in) void*[] {
|
|
|
|
|
if (IS_ARRAY == Z_TYPE_PP($input)) {
|
|
|
|
|
HashTable *arr = Z_ARRVAL_PP($input);
|
|
|
|
|
HashPosition pointer;
|
|
|
|
|
int size = zend_hash_num_elements(arr);
|
|
|
|
|
int i = 0;
|
|
|
|
|
int res = 0;
|
|
|
|
|
$1 = (void**)malloc((size+1)*sizeof(HParser*));
|
|
|
|
|
for (i=0; i<size; i++) {
|
|
|
|
|
zval **data;
|
|
|
|
|
if (zend_hash_index_find(arr, i, (void**)&data) == FAILURE) {
|
2013-12-16 03:33:01 +01:00
|
|
|
SWIG_exception(SWIG_IndexError, "index in parser array out of bounds");
|
|
|
|
|
$1 = NULL;
|
2013-12-15 20:28:20 +01:00
|
|
|
} else {
|
2013-12-16 00:39:30 +01:00
|
|
|
res = SWIG_ConvertPtr(*data, &($1[i]), SWIGTYPE_p_HParser_, 0 | 0);
|
2013-12-15 20:28:20 +01:00
|
|
|
if (!SWIG_IsOK(res)) {
|
2013-12-16 03:33:01 +01:00
|
|
|
SWIG_exception(SWIG_TypeError, "that wasn't an HParser");
|
2013-12-15 20:28:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2013-12-16 03:33:01 +01:00
|
|
|
SWIG_exception(SWIG_TypeError, "that wasn't an array of HParsers");
|
2013-12-15 20:28:20 +01:00
|
|
|
$1 = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%typemap(in) uint8_t {
|
|
|
|
|
if (IS_LONG == Z_TYPE_PP($input)) {
|
|
|
|
|
$1 = Z_LVAL_PP($input);
|
|
|
|
|
} else if (IS_STRING != Z_TYPE_PP($input)) {
|
|
|
|
|
// FIXME raise some error
|
|
|
|
|
} else {
|
|
|
|
|
$1 = *(uint8_t*)Z_STRVAL_PP($input);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%typemap(out) HBytes* {
|
|
|
|
|
RETVAL_STRINGL((char*)$1->token, $1->len, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%typemap(out) struct HParseResult_* {
|
|
|
|
|
if ($1 == NULL) {
|
2013-12-16 03:33:01 +01:00
|
|
|
/* If we want parse errors to be exceptions, this is the place to do it */
|
|
|
|
|
//SWIG_exception(SWIG_TypeError, "typemap: should have been an HParseResult*, was NULL");
|
2013-12-15 20:28:20 +01:00
|
|
|
RETVAL_NULL();
|
|
|
|
|
} else {
|
2013-12-16 11:03:50 +01:00
|
|
|
hpt_to_php($1->ast, $result);
|
2013-12-15 20:28:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%include "../swig/hammer.i";
|
|
|
|
|
|
|
|
|
|
%inline {
|
2013-12-16 11:03:50 +01:00
|
|
|
void hpt_to_php(const HParsedToken *token, zval *return_value) {
|
2013-12-16 03:33:01 +01:00
|
|
|
if (!token) {
|
|
|
|
|
RETVAL_NULL();
|
|
|
|
|
return;
|
2013-12-15 20:28:20 +01:00
|
|
|
}
|
|
|
|
|
switch (token->token_type) {
|
|
|
|
|
case TT_NONE:
|
2013-12-16 03:33:01 +01:00
|
|
|
RETVAL_NULL();
|
|
|
|
|
break;
|
2013-12-15 20:28:20 +01:00
|
|
|
case TT_BYTES:
|
2013-12-16 03:33:01 +01:00
|
|
|
RETVAL_STRINGL((char*)token->token_data.bytes.token, token->token_data.bytes.len, 1);
|
|
|
|
|
break;
|
2013-12-15 20:28:20 +01:00
|
|
|
case TT_SINT:
|
2013-12-16 03:33:01 +01:00
|
|
|
RETVAL_LONG(token->token_data.sint);
|
|
|
|
|
break;
|
2013-12-15 20:28:20 +01:00
|
|
|
case TT_UINT:
|
2013-12-16 03:33:01 +01:00
|
|
|
RETVAL_LONG(token->token_data.uint);
|
|
|
|
|
break;
|
2013-12-15 20:28:20 +01:00
|
|
|
case TT_SEQUENCE:
|
2013-12-16 03:33:01 +01:00
|
|
|
array_init(return_value);
|
2013-12-15 20:28:20 +01:00
|
|
|
for (int i=0; i < token->token_data.seq->used; i++) {
|
2013-12-16 03:33:01 +01:00
|
|
|
zval *tmp;
|
|
|
|
|
ALLOC_INIT_ZVAL(tmp);
|
2013-12-16 11:03:50 +01:00
|
|
|
hpt_to_php(token->token_data.seq->elements[i], tmp);
|
2013-12-16 03:33:01 +01:00
|
|
|
add_next_index_zval(return_value, tmp);
|
2013-12-15 20:28:20 +01:00
|
|
|
}
|
2013-12-16 03:33:01 +01:00
|
|
|
break;
|
2013-12-15 20:28:20 +01:00
|
|
|
default:
|
2013-12-16 03:33:01 +01:00
|
|
|
if (token->token_type == h_tt_php) {
|
2013-12-16 10:57:59 +01:00
|
|
|
//RETVAL_RESOURCE(token->token_data.user);
|
|
|
|
|
ZEND_REGISTER_RESOURCE(return_value, token->token_data.user, le_h_tt_php_descriptor);
|
2013-12-16 03:33:01 +01:00
|
|
|
} else {
|
|
|
|
|
int res = 0;
|
|
|
|
|
res = SWIG_ConvertPtr(return_value, (void*)token, SWIGTYPE_p_HParsedToken_, 0 | 0);
|
|
|
|
|
if (!SWIG_IsOK(res)) {
|
|
|
|
|
SWIG_exception(SWIG_TypeError, "hpt_to_php: that wasn't an HParsedToken");
|
|
|
|
|
}
|
|
|
|
|
// TODO: support registry
|
|
|
|
|
}
|
2013-12-15 20:28:20 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-16 10:25:50 +01:00
|
|
|
static HParsedToken* call_action(const HParseResult *p, void *user_data) {
|
2013-12-15 20:28:20 +01:00
|
|
|
zval *args[1];
|
2013-12-16 10:25:50 +01:00
|
|
|
zval ret, func;
|
|
|
|
|
ZVAL_STRING(&func, (const char*)user_data, 0);
|
2013-12-16 11:03:50 +01:00
|
|
|
hpt_to_php(p->ast, args[0]);
|
2013-12-16 10:25:50 +01:00
|
|
|
int ok = call_user_function(EG(function_table), NULL, &func, &ret, 1, args TSRMLS_CC);
|
2013-12-15 20:28:20 +01:00
|
|
|
if (ok != SUCCESS) {
|
2013-12-16 10:25:50 +01:00
|
|
|
printf("call_user_function failed\n");
|
2013-12-15 20:28:20 +01:00
|
|
|
// FIXME throw some error
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2013-12-16 10:25:50 +01:00
|
|
|
printf("Value being returned is %s\n", Z_STRVAL(ret));
|
2013-12-15 20:28:20 +01:00
|
|
|
// TODO: add reference to ret to parse-local data
|
|
|
|
|
HParsedToken *tok = h_make(p->arena, h_tt_php, &ret);
|
|
|
|
|
return tok;
|
|
|
|
|
}
|
2013-12-16 10:25:50 +01:00
|
|
|
|
|
|
|
|
HParser* action(HParser *parser, const char *name) {
|
|
|
|
|
return h_action(parser, call_action, (void*)name);
|
|
|
|
|
}
|
2013-12-15 20:28:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%pragma(php) code="
|
|
|
|
|
|
|
|
|
|
function ch($ch)
|
|
|
|
|
{
|
|
|
|
|
if (is_string($ch))
|
|
|
|
|
return h_token($ch);
|
|
|
|
|
else
|
|
|
|
|
return h_ch($ch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function choice()
|
|
|
|
|
{
|
|
|
|
|
$arg_list = func_get_args();
|
|
|
|
|
$arg_list[] = NULL;
|
|
|
|
|
return h_choice__a($arg_list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sequence()
|
|
|
|
|
{
|
|
|
|
|
$arg_list = func_get_args();
|
|
|
|
|
$arg_list[] = NULL;
|
|
|
|
|
return h_sequence__a($arg_list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function in($charset)
|
|
|
|
|
{
|
2013-12-16 10:25:50 +01:00
|
|
|
return action(h_in($charset), \"chr\");
|
2013-12-15 20:28:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function not_in($charset)
|
|
|
|
|
{
|
2013-12-16 10:25:50 +01:00
|
|
|
return action(h_not_in($charset), \"chr\");
|
2013-12-15 20:28:20 +01:00
|
|
|
}
|
|
|
|
|
"
|
|
|
|
|
|