2005-05-27 23:27:59 +01:00
|
|
|
/*************************************************************************
|
|
|
|
* *
|
|
|
|
* YAP Prolog %W% %G%
|
|
|
|
* *
|
|
|
|
* Yap Prolog was developed at NCCUP - Universidade do Porto *
|
|
|
|
* *
|
|
|
|
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
|
|
|
|
* *
|
|
|
|
**************************************************************************
|
|
|
|
* *
|
|
|
|
* File: Atoms.h.m4 *
|
|
|
|
* Last rev: 19/2/88 *
|
|
|
|
* mods: *
|
|
|
|
* comments: atom properties header file for YAP *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
|
2009-03-13 12:06:57 +00:00
|
|
|
#ifndef ATOMS_H
|
|
|
|
#define ATOMS_H 1
|
|
|
|
|
2014-05-25 20:50:07 +01:00
|
|
|
#ifndef EXTERN
|
2005-05-27 23:27:59 +01:00
|
|
|
#ifndef ADTDEFS_C
|
2016-07-31 16:23:19 +01:00
|
|
|
#define EXTERN static
|
2005-05-27 23:27:59 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN
|
|
|
|
#endif
|
2014-05-25 20:50:07 +01:00
|
|
|
#endif
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2006-12-13 16:10:26 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
|
2016-07-31 16:23:19 +01:00
|
|
|
typedef struct atom_blob {
|
2010-12-02 11:49:58 +00:00
|
|
|
size_t length;
|
|
|
|
char data[MIN_ARRAY];
|
|
|
|
} atom_blob_t;
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
/********* operations for atoms ****************************************/
|
|
|
|
|
|
|
|
/* Atoms are assumed to be uniquely represented by an OFFSET and to have
|
|
|
|
associated with them a struct of type AtomEntry
|
|
|
|
The two functions
|
2016-07-31 16:23:19 +01:00
|
|
|
RepAtom : Atom -> *AtomEntry
|
|
|
|
AbsAtom : *AtomEntry -> Atom
|
2005-05-27 23:27:59 +01:00
|
|
|
are used to encapsulate the implementation of atoms
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct AtomEntryStruct *Atom;
|
|
|
|
typedef struct PropEntryStruct *Prop;
|
|
|
|
|
|
|
|
/* I can only define the structure after I define the actual atoms */
|
|
|
|
|
|
|
|
/* atom structure */
|
2016-07-31 16:23:19 +01:00
|
|
|
typedef struct AtomEntryStruct {
|
|
|
|
Atom NextOfAE; /* used to build hash chains */
|
|
|
|
Prop PropsOfAE; /* property list for this atom */
|
2005-05-27 23:27:59 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
rwlock_t ARWLock;
|
|
|
|
#endif
|
|
|
|
|
2006-12-13 16:10:26 +00:00
|
|
|
union {
|
2016-07-31 16:23:19 +01:00
|
|
|
unsigned char uUStrOfAE[MIN_ARRAY]; /* representation of atom as a string */
|
|
|
|
char uStrOfAE[MIN_ARRAY]; /* representation of atom as a string */
|
|
|
|
wchar_t uWStrOfAE[MIN_ARRAY]; /* representation of atom as a string */
|
2010-12-02 11:49:58 +00:00
|
|
|
struct atom_blob blob[MIN_ARRAY];
|
2006-12-13 16:10:26 +00:00
|
|
|
} rep;
|
2016-07-31 16:23:19 +01:00
|
|
|
} AtomEntry;
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2015-02-09 01:53:28 +00:00
|
|
|
// compatible with C and C++;
|
2016-07-31 16:23:19 +01:00
|
|
|
typedef struct ExtraAtomEntryStruct {
|
|
|
|
Atom NextOfAE; /* used to build hash chains */
|
|
|
|
Prop PropsOfAE; /* property list for this atom */
|
2015-02-09 01:53:28 +00:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
rwlock_t ARWLock;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
union {
|
2016-07-31 16:23:19 +01:00
|
|
|
unsigned char uUStrOfAE[4]; /* representation of atom as a string */
|
|
|
|
char uStrOfAE[4]; /* representation of atom as a string */
|
|
|
|
wchar_t uWStrOfAE[2]; /* representation of atom as a string */
|
2015-02-13 12:26:08 +00:00
|
|
|
struct atom_blob blob[2];
|
2015-02-09 01:53:28 +00:00
|
|
|
} rep;
|
2016-07-31 16:23:19 +01:00
|
|
|
} ExtraAtomEntry;
|
2015-02-09 01:53:28 +00:00
|
|
|
|
2015-09-21 23:05:36 +01:00
|
|
|
#define UStrOfAE rep.uUStrOfAE
|
2006-12-13 16:10:26 +00:00
|
|
|
#define StrOfAE rep.uStrOfAE
|
|
|
|
#define WStrOfAE rep.uWStrOfAE
|
|
|
|
|
2005-05-27 23:27:59 +01:00
|
|
|
/* Props and Atoms are stored in chains, ending with a NIL */
|
2008-03-25 22:03:14 +00:00
|
|
|
#ifdef USE_OFFSETS
|
2016-07-31 16:23:19 +01:00
|
|
|
#define EndOfPAEntr(P) (Addr(P) == AtomBase)
|
2005-05-27 23:27:59 +01:00
|
|
|
#else
|
2016-07-31 16:23:19 +01:00
|
|
|
#define EndOfPAEntr(P) (Addr(P) == NIL)
|
2005-05-27 23:27:59 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ********************** Properties **********************************/
|
|
|
|
|
2008-03-25 22:03:14 +00:00
|
|
|
#if defined(USE_OFFSETS)
|
2005-05-27 23:27:59 +01:00
|
|
|
#define USE_OFFSETS_IN_PROPS 1
|
|
|
|
#else
|
|
|
|
#define USE_OFFSETS_IN_PROPS 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef SFLAGS PropFlags;
|
|
|
|
|
|
|
|
/* basic property entry structure */
|
2016-07-31 16:23:19 +01:00
|
|
|
typedef struct PropEntryStruct {
|
|
|
|
Prop NextOfPE; /* used to chain properties */
|
|
|
|
PropFlags KindOfPE; /* kind of property */
|
2005-05-27 23:27:59 +01:00
|
|
|
} PropEntry;
|
|
|
|
|
|
|
|
/* ************************* Functors **********************************/
|
|
|
|
|
2016-07-31 16:23:19 +01:00
|
|
|
/* Functor data type
|
|
|
|
abstype Functor = atom # int
|
|
|
|
with MkFunctor(a,n) = ...
|
|
|
|
and NameOfFunctor(f) = ...
|
|
|
|
and ArityOfFunctor(f) = ... */
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2016-07-31 16:23:19 +01:00
|
|
|
#define MaxArity 255
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2016-07-31 16:23:19 +01:00
|
|
|
typedef size_t arity_t;
|
2005-05-27 23:27:59 +01:00
|
|
|
|
2016-07-31 16:23:19 +01:00
|
|
|
#define FunctorProperty ((PropFlags)(0xbb00))
|
2005-05-27 23:27:59 +01:00
|
|
|
|
|
|
|
/* functor property */
|
2016-07-31 16:23:19 +01:00
|
|
|
typedef struct FunctorEntryStruct {
|
|
|
|
Prop NextOfPE; /* used to chain properties */
|
|
|
|
PropFlags KindOfPE; /* kind of property */
|
|
|
|
arity_t ArityOfFE; /* arity of functor */
|
|
|
|
Atom NameOfFE; /* back pointer to owner atom */
|
|
|
|
Prop PropsOfFE; /* pointer to list of properties for this functor */
|
2005-05-27 23:27:59 +01:00
|
|
|
#if defined(YAPOR) || defined(THREADS)
|
|
|
|
rwlock_t FRWLock;
|
|
|
|
#endif
|
|
|
|
} FunctorEntry;
|
|
|
|
|
|
|
|
typedef FunctorEntry *Functor;
|
2009-03-13 12:06:57 +00:00
|
|
|
|
|
|
|
#endif /* ATOMS_H */
|