2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gb.eval.h
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2018-02-12 02:53:46 +01:00
|
|
|
(c) 2000-2017 Benoît Minisini <g4mba5@gmail.com>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
This program 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 General Public License for more details.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GB_EVAL_H
|
|
|
|
#define __GB_EVAL_H
|
|
|
|
|
|
|
|
#include "gambas.h"
|
2018-08-31 15:58:53 +02:00
|
|
|
#include "gbc_read_common.h"
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
/*#define DEBUG*/
|
|
|
|
|
|
|
|
typedef
|
2009-04-05 01:52:47 +02:00
|
|
|
bool (*EVAL_FUNCTION)(const char *, int, GB_VARIANT *);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
typedef
|
2009-04-05 01:52:47 +02:00
|
|
|
void *EVAL_EXPRESSION;
|
|
|
|
|
2019-10-25 15:24:04 +02:00
|
|
|
#define EVAL_COLOR_MAX_LEN 1023
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
typedef
|
2009-04-05 01:52:47 +02:00
|
|
|
struct {
|
2009-12-14 04:45:22 +01:00
|
|
|
unsigned state : 5;
|
2009-04-05 01:52:47 +02:00
|
|
|
unsigned alternate : 1;
|
2009-12-14 04:45:22 +01:00
|
|
|
unsigned len : 10;
|
2009-04-05 01:52:47 +02:00
|
|
|
}
|
|
|
|
EVAL_COLOR;
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
typedef
|
|
|
|
EVAL_COLOR *EVAL_COLOR_ARRAY;
|
|
|
|
|
|
|
|
typedef
|
2009-04-05 01:52:47 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
EVAL_COLOR *color;
|
|
|
|
int len;
|
|
|
|
int proc;
|
2009-07-14 04:24:54 +02:00
|
|
|
int state;
|
2009-04-05 01:52:47 +02:00
|
|
|
}
|
|
|
|
EVAL_ANALYZE;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#define EVAL_NORMAL 0
|
|
|
|
#define EVAL_USE_CONTEXT 1
|
|
|
|
|
|
|
|
enum {
|
2018-08-31 15:58:53 +02:00
|
|
|
RT_DATATYPE = 13,
|
|
|
|
RT_ERROR = 14,
|
|
|
|
RT_HELP = 15,
|
|
|
|
RT_PREPROCESSOR = 16,
|
|
|
|
RT_ESCAPE = 17,
|
|
|
|
RT_LABEL = 18,
|
|
|
|
RT_CONSTANT = 19
|
2009-04-05 01:52:47 +02:00
|
|
|
};
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
typedef
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
HIGHLIGHT_BACKGROUND,
|
|
|
|
HIGHLIGHT_NORMAL,
|
|
|
|
HIGHLIGHT_KEYWORD,
|
|
|
|
HIGHLIGHT_SUBR,
|
|
|
|
HIGHLIGHT_OPERATOR,
|
|
|
|
HIGHLIGHT_SYMBOL,
|
|
|
|
HIGHLIGHT_NUMBER,
|
|
|
|
HIGHLIGHT_STRING,
|
|
|
|
HIGHLIGHT_COMMENT,
|
|
|
|
HIGHLIGHT_BREAKPOINT,
|
|
|
|
HIGHLIGHT_CURRENT,
|
|
|
|
HIGHLIGHT_DATATYPE,
|
|
|
|
HIGHLIGHT_SELECTION,
|
|
|
|
HIGHLIGHT_HIGHLIGHT,
|
|
|
|
HIGHLIGHT_LINE,
|
|
|
|
HIGHLIGHT_ERROR,
|
2009-12-14 04:45:22 +01:00
|
|
|
HIGHLIGHT_HELP,
|
2010-12-18 05:27:59 +01:00
|
|
|
HIGHLIGHT_PREPROCESSOR,
|
2018-08-31 15:58:53 +02:00
|
|
|
HIGHLIGHT_ESCAPE,
|
|
|
|
HIGHLIGHT_LABEL,
|
|
|
|
HIGHLIGHT_CONSTANT,
|
2019-06-29 16:11:51 +02:00
|
|
|
HIGHLIGHT_ALTERNATE,
|
2020-01-20 13:00:16 +01:00
|
|
|
HIGHLIGHT_ADDED,
|
|
|
|
HIGHLIGHT_REMOVED,
|
2007-12-30 17:41:49 +01:00
|
|
|
HIGHLIGHT_NUM_COLOR
|
|
|
|
}
|
|
|
|
HIGHLIGHT_COLOR;
|
|
|
|
|
|
|
|
typedef
|
2009-04-05 01:52:47 +02:00
|
|
|
struct {
|
|
|
|
int version;
|
2009-07-14 04:24:54 +02:00
|
|
|
void (*Analyze)(const char *src, int len, int state, EVAL_ANALYZE *result, bool rewrite);
|
2009-04-05 01:52:47 +02:00
|
|
|
void (*New)(EVAL_EXPRESSION *expr, const char *src, int len);
|
2009-05-27 00:34:39 +02:00
|
|
|
bool (*Compile)(EVAL_EXPRESSION expr, bool assign);
|
2009-04-05 01:52:47 +02:00
|
|
|
GB_VALUE *(*Run)(EVAL_EXPRESSION expr, EVAL_FUNCTION func);
|
|
|
|
void (*Free)(EVAL_EXPRESSION *expr);
|
2009-08-24 16:19:32 +02:00
|
|
|
bool (*GetAssignmentSymbol)(EVAL_EXPRESSION expr, const char **sym, int *len);
|
2009-04-05 01:52:47 +02:00
|
|
|
}
|
|
|
|
EVAL_INTERFACE;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#define EVAL_INTERFACE_VERSION 2
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|