qse/ase/stx/class.h

82 lines
2.1 KiB
C
Raw Normal View History

2005-05-22 15:03:20 +00:00
/*
2007-03-22 11:19:28 +00:00
* $Id: class.h,v 1.16 2007-03-22 11:19:28 bacon Exp $
2005-05-22 15:03:20 +00:00
*/
2007-03-22 11:19:28 +00:00
#ifndef _ASE_STX_CLASS_H_
#define _ASE_STX_CLASS_H_
2005-05-22 15:03:20 +00:00
2007-03-22 11:19:28 +00:00
#include <ase/stx/stx.h>
2005-05-22 15:03:20 +00:00
/* definitions for common objects */
2007-03-22 11:19:28 +00:00
#define ASE_STX_CLASS_SIZE 8
#define ASE_STX_CLASS_SPEC 0
#define ASE_STX_CLASS_METHODS 1
#define ASE_STX_CLASS_SUPERCLASS 2
#define ASE_STX_CLASS_SUBCLASSES 3
#define ASE_STX_CLASS_NAME 4
#define ASE_STX_CLASS_VARIABLES 5
#define ASE_STX_CLASS_CLASS_VARIABLES 6
#define ASE_STX_CLASS_POOL_DICTIONARIES 7
2005-05-25 16:44:05 +00:00
2007-03-22 11:19:28 +00:00
#define ASE_STX_METACLASS_SIZE 5
#define ASE_STX_METACLASS_SPEC 0
#define ASE_STX_METACLASS_METHODS 1
#define ASE_STX_METACLASS_SUPERCLASS 2
#define ASE_STX_METACLASS_SUBCLASSES 3
#define ASE_STX_METACLASS_INSTANCE_CLASS 4
2005-05-24 03:28:31 +00:00
2007-03-22 11:19:28 +00:00
#define ASE_STX_SPEC_INDEXABLE_BITS 2
#define ASE_STX_SPEC_INDEXABLE_MASK 3
#define ASE_STX_SPEC_NOT_INDEXABLE 0
#define ASE_STX_SPEC_WORD_INDEXABLE 1
#define ASE_STX_SPEC_BYTE_INDEXABLE 2
#define ASE_STX_SPEC_CHAR_INDEXABLE 3
2005-07-04 16:23:13 +00:00
2007-03-22 11:19:28 +00:00
struct ase_stx_class_t
2005-05-22 15:03:20 +00:00
{
2007-03-22 11:19:28 +00:00
ase_stx_objhdr_t header;
ase_word_t spec; /* indexable: 2, nfields: the rest */
ase_word_t methods;
ase_word_t superclass;
ase_word_t subclasses;
ase_word_t name;
ase_word_t variables;
ase_word_t class_variables;
ase_word_t pool_dictonaries;
2005-05-22 15:03:20 +00:00
};
2007-03-22 11:19:28 +00:00
struct ase_stx_metaclass_t
2005-05-24 03:28:31 +00:00
{
2007-03-22 11:19:28 +00:00
ase_stx_objhdr_t header;
ase_word_t spec;
ase_word_t methods;
ase_word_t superclass;
ase_word_t subclasses;
ase_word_t instance_class;
2005-05-24 03:28:31 +00:00
};
2007-03-22 11:19:28 +00:00
typedef struct ase_stx_class_t ase_stx_class_t;
typedef struct ase_stx_metaclass_t ase_stx_metaclass_t;
2005-05-22 15:03:20 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2007-03-22 11:19:28 +00:00
ase_word_t ase_stx_new_class (ase_stx_t* stx, const ase_char_t* name);
ase_word_t ase_stx_lookup_class (ase_stx_t* stx, const ase_char_t* name);
2005-05-22 15:03:20 +00:00
2007-03-22 11:19:28 +00:00
int ase_stx_get_instance_variable_index (
ase_stx_t* stx, ase_word_t class_index,
const ase_char_t* name, ase_word_t* index);
2005-06-29 16:01:32 +00:00
2007-03-22 11:19:28 +00:00
ase_word_t ase_stx_lookup_class_variable (
ase_stx_t* stx, ase_word_t class_index, const ase_char_t* name);
ase_word_t ase_stx_lookup_method (ase_stx_t* stx,
ase_word_t class_index, const ase_char_t* name, ase_bool_t from_super);
2005-06-29 16:01:32 +00:00
2005-05-22 15:03:20 +00:00
#ifdef __cplusplus
}
#endif
#endif