qse/ase/awk/awk.c

227 lines
4.6 KiB
C
Raw Normal View History

2006-03-02 15:36:30 +00:00
/*
2006-06-18 13:43:28 +00:00
* $Id: awk.c,v 1.51 2006-06-18 13:43:28 bacon Exp $
2006-03-02 15:36:30 +00:00
*/
2006-02-23 14:42:33 +00:00
2006-03-31 16:35:37 +00:00
#include <xp/awk/awk_i.h>
2006-02-23 14:42:33 +00:00
2006-04-16 04:31:38 +00:00
#ifndef XP_AWK_STAND_ALONE
2006-02-23 14:42:33 +00:00
#include <xp/bas/memory.h>
#include <xp/bas/assert.h>
#endif
2006-04-21 17:24:31 +00:00
static void __free_func (void* awk, void* func);
2006-02-23 14:42:33 +00:00
2006-03-31 16:35:37 +00:00
xp_awk_t* xp_awk_open (void)
2006-02-23 14:42:33 +00:00
{
2006-03-31 16:35:37 +00:00
xp_awk_t* awk;
2006-03-31 17:16:23 +00:00
awk = (xp_awk_t*) xp_malloc (xp_sizeof(xp_awk_t));
2006-03-31 16:35:37 +00:00
if (awk == XP_NULL) return XP_NULL;
2006-02-23 14:42:33 +00:00
2006-05-13 16:33:07 +00:00
if (xp_str_open (&awk->token.name, 128) == XP_NULL)
2006-04-21 16:21:27 +00:00
{
2006-03-31 16:35:37 +00:00
xp_free (awk);
2006-02-23 14:42:33 +00:00
return XP_NULL;
}
2006-04-22 13:54:53 +00:00
/* TODO: initial map size?? */
2006-05-13 16:33:07 +00:00
if (xp_awk_map_open (
&awk->tree.funcs, awk, 256, __free_func) == XP_NULL)
2006-04-21 16:21:27 +00:00
{
2006-02-23 14:42:33 +00:00
xp_str_close (&awk->token.name);
2006-03-31 16:35:37 +00:00
xp_free (awk);
2006-02-23 14:42:33 +00:00
return XP_NULL;
}
2006-05-13 16:33:07 +00:00
if (xp_awk_tab_open (&awk->parse.globals) == XP_NULL)
2006-04-21 16:21:27 +00:00
{
2006-02-23 14:42:33 +00:00
xp_str_close (&awk->token.name);
2006-03-02 15:10:59 +00:00
xp_awk_map_close (&awk->tree.funcs);
2006-03-31 16:35:37 +00:00
xp_free (awk);
2006-02-23 14:42:33 +00:00
return XP_NULL;
}
2006-05-13 16:33:07 +00:00
if (xp_awk_tab_open (&awk->parse.locals) == XP_NULL)
2006-04-21 16:21:27 +00:00
{
2006-02-23 14:42:33 +00:00
xp_str_close (&awk->token.name);
2006-03-02 15:10:59 +00:00
xp_awk_map_close (&awk->tree.funcs);
2006-02-23 14:42:33 +00:00
xp_awk_tab_close (&awk->parse.globals);
2006-03-31 16:35:37 +00:00
xp_free (awk);
2006-02-23 14:42:33 +00:00
return XP_NULL;
}
2006-05-13 16:33:07 +00:00
if (xp_awk_tab_open (&awk->parse.params) == XP_NULL)
2006-04-21 16:21:27 +00:00
{
2006-02-23 14:42:33 +00:00
xp_str_close (&awk->token.name);
2006-03-02 15:10:59 +00:00
xp_awk_map_close (&awk->tree.funcs);
2006-02-23 14:42:33 +00:00
xp_awk_tab_close (&awk->parse.globals);
xp_awk_tab_close (&awk->parse.locals);
2006-03-31 16:35:37 +00:00
xp_free (awk);
2006-02-23 14:42:33 +00:00
return XP_NULL;
}
awk->opt.parse = 0;
awk->opt.run = 0;
awk->errnum = XP_AWK_ENOERR;
2006-04-22 13:54:53 +00:00
awk->srcio = XP_NULL;
awk->srcio_arg = XP_NULL;
2006-03-07 15:55:14 +00:00
2006-02-23 14:42:33 +00:00
awk->parse.nlocals_max = 0;
2006-03-07 15:55:14 +00:00
2006-02-23 14:42:33 +00:00
awk->tree.nglobals = 0;
awk->tree.begin = XP_NULL;
awk->tree.end = XP_NULL;
awk->tree.chain = XP_NULL;
awk->tree.chain_tail = XP_NULL;
2006-03-07 15:55:14 +00:00
2006-05-13 16:33:07 +00:00
awk->token.line = 1;
awk->token.column = 1;
2006-02-23 14:42:33 +00:00
awk->lex.curc = XP_CHAR_EOF;
awk->lex.ungotc_count = 0;
2006-05-10 16:02:39 +00:00
awk->lex.buf_pos = 0;
awk->lex.buf_len = 0;
2006-05-13 16:33:07 +00:00
awk->lex.line = 1;
awk->lex.column = 1;
2006-02-23 14:42:33 +00:00
2006-06-18 13:43:28 +00:00
awk->extio.pipe = XP_NULL;
awk->extio.coproc = XP_NULL;
awk->extio.file = XP_NULL;
2006-02-23 14:42:33 +00:00
return awk;
}
int xp_awk_close (xp_awk_t* awk)
{
xp_awk_clear (awk);
2006-03-05 17:07:33 +00:00
2006-02-23 14:42:33 +00:00
if (xp_awk_detsrc(awk) == -1) return -1;
2006-03-05 17:07:33 +00:00
2006-03-02 15:10:59 +00:00
xp_awk_map_close (&awk->tree.funcs);
2006-02-23 14:42:33 +00:00
xp_awk_tab_close (&awk->parse.globals);
xp_awk_tab_close (&awk->parse.locals);
xp_awk_tab_close (&awk->parse.params);
xp_str_close (&awk->token.name);
2006-03-05 17:07:33 +00:00
2006-03-31 16:35:37 +00:00
xp_free (awk);
2006-02-23 14:42:33 +00:00
return 0;
}
2006-04-14 10:56:42 +00:00
/* TODO: write a function to clear awk->parse data structure.
this would be need either as a separate function or as a part of xp_awk_clear...
do i have to pass an option to xp_awk_clear to do this??? */
2006-02-23 14:42:33 +00:00
void xp_awk_clear (xp_awk_t* awk)
{
2006-04-21 17:24:31 +00:00
/* TODO: kill all associated run instances... */
2006-04-20 16:17:01 +00:00
2006-02-23 14:42:33 +00:00
xp_awk_tab_clear (&awk->parse.globals);
xp_awk_tab_clear (&awk->parse.locals);
xp_awk_tab_clear (&awk->parse.params);
2006-04-22 13:54:53 +00:00
2006-02-23 14:42:33 +00:00
awk->parse.nlocals_max = 0;
/* clear parse trees */
awk->tree.nglobals = 0;
2006-03-02 15:10:59 +00:00
xp_awk_map_clear (&awk->tree.funcs);
2006-03-05 17:07:33 +00:00
2006-04-24 14:38:46 +00:00
if (awk->tree.begin != XP_NULL)
{
2006-02-23 14:42:33 +00:00
xp_assert (awk->tree.begin->next == XP_NULL);
xp_awk_clrpt (awk->tree.begin);
awk->tree.begin = XP_NULL;
}
2006-04-24 14:38:46 +00:00
if (awk->tree.end != XP_NULL)
{
2006-02-23 14:42:33 +00:00
xp_assert (awk->tree.end->next == XP_NULL);
xp_awk_clrpt (awk->tree.end);
awk->tree.end = XP_NULL;
}
2006-04-24 14:38:46 +00:00
while (awk->tree.chain != XP_NULL)
{
2006-02-23 14:42:33 +00:00
xp_awk_chain_t* next = awk->tree.chain->next;
if (awk->tree.chain->pattern != XP_NULL)
xp_awk_clrpt (awk->tree.chain->pattern);
if (awk->tree.chain->action != XP_NULL)
xp_awk_clrpt (awk->tree.chain->action);
xp_free (awk->tree.chain);
awk->tree.chain = next;
}
awk->tree.chain_tail = XP_NULL;
}
2006-03-31 16:35:37 +00:00
void xp_awk_setparseopt (xp_awk_t* awk, int opt)
{
awk->opt.parse = opt;
}
2006-04-09 15:31:13 +00:00
void xp_awk_setrunopt (xp_awk_t* awk, int opt)
{
awk->opt.run = opt;
}
2006-02-23 14:42:33 +00:00
int xp_awk_attsrc (xp_awk_t* awk, xp_awk_io_t src, void* arg)
{
if (xp_awk_detsrc(awk) == -1) return -1;
2006-04-22 13:54:53 +00:00
xp_assert (awk->srcio == XP_NULL);
2006-04-24 14:38:46 +00:00
if (src(XP_AWK_INPUT_OPEN, arg, XP_NULL, 0) == -1)
{
2006-04-22 13:54:53 +00:00
awk->errnum = XP_AWK_ESRCINOPEN;
2006-02-23 14:42:33 +00:00
return -1;
}
2006-04-22 13:54:53 +00:00
awk->srcio = src;
awk->srcio_arg = arg;
2006-02-23 14:42:33 +00:00
awk->lex.curc = XP_CHAR_EOF;
awk->lex.ungotc_count = 0;
2006-05-10 16:02:39 +00:00
awk->lex.buf_pos = 0;
awk->lex.buf_len = 0;
2006-05-13 16:33:07 +00:00
awk->lex.line = 1;
awk->lex.column = 1;
2006-02-23 14:42:33 +00:00
return 0;
}
int xp_awk_detsrc (xp_awk_t* awk)
{
2006-04-24 14:38:46 +00:00
if (awk->srcio != XP_NULL)
{
2006-04-22 13:54:53 +00:00
xp_ssize_t n;
n = awk->srcio (XP_AWK_INPUT_CLOSE, awk->srcio_arg, XP_NULL, 0);
if (n == -1)
{
awk->errnum = XP_AWK_ESRCINCLOSE;
2006-02-23 14:42:33 +00:00
return -1;
}
2006-04-22 13:54:53 +00:00
awk->srcio = XP_NULL;
awk->srcio_arg = XP_NULL;
2006-02-23 14:42:33 +00:00
awk->lex.curc = XP_CHAR_EOF;
awk->lex.ungotc_count = 0;
2006-05-10 16:02:39 +00:00
awk->lex.buf_pos = 0;
awk->lex.buf_len = 0;
2006-05-13 16:33:07 +00:00
awk->lex.line = 1;
awk->lex.column = 1;
2006-02-23 14:42:33 +00:00
}
return 0;
}
2006-04-21 17:24:31 +00:00
static void __free_func (void* owner, void* func)
2006-02-23 14:42:33 +00:00
{
2006-04-24 14:38:46 +00:00
xp_awk_func_t* f = (xp_awk_func_t*)func;
2006-02-23 14:42:33 +00:00
/* f->name doesn't have to be freed */
/*xp_free (f->name);*/
2006-04-24 14:38:46 +00:00
2006-02-23 14:42:33 +00:00
xp_awk_clrpt (f->body);
xp_free (f);
}
2006-05-13 16:33:07 +00:00
xp_size_t xp_awk_getsrcline (xp_awk_t* awk)
{
return awk->token.line;
}