qse/ase/lsp/lsp.h

130 lines
2.7 KiB
C
Raw Normal View History

2005-02-04 15:39:11 +00:00
/*
2007-03-06 14:58:00 +00:00
* $Id: lsp.h,v 1.42 2007-03-06 14:58:00 bacon Exp $
2007-02-03 10:52:36 +00:00
*
* {License}
2005-02-04 15:39:11 +00:00
*/
2006-10-24 04:22:40 +00:00
#ifndef _ASE_LSP_LSP_H_
#define _ASE_LSP_LSP_H_
2005-09-17 17:50:45 +00:00
2007-03-06 14:16:53 +00:00
#include <ase/cmn/types.h>
#include <ase/cmn/macros.h>
2006-10-23 14:42:38 +00:00
2006-10-24 04:22:40 +00:00
typedef struct ase_lsp_t ase_lsp_t;
typedef struct ase_lsp_obj_t ase_lsp_obj_t;
2007-02-01 08:52:10 +00:00
typedef struct ase_lsp_prmfns_t ase_lsp_prmfns_t;
2006-10-23 14:42:38 +00:00
2006-10-24 04:22:40 +00:00
typedef ase_ssize_t (*ase_lsp_io_t) (
int cmd, void* arg, ase_char_t* data, ase_size_t count);
2006-10-23 14:42:38 +00:00
2007-02-24 14:32:44 +00:00
typedef ase_real_t (*ase_lsp_pow_t) (
void* custom, ase_real_t x, ase_real_t y);
2007-02-01 08:52:10 +00:00
typedef int (*ase_lsp_sprintf_t) (
2007-02-24 14:32:44 +00:00
void* custom, ase_char_t* buf, ase_size_t size,
const ase_char_t* fmt, ...);
typedef void (*ase_lsp_dprintf_t) (void* custom, const ase_char_t* fmt, ...);
2007-02-01 08:52:10 +00:00
struct ase_lsp_prmfns_t
2006-10-23 14:42:38 +00:00
{
2007-02-23 10:57:09 +00:00
ase_mmgr_t mmgr;
ase_ccls_t ccls;
2006-10-23 14:42:38 +00:00
/* utilities */
2007-02-23 10:57:09 +00:00
struct
{
ase_lsp_sprintf_t sprintf;
ase_lsp_dprintf_t dprintf;
void* custom_data;
} misc;
2006-10-23 14:42:38 +00:00
};
/* io function commands */
enum
{
2006-10-24 04:22:40 +00:00
ASE_LSP_IO_OPEN = 0,
ASE_LSP_IO_CLOSE = 1,
ASE_LSP_IO_READ = 2,
ASE_LSP_IO_WRITE = 3
2006-10-23 14:42:38 +00:00
};
2005-02-04 15:39:11 +00:00
2006-10-23 14:42:38 +00:00
/* option code */
enum
{
2006-10-24 04:22:40 +00:00
ASE_LSP_UNDEFSYMBOL = (1 << 0)
2006-10-23 14:42:38 +00:00
};
2005-02-04 15:39:11 +00:00
2006-10-23 14:42:38 +00:00
/* error code */
2005-09-18 08:10:50 +00:00
enum
{
2006-10-24 04:22:40 +00:00
ASE_LSP_ENOERR,
ASE_LSP_ENOMEM,
2007-02-03 10:52:36 +00:00
ASE_LSP_EEXIT,
ASE_LSP_EEND,
2007-02-10 13:52:41 +00:00
ASE_LSP_EENDSTR,
2007-02-11 07:36:55 +00:00
ASE_LSP_ENOINP,
ASE_LSP_EINPUT,
ASE_LSP_ENOOUTP,
ASE_LSP_EOUTPUT,
2007-02-03 10:52:36 +00:00
ASE_LSP_ESYNTAX,
2007-02-11 07:36:55 +00:00
ASE_LSP_ERPAREN,
2006-10-30 03:34:41 +00:00
ASE_LSP_EARGBAD,
ASE_LSP_EARGFEW,
ASE_LSP_EARGMANY,
2007-02-11 07:36:55 +00:00
ASE_LSP_EUNDEFFN,
ASE_LSP_EBADFN,
2007-02-10 13:52:41 +00:00
ASE_LSP_EDUPFML,
2007-02-03 10:52:36 +00:00
ASE_LSP_EBADSYM,
2007-02-11 07:36:55 +00:00
ASE_LSP_EUNDEFSYM,
2007-02-03 10:52:36 +00:00
ASE_LSP_EEMPBDY,
2006-10-30 11:26:57 +00:00
ASE_LSP_EVALBAD,
2007-02-03 10:52:36 +00:00
ASE_LSP_EDIVBY0
2005-09-18 10:18:35 +00:00
};
2006-10-24 04:22:40 +00:00
typedef ase_lsp_obj_t* (*ase_lsp_prim_t) (ase_lsp_t* lsp, ase_lsp_obj_t* obj);
2005-09-19 03:05:37 +00:00
2005-02-04 15:39:11 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2006-10-24 04:22:40 +00:00
ase_lsp_t* ase_lsp_open (
2007-02-01 08:52:10 +00:00
const ase_lsp_prmfns_t* prmfns,
2006-10-24 04:22:40 +00:00
ase_size_t mem_ubound, ase_size_t mem_ubound_inc);
2005-09-18 10:18:35 +00:00
2006-10-24 04:22:40 +00:00
void ase_lsp_close (ase_lsp_t* lsp);
2005-09-17 17:42:21 +00:00
2007-02-11 07:36:55 +00:00
void ase_lsp_geterror (
ase_lsp_t* lsp, int* errnum, const ase_char_t** errmsg);
void ase_lsp_seterror (
ase_lsp_t* lsp, int errnum,
const ase_char_t** errarg, ase_size_t argcnt);
2005-02-04 15:39:11 +00:00
2007-02-11 08:30:18 +00:00
int ase_lsp_attinput (ase_lsp_t* lsp, ase_lsp_io_t input, void* arg);
int ase_lsp_detinput (ase_lsp_t* lsp);
2005-09-18 10:18:35 +00:00
2007-02-11 08:30:18 +00:00
int ase_lsp_attoutput (ase_lsp_t* lsp, ase_lsp_io_t output, void* arg);
int ase_lsp_detoutput (ase_lsp_t* lsp);
2005-09-18 10:18:35 +00:00
2006-10-24 04:22:40 +00:00
ase_lsp_obj_t* ase_lsp_read (ase_lsp_t* lsp);
ase_lsp_obj_t* ase_lsp_eval (ase_lsp_t* lsp, ase_lsp_obj_t* obj);
int ase_lsp_print (ase_lsp_t* lsp, const ase_lsp_obj_t* obj);
2005-02-04 15:39:11 +00:00
2006-10-29 13:00:39 +00:00
int ase_lsp_addprim (
ase_lsp_t* lsp, const ase_char_t* name, ase_size_t name_len,
ase_lsp_prim_t prim, ase_size_t min_args, ase_size_t max_args);
int ase_lsp_removeprim (ase_lsp_t* lsp, const ase_char_t* name);
2005-09-18 14:05:16 +00:00
2006-10-26 09:31:28 +00:00
/* abort function for assertion. use ASE_LSP_ASSERT instead */
int ase_lsp_assertfail (ase_lsp_t* lsp,
2006-10-30 14:31:37 +00:00
const ase_char_t* expr, const ase_char_t* desc,
const ase_char_t* file, int line);
2006-10-26 09:31:28 +00:00
2006-10-23 10:57:59 +00:00
2005-02-04 15:39:11 +00:00
#ifdef __cplusplus
}
#endif
#endif