2007-05-02 01:07:00 +00:00
|
|
|
/*
|
2008-06-29 03:38:00 +00:00
|
|
|
* $Id: awk_i.h 232 2008-06-28 09:38:00Z baconevi $
|
2007-05-02 01:07:00 +00:00
|
|
|
*
|
|
|
|
* {License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASE_AWK_AWKI_H_
|
|
|
|
#define _ASE_AWK_AWKI_H_
|
|
|
|
|
|
|
|
#include <ase/cmn/mem.h>
|
|
|
|
#include <ase/cmn/str.h>
|
2008-02-13 01:39:56 +00:00
|
|
|
#include <ase/cmn/map.h>
|
2008-03-04 03:31:41 +00:00
|
|
|
#include <ase/cmn/rex.h>
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
typedef struct ase_awk_chain_t ase_awk_chain_t;
|
|
|
|
typedef struct ase_awk_tree_t ase_awk_tree_t;
|
|
|
|
|
|
|
|
#include <ase/awk/awk.h>
|
|
|
|
#include <ase/awk/val.h>
|
2008-06-07 04:33:44 +00:00
|
|
|
#include "tree.h"
|
|
|
|
#include "func.h"
|
|
|
|
#include "tab.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "run.h"
|
|
|
|
#include "extio.h"
|
|
|
|
#include "misc.h"
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning (disable: 4996)
|
|
|
|
#pragma warning (disable: 4296)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ASE_AWK_MAX_GLOBALS 9999
|
|
|
|
#define ASE_AWK_MAX_LOCALS 9999
|
|
|
|
#define ASE_AWK_MAX_PARAMS 9999
|
|
|
|
|
2007-05-07 20:08:00 +00:00
|
|
|
#define ASE_AWK_MALLOC(awk,size) ASE_MALLOC(&(awk)->prmfns.mmgr,size)
|
|
|
|
#define ASE_AWK_REALLOC(awk,ptr,size) ASE_REALLOC(&(awk)->prmfns.mmgr,ptr,size)
|
|
|
|
#define ASE_AWK_FREE(awk,ptr) ASE_FREE(&(awk)->prmfns.mmgr,ptr)
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
#define ASE_AWK_ISUPPER(awk,c) ASE_ISUPPER(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISLOWER(awk,c) ASE_ISLOWER(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISALPHA(awk,c) ASE_ISALPHA(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISDIGIT(awk,c) ASE_ISDIGIT(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISXDIGIT(awk,c) ASE_ISXDIGIT(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISALNUM(awk,c) ASE_ISALNUM(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISSPACE(awk,c) ASE_ISSPACE(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISPRINT(awk,c) ASE_ISPRINT(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISGRAPH(awk,c) ASE_ISGRAPH(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISCNTRL(awk,c) ASE_ISCNTRL(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_ISPUNCT(awk,c) ASE_ISPUNCT(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_TOUPPER(awk,c) ASE_TOUPPER(&(awk)->prmfns.ccls,c)
|
|
|
|
#define ASE_AWK_TOLOWER(awk,c) ASE_TOLOWER(&(awk)->prmfns.ccls,c)
|
|
|
|
|
|
|
|
struct ase_awk_tree_t
|
|
|
|
{
|
|
|
|
ase_size_t nglobals; /* total number of globals */
|
2007-09-25 00:12:00 +00:00
|
|
|
ase_size_t nbglobals; /* number of intrinsic globals */
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_cstr_t cur_afn;
|
2008-02-13 01:39:56 +00:00
|
|
|
ase_map_t* afns; /* awk function map */
|
2007-12-05 08:13:38 +00:00
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_awk_nde_t* begin;
|
2007-12-05 08:13:38 +00:00
|
|
|
ase_awk_nde_t* begin_tail;
|
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_awk_nde_t* end;
|
2007-12-05 08:13:38 +00:00
|
|
|
ase_awk_nde_t* end_tail;
|
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_awk_chain_t* chain;
|
|
|
|
ase_awk_chain_t* chain_tail;
|
|
|
|
ase_size_t chain_size; /* number of nodes in the chain */
|
2007-12-05 08:13:38 +00:00
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
int ok;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ase_awk_t
|
|
|
|
{
|
|
|
|
ase_awk_prmfns_t prmfns;
|
2008-06-29 03:38:00 +00:00
|
|
|
void* assoc_data;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
/* options */
|
|
|
|
int option;
|
|
|
|
|
2007-11-06 18:47:00 +00:00
|
|
|
/* word table */
|
2008-02-13 01:39:56 +00:00
|
|
|
ase_map_t* wtab;
|
2007-11-06 18:47:00 +00:00
|
|
|
/* reverse word table */
|
2008-02-13 01:39:56 +00:00
|
|
|
ase_map_t* rwtab;
|
2007-06-18 23:26:00 +00:00
|
|
|
|
2007-11-12 00:07:00 +00:00
|
|
|
/* regular expression processing routines */
|
|
|
|
ase_awk_rexfns_t* rexfns;
|
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
/* parse tree */
|
|
|
|
ase_awk_tree_t tree;
|
|
|
|
|
|
|
|
/* temporary information that the parser needs */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int block;
|
|
|
|
int loop;
|
|
|
|
int stmnt; /* statement */
|
|
|
|
} id;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_size_t block;
|
|
|
|
ase_size_t loop;
|
|
|
|
ase_size_t expr; /* expression */
|
|
|
|
} cur;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_size_t block;
|
|
|
|
ase_size_t expr;
|
|
|
|
} max;
|
|
|
|
} depth;
|
|
|
|
|
2007-12-12 08:05:58 +00:00
|
|
|
/* function calls */
|
2008-02-13 01:39:56 +00:00
|
|
|
ase_map_t* afns;
|
2007-12-22 03:57:26 +00:00
|
|
|
|
|
|
|
/* named variables */
|
2008-02-13 01:39:56 +00:00
|
|
|
ase_map_t* named;
|
2007-12-12 08:05:58 +00:00
|
|
|
|
|
|
|
/* global variables */
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_awk_tab_t globals;
|
2007-12-12 08:05:58 +00:00
|
|
|
|
|
|
|
/* local variables */
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_awk_tab_t locals;
|
2007-12-12 08:05:58 +00:00
|
|
|
|
|
|
|
/* parameters to a function */
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_awk_tab_t params;
|
2007-12-12 08:05:58 +00:00
|
|
|
|
|
|
|
/* maximum number of local variables */
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_size_t nlocals_max;
|
|
|
|
|
|
|
|
ase_awk_nde_t* (*parse_block) (
|
|
|
|
ase_awk_t*,ase_size_t,ase_bool_t);
|
2007-12-12 08:05:58 +00:00
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
} parse;
|
|
|
|
|
|
|
|
/* source code management */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_awk_srcios_t ios;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_cint_t curc;
|
|
|
|
ase_cint_t ungotc[5];
|
|
|
|
ase_size_t ungotc_line[5];
|
|
|
|
ase_size_t ungotc_column[5];
|
|
|
|
ase_size_t ungotc_count;
|
|
|
|
|
|
|
|
ase_size_t line;
|
|
|
|
ase_size_t column;
|
|
|
|
} lex;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t buf[512];
|
|
|
|
ase_size_t buf_pos;
|
|
|
|
ase_size_t buf_len;
|
|
|
|
} shared;
|
|
|
|
} src;
|
|
|
|
|
|
|
|
/* token */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
ase_size_t line;
|
|
|
|
ase_size_t column;
|
|
|
|
} prev;
|
|
|
|
|
2007-06-18 23:26:00 +00:00
|
|
|
int type;
|
|
|
|
ase_str_t name;
|
|
|
|
ase_size_t line;
|
|
|
|
ase_size_t column;
|
2007-05-02 01:07:00 +00:00
|
|
|
} token;
|
|
|
|
|
2007-09-25 00:12:00 +00:00
|
|
|
/* intrinsic functions */
|
2007-05-02 01:07:00 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_awk_bfn_t* sys;
|
2008-02-13 01:39:56 +00:00
|
|
|
ase_map_t* user;
|
2007-05-02 01:07:00 +00:00
|
|
|
} bfn;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_size_t block;
|
|
|
|
ase_size_t expr;
|
|
|
|
} max;
|
|
|
|
} depth;
|
|
|
|
} run;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_size_t build;
|
|
|
|
ase_size_t match;
|
|
|
|
} max;
|
|
|
|
} depth;
|
|
|
|
} rex;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t fmt[1024];
|
|
|
|
} tmp;
|
|
|
|
|
|
|
|
/* housekeeping */
|
2008-02-13 01:57:21 +00:00
|
|
|
int errnum;
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_size_t errlin;
|
|
|
|
ase_char_t errmsg[256];
|
|
|
|
ase_char_t* errstr[ASE_AWK_NUMERRNUM];
|
2007-10-12 00:13:00 +00:00
|
|
|
|
|
|
|
ase_bool_t stopall;
|
2007-05-02 01:07:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ase_awk_chain_t
|
|
|
|
{
|
|
|
|
ase_awk_nde_t* pattern;
|
|
|
|
ase_awk_nde_t* action;
|
|
|
|
ase_awk_chain_t* next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ase_awk_run_t
|
|
|
|
{
|
|
|
|
int id;
|
2008-02-13 01:39:56 +00:00
|
|
|
ase_map_t* named;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
void** stack;
|
|
|
|
ase_size_t stack_top;
|
|
|
|
ase_size_t stack_base;
|
|
|
|
ase_size_t stack_limit;
|
|
|
|
int exit_level;
|
|
|
|
|
2008-01-16 03:01:47 +00:00
|
|
|
ase_awk_val_ref_t* fcache[128];
|
2008-01-16 03:03:40 +00:00
|
|
|
/*ase_awk_val_str_t* scache32[128];
|
|
|
|
ase_awk_val_str_t* scache64[128];*/
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_size_t fcache_count;
|
2008-01-16 03:03:40 +00:00
|
|
|
/*ase_size_t scache32_count;
|
|
|
|
ase_size_t scache64_count;*/
|
2007-05-02 01:07:00 +00:00
|
|
|
|
2008-01-16 21:46:08 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_awk_val_int_t* ifree;
|
|
|
|
ase_awk_val_chunk_t* ichunk;
|
|
|
|
ase_awk_val_real_t* rfree;
|
|
|
|
ase_awk_val_chunk_t* rchunk;
|
|
|
|
} vmgr;
|
2008-01-16 08:03:41 +00:00
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_awk_nde_blk_t* active_block;
|
|
|
|
ase_byte_t* pattern_range_state;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t buf[1024];
|
|
|
|
ase_size_t buf_pos;
|
|
|
|
ase_size_t buf_len;
|
|
|
|
ase_bool_t eof;
|
|
|
|
|
|
|
|
ase_str_t line;
|
|
|
|
ase_awk_val_t* d0; /* $0 */
|
|
|
|
|
|
|
|
ase_size_t maxflds;
|
|
|
|
ase_size_t nflds; /* NF */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t* ptr;
|
|
|
|
ase_size_t len;
|
|
|
|
ase_awk_val_t* val; /* $1 .. $NF */
|
|
|
|
}* flds;
|
|
|
|
|
|
|
|
} inrec;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
void* rs;
|
|
|
|
void* fs;
|
|
|
|
int ignorecase;
|
2007-10-30 00:20:00 +00:00
|
|
|
|
|
|
|
ase_long_t nr;
|
|
|
|
ase_long_t fnr;
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t* ptr;
|
|
|
|
ase_size_t len;
|
|
|
|
} convfmt;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t* ptr;
|
|
|
|
ase_size_t len;
|
|
|
|
} ofmt;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t* ptr;
|
|
|
|
ase_size_t len;
|
|
|
|
} ofs;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t* ptr;
|
|
|
|
ase_size_t len;
|
|
|
|
} ors;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t* ptr;
|
|
|
|
ase_size_t len;
|
|
|
|
} subsep;
|
|
|
|
} global;
|
|
|
|
|
|
|
|
/* extio chain */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_awk_io_t handler[ASE_AWK_EXTIO_NUM];
|
|
|
|
void* custom_data;
|
|
|
|
ase_awk_extio_t* chain;
|
|
|
|
} extio;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_str_t fmt;
|
|
|
|
ase_str_t out;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_char_t* ptr;
|
|
|
|
ase_size_t len; /* length */
|
|
|
|
ase_size_t inc; /* increment */
|
|
|
|
} tmp;
|
|
|
|
} format;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_size_t block;
|
|
|
|
ase_size_t expr; /* expression */
|
|
|
|
} cur;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ase_size_t block;
|
|
|
|
ase_size_t expr;
|
|
|
|
} max;
|
|
|
|
} depth;
|
|
|
|
|
2008-02-13 01:57:21 +00:00
|
|
|
int errnum;
|
2007-05-02 01:07:00 +00:00
|
|
|
ase_size_t errlin;
|
|
|
|
ase_char_t errmsg[256];
|
|
|
|
|
|
|
|
void* custom_data;
|
|
|
|
|
|
|
|
ase_awk_t* awk;
|
|
|
|
ase_awk_runcbs_t* cbs;
|
|
|
|
};
|
|
|
|
|
2008-03-04 03:31:41 +00:00
|
|
|
|
|
|
|
#define ASE_AWK_FREEREX(awk,code) ase_freerex(&(awk)->prmfns.mmgr,code)
|
|
|
|
#define ASE_AWK_ISEMPTYREX(awk,code) ase_isemptyrex(code)
|
|
|
|
#define ASE_AWK_BUILDREX(awk,ptn,len,errnum) \
|
|
|
|
ase_awk_buildrex(awk,ptn,len,errnum)
|
|
|
|
#define ASE_AWK_MATCHREX(awk,code,option,str,len,match_ptr,match_len,errnum) \
|
|
|
|
ase_awk_matchrex(awk,code,option,str,len,match_ptr,match_len,errnum)
|
|
|
|
|
2007-05-02 01:07:00 +00:00
|
|
|
#endif
|