qse/ase/stx/object.c

155 lines
4.1 KiB
C
Raw Normal View History

2005-05-06 17:18:29 +00:00
/*
2005-05-18 04:01:51 +00:00
* $Id: object.c,v 1.15 2005-05-18 04:01:51 bacon Exp $
2005-05-06 17:18:29 +00:00
*/
#include <xp/stx/object.h>
2005-05-08 07:39:51 +00:00
#include <xp/stx/memory.h>
2005-05-18 04:01:51 +00:00
#include <xp/stx/symbol.h>
2005-05-10 15:15:58 +00:00
#include <xp/stx/hash.h>
2005-05-15 18:37:00 +00:00
#include <xp/stx/misc.h>
2005-05-10 08:21:10 +00:00
#include <xp/bas/assert.h>
2005-05-10 15:15:57 +00:00
#include <xp/bas/stdarg.h>
2005-05-06 17:18:29 +00:00
/* n: number of instance variables */
2005-05-08 11:16:07 +00:00
xp_stx_word_t xp_stx_alloc_object (xp_stx_t* stx, xp_stx_word_t n)
2005-05-06 17:18:29 +00:00
{
2005-05-08 10:31:25 +00:00
xp_stx_word_t idx;
2005-05-06 17:18:29 +00:00
2005-05-08 10:31:25 +00:00
/* bytes to allocidxed =
2005-05-06 17:18:29 +00:00
* number of instance variables * word_size
*/
2005-05-08 10:31:25 +00:00
idx = xp_stx_memory_alloc (&stx->memory,
n * xp_sizeof(xp_stx_word_t) + xp_sizeof(xp_stx_object_t));
if (idx >= stx->memory.capacity) return idx; /* failed */
2005-05-08 07:39:51 +00:00
2005-05-10 08:21:10 +00:00
xp_assert (stx->nil == XP_STX_NIL);
2005-05-08 15:22:45 +00:00
XP_STX_CLASS(stx,idx) = stx->nil;
2005-05-10 08:21:10 +00:00
XP_STX_ACCESS(stx,idx) = (n << 2) | XP_STX_INDEXED;
2005-05-08 15:22:45 +00:00
while (n--) XP_STX_AT(stx,idx,n) = stx->nil;
2005-05-06 17:18:29 +00:00
2005-05-08 10:31:25 +00:00
return idx;
2005-05-06 17:18:29 +00:00
}
2005-05-08 07:39:51 +00:00
/* n: number of bytes */
2005-05-08 11:16:07 +00:00
xp_stx_word_t xp_stx_alloc_byte_object (xp_stx_t* stx, xp_stx_word_t n)
2005-05-06 17:18:29 +00:00
{
2005-05-08 10:31:25 +00:00
xp_stx_word_t idx;
2005-05-06 17:18:29 +00:00
2005-05-08 10:31:25 +00:00
idx = xp_stx_memory_alloc (
&stx->memory, n + xp_sizeof(xp_stx_object_t));
if (idx >= stx->memory.capacity) return idx; /* failed */
2005-05-08 07:39:51 +00:00
2005-05-10 08:21:10 +00:00
xp_assert (stx->nil == XP_STX_NIL);
2005-05-08 15:22:45 +00:00
XP_STX_CLASS(stx,idx) = stx->nil;
2005-05-10 08:21:10 +00:00
XP_STX_ACCESS(stx,idx) = (n << 2) | XP_STX_BYTE_INDEXED;
2005-05-08 15:22:45 +00:00
while (n--) XP_STX_BYTEAT(stx,idx,n) = 0;
2005-05-06 17:18:29 +00:00
2005-05-08 10:31:25 +00:00
return idx;
2005-05-06 17:18:29 +00:00
}
2005-05-10 08:21:10 +00:00
xp_stx_word_t xp_stx_alloc_string_object (
xp_stx_t* stx, const xp_stx_char_t* str)
2005-05-06 17:18:29 +00:00
{
2005-05-08 15:22:45 +00:00
xp_stx_word_t idx, n;
2005-05-06 17:18:29 +00:00
2005-05-15 18:37:00 +00:00
n = xp_stx_strlen(str);
2005-05-08 10:31:25 +00:00
idx = xp_stx_memory_alloc (&stx->memory,
(n + 1) * xp_sizeof(xp_stx_char_t) + xp_sizeof(xp_stx_object_t));
if (idx >= stx->memory.capacity) return idx; /* failed */
2005-05-06 17:18:29 +00:00
2005-05-10 08:21:10 +00:00
xp_assert (stx->nil == XP_STX_NIL);
2005-05-08 15:22:45 +00:00
XP_STX_CLASS(stx,idx) = stx->nil;
2005-05-10 08:21:10 +00:00
XP_STX_ACCESS(stx,idx) = (n << 2) | XP_STX_CHAR_INDEXED;
2005-05-08 15:22:45 +00:00
XP_STX_CHARAT(stx,idx,n) = XP_STX_CHAR('\0');
while (n--) XP_STX_CHARAT(stx,idx,n) = str[n];
2005-05-06 17:18:29 +00:00
2005-05-08 10:31:25 +00:00
return idx;
2005-05-06 17:18:29 +00:00
}
2005-05-08 13:45:51 +00:00
2005-05-10 15:15:57 +00:00
xp_stx_word_t xp_stx_allocn_string_object (xp_stx_t* stx, ...)
{
xp_stx_word_t idx, n = 0;
const xp_stx_char_t* p;
xp_va_list ap;
xp_va_start (ap, stx);
while ((p = xp_va_arg(ap, const xp_stx_char_t*)) != XP_NULL) {
2005-05-15 18:37:00 +00:00
n += xp_stx_strlen(p);
2005-05-10 15:15:57 +00:00
}
2005-05-10 15:15:58 +00:00
xp_va_end (ap);
2005-05-10 15:15:57 +00:00
idx = xp_stx_memory_alloc (&stx->memory,
(n + 1) * xp_sizeof(xp_stx_char_t) + xp_sizeof(xp_stx_object_t));
if (idx >= stx->memory.capacity) return idx; /* failed */
xp_assert (stx->nil == XP_STX_NIL);
XP_STX_CLASS(stx,idx) = stx->nil;
XP_STX_ACCESS(stx,idx) = (n << 2) | XP_STX_CHAR_INDEXED;
XP_STX_CHARAT(stx,idx,n) = XP_STX_CHAR('\0');
xp_va_start (ap, stx);
n = 0;
while ((p = xp_va_arg(ap, const xp_stx_char_t*)) != XP_NULL) {
while (*p != XP_STX_CHAR('\0'))
2005-05-12 15:25:06 +00:00
XP_STX_CHARAT(stx,idx,n++) = *p++;
2005-05-10 15:15:57 +00:00
}
2005-05-10 15:15:58 +00:00
xp_va_end (ap);
2005-05-10 15:15:57 +00:00
return idx;
}
2005-05-10 08:21:10 +00:00
xp_stx_word_t xp_stx_hash_string_object (xp_stx_t* stx, xp_stx_word_t idx)
{
xp_assert (XP_STX_TYPE(stx,idx) == XP_STX_CHAR_INDEXED);
2005-05-15 18:37:00 +00:00
return xp_stx_strxhash (
&XP_STX_CHARAT(stx,idx,0), XP_STX_SIZE(stx,idx));
2005-05-10 16:20:53 +00:00
}
xp_stx_word_t xp_stx_new_class (xp_stx_t* stx, const xp_stx_char_t* name)
2005-05-10 12:00:43 +00:00
{
xp_stx_word_t meta, class;
2005-05-18 04:01:51 +00:00
xp_stx_word_t /*meta_name,*/ class_name;
2005-05-10 12:00:43 +00:00
2005-05-18 04:01:51 +00:00
meta = xp_stx_alloc_object (stx, XP_STX_CLASS_SIZE);
2005-05-10 12:00:43 +00:00
XP_STX_CLASS(stx,meta) = stx->class_metaclass;
XP_STX_AT(stx,meta,XP_STX_CLASS_SIZE) =
2005-05-18 04:01:51 +00:00
XP_STX_TO_SMALLINT(XP_STX_CLASS_SIZE);
2005-05-10 12:00:43 +00:00
2005-05-18 04:01:51 +00:00
class = xp_stx_alloc_object (stx, XP_STX_CLASS_SIZE);
2005-05-10 12:00:43 +00:00
XP_STX_CLASS(stx,class) = meta;
2005-05-18 04:01:51 +00:00
/*
2005-05-12 15:25:06 +00:00
meta_name = xp_stx_new_symbol_pp (
stx, name, XP_STX_TEXT(""), XP_STX_TEXT(" class"));
2005-05-10 12:00:43 +00:00
XP_STX_AT(stx,meta,XP_STX_CLASS_NAME) = meta_name;
2005-05-18 04:01:51 +00:00
*/
2005-05-12 15:25:06 +00:00
class_name = xp_stx_new_symbol (stx, name);
2005-05-10 12:00:43 +00:00
XP_STX_AT(stx,class,XP_STX_CLASS_NAME) = class_name;
2005-05-18 04:01:51 +00:00
/*
2005-05-17 16:18:56 +00:00
xp_stx_hash_insert (stx, stx->smalltalk,
2005-05-10 12:00:43 +00:00
xp_stx_hash_string_object(stx, meta_name),
meta_name, meta);
2005-05-18 04:01:51 +00:00
*/
2005-05-17 16:18:56 +00:00
xp_stx_hash_insert (stx, stx->smalltalk,
2005-05-10 12:00:43 +00:00
xp_stx_hash_string_object(stx, class_name),
2005-05-12 15:25:06 +00:00
class_name, class);
2005-05-10 12:00:43 +00:00
return class;
}
2005-05-10 08:21:10 +00:00
2005-05-15 18:37:00 +00:00
int xp_stx_lookup_global (
xp_stx_t* stx, xp_stx_word_t key, xp_stx_word_t* value)
{
xp_stx_word_t link;
// TODO: maybe xp_stx_hash_object is required instead of
// xp_stx_hash_string_object.
2005-05-18 04:01:51 +00:00
link = xp_stx_hash_lookup (stx, stx->smalltalk,
2005-05-15 18:37:00 +00:00
xp_stx_hash_string_object(stx,key), key);
if (link == stx->nil) return -1;
2005-05-18 04:01:51 +00:00
*value = XP_STX_AT(stx,link,XP_STX_PAIRLINK_VALUE);
2005-05-15 18:37:00 +00:00
return 0;
}