This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/include/YapDefs.h

424 lines
13 KiB
C
Raw Normal View History

/*************************************************************************
2017-07-30 22:20:12 +01:00
* *
* YAP Prolog @(#)c_interface.h 2.2 *
* Yap Prolog was developed at NCCUP - Universidade do Porto *
* *
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
* *
**************************************************************************
* *
* File: yap_structs.h *
* Last rev: 15/5/2000 *
* mods: *
* comments: Data structures and defines used in the Interface *
* *
*************************************************************************/
2015-01-20 03:00:42 +00:00
2014-05-25 20:48:06 +01:00
#ifndef _YAPDEFS_H
2014-05-25 20:48:06 +01:00
#define _YAPDEFS_H 1
2017-06-12 18:00:47 +01:00
/**
* X_API macro
*
* @brief Linux exports all symbols by default, but WIN32 does
* not. cmake can enable exports, using CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS
*
* @param _WIN32
*
* @return
*/
#if _WIN32
#if defined(_EXPORT_KERNEL)
// __declspec(dllexport)
#define X_API
#else
// __declspec(dllimport)
#define X_API
#endif
// __declspec(dllexport)
#define O_API
// __declspec(dllimport)
#define I_API
#else
#define O_API
#define I_API
#define X_API
#endif
2016-04-05 02:27:33 +01:00
#include <setjmp.h>
2015-06-19 01:30:13 +01:00
#include <stdio.h>
2014-05-25 20:48:06 +01:00
#include <stdlib.h>
2015-01-20 03:00:42 +00:00
/* The YAP main types */
#include "YapTerm.h"
2015-01-27 03:25:56 +00:00
#if HAVE_STDINT_H
#include <stdint.h>
#endif
2016-07-31 16:31:22 +01:00
#if HAVE_INTTYPES_H
#include <inttypes.h>
#endif
2015-01-20 03:00:42 +00:00
/**
FALSE and TRUE are the pre-standard versions,
still widely used.
*/
#ifndef TRUE
2016-04-05 02:27:33 +01:00
#define TRUE true
2015-01-20 03:00:42 +00:00
#endif
#ifndef FALSE
2016-04-05 02:27:33 +01:00
#define FALSE false
2015-01-20 03:00:42 +00:00
#endif
2015-01-27 03:25:56 +00:00
#ifndef YAP_Bool
typedef bool YAP_Bool;
#endif
2015-01-20 03:00:42 +00:00
2017-11-29 13:47:57 +00:00
/**
This term can never be constructed as a valid term, so it is
used as a "BAD" term
*/
#define TermZERO ((Term)0)
2017-11-29 13:47:57 +00:00
#include "YapConfig.h"
2017-11-29 13:47:57 +00:00
typedef void *YAP_PredEntryPtr;
2016-07-31 16:31:22 +01:00
typedef size_t YAP_Arity;
2010-05-10 10:22:18 +01:00
typedef YAP_Term YAP_Module;
2014-06-11 19:36:50 +01:00
typedef YAP_Int YAP_handle_t;
2017-11-29 13:47:57 +00:00
typedef void *YAP_PredEntryPtr;
2014-05-25 20:48:06 +01:00
2016-04-05 02:27:33 +01:00
typedef YAP_Bool (*YAP_UserCPred)(void);
2014-05-25 20:48:06 +01:00
2016-04-05 02:27:33 +01:00
typedef int (*YAP_agc_hook)(void *_Atom);
2014-05-25 20:48:06 +01:00
2013-10-03 11:25:56 +01:00
#include "YapError.h"
2016-04-05 02:27:33 +01:00
#include "../os/encoding.h"
typedef encoding_t YAP_encoding_t;
2017-11-21 15:44:43 +00:00
#if __ANDROID__
#include <android/asset_manager.h>
#include <android/native_activity.h>
#endif
2014-05-25 20:48:06 +01:00
typedef struct YAP_thread_attr_struct {
2016-04-05 02:27:33 +01:00
size_t ssize;
size_t tsize;
size_t sysize;
int (*cancel)(int thread);
YAP_Term egoal, alias;
2014-05-25 20:48:06 +01:00
} YAP_thread_attr;
2014-06-11 19:36:50 +01:00
#ifdef YAP_H
#include <threads.h>
#endif
2014-05-25 20:48:06 +01:00
2016-07-31 16:31:22 +01:00
typedef enum {
YAP_BIN = 0x0001,
YAP_TEXT = 0x0002,
YAP_SAVED_STATE = 0x0004,
YAP_OBJ = 0x0008,
YAP_PL = 0x0010,
2018-02-07 21:48:37 +00:00
YAP_BOOT_PL = 0x0030,
2016-07-31 16:31:22 +01:00
YAP_QLY = 0x0040,
YAP_EXE = 0x0080,
2017-12-05 15:14:57 +00:00
YAP_FOUND_BOOT_ERROR = 0x0100,
YAP_DIR = 0x0200
} YAP_file_type_t;
#define YAP_ANY_FILE (0x00ff)
2011-10-27 11:38:22 +01:00
typedef enum {
YAP_TAG_ATT = 0x1,
YAP_TAG_UNBOUND = 0x2,
YAP_TAG_REF = 0x4,
YAP_TAG_PAIR = 0x8,
YAP_TAG_ATOM = 0x10,
YAP_TAG_INT = 0x20,
YAP_TAG_LONG_INT = 0x40,
YAP_TAG_BIG_INT = 0x80,
YAP_TAG_RATIONAL = 0x100,
YAP_TAG_FLOAT = 0x200,
YAP_TAG_OPAQUE = 0x400,
YAP_TAG_APPL = 0x800,
2016-07-31 16:31:22 +01:00
YAP_TAG_DBREF = 0x1000,
YAP_TAG_STRING = 0x2000,
YAP_TAG_ARRAY = 0x4000
2011-10-27 11:38:22 +01:00
} YAP_tag_t;
2016-04-05 02:27:33 +01:00
#define YAP_BOOT_FROM_SAVED_CODE 1
#define YAP_BOOT_FROM_SAVED_STACKS 2
2016-04-05 02:27:33 +01:00
#define YAP_BOOT_ERROR -1
#define YAP_WRITE_QUOTED 1
#define YAP_WRITE_IGNORE_OPS 2
#define YAP_WRITE_HANDLE_VARS 4
#define YAP_WRITE_USE_PORTRAY 8
#define YAP_WRITE_HANDLE_CYCLES 0x20
#define YAP_WRITE_BACKQUOTE_STRING 0x80
#define YAP_WRITE_ATTVAR_NONE 0x100
#define YAP_WRITE_ATTVAR_DOTS 0x200
#define YAP_WRITE_ATTVAR_PORTRAY 0x400
#define YAP_WRITE_BLOB_PORTRAY 0x800
#define YAP_CONSULT_MODE 0
#define YAP_RECONSULT_MODE 1
#define YAP_BOOT_MODE 2
2018-02-07 21:48:37 +00:00
X_API YAP_file_type_t Yap_InitDefaults(void *init_args, char saved_state[],
int Argc, char *Argv[]);
2017-11-29 13:47:57 +00:00
2014-04-29 18:17:23 +01:00
typedef struct yap_boot_params {
2018-02-07 21:48:37 +00:00
//> boot type as suggested by the user
YAP_file_type_t boot_file_type;
//> how files are organised: NULL is GNU/Linux way
// const char *directory_structure;
//> if NON-NULL, set value for Yap_ROOTDIR
const char *ROOTDIR;
//> if NON-NULL, location of yaap, sets Yap_BINDIR
const char *BINDIR;
2018-02-07 21:48:37 +00:00
//> if NON-NULL, location of libYap, sets Yap_LIBDIR
const char *LIBDIR;
2018-02-07 21:48:37 +00:00
//> if NON-NULL, architecture independent files, sets Yap_SHAREDIR
const char *SHAREDIR;
2018-02-07 21:48:37 +00:00
//> if NON-NULL, include files, sets Yap_INCLUDEDIR
const char *INCLUDEDIR;
2018-02-07 21:48:37 +00:00
//> if NON-NULL, Prolog DLL location, sets Yap_DLLDIR
const char *DLLDIR;
2018-02-07 21:48:37 +00:00
//> if NON-NULL, Prolog library, sets Yap_DLLDIR
const char *PLDIR;
//> if NON-NULL, Prolog library, sets Yap_COMMONSDIR
const char *COMMONSDIR;
2018-02-25 00:29:08 +00:00
//> if NON-NULL, name for a Prolog file to use when booting at run-time
const char *BOOTFILE;
2018-02-25 00:29:08 +00:00
//> if NON-NULL, name for a Prolog file to use when booting at compile-time
const char *BOOTSTRAP;
2017-05-27 22:54:00 +01:00
//> if NON-NULL, path where we can find the saved state
2018-02-25 00:29:08 +00:00
const char *INPUT_STARTUP;
2018-02-07 21:48:37 +00:00
//> bootstrapping mode: YAP is not properly installed
bool install;
//> generats a saved space at this path
const char *OUTPUT_STARTUP;
2017-05-27 22:54:00 +01:00
//> if NON-0, minimal size for Heap or Code Area
2016-07-31 16:31:22 +01:00
size_t HeapSize;
2017-05-27 22:54:00 +01:00
//> if NON-0, maximal size for Heap or Code Area
2016-07-31 16:31:22 +01:00
size_t MaxHeapSize;
2017-05-27 22:54:00 +01:00
//> if NON-0, minimal size for Local+Global Stack
2016-07-31 16:31:22 +01:00
size_t StackSize;
2017-05-27 22:54:00 +01:00
//> if NON-0, maximal size for Local+Global Stack
2016-07-31 16:31:22 +01:00
size_t MaxStackSize;
2017-07-30 22:20:12 +01:00
//*> deprecated
2016-07-31 16:31:22 +01:00
size_t MaxGlobalSize;
2017-05-27 22:54:00 +01:00
//> if NON-0, minimal size for Trail
2016-07-31 16:31:22 +01:00
size_t TrailSize;
2017-05-02 07:42:21 +01:00
//> if NON-0, maximal size for Trail
2016-07-31 16:31:22 +01:00
size_t MaxTrailSize;
2017-05-27 22:54:00 +01:00
//> if NON-0, minimal size for AttributeVarStack
2016-07-31 16:31:22 +01:00
size_t AttsSize;
2017-05-27 22:54:00 +01:00
//> if NON-0, maximal size for AttributeVarStack
2016-07-31 16:31:22 +01:00
size_t MaxAttsSize;
2017-05-27 22:54:00 +01:00
//> if NON-NULL, name for a Prolog file to use when initializing
const char *YapPrologInitGoal;
2017-05-27 22:54:00 +01:00
//> if NON-NULL, name for a Prolog file to consult before entering top-level
2018-01-18 14:47:27 +00:00
const char *PrologRCFile;
2017-05-27 22:54:00 +01:00
//> if NON-NULL, a goal to run before top-level
2018-01-18 14:47:27 +00:00
const char *PrologGoal;
2017-05-27 22:54:00 +01:00
//> if NON-NULL, a goal to run as top-level
2018-01-18 14:47:27 +00:00
const char *PrologTopLevelGoal;
2017-05-27 22:54:00 +01:00
//> if NON-NULL, a path to extend file-search-path
2018-01-18 14:47:27 +00:00
const char *PrologAddPath;
2017-05-27 22:54:00 +01:00
//> if previous NON-NULL and TRUE, halt after consulting that file
2018-03-14 00:41:05 +00:00
bool HaltAfterBoot;
2017-05-27 22:54:00 +01:00
//> ignore .yaprc, .prolog.ini, etc. files.
2016-04-12 16:22:53 +01:00
bool FastBoot;
2017-05-27 22:54:00 +01:00
//> the next field only interest YAPTAB
//> if NON-0, maximum size for Table Space
2016-07-31 16:31:22 +01:00
size_t MaxTableSpaceSize;
/* the next three fields only interest YAPOR, but we keep them so that
users don't need to recompile DLL in order to use YAPOR */
2017-05-27 22:54:00 +01:00
//> if NON-0, number of workers we want to have (default=1)
2009-08-20 02:23:52 +01:00
unsigned long int NumberWorkers;
2017-05-27 22:54:00 +01:00
//> if NON-0, manage the inner scheduler loop (default = 10)
2009-08-20 02:23:52 +01:00
unsigned long int SchedulerLoop;
2017-05-27 22:54:00 +01:00
//> if NON-0, say how long to keep nodes (default = 3)
2009-08-20 02:23:52 +01:00
unsigned long int DelayedReleaseLoad;
2017-05-27 22:54:00 +01:00
//> end of YAPOR fields
2016-11-24 04:35:39 +00:00
/* whether Prolog should handle interrupts. Note that
interrupts will always be disabled in embedded mode. */
bool PrologCannotHandleInterrupts;
2017-05-27 22:54:00 +01:00
//> flag for JIT mode
2009-04-08 00:46:34 +01:00
int ExecutionMode;
2017-05-27 22:54:00 +01:00
//> number of arguments that Prolog will see
int Argc;
2017-05-27 22:54:00 +01:00
//> array of arguments as seen by Prolog
char **Argv;
2017-05-27 22:54:00 +01:00
//> embedded in some other system: no signals, readline, etc
2016-10-20 04:38:17 +01:00
bool Embedded;
2017-05-27 22:54:00 +01:00
//> QuietMode
int QuietMode;
2017-05-27 22:54:00 +01:00
//> 0, maintain default, > 0 use fd-1, < 0 close
int inp, out, err;
2017-11-21 15:44:43 +00:00
#if __ANDROID__
2018-02-07 21:48:37 +00:00
//> android asset support
AAssetManager *assetManager;
2017-11-21 15:44:43 +00:00
#endif
2017-05-27 22:54:00 +01:00
/* support nf's ypp preprocessor code */
2012-06-22 09:56:01 +01:00
#define YAP_MAX_YPP_DEFS 100
char *def_var[YAP_MAX_YPP_DEFS];
char *def_value[YAP_MAX_YPP_DEFS];
2016-04-05 02:27:33 +01:00
int def_c;
2018-02-07 21:48:37 +00:00
/* End preprocessor code */
2012-06-22 09:56:01 +01:00
#ifdef MYDDAS_MYSQL
2017-05-27 22:54:00 +01:00
//> If any myddas option was given
short myddas;
2017-05-27 22:54:00 +01:00
//> MYDDAS Fields
char *myddas_user;
char *myddas_pass;
char *myddas_db;
char *myddas_host;
#endif
/* errornumber */
int ErrorNo;
2017-05-27 22:54:00 +01:00
//> errorstring
char *ErrorCause;
} YAP_init_args;
2015-04-13 13:28:17 +01:00
/* this should be opaque to the user */
typedef struct {
2018-05-24 12:00:10 +01:00
unsigned long b, b0; //> choice-point at entry
2016-04-05 02:27:33 +01:00
YAP_handle_t CurSlot; //> variables at entry
YAP_handle_t EndSlot; //> variables at successful execution
struct yami *p; //> Program Counter at entry
struct yami *cp; //> Continuation PC at entry
2018-05-26 00:22:27 +01:00
int lvl;
unsigned long tr, h;
} YAP_dogoalinfo;
2015-04-13 13:28:17 +01:00
// query manipulation support
typedef struct open_query_struct {
int q_open;
int q_state;
YAP_handle_t q_g;
struct pred_entry *q_pe;
2016-04-05 02:27:33 +01:00
struct yami *q_p, *q_cp;
2015-04-13 13:28:17 +01:00
jmp_buf q_env;
int q_flags;
YAP_dogoalinfo q_h;
struct open_query_struct *oq;
} YAP_openQuery;
2016-04-05 02:27:33 +01:00
typedef void (*YAP_halt_hook)(int exit_code, void *closure);
2017-07-30 22:20:12 +01:00
/** Interface to opaque variables */
/* each type has a tag */
2011-07-27 16:50:14 +01:00
typedef YAP_Int YAP_opaque_tag_t;
2017-09-21 09:47:21 +01:00
typedef YAP_Bool (*YAP_Opaque_CallOnFail)(YAP_Term);
typedef YAP_Bool (*YAP_Opaque_CallOnCut)(YAP_Term);
2016-04-05 02:27:33 +01:00
typedef YAP_Bool (*YAP_Opaque_CallOnWrite)(FILE *, YAP_opaque_tag_t, void *,
int);
typedef YAP_Int (*YAP_Opaque_CallOnGCMark)(YAP_opaque_tag_t, void *, YAP_Term *,
YAP_Int);
typedef YAP_Bool (*YAP_Opaque_CallOnGCRelocate)(YAP_opaque_tag_t, void *,
YAP_Term *, YAP_Int);
2017-07-30 22:20:12 +01:00
/// opaque variables can interact with the system
typedef struct YAP_opaque_handler_struct {
2017-07-30 22:20:12 +01:00
YAP_Opaque_CallOnCut cut_handler; //< called at cut, which may be a forward
2018-02-07 21:48:37 +00:00
// cut or an exception.
2017-07-30 22:20:12 +01:00
YAP_Opaque_CallOnFail
fail_handler; //< called at exit, it can be used to cleanup resources
YAP_Opaque_CallOnWrite write_handler; //< text representation
YAP_Opaque_CallOnGCMark
mark_handler; //< useful if you include pointers to stack
YAP_Opaque_CallOnGCRelocate
relocate_handler; //< useful if you include pointers to stack
} YAP_opaque_handler_t;
2017-07-30 22:20:12 +01:00
extern YAP_Opaque_CallOnWrite Yap_blob_write_handler_from_slot(YAP_Int slot);
extern YAP_Opaque_CallOnGCMark Yap_blob_gc_mark_handler(YAP_Term t);
extern YAP_Opaque_CallOnGCRelocate Yap_blob_gc_relocate_handler(YAP_Term t);
extern YAP_Int Yap_blob_tag_from_slot(YAP_Int slot);
extern void *Yap_blob_info_from_slot(YAP_Int slot);
2009-04-08 00:46:34 +01:00
/********* execution mode ***********************/
2016-04-05 02:27:33 +01:00
typedef enum {
YAPC_INTERPRETED, /* interpreted */
YAPC_MIXED_MODE_USER, /* mixed mode only for user predicates */
YAPC_MIXED_MODE_ALL, /* mixed mode for all predicates */
YAPC_COMPILE_USER, /* compile all user predicates*/
YAPC_COMPILE_ALL /* compile all predicates */
} yapc_exec_mode;
2009-04-08 00:46:34 +01:00
2015-06-19 01:30:13 +01:00
/** Stream Modes: */
typedef enum stream_f {
2016-04-05 02:27:33 +01:00
Free_Stream_f = 0x000001, /**< Free YAP Stream */
Input_Stream_f = 0x000002, /**< Input Stream */
Output_Stream_f = 0x000004, /**< Output Stream in Truncate Mode */
Append_Stream_f = 0x000008, /**< Output Stream in Append Mod */
Eof_Stream_f = 0x000010, /**< Stream found an EOF */
Null_Stream_f = 0x000020, /**< Stream is /dev/null, or equivant */
Tty_Stream_f = 0x000040, /**< Stream is a terminal */
Socket_Stream_f = 0x000080, /**< Socket Stream */
Binary_Stream_f = 0x000100, /**< Stream is not eof */
Eof_Error_Stream_f =
0x000200, /**< Stream should generate error on trying to read after EOF */
Reset_Eof_Stream_f =
0x000400, /**< Stream should be reset on findind an EO (C-D and console.*/
Past_Eof_Stream_f = 0x000800, /**< Read EOF from stream */
Push_Eof_Stream_f = 0x001000, /**< keep on sending EOFs */
Seekable_Stream_f =
0x002000, /**< we can jump around the stream (std regular files) */
Promptable_Stream_f = 0x004000, /**< Interactive line-by-line stream */
Client_Socket_Stream_f = 0x008000, /**< socket in client mode */
Server_Socket_Stream_f = 0x010000, /**< socket in server mode */
InMemory_Stream_f = 0x020000, /**< buffer */
Pipe_Stream_f = 0x040000, /**< FIFO buffer */
Popen_Stream_f = 0x080000, /**< popen open, pipes mosylyn */
User_Stream_f = 0x100000, /**< usually user_ipiy */
HAS_BOM_f = 0x200000, /**< media for streamhas a BOM mar. */
RepError_Prolog_f =
0x400000, /**< handle representation error as Prolog terms */
RepError_Xml_f = 0x800000, /**< handle representation error as XML objects */
DoNotCloseOnAbort_Stream_f =
0x1000000, /**< do not close the stream after an abort event */
Readline_Stream_f = 0x2000000, /**< the stream is a readline stream */
FreeOnClose_Stream_f =
2018-05-14 16:03:02 +01:00
0x4000000, /**< the stream buffer should be releaed on close */
CloseOnException_Stream_f =
0x8000000 /**< the stream closed by Yap_Error and friends */
2015-06-19 01:30:13 +01:00
} estream_f;
typedef uint64_t stream_flags_t;
2010-08-31 04:25:56 +01:00
/********* YAP C-Flags ***********************/
2016-04-05 02:27:33 +01:00
typedef enum {
YAPC_ENABLE_GC, /* enable or disable garbage collection */
YAPC_ENABLE_AGC /* enable or disable atom garbage collection */
} yap_flag_gc_t;
2010-08-31 04:25:56 +01:00
2014-09-22 18:13:35 +01:00
typedef enum yap_enum_reset_t {
YAP_EXEC_ABSMI = 0,
YAP_FULL_RESET = 1,
YAP_RESET_FROM_RESTORE = 3
} yap_reset_t;
2014-06-11 19:36:50 +01:00
2016-07-31 16:31:22 +01:00
typedef bool (*YAP_ModInit_t)(void);
typedef struct {
YAP_ModInit_t f;
const char *s;
} YAP_delaymodule_t;
2018-01-18 14:47:27 +00:00
#endif /* _YAPDEFS_H */