117 lines
2.7 KiB
C
117 lines
2.7 KiB
C
/*
|
|
* $Id: run.h 551 2011-08-15 13:52:48Z hyunghwan.chung $
|
|
*
|
|
Copyright 2006-2012 Chung, Hyung-Hwan.
|
|
This file is part of QSE.
|
|
|
|
QSE is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as
|
|
published by the Free Software Foundation, either version 3 of
|
|
the License, or (at your option) any later version.
|
|
|
|
QSE is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _QSE_LIB_AWK_RUN_H_
|
|
#define _QSE_LIB_AWK_RUN_H_
|
|
|
|
enum qse_awk_assop_type_t
|
|
{
|
|
/* if you change this, you have to change assop_str in tree.c.
|
|
* synchronize it with binop_func of eval_assignment in run.c */
|
|
QSE_AWK_ASSOP_NONE,
|
|
QSE_AWK_ASSOP_PLUS, /* += */
|
|
QSE_AWK_ASSOP_MINUS, /* -= */
|
|
QSE_AWK_ASSOP_MUL, /* *= */
|
|
QSE_AWK_ASSOP_DIV, /* /= */
|
|
QSE_AWK_ASSOP_IDIV, /* //= */
|
|
QSE_AWK_ASSOP_MOD, /* %= */
|
|
QSE_AWK_ASSOP_EXP, /* **= */
|
|
QSE_AWK_ASSOP_CONCAT, /* %%= */
|
|
QSE_AWK_ASSOP_RS, /* >>= */
|
|
QSE_AWK_ASSOP_LS, /* <<= */
|
|
QSE_AWK_ASSOP_BAND, /* &= */
|
|
QSE_AWK_ASSOP_BXOR, /* ^= */
|
|
QSE_AWK_ASSOP_BOR /* |= */
|
|
};
|
|
|
|
enum qse_awk_binop_type_t
|
|
{
|
|
/* if you change this, you have to change
|
|
* binop_str in tree.c and binop_func in run.c accordingly. */
|
|
QSE_AWK_BINOP_LOR,
|
|
QSE_AWK_BINOP_LAND,
|
|
QSE_AWK_BINOP_IN,
|
|
|
|
QSE_AWK_BINOP_BOR,
|
|
QSE_AWK_BINOP_BXOR,
|
|
QSE_AWK_BINOP_BAND,
|
|
|
|
QSE_AWK_BINOP_EQ,
|
|
QSE_AWK_BINOP_NE,
|
|
QSE_AWK_BINOP_GT,
|
|
QSE_AWK_BINOP_GE,
|
|
QSE_AWK_BINOP_LT,
|
|
QSE_AWK_BINOP_LE,
|
|
|
|
QSE_AWK_BINOP_LS,
|
|
QSE_AWK_BINOP_RS,
|
|
|
|
QSE_AWK_BINOP_PLUS,
|
|
QSE_AWK_BINOP_MINUS,
|
|
QSE_AWK_BINOP_MUL,
|
|
QSE_AWK_BINOP_DIV,
|
|
QSE_AWK_BINOP_IDIV,
|
|
QSE_AWK_BINOP_MOD,
|
|
QSE_AWK_BINOP_EXP,
|
|
|
|
QSE_AWK_BINOP_CONCAT,
|
|
QSE_AWK_BINOP_MA,
|
|
QSE_AWK_BINOP_NM
|
|
};
|
|
|
|
enum qse_awk_unrop_type_t
|
|
{
|
|
/* if you change this, you have to change
|
|
* __unrop_str in tree.c accordingly. */
|
|
QSE_AWK_UNROP_PLUS,
|
|
QSE_AWK_UNROP_MINUS,
|
|
QSE_AWK_UNROP_LNOT,
|
|
QSE_AWK_UNROP_BNOT
|
|
};
|
|
|
|
enum qse_awk_incop_type_t
|
|
{
|
|
/* if you change this, you have to change
|
|
* __incop_str in tree.c accordingly. */
|
|
QSE_AWK_INCOP_PLUS,
|
|
QSE_AWK_INCOP_MINUS
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
qse_char_t* qse_awk_rtx_format (
|
|
qse_awk_rtx_t* run,
|
|
qse_str_t* out,
|
|
qse_str_t* fbu,
|
|
const qse_char_t* fmt,
|
|
qse_size_t fmt_len,
|
|
qse_size_t nargs_on_stack,
|
|
qse_awk_nde_t* args,
|
|
qse_size_t* len
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|