2007-05-02 01:07:00 +00:00
|
|
|
/*
|
2007-10-17 00:30:00 +00:00
|
|
|
* $Id: run.h,v 1.7 2007/10/15 16:10:10 bacon Exp $
|
2007-05-02 01:07:00 +00:00
|
|
|
*
|
|
|
|
* {License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASE_AWK_RUN_H_
|
|
|
|
#define _ASE_AWK_RUN_H_
|
|
|
|
|
|
|
|
#ifndef _ASE_AWK_AWK_H_
|
|
|
|
#error Never include this file directly. Include <ase/awk/awk.h> instead
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum ase_awk_assop_type_t
|
|
|
|
{
|
|
|
|
/* if you change this, you have to change __assop_str in tree.c */
|
|
|
|
ASE_AWK_ASSOP_NONE,
|
|
|
|
ASE_AWK_ASSOP_PLUS, /* += */
|
|
|
|
ASE_AWK_ASSOP_MINUS, /* -= */
|
|
|
|
ASE_AWK_ASSOP_MUL, /* *= */
|
|
|
|
ASE_AWK_ASSOP_DIV, /* /= */
|
|
|
|
ASE_AWK_ASSOP_IDIV, /* //= */
|
|
|
|
ASE_AWK_ASSOP_MOD, /* %= */
|
|
|
|
ASE_AWK_ASSOP_EXP /* **= */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ase_awk_binop_type_t
|
|
|
|
{
|
|
|
|
/* if you change this, you have to change
|
|
|
|
* __binop_str in tree.c and __binop_func in run.c accordingly. */
|
|
|
|
ASE_AWK_BINOP_LOR,
|
|
|
|
ASE_AWK_BINOP_LAND,
|
|
|
|
ASE_AWK_BINOP_IN,
|
|
|
|
|
|
|
|
ASE_AWK_BINOP_BOR,
|
|
|
|
ASE_AWK_BINOP_BXOR,
|
|
|
|
ASE_AWK_BINOP_BAND,
|
|
|
|
|
|
|
|
ASE_AWK_BINOP_EQ,
|
|
|
|
ASE_AWK_BINOP_NE,
|
|
|
|
ASE_AWK_BINOP_GT,
|
|
|
|
ASE_AWK_BINOP_GE,
|
|
|
|
ASE_AWK_BINOP_LT,
|
|
|
|
ASE_AWK_BINOP_LE,
|
|
|
|
|
|
|
|
ASE_AWK_BINOP_LSHIFT,
|
|
|
|
ASE_AWK_BINOP_RSHIFT,
|
|
|
|
|
|
|
|
ASE_AWK_BINOP_PLUS,
|
|
|
|
ASE_AWK_BINOP_MINUS,
|
|
|
|
ASE_AWK_BINOP_MUL,
|
|
|
|
ASE_AWK_BINOP_DIV,
|
|
|
|
ASE_AWK_BINOP_IDIV,
|
|
|
|
ASE_AWK_BINOP_MOD,
|
|
|
|
ASE_AWK_BINOP_EXP,
|
|
|
|
|
|
|
|
ASE_AWK_BINOP_CONCAT,
|
|
|
|
ASE_AWK_BINOP_MA,
|
|
|
|
ASE_AWK_BINOP_NM
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ase_awk_unrop_type_t
|
|
|
|
{
|
|
|
|
/* if you change this, you have to change
|
|
|
|
* __unrop_str in tree.c accordingly. */
|
|
|
|
ASE_AWK_UNROP_PLUS,
|
|
|
|
ASE_AWK_UNROP_MINUS,
|
|
|
|
ASE_AWK_UNROP_NOT,
|
|
|
|
ASE_AWK_UNROP_BNOT
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ase_awk_incop_type_t
|
|
|
|
{
|
|
|
|
/* if you change this, you have to change
|
|
|
|
* __incop_str in tree.c accordingly. */
|
|
|
|
ASE_AWK_INCOP_PLUS,
|
|
|
|
ASE_AWK_INCOP_MINUS
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ase_char_t* ase_awk_format (
|
|
|
|
ase_awk_run_t* run, ase_str_t* out, ase_str_t* fbu,
|
|
|
|
const ase_char_t* fmt, ase_size_t fmt_len,
|
|
|
|
ase_size_t nargs_on_stack, ase_awk_nde_t* args, ase_size_t* len);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|