2015-05-08 14:29:35 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
Copyright (c) 2014-2015 Chung, Hyung-Hwan. All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2015-05-07 15:58:04 +00:00
|
|
|
#include "stix-prv.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-05-17 05:02:30 +00:00
|
|
|
#include <string.h>
|
2015-06-04 18:34:37 +00:00
|
|
|
#include <limits.h>
|
2015-10-14 13:25:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
# include <windows.h>
|
|
|
|
# include <tchar.h>
|
|
|
|
# if defined(STIX_HAVE_CFG_H)
|
|
|
|
# include <ltdl.h>
|
|
|
|
# define USE_LTDL
|
|
|
|
# endif
|
|
|
|
#elif defined(__OS2__)
|
|
|
|
# define INCL_DOSMODULEMGR
|
|
|
|
# define INCL_DOSPROCESS
|
|
|
|
# define INCL_DOSERRORS
|
|
|
|
# include <os2.h>
|
|
|
|
#elif defined(__DOS__)
|
|
|
|
/* nothing to include */
|
|
|
|
#else
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <ltdl.h>
|
|
|
|
# define USE_LTDL
|
|
|
|
#endif
|
2015-10-13 14:51:04 +00:00
|
|
|
#include <dlfcn.h>
|
|
|
|
|
2015-10-14 09:06:44 +00:00
|
|
|
#if !defined(STIX_DEFAULT_MODPREFIX)
|
|
|
|
# if defined(_WIN32)
|
|
|
|
# define STIX_DEFAULT_MODPREFIX "stix-"
|
|
|
|
# elif defined(__OS2__)
|
|
|
|
# define STIX_DEFAULT_MODPREFIX "st-"
|
|
|
|
# elif defined(__DOS__)
|
|
|
|
# define STIX_DEFAULT_MODPREFIX "st-"
|
|
|
|
# else
|
|
|
|
# define STIX_DEFAULT_MODPREFIX "libstix-"
|
|
|
|
# endif
|
2015-10-13 14:51:04 +00:00
|
|
|
#endif
|
|
|
|
|
2015-10-14 09:06:44 +00:00
|
|
|
#if !defined(STIX_DEFAULT_MODPOSTFIX)
|
|
|
|
# if defined(_WIN32)
|
|
|
|
# define STIX_DEFAULT_MODPOSTFIX ""
|
|
|
|
# elif defined(__OS2__)
|
|
|
|
# define STIX_DEFAULT_MODPOSTFIX ""
|
|
|
|
# elif defined(__DOS__)
|
|
|
|
# define STIX_DEFAULT_MODPOSTFIX ""
|
|
|
|
# else
|
|
|
|
# define STIX_DEFAULT_MODPOSTFIX ""
|
|
|
|
# endif
|
|
|
|
#endif
|
2015-10-13 14:51:04 +00:00
|
|
|
|
2015-05-15 14:55:12 +00:00
|
|
|
typedef struct xtn_t xtn_t;
|
|
|
|
struct xtn_t
|
|
|
|
{
|
2015-05-16 07:31:16 +00:00
|
|
|
const char* source_path;
|
2015-05-15 14:55:12 +00:00
|
|
|
|
2015-05-16 07:31:16 +00:00
|
|
|
char bchar_buf[1024];
|
|
|
|
stix_size_t bchar_pos;
|
|
|
|
stix_size_t bchar_len;
|
|
|
|
};
|
2015-05-15 14:55:12 +00:00
|
|
|
|
2015-05-07 15:58:04 +00:00
|
|
|
static void* sys_alloc (stix_mmgr_t* mmgr, stix_size_t size)
|
|
|
|
{
|
|
|
|
return malloc (size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void* sys_realloc (stix_mmgr_t* mmgr, void* ptr, stix_size_t size)
|
|
|
|
{
|
|
|
|
return realloc (ptr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sys_free (stix_mmgr_t* mmgr, void* ptr)
|
|
|
|
{
|
|
|
|
free (ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static stix_mmgr_t sys_mmgr =
|
|
|
|
{
|
|
|
|
sys_alloc,
|
|
|
|
sys_realloc,
|
|
|
|
sys_free,
|
|
|
|
STIX_NULL
|
|
|
|
};
|
|
|
|
|
2015-05-15 14:55:12 +00:00
|
|
|
|
2015-10-08 14:26:04 +00:00
|
|
|
static STIX_INLINE stix_ssize_t open_input (stix_t* stix, stix_io_arg_t* arg)
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
|
|
|
if (arg->includer)
|
|
|
|
{
|
|
|
|
/* includee */
|
2015-05-17 05:02:30 +00:00
|
|
|
stix_bch_t bcs[1024]; /* TODO: right buffer size */
|
|
|
|
stix_size_t bcslen = STIX_COUNTOF(bcs);
|
|
|
|
stix_size_t ucslen = ~(stix_size_t)0;
|
2015-05-15 14:55:12 +00:00
|
|
|
|
2015-05-17 05:02:30 +00:00
|
|
|
if (stix_ucstoutf8 (arg->name, &ucslen, bcs, &bcslen) <= -1)
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
2015-05-17 05:02:30 +00:00
|
|
|
stix_seterrnum (stix, STIX_EECERR);
|
2015-05-15 14:55:12 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2015-05-20 14:27:47 +00:00
|
|
|
|
2015-07-03 14:38:37 +00:00
|
|
|
/* TODO: make bcs relative to the includer */
|
|
|
|
|
2015-06-11 13:10:33 +00:00
|
|
|
#if defined(__MSDOS__) || defined(_WIN32) || defined(__OS2__)
|
|
|
|
arg->handle = fopen (bcs, "rb");
|
|
|
|
#else
|
2015-05-20 14:27:47 +00:00
|
|
|
arg->handle = fopen (bcs, "r");
|
2015-06-11 13:10:33 +00:00
|
|
|
#endif
|
2015-05-15 14:55:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* main stream */
|
2015-05-17 05:02:30 +00:00
|
|
|
xtn_t* xtn = stix_getxtn(stix);
|
2015-06-11 13:10:33 +00:00
|
|
|
#if defined(__MSDOS__) || defined(_WIN32) || defined(__OS2__)
|
|
|
|
arg->handle = fopen (xtn->source_path, "rb");
|
|
|
|
#else
|
2015-05-17 05:02:30 +00:00
|
|
|
arg->handle = fopen (xtn->source_path, "r");
|
2015-06-11 13:10:33 +00:00
|
|
|
#endif
|
2015-05-15 14:55:12 +00:00
|
|
|
}
|
2015-05-17 05:02:30 +00:00
|
|
|
|
|
|
|
if (!arg->handle)
|
|
|
|
{
|
|
|
|
stix_seterrnum (stix, STIX_EIOERR);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2015-05-15 14:55:12 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 14:26:04 +00:00
|
|
|
static STIX_INLINE stix_ssize_t read_input (stix_t* stix, stix_io_arg_t* arg)
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
2015-05-16 07:31:16 +00:00
|
|
|
xtn_t* xtn = stix_getxtn(stix);
|
2015-05-17 05:02:30 +00:00
|
|
|
stix_size_t n, bcslen, ucslen, remlen;
|
2015-05-16 07:31:16 +00:00
|
|
|
int x;
|
|
|
|
|
2015-05-15 14:55:12 +00:00
|
|
|
STIX_ASSERT (arg->handle != STIX_NULL);
|
2015-05-16 07:31:16 +00:00
|
|
|
n = fread (&xtn->bchar_buf[xtn->bchar_len], STIX_SIZEOF(xtn->bchar_buf[0]), STIX_COUNTOF(xtn->bchar_buf) - xtn->bchar_len, arg->handle);
|
|
|
|
if (n == 0)
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
2015-05-19 16:26:52 +00:00
|
|
|
if (ferror((FILE*)arg->handle))
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
2015-05-16 07:31:16 +00:00
|
|
|
stix_seterrnum (stix, STIX_EIOERR);
|
|
|
|
return -1;
|
2015-05-15 14:55:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-16 07:31:16 +00:00
|
|
|
xtn->bchar_len += n;
|
|
|
|
bcslen = xtn->bchar_len;
|
2015-05-17 05:02:30 +00:00
|
|
|
ucslen = STIX_COUNTOF(arg->buf);
|
|
|
|
x = stix_utf8toucs (xtn->bchar_buf, &bcslen, arg->buf, &ucslen);
|
|
|
|
if (x <= -1 && ucslen <= 0)
|
2015-05-16 07:31:16 +00:00
|
|
|
{
|
2015-05-17 05:02:30 +00:00
|
|
|
stix_seterrnum (stix, STIX_EECERR);
|
|
|
|
return -1;
|
2015-05-16 07:31:16 +00:00
|
|
|
}
|
2015-05-17 05:02:30 +00:00
|
|
|
|
|
|
|
remlen = xtn->bchar_len - bcslen;
|
|
|
|
if (remlen > 0) memmove (xtn->bchar_buf, &xtn->bchar_buf[bcslen], remlen);
|
|
|
|
xtn->bchar_len = remlen;
|
|
|
|
return ucslen;
|
2015-05-15 14:55:12 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 14:26:04 +00:00
|
|
|
static STIX_INLINE stix_ssize_t close_input (stix_t* stix, stix_io_arg_t* arg)
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
|
|
|
STIX_ASSERT (arg->handle != STIX_NULL);
|
2015-05-19 16:26:52 +00:00
|
|
|
fclose ((FILE*)arg->handle);
|
2015-05-15 14:55:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-08 14:26:04 +00:00
|
|
|
static stix_ssize_t input_handler (stix_t* stix, stix_io_cmd_t cmd, stix_io_arg_t* arg)
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case STIX_IO_OPEN:
|
|
|
|
return open_input (stix, arg);
|
|
|
|
|
|
|
|
case STIX_IO_CLOSE:
|
|
|
|
return close_input (stix, arg);
|
|
|
|
|
|
|
|
case STIX_IO_READ:
|
|
|
|
return read_input (stix, arg);
|
|
|
|
|
|
|
|
default:
|
|
|
|
stix->errnum = STIX_EINTERN;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
static void* mod_open (stix_t* stix, const stix_ooch_t* name)
|
2015-10-13 14:51:04 +00:00
|
|
|
{
|
2015-10-14 13:25:36 +00:00
|
|
|
#if defined(USE_LTDL)
|
2015-10-13 14:51:04 +00:00
|
|
|
/* TODO: support various platforms */
|
|
|
|
stix_bch_t buf[1024]; /* TODO: use a proper path buffer */
|
|
|
|
stix_size_t ucslen, bcslen;
|
|
|
|
stix_size_t len;
|
2015-10-14 13:25:36 +00:00
|
|
|
void* handle;
|
|
|
|
|
|
|
|
/* TODO: using MODPREFIX isn't a good idean for all kind of modules.
|
|
|
|
* OK to use it for a primitive module.
|
|
|
|
* NOT OK to use it for a FFI target.
|
|
|
|
* Attempting /home/hyung-hwan/xxx/lib/libstix-libc.so.6 followed by libc.so.6 is bad.
|
|
|
|
* Need to accept the type or flags?
|
|
|
|
*
|
|
|
|
* mod_open (stix, "xxxx", STIX_MOD_EXTERNAL);
|
|
|
|
* if external, don't use DEFAULT_MODPERFIX and MODPOSTFIX???
|
|
|
|
*/
|
2015-10-13 14:51:04 +00:00
|
|
|
|
2015-10-14 09:06:44 +00:00
|
|
|
len = stix_copybcstr (buf, STIX_COUNTOF(buf), STIX_DEFAULT_MODPREFIX);
|
2015-10-13 14:51:04 +00:00
|
|
|
|
|
|
|
/* TODO: proper error checking and overflow checking */
|
|
|
|
ucslen = ~(stix_size_t)0;
|
|
|
|
bcslen = STIX_COUNTOF(buf) - len;
|
|
|
|
stix_ucstoutf8 (name, &ucslen, &buf[len], &bcslen);
|
|
|
|
|
2015-10-14 13:25:36 +00:00
|
|
|
stix_copybcstr (&buf[bcslen + len], STIX_COUNTOF(buf) - bcslen - len, STIX_DEFAULT_MODPOSTFIX);
|
|
|
|
|
2015-10-14 09:06:44 +00:00
|
|
|
printf ("MOD_OPEN %s\n", buf);
|
2015-10-14 13:25:36 +00:00
|
|
|
handle = lt_dlopenext (buf);
|
|
|
|
if (!handle)
|
|
|
|
{
|
|
|
|
buf[bcslen + len] = '\0';
|
|
|
|
printf ("MOD_OPEN %s\n", &buf[len]);
|
|
|
|
handle = lt_dlopenext (&buf[len]);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf ("MOD_OPEN RET=>%p\n", handle);
|
|
|
|
return handle;
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* TODO: implemenent this */
|
|
|
|
return STIX_NULL;
|
|
|
|
#endif
|
2015-10-13 14:51:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mod_close (stix_t* stix, void* handle)
|
|
|
|
{
|
2015-10-14 13:25:36 +00:00
|
|
|
#if defined(USE_LTDL)
|
|
|
|
lt_dlclose (handle);
|
|
|
|
#elif defined(_WIN32)
|
|
|
|
FreeLibrary ((HMODULE)handle);
|
|
|
|
#elif defined(__OS2__)
|
|
|
|
DosFreeModule ((HMODULE)handle);
|
|
|
|
#elif defined(__DOS__) && defined(QSE_ENABLE_DOS_DYNAMIC_MODULE)
|
|
|
|
FreeModule (handle);
|
|
|
|
#else
|
|
|
|
/* nothing to do */
|
|
|
|
#endif
|
2015-10-13 14:51:04 +00:00
|
|
|
}
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
static void* mod_getsym (stix_t* stix, void* handle, const stix_ooch_t* name)
|
2015-10-13 14:51:04 +00:00
|
|
|
{
|
2015-10-14 13:25:36 +00:00
|
|
|
#if defined(USE_LTDL)
|
2015-10-13 14:51:04 +00:00
|
|
|
stix_bch_t buf[1024]; /* TODO: use a proper buffer. dynamically allocated if conversion result in too a large value */
|
|
|
|
stix_size_t ucslen, bcslen;
|
|
|
|
void* sym;
|
|
|
|
|
|
|
|
buf[0] = '_';
|
|
|
|
|
|
|
|
ucslen = ~(stix_size_t)0;
|
|
|
|
bcslen = STIX_COUNTOF(buf) - 2;
|
|
|
|
stix_ucstoutf8 (name, &ucslen, &buf[1], &bcslen);
|
|
|
|
printf ("MOD_GETSYM [%s]\n", &buf[1]);
|
2015-10-14 13:25:36 +00:00
|
|
|
sym = lt_dlsym (handle, &buf[1]);
|
2015-10-13 14:51:04 +00:00
|
|
|
if (!sym)
|
|
|
|
{
|
|
|
|
printf ("MOD_GETSYM [%s]\n", &buf[0]);
|
2015-10-14 13:25:36 +00:00
|
|
|
sym = lt_dlsym (handle, &buf[0]);
|
2015-10-13 14:51:04 +00:00
|
|
|
if (!sym)
|
|
|
|
{
|
|
|
|
buf[bcslen + 1] = '_';
|
|
|
|
buf[bcslen + 2] = '\0';
|
|
|
|
printf ("MOD_GETSYM [%s]\n", &buf[1]);
|
2015-10-14 13:25:36 +00:00
|
|
|
sym = lt_dlsym (handle, &buf[1]);
|
2015-10-13 14:51:04 +00:00
|
|
|
if (!sym)
|
|
|
|
{
|
|
|
|
printf ("MOD_GETSYM [%s]\n", &buf[0]);
|
|
|
|
sym = dlsym (handle, &buf[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sym;
|
2015-10-14 13:25:36 +00:00
|
|
|
#else
|
|
|
|
/* TODO: IMPLEMENT THIS */
|
|
|
|
return STIX_NULL;
|
|
|
|
#endif
|
2015-10-13 14:51:04 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 15:16:18 +00:00
|
|
|
static char* syntax_error_msg[] =
|
|
|
|
{
|
|
|
|
"no error",
|
|
|
|
"illegal character",
|
|
|
|
"comment not closed",
|
|
|
|
"string not closed",
|
|
|
|
"no character after $",
|
2015-05-19 16:26:52 +00:00
|
|
|
"no valid character after #",
|
2015-06-24 11:53:19 +00:00
|
|
|
"wrong character literal",
|
|
|
|
"colon expected",
|
2015-06-16 13:29:29 +00:00
|
|
|
"string expected",
|
|
|
|
"invalid radix",
|
|
|
|
"invalid numeric literal",
|
2015-06-23 14:00:26 +00:00
|
|
|
"byte too small or too large",
|
2015-05-20 15:52:45 +00:00
|
|
|
"{ expected",
|
|
|
|
"} expected",
|
2015-05-25 17:10:49 +00:00
|
|
|
"( expected",
|
2015-05-20 15:52:45 +00:00
|
|
|
") expected",
|
2015-06-03 17:24:11 +00:00
|
|
|
"] expected",
|
2015-05-20 15:52:45 +00:00
|
|
|
". expected",
|
2015-05-22 15:09:45 +00:00
|
|
|
"| expected",
|
|
|
|
"> expected",
|
2015-07-14 13:35:18 +00:00
|
|
|
":= expected",
|
2015-05-22 15:09:45 +00:00
|
|
|
"identifier expected",
|
|
|
|
"integer expected",
|
|
|
|
"primitive: expected",
|
2015-05-25 18:13:52 +00:00
|
|
|
"wrong directive",
|
2015-05-25 17:10:49 +00:00
|
|
|
"undefined class",
|
|
|
|
"duplicate class",
|
2015-05-28 15:20:27 +00:00
|
|
|
"contradictory class definition",
|
2015-05-25 17:10:49 +00:00
|
|
|
"#dcl not allowed",
|
2015-05-27 17:41:11 +00:00
|
|
|
"wrong method name",
|
|
|
|
"duplicate method name",
|
2015-05-25 17:10:49 +00:00
|
|
|
"duplicate argument name",
|
|
|
|
"duplicate temporary variable name",
|
2015-06-01 15:59:16 +00:00
|
|
|
"duplicate variable name",
|
2015-06-16 13:29:29 +00:00
|
|
|
"duplicate block argument name",
|
2015-06-01 15:59:16 +00:00
|
|
|
"cannot assign to argument",
|
2015-06-03 04:22:19 +00:00
|
|
|
"undeclared variable",
|
|
|
|
"unusable variable in compiled code",
|
|
|
|
"inaccessible variable",
|
2015-07-26 14:38:34 +00:00
|
|
|
"ambiguous variable",
|
2015-06-03 04:22:19 +00:00
|
|
|
"wrong expression primary",
|
2015-06-20 03:07:11 +00:00
|
|
|
"too many temporaries",
|
2015-06-03 17:24:11 +00:00
|
|
|
"too many arguments",
|
2015-06-20 03:07:11 +00:00
|
|
|
"too many block temporaries",
|
2015-06-16 13:29:29 +00:00
|
|
|
"too many block arguments",
|
|
|
|
"too large block",
|
2015-07-03 14:38:37 +00:00
|
|
|
"wrong primitive number",
|
2015-07-12 17:14:21 +00:00
|
|
|
"#include error",
|
2015-07-14 13:35:18 +00:00
|
|
|
"wrong namespace name",
|
2015-07-25 15:01:51 +00:00
|
|
|
"wrong pool dictionary name",
|
2015-07-14 13:35:18 +00:00
|
|
|
"duplicate pool dictionary name",
|
|
|
|
"literal expected"
|
2015-05-19 15:16:18 +00:00
|
|
|
};
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
stix_ooch_t str_stix[] = { 'S', 't', 'i', 'x' };
|
|
|
|
stix_ooch_t str_my_object[] = { 'M', 'y', 'O', 'b','j','e','c','t' };
|
|
|
|
stix_ooch_t str_main[] = { 'm', 'a', 'i', 'n' };
|
2015-06-06 07:24:35 +00:00
|
|
|
|
2015-05-07 15:58:04 +00:00
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
stix_t* stix;
|
2015-05-16 07:31:16 +00:00
|
|
|
xtn_t* xtn;
|
2015-10-28 14:58:58 +00:00
|
|
|
stix_oocs_t objname;
|
|
|
|
stix_oocs_t mthname;
|
2015-10-13 14:51:04 +00:00
|
|
|
stix_vmprim_t vmprim;
|
2015-06-11 12:09:10 +00:00
|
|
|
int i;
|
2015-05-16 07:31:16 +00:00
|
|
|
|
2015-10-30 15:36:37 +00:00
|
|
|
printf ("Stix 1.0.0 - max named %lu max indexed %lu max class %lu max classinst %lu smintmax %ld smintmax %ld\n",
|
2015-05-26 16:31:47 +00:00
|
|
|
(unsigned long int)STIX_MAX_NAMED_INSTVARS,
|
|
|
|
(unsigned long int)STIX_MAX_INDEXED_INSTVARS(STIX_MAX_NAMED_INSTVARS),
|
|
|
|
(unsigned long int)STIX_MAX_CLASSVARS,
|
2015-10-30 15:36:37 +00:00
|
|
|
(unsigned long int)STIX_MAX_CLASSINSTVARS,
|
|
|
|
(long)STIX_SMINT_MAX, (long)STIX_SMINT_MIN);
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
#if !defined(macintosh)
|
2015-06-11 12:09:10 +00:00
|
|
|
if (argc < 2)
|
2015-05-16 07:31:16 +00:00
|
|
|
{
|
2015-06-11 12:09:10 +00:00
|
|
|
fprintf (stderr, "Usage: %s filename ...\n", argv[0]);
|
2015-05-16 07:31:16 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2015-05-28 16:51:37 +00:00
|
|
|
#endif
|
2015-05-16 07:31:16 +00:00
|
|
|
|
2015-10-13 14:51:04 +00:00
|
|
|
/*
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-10-13 14:51:04 +00:00
|
|
|
stix_oop_t k;
|
2015-05-07 15:58:04 +00:00
|
|
|
stix_oow_t x;
|
|
|
|
|
2015-10-13 14:51:04 +00:00
|
|
|
k = STIX_OOP_FROM_SMINT(-1);
|
|
|
|
printf ("%ld %ld %ld %lX\n", (long int)STIX_OOP_TO_SMINT(k), (long int)STIX_SMINT_MIN, (long int)STIX_SMINT_MAX, (long)LONG_MIN);
|
|
|
|
|
|
|
|
k = STIX_OOP_FROM_SMINT(STIX_SMINT_MAX);
|
|
|
|
printf ("%ld\n", (long int)STIX_OOP_TO_SMINT(k));
|
|
|
|
|
|
|
|
k = STIX_OOP_FROM_SMINT(STIX_SMINT_MIN);
|
|
|
|
printf ("%ld\n", (long int)STIX_OOP_TO_SMINT(k));
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2015-10-13 14:51:04 +00:00
|
|
|
printf ("%u\n", STIX_BITS_MAX(unsigned int, 5));
|
2015-05-07 15:58:04 +00:00
|
|
|
x = STIX_CLASS_SPEC_MAKE (10, 1, STIX_OBJ_TYPE_CHAR);
|
|
|
|
printf ("%lu %lu %lu %lu\n", (unsigned long int)x, (unsigned long int)STIX_OOP_FROM_SMINT(x),
|
|
|
|
(unsigned long int)STIX_CLASS_SPEC_NAMED_INSTVAR(x),
|
|
|
|
(unsigned long int)STIX_CLASS_SPEC_INDEXED_TYPE(x));
|
2015-10-13 14:51:04 +00:00
|
|
|
}*/
|
|
|
|
|
|
|
|
vmprim.mod_open = mod_open;
|
|
|
|
vmprim.mod_close = mod_close;
|
|
|
|
vmprim.mod_getsym = mod_getsym;
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2015-10-14 13:25:36 +00:00
|
|
|
#if defined(USE_LTDL)
|
|
|
|
lt_dlinit ();
|
|
|
|
#endif
|
|
|
|
|
2015-10-13 14:51:04 +00:00
|
|
|
stix = stix_open (&sys_mmgr, STIX_SIZEOF(xtn_t), 512000lu, &vmprim, STIX_NULL);
|
2015-05-07 15:58:04 +00:00
|
|
|
if (!stix)
|
|
|
|
{
|
|
|
|
printf ("cannot open stix\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:08:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-05-28 16:51:37 +00:00
|
|
|
stix_oow_t tab_size;
|
|
|
|
|
|
|
|
tab_size = 5000;
|
2015-10-13 14:51:04 +00:00
|
|
|
stix_setoption (stix, STIX_SYMTAB_SIZE, &tab_size);
|
2015-05-28 16:51:37 +00:00
|
|
|
tab_size = 5000;
|
2015-10-13 14:51:04 +00:00
|
|
|
stix_setoption (stix, STIX_SYSDIC_SIZE, &tab_size);
|
2015-05-07 15:58:04 +00:00
|
|
|
}
|
|
|
|
|
2015-06-28 14:20:37 +00:00
|
|
|
{
|
|
|
|
int trait = 0;
|
|
|
|
|
2015-06-29 13:52:40 +00:00
|
|
|
/*trait |= STIX_NOGC;*/
|
2015-06-28 14:20:37 +00:00
|
|
|
stix_setoption (stix, STIX_TRAIT, &trait);
|
|
|
|
}
|
|
|
|
|
2015-05-26 16:31:47 +00:00
|
|
|
if (stix_ignite(stix) <= -1)
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-05-26 16:31:47 +00:00
|
|
|
printf ("cannot ignite stix - %d\n", stix_geterrnum(stix));
|
2015-05-07 15:58:04 +00:00
|
|
|
stix_close (stix);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:08:43 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
/*const stix_bch_t* xxx = "9999999999999999999999999999999999999999999999999999999999999999999999999999999999";*/
|
|
|
|
const stix_bch_t* xxx = "7777777777777777777777777";
|
|
|
|
stix_ooch_t buf[10240];
|
|
|
|
stix_oow_t xxxlen;
|
|
|
|
stix_oow_t buflen;
|
|
|
|
|
|
|
|
xxxlen = stix_countbcstr(xxx);
|
|
|
|
buflen = STIX_COUNTOF(buf);
|
|
|
|
stix_utf8toucs (xxx, &xxxlen, buf, &buflen);
|
|
|
|
stix_strtoint (stix, buf, buflen, 16);
|
|
|
|
}
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-10-28 14:58:58 +00:00
|
|
|
stix_ooch_t x[] = { 'X', 't', 'r', 'i', 'n', 'g', '\0' };
|
|
|
|
stix_ooch_t y[] = { 'S', 'y', 'm', 'b', 'o', 'l', '\0' };
|
2015-05-31 18:43:37 +00:00
|
|
|
stix_oop_t a, b, k;
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
a = stix_makesymbol (stix, x, 6);
|
|
|
|
b = stix_makesymbol (stix, y, 6);
|
|
|
|
|
|
|
|
printf ("%p %p\n", a, b);
|
2015-05-08 14:29:35 +00:00
|
|
|
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
dump_symbol_table (stix);
|
2015-05-08 14:29:35 +00:00
|
|
|
|
2015-05-31 18:43:37 +00:00
|
|
|
/*
|
|
|
|
stix_pushtmp (stix, &a);
|
|
|
|
stix_pushtmp (stix, &b);
|
|
|
|
k = stix_instantiate (stix, stix->_byte_array, STIX_NULL, 100);
|
|
|
|
stix_poptmps (stix, 2);
|
|
|
|
stix_putatsysdic (stix, a, k);
|
|
|
|
*/
|
2015-05-08 14:29:35 +00:00
|
|
|
|
2015-05-07 15:58:04 +00:00
|
|
|
stix_gc (stix);
|
2015-05-08 14:29:35 +00:00
|
|
|
a = stix_findsymbol (stix, x, 6);
|
|
|
|
printf ("%p\n", a);
|
2015-05-07 15:58:04 +00:00
|
|
|
dump_symbol_table (stix);
|
2015-05-26 16:31:47 +00:00
|
|
|
|
|
|
|
|
2015-06-06 07:24:35 +00:00
|
|
|
dump_dictionary (stix, stix->sysdic, "System dictionary");
|
2015-05-08 14:29:35 +00:00
|
|
|
}
|
2015-05-15 14:55:12 +00:00
|
|
|
|
2015-05-16 07:31:16 +00:00
|
|
|
xtn = stix_getxtn (stix);
|
2015-06-11 12:09:10 +00:00
|
|
|
|
|
|
|
#if defined(macintosh)
|
|
|
|
i = 20;
|
2015-05-28 16:51:37 +00:00
|
|
|
xtn->source_path = "test.st";
|
2015-06-11 12:09:10 +00:00
|
|
|
goto compile;
|
2015-05-28 16:51:37 +00:00
|
|
|
#endif
|
2015-06-11 12:09:10 +00:00
|
|
|
|
|
|
|
for (i = 1; i < argc; i++)
|
2015-05-15 14:55:12 +00:00
|
|
|
{
|
2015-06-11 12:09:10 +00:00
|
|
|
xtn->source_path = argv[i];
|
2015-05-20 15:52:45 +00:00
|
|
|
|
2015-06-11 12:09:10 +00:00
|
|
|
compile:
|
2015-05-20 15:52:45 +00:00
|
|
|
|
2015-06-11 12:09:10 +00:00
|
|
|
if (stix_compile (stix, input_handler) <= -1)
|
|
|
|
{
|
|
|
|
if (stix->errnum == STIX_ESYNTAX)
|
2015-05-20 15:52:45 +00:00
|
|
|
{
|
2015-06-11 12:09:10 +00:00
|
|
|
stix_synerr_t synerr;
|
|
|
|
stix_bch_t bcs[1024]; /* TODO: right buffer size */
|
|
|
|
stix_size_t bcslen, ucslen;
|
|
|
|
|
|
|
|
stix_getsynerr (stix, &synerr);
|
|
|
|
|
|
|
|
printf ("ERROR: ");
|
|
|
|
if (synerr.loc.file)
|
2015-05-20 15:52:45 +00:00
|
|
|
{
|
2015-06-11 12:09:10 +00:00
|
|
|
bcslen = STIX_COUNTOF(bcs);
|
|
|
|
ucslen = ~(stix_size_t)0;
|
|
|
|
if (stix_ucstoutf8 (synerr.loc.file, &ucslen, bcs, &bcslen) >= 0)
|
|
|
|
{
|
|
|
|
printf ("%.*s ", (int)bcslen, bcs);
|
|
|
|
}
|
2015-05-20 15:52:45 +00:00
|
|
|
}
|
2015-06-12 13:52:30 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
printf ("%s ", xtn->source_path);
|
|
|
|
}
|
2015-05-20 15:52:45 +00:00
|
|
|
|
|
|
|
|
2015-06-11 12:09:10 +00:00
|
|
|
printf ("syntax error at line %lu column %lu - %s",
|
|
|
|
(unsigned long int)synerr.loc.line, (unsigned long int)synerr.loc.colm,
|
|
|
|
syntax_error_msg[synerr.num]);
|
|
|
|
if (synerr.tgt.len > 0)
|
2015-05-19 15:16:18 +00:00
|
|
|
{
|
2015-06-11 12:09:10 +00:00
|
|
|
bcslen = STIX_COUNTOF(bcs);
|
|
|
|
ucslen = synerr.tgt.len;
|
|
|
|
|
|
|
|
if (stix_ucstoutf8 (synerr.tgt.ptr, &ucslen, bcs, &bcslen) >= 0)
|
|
|
|
{
|
|
|
|
printf (" [%.*s]", (int)bcslen, bcs);
|
|
|
|
}
|
2015-05-19 15:16:18 +00:00
|
|
|
|
2015-06-11 12:09:10 +00:00
|
|
|
}
|
|
|
|
printf ("\n");
|
2015-05-19 15:16:18 +00:00
|
|
|
}
|
2015-06-11 12:09:10 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
printf ("ERROR: cannot compile code - %d\n", stix_geterrnum(stix));
|
|
|
|
}
|
|
|
|
stix_close (stix);
|
|
|
|
return -1;
|
2015-05-19 15:16:18 +00:00
|
|
|
}
|
2015-05-15 14:55:12 +00:00
|
|
|
}
|
|
|
|
|
2015-06-11 09:11:18 +00:00
|
|
|
/* objname.ptr = str_stix;
|
|
|
|
objname.len = 4;*/
|
|
|
|
objname.ptr = str_my_object;
|
|
|
|
objname.len = 8;
|
2015-06-06 07:24:35 +00:00
|
|
|
mthname.ptr = str_main;
|
|
|
|
mthname.len = 4;
|
|
|
|
if (stix_invoke (stix, &objname, &mthname) <= -1)
|
2015-06-04 18:34:37 +00:00
|
|
|
{
|
|
|
|
printf ("ERROR: cannot execute code - %d\n", stix_geterrnum(stix));
|
|
|
|
stix_close (stix);
|
|
|
|
return -1;
|
|
|
|
}
|
2015-06-06 07:24:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
dump_dictionary (stix, stix->sysdic, "System dictionary");
|
2015-05-07 15:58:04 +00:00
|
|
|
stix_close (stix);
|
|
|
|
|
2015-10-14 13:25:36 +00:00
|
|
|
#if defined(USE_LTDL)
|
|
|
|
lt_dlexit ();
|
|
|
|
#endif
|
2015-05-07 15:58:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|