202 lines
3.2 KiB
C
202 lines
3.2 KiB
C
/*
|
|
* $Id: awk_i.h,v 1.46 2006-08-21 02:53:42 bacon Exp $
|
|
*/
|
|
|
|
#ifndef _XP_AWK_AWKI_H_
|
|
#define _XP_AWK_AWKI_H_
|
|
|
|
typedef struct xp_awk_chain_t xp_awk_chain_t;
|
|
typedef struct xp_awk_run_t xp_awk_run_t;
|
|
typedef struct xp_awk_tree_t xp_awk_tree_t;
|
|
|
|
#include <xp/awk/awk.h>
|
|
|
|
#ifdef XP_AWK_STAND_ALONE
|
|
#include <xp/awk/sa.h>
|
|
#else
|
|
#include <xp/bas/str.h>
|
|
#endif
|
|
|
|
#include <xp/awk/rex.h>
|
|
#include <xp/awk/map.h>
|
|
#include <xp/awk/val.h>
|
|
#include <xp/awk/func.h>
|
|
#include <xp/awk/tree.h>
|
|
#include <xp/awk/tab.h>
|
|
#include <xp/awk/parse.h>
|
|
#include <xp/awk/run.h>
|
|
#include <xp/awk/extio.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning (disable: 4996)
|
|
#endif
|
|
|
|
#if defined(_WIN32) && defined(XP_AWK_STAND_ALONE) && defined(_DEBUG)
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include <crtdbg.h>
|
|
#endif
|
|
|
|
#define XP_AWK_MAX_GLOBALS 9999
|
|
#define XP_AWK_MAX_LOCALS 9999
|
|
#define XP_AWK_MAX_PARAMS 9999
|
|
|
|
struct xp_awk_tree_t
|
|
{
|
|
xp_size_t nglobals; /* total number of globals */
|
|
xp_size_t nbglobals; /* number of builtin globals */
|
|
xp_awk_map_t afns; /* awk function map */
|
|
xp_awk_nde_t* begin;
|
|
xp_awk_nde_t* end;
|
|
xp_awk_chain_t* chain;
|
|
xp_awk_chain_t* chain_tail;
|
|
xp_size_t chain_size; /* number of nodes in the chain */
|
|
};
|
|
|
|
struct xp_awk_t
|
|
{
|
|
/* options */
|
|
int option;
|
|
|
|
/* parse tree */
|
|
xp_awk_tree_t tree;
|
|
int state;
|
|
|
|
/* temporary information that the parser needs */
|
|
struct
|
|
{
|
|
struct
|
|
{
|
|
int block;
|
|
int loop;
|
|
} id;
|
|
|
|
struct
|
|
{
|
|
xp_size_t loop;
|
|
} depth;
|
|
|
|
xp_awk_tab_t globals;
|
|
xp_awk_tab_t locals;
|
|
xp_awk_tab_t params;
|
|
xp_size_t nlocals_max;
|
|
} parse;
|
|
|
|
/* source code management */
|
|
struct
|
|
{
|
|
xp_awk_srcios_t* ios;
|
|
|
|
struct
|
|
{
|
|
xp_cint_t curc;
|
|
xp_cint_t ungotc[5];
|
|
xp_size_t ungotc_count;
|
|
|
|
xp_size_t line;
|
|
xp_size_t column;
|
|
} lex;
|
|
|
|
struct
|
|
{
|
|
xp_char_t buf[512];
|
|
xp_size_t buf_pos;
|
|
xp_size_t buf_len;
|
|
} shared;
|
|
} src;
|
|
|
|
/* token */
|
|
struct
|
|
{
|
|
int prev;
|
|
int type;
|
|
xp_str_t name;
|
|
xp_size_t line;
|
|
xp_size_t column;
|
|
} token;
|
|
|
|
/* builtin functions */
|
|
struct
|
|
{
|
|
xp_awk_bfn_t* sys;
|
|
xp_awk_bfn_t* user;
|
|
} bfn;
|
|
|
|
struct
|
|
{
|
|
xp_size_t count;
|
|
xp_awk_run_t* ptr;
|
|
} run;
|
|
|
|
struct
|
|
{
|
|
xp_awk_thrlks_t* lks;
|
|
} thr;
|
|
|
|
/* housekeeping */
|
|
int errnum;
|
|
};
|
|
|
|
struct xp_awk_chain_t
|
|
{
|
|
xp_awk_nde_t* pattern;
|
|
xp_awk_nde_t* action;
|
|
xp_awk_chain_t* next;
|
|
};
|
|
|
|
struct xp_awk_run_t
|
|
{
|
|
int id;
|
|
xp_awk_map_t named;
|
|
|
|
void** stack;
|
|
xp_size_t stack_top;
|
|
xp_size_t stack_base;
|
|
xp_size_t stack_limit;
|
|
int exit_level;
|
|
|
|
xp_awk_val_int_t* icache[100]; /* TODO: choose the optimal size */
|
|
xp_awk_val_real_t* rcache[100]; /* TODO: choose the optimal size */
|
|
xp_awk_val_ref_t* fcache[100]; /* TODO: choose the optimal size */
|
|
xp_size_t icache_count;
|
|
xp_size_t rcache_count;
|
|
xp_size_t fcache_count;
|
|
|
|
xp_awk_nde_blk_t* active_block;
|
|
xp_byte_t* pattern_range_state;
|
|
|
|
struct
|
|
{
|
|
xp_char_t buf[1024];
|
|
xp_size_t buf_pos;
|
|
xp_size_t buf_len;
|
|
xp_bool_t eof;
|
|
|
|
xp_str_t line;
|
|
xp_awk_val_t* d0; /* $0 */
|
|
|
|
xp_size_t maxflds;
|
|
xp_size_t nflds; /* NF */
|
|
struct
|
|
{
|
|
xp_char_t* ptr;
|
|
xp_size_t len;
|
|
xp_awk_val_t* val; /* $1 .. $NF */
|
|
}* flds;
|
|
} inrec;
|
|
|
|
/* extio chain */
|
|
struct
|
|
{
|
|
xp_awk_io_t handler[XP_AWK_EXTIO_NUM];
|
|
xp_awk_extio_t* chain;
|
|
} extio;
|
|
|
|
int errnum;
|
|
|
|
xp_awk_t* awk;
|
|
xp_awk_run_t* prev;
|
|
xp_awk_run_t* next;
|
|
};
|
|
|
|
#endif
|