88 lines
2.2 KiB
C
88 lines
2.2 KiB
C
|
/*
|
||
|
* $Id: lsp_i.h,v 1.3 2007/04/30 06:09:46 bacon Exp $
|
||
|
*
|
||
|
* {License}
|
||
|
*/
|
||
|
|
||
|
#ifndef _ASE_LSP_LSPI_H_
|
||
|
#define _ASE_LSP_LSPI_H_
|
||
|
|
||
|
#include <ase/cmn/mem.h>
|
||
|
#include <ase/cmn/str.h>
|
||
|
|
||
|
#include <ase/lsp/lsp.h>
|
||
|
#include <ase/lsp/env.h>
|
||
|
#include <ase/lsp/obj.h>
|
||
|
#include <ase/lsp/mem.h>
|
||
|
#include <ase/lsp/misc.h>
|
||
|
#include <ase/lsp/prim.h>
|
||
|
#include <ase/lsp/name.h>
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#pragma warning (disable: 4996)
|
||
|
#endif
|
||
|
|
||
|
#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
|
||
|
#define _CRTDBG_MAP_ALLOC
|
||
|
#include <crtdbg.h>
|
||
|
|
||
|
#define ASE_LSP_MALLOC(lsp,size) malloc (size)
|
||
|
#define ASE_LSP_REALLOC(lsp,ptr,size) realloc (ptr, size)
|
||
|
#define ASE_LSP_FREE(lsp,ptr) free (ptr)
|
||
|
#else
|
||
|
#define ASE_LSP_MALLOC(lsp,size) ASE_MALLOC(&(lsp)->prmfns.mmgr,size)
|
||
|
#define ASE_LSP_REALLOC(lsp,ptr,size) ASE_REALLOC(&(lsp)->prmfns.mmgr,ptr,size)
|
||
|
#define ASE_LSP_FREE(lsp,ptr) ASE_FREE(&(lsp)->prmfns.mmgr,ptr)
|
||
|
#endif
|
||
|
|
||
|
#define ASE_LSP_ISUPPER(lsp,c) ASE_ISUPPER(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISLOWER(lsp,c) ASE_ISLOWER(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISALPHA(lsp,c) ASE_ISALPHA(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISDIGIT(lsp,c) ASE_ISDIGIT(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISXDIGIT(lsp,c) ASE_ISXDIGIT(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISALNUM(lsp,c) ASE_ISALNUM(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISSPACE(lsp,c) ASE_ISSPACE(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISPRINT(lsp,c) ASE_ISPRINT(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISGRAPH(lsp,c) ASE_ISGRAPH(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISCNTRL(lsp,c) ASE_ISCNTRL(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_ISPUNCT(lsp,c) ASE_ISPUNCT(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_TOUPPER(lsp,c) ASE_TOUPPER(&(lsp)->prmfns.ccls,c)
|
||
|
#define ASE_LSP_TOLOWER(lsp,c) ASE_TOLOWER(&(lsp)->prmfns.ccls,c)
|
||
|
|
||
|
struct ase_lsp_t
|
||
|
{
|
||
|
ase_lsp_prmfns_t prmfns;
|
||
|
|
||
|
/* error */
|
||
|
int errnum;
|
||
|
ase_char_t errmsg[256];
|
||
|
|
||
|
/* options */
|
||
|
int opt_undef_symbol;
|
||
|
|
||
|
/* for read */
|
||
|
ase_cint_t curc;
|
||
|
struct
|
||
|
{
|
||
|
int type;
|
||
|
ase_long_t ival;
|
||
|
ase_real_t rval;
|
||
|
ase_lsp_name_t name;
|
||
|
} token;
|
||
|
|
||
|
/* io functions */
|
||
|
ase_lsp_io_t input_func;
|
||
|
ase_lsp_io_t output_func;
|
||
|
void* input_arg;
|
||
|
void* output_arg;
|
||
|
|
||
|
/* security options */
|
||
|
ase_size_t max_eval_depth;
|
||
|
ase_size_t cur_eval_depth;
|
||
|
|
||
|
/* memory manager */
|
||
|
ase_lsp_mem_t* mem;
|
||
|
};
|
||
|
|
||
|
#endif
|