qse/ase/test/awk/awk.c

1138 lines
27 KiB
C
Raw Normal View History

2006-03-31 16:35:37 +00:00
/*
2006-12-17 13:12:08 +00:00
* $Id: awk.c,v 1.142 2006-12-17 13:12:08 bacon Exp $
2006-03-31 16:35:37 +00:00
*/
2006-10-24 04:48:52 +00:00
#include <ase/awk/awk.h>
2006-03-31 18:13:31 +00:00
#include <stdio.h>
2006-04-10 09:26:17 +00:00
#include <string.h>
2006-08-04 16:31:22 +00:00
#include <signal.h>
2006-10-12 04:17:58 +00:00
#include <stdarg.h>
2006-10-31 14:32:50 +00:00
#include <math.h>
2006-12-17 13:12:08 +00:00
#include <limits.h>
2006-11-28 15:09:53 +00:00
#include <assert.h>
2006-06-30 06:09:38 +00:00
2006-11-15 05:49:22 +00:00
#if defined(_WIN32)
2006-10-27 09:19:21 +00:00
#include <windows.h>
#include <tchar.h>
#pragma warning (disable: 4996)
2006-11-28 15:09:53 +00:00
#pragma warning (disable: 4296)
2006-12-17 12:50:59 +00:00
#elif defined(ASE_CHAR_IS_MCHAR)
2006-11-15 05:49:22 +00:00
#include <ctype.h>
#include <stdlib.h>
2006-12-17 12:50:59 +00:00
#include <locale.h>
2006-10-27 09:19:21 +00:00
#else
2006-12-17 12:50:59 +00:00
#include <wchar.h>
#include <wctype.h>
2006-12-17 13:12:08 +00:00
#include <locale.h>
2006-12-17 12:50:59 +00:00
2006-10-27 09:19:21 +00:00
#include <xp/bas/stdio.h>
#include <xp/bas/stdlib.h>
#include <xp/bas/string.h>
#include <xp/bas/memory.h>
#include <xp/bas/sysapi.h>
2006-04-16 04:31:38 +00:00
#endif
2006-04-10 09:22:05 +00:00
2006-09-01 04:03:28 +00:00
#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
2006-05-12 09:39:20 +00:00
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#endif
2006-05-12 11:10:26 +00:00
#if defined(__linux) && defined(_DEBUG)
2006-05-12 09:39:20 +00:00
#include <mcheck.h>
#endif
2006-06-29 14:38:01 +00:00
struct src_io
{
2006-10-27 09:19:21 +00:00
const ase_char_t* input_file;
2006-06-29 14:38:01 +00:00
FILE* input_handle;
};
2006-12-17 13:12:08 +00:00
static ase_real_t awk_pow (ase_real_t x, ase_real_t y)
2006-06-30 04:18:47 +00:00
{
2006-12-17 13:12:08 +00:00
return pow (x, y);
}
2006-06-30 04:18:47 +00:00
2006-12-17 13:12:08 +00:00
static void awk_abort (void* custom_data)
{
abort ();
2006-06-30 04:18:47 +00:00
}
2006-12-16 14:48:31 +00:00
static int awk_sprintf (
2006-11-15 05:49:22 +00:00
ase_char_t* buf, ase_size_t len, const ase_char_t* fmt, ...)
{
int n;
va_list ap;
va_start (ap, fmt);
#if defined(_WIN32)
2006-11-15 06:00:08 +00:00
n = _vsntprintf (buf, len, fmt, ap);
2006-11-18 15:36:57 +00:00
if (n < 0 || (ase_size_t)n >= len)
{
2006-11-19 15:33:40 +00:00
if (len > 0) buf[len-1] = ASE_T('\0');
2006-11-18 15:36:57 +00:00
n = -1;
}
2006-11-15 05:49:22 +00:00
#elif defined(__MSDOS__)
/* TODO: check buffer overflow */
n = vsprintf (buf, fmt, ap);
2006-12-17 12:50:59 +00:00
#elif defined(ASE_CHAR_IS_MCHAR)
n = vsnprintf (buf, len, fmt, ap);
2006-11-15 05:49:22 +00:00
#else
n = xp_vsprintf (buf, len, fmt, ap);
#endif
va_end (ap);
return n;
}
2006-12-16 14:48:31 +00:00
static void awk_aprintf (const ase_char_t* fmt, ...)
2006-10-12 04:17:58 +00:00
{
va_list ap;
#ifdef _WIN32
2006-11-18 15:36:57 +00:00
int n;
2006-10-27 09:19:21 +00:00
ase_char_t buf[1024];
2006-10-12 04:17:58 +00:00
#endif
va_start (ap, fmt);
2006-11-15 05:49:22 +00:00
#if defined(_WIN32)
2006-11-29 03:55:57 +00:00
n = _vsntprintf (buf, ASE_COUNTOF(buf), fmt, ap);
if (n < 0) buf[ASE_COUNTOF(buf)-1] = ASE_T('\0');
2006-10-27 09:19:21 +00:00
2006-11-15 05:49:22 +00:00
#if defined(_MSC_VER) && (_MSC_VER<1400)
2006-11-18 15:36:57 +00:00
MessageBox (NULL, buf,
ASE_T("Assertion Failure"), MB_OK|MB_ICONERROR);
2006-11-15 05:49:22 +00:00
#else
2006-11-18 15:36:57 +00:00
MessageBox (NULL, buf,
ASE_T("\uB2DD\uAE30\uB9AC \uC870\uB610"), MB_OK|MB_ICONERROR);
2006-11-15 05:49:22 +00:00
#endif
2006-12-17 12:50:59 +00:00
#elif defined(ASE_CHAR_IS_MCHAR)
2006-11-18 15:36:57 +00:00
vprintf (fmt, ap);
2006-10-12 04:17:58 +00:00
#else
2006-11-18 15:36:57 +00:00
xp_vprintf (fmt, ap);
2006-10-12 04:17:58 +00:00
#endif
va_end (ap);
}
2006-12-16 14:48:31 +00:00
static void awk_dprintf (const ase_char_t* fmt, ...)
2006-10-28 05:24:08 +00:00
{
va_list ap;
va_start (ap, fmt);
2006-11-15 05:49:22 +00:00
#if defined(_WIN32)
2006-11-18 15:36:57 +00:00
_vftprintf (stderr, fmt, ap);
2006-12-17 12:50:59 +00:00
#elif defined(ASE_CHAR_IS_MCHAR)
2006-11-18 15:36:57 +00:00
vfprintf (stderr, fmt, ap);
2006-10-28 05:24:08 +00:00
#else
2006-11-18 15:36:57 +00:00
xp_vfprintf (stderr, fmt, ap);
2006-10-28 05:24:08 +00:00
#endif
va_end (ap);
}
2006-12-17 12:50:59 +00:00
static void awk_printf (const ase_char_t* fmt, ...)
{
va_list ap;
va_start (ap, fmt);
#if defined(_WIN32)
_vtprintf (fmt, ap);
#elif defined(ASE_CHAR_IS_MCHAR)
vprintf (fmt, ap);
#else
xp_vprintf (fmt, ap);
#endif
va_end (ap);
}
2006-12-17 13:12:08 +00:00
static FILE* awk_fopen (const ase_char_t* path, const ase_char_t* mode)
2006-10-31 14:32:50 +00:00
{
2006-12-17 13:12:08 +00:00
#ifdef _WIN32
return _tfopen (path, mode);
#elif defined(ASE_CHAR_IS_MCHAR)
return fopen (path, mode);
#else
char path_mb[PATH_MAX + 1];
char mode_mb[32];
size_t n;
2006-10-28 05:24:08 +00:00
2006-12-17 13:12:08 +00:00
n = wcstombs (path, path_mb, ASE_COUNTOF(path_mb))
if (n == -1) return NULL;
if (n == ASE_COUNTOF(path_mb)) path_mb[ASE_COUNTOF(path_mb)-1] = '\0';
n = wcstombs (mode, mode_mb, ASE_COUNTOF(mode_mb))
if (n == -1) return NULL;
if (n == ASE_COUNTOF(mode_mb)) path_mb[ASE_COUNTOF(mode_mb)-1] = '\0';
return fopen (path_mb, mode_mb);
#endif
2006-12-16 16:14:40 +00:00
}
2006-12-17 13:12:08 +00:00
static FILE* awk_popen (const ase_char_t* cmd, const ase_char_t* mode)
2006-06-30 04:25:53 +00:00
{
2006-11-15 05:49:22 +00:00
#if defined(_WIN32)
2006-06-30 04:25:53 +00:00
return _tpopen (cmd, mode);
2006-11-15 05:49:22 +00:00
#elif defined(__MSDOS__)
/* TODO: support this */
return NULL;
2006-12-17 13:12:08 +00:00
#elif defined(ASE_CHAR_IS_MCHAR)
return popen (cmd, mode);
2006-06-30 04:25:53 +00:00
#else
2006-12-17 13:12:08 +00:00
char cmd_mb[PATH_MAX + 1];
char mode_mb[32];
size_t n;
2006-06-30 04:25:53 +00:00
2006-12-17 13:12:08 +00:00
n = wcstombs (cmd, cmd_mb, ASE_COUNTOF(cmd_mb))
if (n == -1) return NULL;
if (n == ASE_COUNTOF(cmd_mb)) cmd_mb[ASE_COUNTOF(cmd_mb)-1] = '\0';
n = wcstombs (mode, mode_mb, ASE_COUNTOF(mode_mb))
if (n == -1) return NULL;
if (n == ASE_COUNTOF(mode_mb)) cmd_mb[ASE_COUNTOF(mode_mb)-1] = '\0';
2006-06-30 04:25:53 +00:00
return popen (cmd_mb, mode_mb);
#endif
}
2006-12-17 13:12:08 +00:00
#if defined(_WIN32)
#define awk_fgets _fgetts
#define awk_fputs _fputts
#define awk_fputc _fputtc
#elif defined(ASE_CHAR_IS_MCHAR)
#define awk_fgets fgets
#define awk_fputs fputs
#define awk_fputc fputc
2006-06-30 04:18:47 +00:00
#else
2006-12-17 13:12:08 +00:00
#define awk_fgets fgetws
#define awk_fputs fputws
#define awk_fputc fputwc
2006-06-30 04:18:47 +00:00
#endif
2006-10-27 09:19:21 +00:00
static ase_ssize_t process_source (
int cmd, void* arg, ase_char_t* data, ase_size_t size)
2006-01-18 16:12:59 +00:00
{
2006-06-29 14:38:01 +00:00
struct src_io* src_io = (struct src_io*)arg;
2006-10-27 09:19:21 +00:00
ase_char_t c;
2006-01-18 16:12:59 +00:00
2006-10-24 04:48:52 +00:00
if (cmd == ASE_AWK_IO_OPEN)
2006-06-13 04:26:24 +00:00
{
2006-10-24 04:48:52 +00:00
if (src_io->input_file == ASE_NULL) return 0;
2006-12-17 13:12:08 +00:00
src_io->input_handle = awk_fopen (src_io->input_file, ASE_T("r"));
2006-08-22 15:11:13 +00:00
if (src_io->input_handle == NULL) return -1;
return 1;
}
2006-10-24 04:48:52 +00:00
else if (cmd == ASE_AWK_IO_CLOSE)
2006-08-22 15:11:13 +00:00
{
2006-10-24 04:48:52 +00:00
if (src_io->input_file == ASE_NULL) return 0;
2006-08-22 15:11:13 +00:00
fclose ((FILE*)src_io->input_handle);
return 0;
}
2006-10-24 04:48:52 +00:00
else if (cmd == ASE_AWK_IO_READ)
2006-08-22 15:11:13 +00:00
{
if (size <= 0) return -1;
2006-10-24 04:48:52 +00:00
#ifdef ASE_CHAR_IS_MCHAR
2006-08-22 15:11:13 +00:00
c = fgetc ((FILE*)src_io->input_handle);
#else
c = fgetwc ((FILE*)src_io->input_handle);
#endif
2006-10-24 04:48:52 +00:00
if (c == ASE_CHAR_EOF) return 0;
2006-08-22 15:11:13 +00:00
*data = c;
return 1;
2006-08-06 15:03:42 +00:00
}
return -1;
}
2006-10-27 09:19:21 +00:00
static ase_ssize_t dump_source (
int cmd, void* arg, ase_char_t* data, ase_size_t size)
2006-08-06 15:03:42 +00:00
{
2006-08-26 16:30:53 +00:00
/*struct src_io* src_io = (struct src_io*)arg;*/
2006-08-06 15:03:42 +00:00
2006-10-24 04:48:52 +00:00
if (cmd == ASE_AWK_IO_OPEN) return 1;
else if (cmd == ASE_AWK_IO_CLOSE) return 0;
else if (cmd == ASE_AWK_IO_WRITE)
2006-08-06 15:03:42 +00:00
{
2006-10-27 09:19:21 +00:00
ase_size_t i;
2006-08-22 15:11:13 +00:00
for (i = 0; i < size; i++)
2006-06-13 04:26:24 +00:00
{
2006-11-15 05:49:22 +00:00
#ifdef ASE_CHAR_IS_MCHAR
2006-08-22 15:11:13 +00:00
fputc (data[i], stdout);
2006-11-15 05:49:22 +00:00
#else
2006-08-22 15:11:13 +00:00
fputwc (data[i], stdout);
2006-11-15 05:49:22 +00:00
#endif
2006-06-13 04:26:24 +00:00
}
2006-08-22 15:11:13 +00:00
return size;
2006-04-22 13:54:53 +00:00
}
return -1;
}
2006-10-27 09:19:21 +00:00
static ase_ssize_t process_extio_pipe (
int cmd, void* arg, ase_char_t* data, ase_size_t size)
2006-06-19 04:38:51 +00:00
{
2006-10-24 04:48:52 +00:00
ase_awk_extio_t* epa = (ase_awk_extio_t*)arg;
2006-06-19 04:38:51 +00:00
switch (cmd)
{
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_OPEN:
2006-06-19 04:38:51 +00:00
{
FILE* handle;
2006-10-27 09:19:21 +00:00
const ase_char_t* mode;
2006-06-22 04:25:44 +00:00
2006-11-21 15:06:51 +00:00
if (epa->mode == ASE_AWK_EXTIO_PIPE_READ)
2006-10-24 04:48:52 +00:00
mode = ASE_T("r");
2006-11-21 15:06:51 +00:00
else if (epa->mode == ASE_AWK_EXTIO_PIPE_WRITE)
2006-10-24 04:48:52 +00:00
mode = ASE_T("w");
2006-06-22 04:25:44 +00:00
else return -1; /* TODO: any way to set the error number? */
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("opending %s of type %d (pipe)\n"), epa->name, epa->type);
2006-12-17 13:12:08 +00:00
handle = awk_popen (epa->name, mode);
2006-06-19 04:38:51 +00:00
if (handle == NULL) return -1;
epa->handle = (void*)handle;
2006-07-28 10:34:22 +00:00
return 1;
2006-06-19 04:38:51 +00:00
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_CLOSE:
2006-06-19 04:38:51 +00:00
{
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("closing %s of type (pipe) %d\n"), epa->name, epa->type);
2006-06-19 04:38:51 +00:00
fclose ((FILE*)epa->handle);
epa->handle = NULL;
return 0;
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_READ:
2006-06-19 04:38:51 +00:00
{
2006-12-17 13:12:08 +00:00
if (awk_fgets (data, size, (FILE*)epa->handle) == ASE_NULL)
2006-06-19 04:38:51 +00:00
return 0;
2006-10-24 04:48:52 +00:00
return ase_awk_strlen(data);
2006-06-19 04:38:51 +00:00
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_WRITE:
2006-06-19 04:38:51 +00:00
{
2006-11-02 11:36:41 +00:00
ase_size_t i;
/* TODO: how to return error or 0 */
for (i = 0; i < size; i++)
{
2006-12-17 13:12:08 +00:00
awk_fputc (data[i], (FILE*)epa->handle);
2006-11-02 11:36:41 +00:00
}
2006-06-22 04:25:44 +00:00
return size;
2006-06-19 04:38:51 +00:00
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_FLUSH:
2006-08-22 15:11:13 +00:00
{
2006-11-21 15:06:51 +00:00
if (epa->mode == ASE_AWK_EXTIO_PIPE_READ) return -1;
2006-08-23 15:42:16 +00:00
else return 0;
2006-08-22 15:11:13 +00:00
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_NEXT:
2006-06-19 15:43:27 +00:00
{
return -1;
}
}
2006-06-22 04:25:44 +00:00
return -1;
2006-06-19 04:38:51 +00:00
}
2006-10-27 09:19:21 +00:00
static ase_ssize_t process_extio_file (
int cmd, void* arg, ase_char_t* data, ase_size_t size)
2006-06-19 09:10:57 +00:00
{
2006-10-24 04:48:52 +00:00
ase_awk_extio_t* epa = (ase_awk_extio_t*)arg;
2006-06-19 09:10:57 +00:00
switch (cmd)
{
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_OPEN:
2006-06-19 09:10:57 +00:00
{
FILE* handle;
2006-10-27 09:19:21 +00:00
const ase_char_t* mode;
2006-06-22 04:25:44 +00:00
2006-11-21 15:06:51 +00:00
if (epa->mode == ASE_AWK_EXTIO_FILE_READ)
2006-10-24 04:48:52 +00:00
mode = ASE_T("r");
2006-11-21 15:06:51 +00:00
else if (epa->mode == ASE_AWK_EXTIO_FILE_WRITE)
2006-10-24 04:48:52 +00:00
mode = ASE_T("w");
2006-11-21 15:06:51 +00:00
else if (epa->mode == ASE_AWK_EXTIO_FILE_APPEND)
2006-10-24 04:48:52 +00:00
mode = ASE_T("a");
2006-06-22 04:25:44 +00:00
else return -1; /* TODO: any way to set the error number? */
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("opending %s of type %d (file)\n"), epa->name, epa->type);
2006-12-17 13:12:08 +00:00
handle = awk_fopen (epa->name, mode);
2006-06-19 09:10:57 +00:00
if (handle == NULL) return -1;
2006-10-16 14:39:21 +00:00
2006-06-19 09:10:57 +00:00
epa->handle = (void*)handle;
2006-07-28 10:34:22 +00:00
return 1;
2006-06-19 09:10:57 +00:00
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_CLOSE:
2006-06-19 09:10:57 +00:00
{
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("closing %s of type %d (file)\n"), epa->name, epa->type);
2006-06-19 09:10:57 +00:00
fclose ((FILE*)epa->handle);
epa->handle = NULL;
return 0;
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_READ:
2006-06-19 09:10:57 +00:00
{
2006-12-17 13:12:08 +00:00
if (awk_fgets (data, size, (FILE*)epa->handle) == ASE_NULL)
2006-06-19 09:10:57 +00:00
return 0;
2006-10-24 04:48:52 +00:00
return ase_awk_strlen(data);
2006-06-19 09:10:57 +00:00
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_WRITE:
2006-06-19 09:10:57 +00:00
{
2006-11-02 11:36:41 +00:00
ase_size_t i;
2006-06-27 10:53:04 +00:00
/* TODO: how to return error or 0 */
2006-11-02 11:36:41 +00:00
for (i = 0; i < size; i++)
{
2006-12-17 13:12:08 +00:00
awk_fputc (data[i], (FILE*)epa->handle);
2006-11-02 11:36:41 +00:00
}
2006-08-22 15:11:13 +00:00
return size;
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_FLUSH:
2006-08-22 15:11:13 +00:00
{
if (fflush ((FILE*)epa->handle) == EOF) return -1;
return 0;
2006-06-19 09:10:57 +00:00
}
2006-10-24 04:48:52 +00:00
case ASE_AWK_IO_NEXT:
2006-06-19 09:10:57 +00:00
{
return -1;
}
2006-06-19 15:43:27 +00:00
2006-06-19 09:10:57 +00:00
}
2006-06-22 04:25:44 +00:00
return -1;
2006-06-19 09:10:57 +00:00
}
2006-10-24 04:48:52 +00:00
static int open_extio_console (ase_awk_extio_t* epa);
static int close_extio_console (ase_awk_extio_t* epa);
static int next_extio_console (ase_awk_extio_t* epa);
2006-07-28 10:34:22 +00:00
2006-10-27 09:19:21 +00:00
static ase_size_t infile_no = 0;
static const ase_char_t* infiles[10000] =
2006-07-28 10:34:22 +00:00
{
2006-11-22 15:12:04 +00:00
/*
ASE_T("c1.txt"),
ASE_T("c2.txt"),
ASE_T("c3.txt"),
*/
2006-10-24 04:48:52 +00:00
ASE_T(""),
ASE_NULL
2006-07-28 10:34:22 +00:00
};
2006-07-27 16:50:29 +00:00
2006-10-27 09:19:21 +00:00
static ase_ssize_t process_extio_console (
int cmd, void* arg, ase_char_t* data, ase_size_t size)
2006-06-25 15:26:57 +00:00
{
2006-10-24 04:48:52 +00:00
ase_awk_extio_t* epa = (ase_awk_extio_t*)arg;
2006-06-25 15:26:57 +00:00
2006-10-24 04:48:52 +00:00
if (cmd == ASE_AWK_IO_OPEN)
2006-07-27 16:50:29 +00:00
{
2006-07-28 10:34:22 +00:00
return open_extio_console (epa);
}
2006-10-24 04:48:52 +00:00
else if (cmd == ASE_AWK_IO_CLOSE)
2006-06-25 15:26:57 +00:00
{
2006-07-28 10:34:22 +00:00
return close_extio_console (epa);
}
2006-10-24 04:48:52 +00:00
else if (cmd == ASE_AWK_IO_READ)
2006-07-28 10:34:22 +00:00
{
2006-12-17 13:12:08 +00:00
while (awk_fgets (data, size, epa->handle) == ASE_NULL)
2006-06-25 15:26:57 +00:00
{
2006-07-28 10:34:22 +00:00
/* it has reached the end of the current file.
* open the next file if available */
2006-10-24 04:48:52 +00:00
if (infiles[infile_no] == ASE_NULL)
2006-07-28 10:34:22 +00:00
{
/* no more input console */
2006-06-25 15:26:57 +00:00
2006-07-28 10:34:22 +00:00
/* is this correct??? */
/*
2006-10-24 04:48:52 +00:00
if (epa->handle != ASE_NULL &&
2006-07-28 10:34:22 +00:00
epa->handle != stdin &&
epa->handle != stdout &&
epa->handle != stderr) fclose (epa->handle);
2006-10-24 04:48:52 +00:00
epa->handle = ASE_NULL;
2006-07-28 10:34:22 +00:00
*/
2006-07-27 16:50:29 +00:00
2006-07-28 10:34:22 +00:00
return 0;
}
2006-07-27 16:50:29 +00:00
2006-10-24 04:48:52 +00:00
if (infiles[infile_no][0] == ASE_T('\0'))
2006-07-27 16:50:29 +00:00
{
2006-10-24 04:48:52 +00:00
if (epa->handle != ASE_NULL &&
2006-07-28 10:34:22 +00:00
epa->handle != stdin &&
epa->handle != stdout &&
epa->handle != stderr) fclose (epa->handle);
epa->handle = stdin;
}
else
{
2006-12-17 13:12:08 +00:00
FILE* fp = awk_fopen (infiles[infile_no], ASE_T("r"));
2006-10-24 04:48:52 +00:00
if (fp == ASE_NULL)
2006-07-27 16:50:29 +00:00
{
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("failed to open the next console of type %x - fopen failure\n"), epa->type);
2006-07-27 16:50:29 +00:00
return -1;
}
2006-10-24 04:48:52 +00:00
if (epa->handle != ASE_NULL &&
2006-07-28 10:34:22 +00:00
epa->handle != stdin &&
epa->handle != stdout &&
epa->handle != stderr) fclose (epa->handle);
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("open the next console [%s]\n"), infiles[infile_no]);
2006-07-28 10:34:22 +00:00
epa->handle = fp;
2006-07-27 16:50:29 +00:00
}
2006-06-29 14:38:01 +00:00
2006-07-28 10:34:22 +00:00
infile_no++;
2006-06-25 15:26:57 +00:00
}
2006-10-24 04:48:52 +00:00
return ase_awk_strlen(data);
2006-07-28 10:34:22 +00:00
}
2006-10-24 04:48:52 +00:00
else if (cmd == ASE_AWK_IO_WRITE)
2006-07-28 10:34:22 +00:00
{
2006-11-02 11:36:41 +00:00
ase_size_t i;
2006-07-28 10:34:22 +00:00
/* TODO: how to return error or 0 */
2006-11-02 11:36:41 +00:00
for (i = 0; i < size; i++)
{
2006-12-17 13:12:08 +00:00
awk_fputc (data[i], (FILE*)epa->handle);
2006-11-02 11:36:41 +00:00
}
2006-07-28 10:34:22 +00:00
/*MessageBox (NULL, data, data, MB_OK);*/
return size;
}
2006-10-24 04:48:52 +00:00
else if (cmd == ASE_AWK_IO_FLUSH)
2006-08-22 15:11:13 +00:00
{
if (fflush ((FILE*)epa->handle) == EOF) return -1;
return 0;
}
2006-10-24 04:48:52 +00:00
else if (cmd == ASE_AWK_IO_NEXT)
2006-07-28 10:34:22 +00:00
{
return next_extio_console (epa);
}
2006-06-25 15:26:57 +00:00
2006-07-28 10:34:22 +00:00
return -1;
}
2006-07-27 16:50:29 +00:00
2006-10-24 04:48:52 +00:00
static int open_extio_console (ase_awk_extio_t* epa)
2006-07-28 10:34:22 +00:00
{
/* TODO: OpenConsole in GUI APPLICATION */
2006-07-27 16:50:29 +00:00
2006-07-28 10:34:22 +00:00
/* epa->name is always empty for console */
2006-11-28 15:09:53 +00:00
assert (epa->name[0] == ASE_T('\0'));
2006-07-27 16:50:29 +00:00
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("opening console[%s] of type %x\n"), epa->name, epa->type);
2006-06-25 15:26:57 +00:00
2006-11-21 15:06:51 +00:00
if (epa->mode == ASE_AWK_EXTIO_CONSOLE_READ)
2006-07-28 10:34:22 +00:00
{
2006-10-24 04:48:52 +00:00
if (infiles[infile_no] == ASE_NULL)
2006-06-25 15:26:57 +00:00
{
2006-07-28 10:34:22 +00:00
/* no more input file */
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("console - no more file\n"));;
2006-07-28 10:34:22 +00:00
return 0;
2006-06-25 15:26:57 +00:00
}
2006-10-24 04:48:52 +00:00
if (infiles[infile_no][0] == ASE_T('\0'))
2006-06-25 15:26:57 +00:00
{
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T(" console(r) - <standard input>\n"));
2006-07-28 10:34:22 +00:00
epa->handle = stdin;
}
else
{
/* a temporary variable fp is used here not to change
* any fields of epa when the open operation fails */
2006-12-17 13:12:08 +00:00
FILE* fp = awk_fopen (infiles[infile_no], ASE_T("r"));
2006-10-24 04:48:52 +00:00
if (fp == ASE_NULL)
2006-07-28 10:34:22 +00:00
{
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("cannot open console of type %x - fopen failure\n"), epa->type);
2006-07-28 10:34:22 +00:00
return -1;
}
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T(" console(r) - %s\n"), infiles[infile_no]);
2006-11-24 13:25:12 +00:00
if (ase_awk_setfilename (
2006-10-16 14:39:21 +00:00
epa->run, infiles[infile_no],
2006-10-24 04:48:52 +00:00
ase_awk_strlen(infiles[infile_no])) == -1)
2006-10-16 14:39:21 +00:00
{
fclose (fp);
return -1;
}
2006-07-28 10:34:22 +00:00
epa->handle = fp;
2006-06-25 15:26:57 +00:00
}
2006-07-28 10:34:22 +00:00
infile_no++;
return 1;
}
2006-11-21 15:06:51 +00:00
else if (epa->mode == ASE_AWK_EXTIO_CONSOLE_WRITE)
2006-07-28 10:34:22 +00:00
{
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T(" console(w) - <standard output>\n"));
2006-10-16 14:39:21 +00:00
/* TODO: does output console has a name??? */
2006-10-24 04:48:52 +00:00
/*ase_awk_setconsolename (ASE_T(""));*/
2006-07-28 10:34:22 +00:00
epa->handle = stdout;
return 1;
2006-06-25 15:26:57 +00:00
}
return -1;
}
2006-06-19 09:10:57 +00:00
2006-10-24 04:48:52 +00:00
static int close_extio_console (ase_awk_extio_t* epa)
2006-07-28 10:34:22 +00:00
{
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("closing console of type %x\n"), epa->type);
2006-07-28 10:34:22 +00:00
2006-10-24 04:48:52 +00:00
if (epa->handle != ASE_NULL &&
2006-07-28 10:34:22 +00:00
epa->handle != stdin &&
epa->handle != stdout &&
epa->handle != stderr)
{
fclose (epa->handle);
}
/* TODO: CloseConsole in GUI APPLICATION */
return 0;
}
2006-10-24 04:48:52 +00:00
static int next_extio_console (ase_awk_extio_t* epa)
2006-07-28 10:34:22 +00:00
{
int n;
FILE* fp = epa->handle;
2006-11-17 06:51:28 +00:00
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("switching console[%s] of type %x\n"), epa->name, epa->type);
2006-07-28 10:34:22 +00:00
n = open_extio_console(epa);
if (n == -1) return -1;
if (n == 0)
{
/* if there is no more file, keep the previous handle */
return 0;
}
2006-10-24 04:48:52 +00:00
if (fp != ASE_NULL && fp != stdin &&
2006-07-28 10:34:22 +00:00
fp != stdout && fp != stderr) fclose (fp);
return n;
}
2006-08-04 16:31:22 +00:00
2006-10-24 04:48:52 +00:00
ase_awk_t* app_awk = NULL;
2006-12-17 12:50:59 +00:00
ase_awk_run_t* app_run = NULL;
2006-08-04 16:31:22 +00:00
2006-08-28 14:30:08 +00:00
#ifdef _WIN32
static BOOL WINAPI __stop_run (DWORD ctrl_type)
{
if (ctrl_type == CTRL_C_EVENT ||
ctrl_type == CTRL_CLOSE_EVENT)
{
2006-10-24 04:48:52 +00:00
ase_awk_stop (app_awk, app_run);
2006-08-28 14:30:08 +00:00
return TRUE;
}
return FALSE;
}
#else
2006-08-04 16:31:22 +00:00
static void __stop_run (int sig)
{
signal (SIGINT, SIG_IGN);
2006-10-24 04:48:52 +00:00
ase_awk_stop (app_awk, app_run);
2006-11-15 05:49:22 +00:00
/*ase_awk_stoprun (awk, handle);*/
2006-10-24 04:48:52 +00:00
/*ase_awk_stopallruns (awk); */
2006-08-04 16:31:22 +00:00
signal (SIGINT, __stop_run);
}
2006-08-28 14:30:08 +00:00
#endif
2006-08-04 16:31:22 +00:00
2006-12-16 14:48:31 +00:00
static void on_run_start (
ase_awk_t* awk, ase_awk_run_t* run, void* custom_data)
2006-08-04 16:31:22 +00:00
{
app_awk = awk;
2006-12-16 14:48:31 +00:00
app_run = run;
2006-10-28 05:24:08 +00:00
2006-12-16 14:48:31 +00:00
awk_dprintf (ASE_T("AWK ABOUT TO START...\n"));
2006-08-04 16:31:22 +00:00
}
2006-12-16 14:48:31 +00:00
static void on_run_end (
ase_awk_t* awk, ase_awk_run_t* run,
int errnum, void* custom_data)
2006-08-04 16:31:22 +00:00
{
2006-10-24 04:48:52 +00:00
if (errnum != ASE_AWK_ENOERR)
2006-08-10 16:06:52 +00:00
{
2006-12-16 14:48:31 +00:00
//const ase_awk_t* errmsg = ase_awk_getrunerrmsg (run);
awk_dprintf (
ASE_T("AWK ABOUT TO END WITH AN ERROR - [%d] %s\n"),
errnum, ase_awk_getrunerrmsg (run));
2006-08-10 16:06:52 +00:00
}
2006-12-16 14:48:31 +00:00
else awk_dprintf (ASE_T("AWK ENDED SUCCESSFULLY\n"));
2006-08-10 16:06:52 +00:00
2006-08-04 16:31:22 +00:00
app_awk = NULL;
app_run = NULL;
}
2006-08-31 14:03:38 +00:00
#ifdef _WIN32
2006-12-13 14:17:01 +00:00
typedef struct sysfns_data_t sysfns_data_t;
struct sysfns_data_t
2006-08-31 04:21:04 +00:00
{
HANDLE heap;
};
2006-08-31 14:03:38 +00:00
#endif
2006-08-31 04:21:04 +00:00
2006-12-16 14:48:31 +00:00
static void* awk_malloc (ase_size_t n, void* custom_data)
2006-08-31 04:21:04 +00:00
{
#ifdef _WIN32
2006-12-13 14:17:01 +00:00
return HeapAlloc (((sysfns_data_t*)custom_data)->heap, 0, n);
2006-08-31 04:21:04 +00:00
#else
return malloc (n);
#endif
}
2006-12-16 14:48:31 +00:00
static void* awk_realloc (void* ptr, ase_size_t n, void* custom_data)
2006-08-31 04:21:04 +00:00
{
#ifdef _WIN32
2006-09-01 03:44:51 +00:00
/* HeapReAlloc behaves differently from realloc */
if (ptr == NULL)
2006-12-13 14:17:01 +00:00
return HeapAlloc (((sysfns_data_t*)custom_data)->heap, 0, n);
2006-09-01 03:44:51 +00:00
else
2006-12-13 14:17:01 +00:00
return HeapReAlloc (((sysfns_data_t*)custom_data)->heap, 0, ptr, n);
2006-08-31 04:21:04 +00:00
#else
return realloc (ptr, n);
#endif
}
2006-12-16 14:48:31 +00:00
static void awk_free (void* ptr, void* custom_data)
2006-08-31 04:21:04 +00:00
{
#ifdef _WIN32
2006-12-13 14:17:01 +00:00
HeapFree (((sysfns_data_t*)custom_data)->heap, 0, ptr);
2006-08-31 04:21:04 +00:00
#else
free (ptr);
#endif
}
2006-11-15 05:49:22 +00:00
#if defined(ASE_CHAR_IS_MCHAR)
#if (__TURBOC__<=513) /* turboc 2.01 or earlier */
2006-12-16 14:48:31 +00:00
static int awk_isupper (int c) { return isupper (c); }
static int awk_islower (int c) { return islower (c); }
static int awk_isalpha (int c) { return isalpha (c); }
static int awk_isdigit (int c) { return isdigit (c); }
static int awk_isxdigit (int c) { return isxdigit (c); }
static int awk_isalnum (int c) { return isalnum (c); }
static int awk_isspace (int c) { return isspace (c); }
static int awk_isprint (int c) { return isprint (c); }
static int awk_isgraph (int c) { return isgraph (c); }
static int awk_iscntrl (int c) { return iscntrl (c); }
static int awk_ispunct (int c) { return ispunct (c); }
static int awk_toupper (int c) { return toupper (c); }
static int awk_tolower (int c) { return tolower (c); }
2006-11-15 05:49:22 +00:00
#else
2006-12-16 14:48:31 +00:00
#define awk_isupper isupper
#define awk_islower islower
#define awk_isalpha isalpha
#define awk_isdigit isdigit
#define awk_isxdigit isxdigit
#define awk_isalnum isalnum
#define awk_isspace isspace
#define awk_isprint isprint
#define awk_isgraph isgraph
#define awk_iscntrl iscntrl
#define awk_ispunct ispunct
#define awk_toupper tolower
#define awk_tolower tolower
2006-11-15 05:49:22 +00:00
#endif
#else
2006-12-16 14:48:31 +00:00
#define awk_isupper iswupper
#define awk_islower iswlower
#define awk_isalpha iswalpha
#define awk_isdigit iswdigit
#define awk_isxdigit iswxdigit
#define awk_isalnum iswalnum
#define awk_isspace iswspace
#define awk_isprint iswprint
#define awk_isgraph iswgraph
#define awk_iscntrl iswcntrl
#define awk_ispunct iswpunct
#define awk_toupper towlower
#define awk_tolower towlower
2006-11-15 05:49:22 +00:00
#endif
2006-10-27 09:19:21 +00:00
static int __main (int argc, ase_char_t* argv[])
2005-11-14 15:23:54 +00:00
{
2006-10-24 04:48:52 +00:00
ase_awk_t* awk;
ase_awk_srcios_t srcios;
ase_awk_runcbs_t runcbs;
ase_awk_runios_t runios;
ase_awk_runarg_t runarg[10];
2006-12-13 14:17:01 +00:00
ase_awk_sysfns_t sysfns;
2006-06-29 14:38:01 +00:00
struct src_io src_io = { NULL, NULL };
2006-12-15 14:58:37 +00:00
int opt, i, file_count = 0, errnum;
2006-08-31 04:21:04 +00:00
#ifdef _WIN32
2006-12-13 14:17:01 +00:00
sysfns_data_t sysfns_data;
2006-08-31 04:21:04 +00:00
#endif
2006-11-19 15:24:21 +00:00
const ase_char_t* mfn = ASE_NULL;
2005-11-14 15:23:54 +00:00
2006-11-27 04:33:22 +00:00
opt = ASE_AWK_IMPLICIT |
ASE_AWK_EXPLICIT |
ASE_AWK_UNIQUEAFN |
ASE_AWK_HASHSIGN |
2006-12-04 06:04:07 +00:00
ASE_AWK_IDIV |
2006-11-27 04:33:22 +00:00
ASE_AWK_SHADING |
ASE_AWK_SHIFT |
ASE_AWK_EXTIO |
2006-12-15 14:58:37 +00:00
/*ASE_AWK_COPROC |*/
2006-11-27 04:33:22 +00:00
ASE_AWK_BLOCKLESS |
ASE_AWK_STRINDEXONE |
ASE_AWK_STRIPSPACES |
ASE_AWK_NEXTOFILE;
2006-03-05 17:07:33 +00:00
2006-08-26 16:30:53 +00:00
if (argc <= 1)
{
2006-12-17 12:50:59 +00:00
awk_printf (ASE_T("Usage: %s [-m] source_file [data_file ...]\n"), argv[0]);
2006-08-26 16:30:53 +00:00
return -1;
}
2006-08-25 03:31:09 +00:00
for (i = 1; i < argc; i++)
2006-04-10 09:22:05 +00:00
{
2006-10-24 04:48:52 +00:00
if (ase_awk_strcmp(argv[i], ASE_T("-m")) == 0)
2006-06-29 14:38:01 +00:00
{
2006-11-19 15:24:21 +00:00
mfn = ASE_T("main");
2006-06-29 14:38:01 +00:00
}
2006-08-25 03:31:09 +00:00
else if (file_count == 0)
2006-04-10 09:22:05 +00:00
{
2006-08-25 03:31:09 +00:00
src_io.input_file = argv[i];
file_count++;
}
2006-11-29 03:55:57 +00:00
else if (file_count >= 1 && file_count < ASE_COUNTOF(infiles)-1)
2006-08-25 03:31:09 +00:00
{
2006-10-16 14:39:21 +00:00
infiles[file_count-1] = argv[i];
2006-10-24 04:48:52 +00:00
infiles[file_count] = ASE_NULL;
2006-08-25 03:31:09 +00:00
file_count++;
2006-04-10 09:22:05 +00:00
}
2006-06-29 14:38:01 +00:00
else
{
2006-12-17 12:50:59 +00:00
awk_printf (ASE_T("Usage: %s [-m] [-f source_file] [data_file ...]\n"), argv[0]);
2006-06-29 14:38:01 +00:00
return -1;
}
}
2006-12-13 14:17:01 +00:00
memset (&sysfns, 0, ASE_SIZEOF(sysfns));
2006-12-16 16:14:40 +00:00
sysfns.malloc = awk_malloc;
sysfns.realloc = awk_realloc;
sysfns.free = awk_free;
sysfns.memcpy = memcpy;
sysfns.memset = memset;
2006-12-13 14:17:01 +00:00
2006-12-16 14:48:31 +00:00
sysfns.is_upper = awk_isupper;
sysfns.is_lower = awk_islower;
sysfns.is_alpha = awk_isalpha;
sysfns.is_digit = awk_isdigit;
sysfns.is_xdigit = awk_isxdigit;
sysfns.is_alnum = awk_isalnum;
sysfns.is_space = awk_isspace;
sysfns.is_print = awk_isprint;
sysfns.is_graph = awk_isgraph;
sysfns.is_cntrl = awk_iscntrl;
sysfns.is_punct = awk_ispunct;
sysfns.to_upper = awk_toupper;
sysfns.to_lower = awk_tolower;
2006-12-13 14:17:01 +00:00
2006-12-16 16:14:40 +00:00
sysfns.pow = awk_pow;
2006-12-16 14:48:31 +00:00
sysfns.sprintf = awk_sprintf;
sysfns.aprintf = awk_aprintf;
sysfns.dprintf = awk_dprintf;
2006-12-16 16:14:40 +00:00
sysfns.abort = awk_abort;
sysfns.lock = NULL;
sysfns.unlock = NULL;
2006-09-01 06:23:58 +00:00
2006-08-31 04:21:04 +00:00
#ifdef _WIN32
2006-12-13 14:17:01 +00:00
sysfns_data.heap = HeapCreate (0, 1000000, 1000000);
if (sysfns_data.heap == NULL)
2006-08-31 04:21:04 +00:00
{
2006-12-17 12:50:59 +00:00
awk_printf (ASE_T("Error: cannot create an awk heap\n"));
2006-08-31 04:21:04 +00:00
return -1;
}
2006-12-13 14:17:01 +00:00
sysfns.custom_data = &sysfns_data;
2006-08-31 04:21:04 +00:00
#endif
2006-12-15 14:58:37 +00:00
if ((awk = ase_awk_open(&sysfns, &errnum)) == ASE_NULL)
2006-08-31 04:21:04 +00:00
{
#ifdef _WIN32
2006-12-13 14:17:01 +00:00
HeapDestroy (sysfns_data.heap);
2006-08-31 04:21:04 +00:00
#endif
2006-12-17 12:50:59 +00:00
awk_printf (
2006-12-15 14:58:37 +00:00
ASE_T("ERROR: cannot parse awk [%d] %s\n"),
errnum, ase_awk_geterrstr(errnum));
2006-08-31 04:21:04 +00:00
return -1;
}
2006-10-24 04:48:52 +00:00
ase_awk_setopt (awk, opt);
2006-08-04 17:02:02 +00:00
2006-08-04 17:54:52 +00:00
srcios.in = process_source;
2006-08-06 15:03:42 +00:00
srcios.out = dump_source;
2006-08-06 08:16:03 +00:00
srcios.custom_data = &src_io;
2006-08-04 17:54:52 +00:00
2006-11-27 15:11:14 +00:00
2006-11-26 14:41:23 +00:00
ase_awk_setmaxparsedepth (
awk, ASE_AWK_DEPTH_BLOCK | ASE_AWK_DEPTH_EXPR, 20);
2006-12-04 12:59:01 +00:00
ase_awk_setmaxrundepth (
awk, ASE_AWK_DEPTH_BLOCK | ASE_AWK_DEPTH_EXPR, 50);
2006-11-26 14:41:23 +00:00
2006-10-24 04:48:52 +00:00
if (ase_awk_parse (awk, &srcios) == -1)
2006-04-10 09:22:05 +00:00
{
2006-10-24 04:48:52 +00:00
int errnum = ase_awk_geterrnum(awk);
2006-12-17 12:50:59 +00:00
awk_printf (
2006-10-24 04:48:52 +00:00
ASE_T("ERROR: cannot parse program - line %u [%d] %s\n"),
(unsigned int)ase_awk_getsrcline(awk),
errnum, ase_awk_geterrstr(errnum));
ase_awk_close (awk);
2005-11-14 15:23:54 +00:00
return -1;
}
2006-08-28 14:30:08 +00:00
#ifdef _WIN32
SetConsoleCtrlHandler (__stop_run, TRUE);
#else
2006-08-04 16:31:22 +00:00
signal (SIGINT, __stop_run);
2006-08-28 14:30:08 +00:00
#endif
2006-08-04 16:31:22 +00:00
2006-08-04 17:36:40 +00:00
runios.pipe = process_extio_pipe;
2006-10-24 04:48:52 +00:00
runios.coproc = ASE_NULL;
2006-08-04 17:36:40 +00:00
runios.file = process_extio_file;
runios.console = process_extio_console;
2006-12-16 14:48:31 +00:00
runcbs.on_start = on_run_start;
runcbs.on_end = on_run_end;
2006-10-24 04:48:52 +00:00
runcbs.custom_data = ASE_NULL;
runarg[0].ptr = ASE_T("argument 0");
runarg[0].len = ase_awk_strlen(runarg[0].ptr);
runarg[1].ptr = ASE_T("argumetn 1");
runarg[1].len = ase_awk_strlen(runarg[1].ptr);
runarg[2].ptr = ASE_T("argumetn 2");
runarg[2].len = ase_awk_strlen(runarg[2].ptr);
runarg[3].ptr = ASE_NULL;
2006-10-16 09:11:53 +00:00
runarg[3].len = 0;
2006-10-10 14:09:23 +00:00
2006-11-28 04:30:57 +00:00
if (ase_awk_run (awk, mfn, &runios, &runcbs, runarg, ASE_NULL) == -1)
2006-04-10 09:22:05 +00:00
{
2006-10-24 04:48:52 +00:00
int errnum = ase_awk_geterrnum(awk);
2006-12-17 12:50:59 +00:00
awk_printf (
2006-10-24 04:48:52 +00:00
ASE_T("error: cannot run program - [%d] %s\n"),
errnum, ase_awk_geterrstr(errnum));
ase_awk_close (awk);
2006-04-06 16:25:37 +00:00
return -1;
2006-03-05 17:07:33 +00:00
}
2006-10-24 04:48:52 +00:00
ase_awk_close (awk);
2006-08-31 04:21:04 +00:00
#ifdef _WIN32
2006-12-13 14:17:01 +00:00
HeapDestroy (sysfns_data.heap);
2006-08-31 04:21:04 +00:00
#endif
2006-05-12 09:39:20 +00:00
return 0;
}
2006-01-30 17:50:38 +00:00
2006-09-22 14:05:30 +00:00
#ifdef _WIN32
/*
NTSYSAPI PTEB NTAPI NtCurrentTeb();
Function NtCurrentTeb returns address of TEB (Thread Environment Block) for calling thread.
NtCurrentTeb isn't typical NT CALL realised via INT 2E, becouse TEB is accessable at address fs:[0018h].
Microsoft declare NtCurrentTeb as __cdecl, but ntdll.dll export it as __stdcall (it don't have metter, becouse function don't have any parameters), so you cannot use ntdll.dll export. In this case the better way is write NtCurrentTeb manually, declaring it as __cdecl.
typedef UCHAR BOOLEAN;
typedef struct _TEB {
NT_TIB Tib;
PVOID EnvironmentPointer;
CLIENT_ID Cid;
PVOID ActiveRpcInfo;
PVOID ThreadLocalStoragePointer;
PPEB Peb;
ULONG LastErrorValue;
ULONG CountOfOwnedCriticalSections;
PVOID CsrClientThread;
PVOID Win32ThreadInfo;
ULONG Win32ClientInfo[0x1F];
PVOID WOW32Reserved;
ULONG CurrentLocale;
ULONG FpSoftwareStatusRegister;
PVOID SystemReserved1[0x36];
PVOID Spare1;
ULONG ExceptionCode;
ULONG SpareBytes1[0x28];
PVOID SystemReserved2[0xA];
ULONG GdiRgn;
ULONG GdiPen;
ULONG GdiBrush;
CLIENT_ID RealClientId;
PVOID GdiCachedProcessHandle;
ULONG GdiClientPID;
ULONG GdiClientTID;
PVOID GdiThreadLocaleInfo;
PVOID UserReserved[5];
PVOID GlDispatchTable[0x118];
ULONG GlReserved1[0x1A];
PVOID GlReserved2;
PVOID GlSectionInfo;
PVOID GlSection;
PVOID GlTable;
PVOID GlCurrentRC;
PVOID GlContext;
NTSTATUS LastStatusValue;
UNICODE_STRING StaticUnicodeString;
WCHAR StaticUnicodeBuffer[0x105];
PVOID DeallocationStack;
PVOID TlsSlots[0x40];
LIST_ENTRY TlsLinks;
PVOID Vdm;
PVOID ReservedForNtRpc;
PVOID DbgSsReserved[0x2];
ULONG HardErrorDisabled;
PVOID Instrumentation[0x10];
PVOID WinSockData;
ULONG GdiBatchCount;
ULONG Spare2;
ULONG Spare3;
ULONG Spare4;
PVOID ReservedForOle;
ULONG WaitingOnLoaderLock;
PVOID StackCommit;
PVOID StackCommitMax;
PVOID StackReserved;
} TEB, *PTEB;
typedef struct _PEB {
BOOLEAN InheritedAddressSpace;
BOOLEAN ReadImageFileExecOptions;
BOOLEAN BeingDebugged;
BOOLEAN Spare;
HANDLE Mutant;
PVOID ImageBaseAddress;
PPEB_LDR_DATA LoaderData;
PRTL_USER_PROCESS_PARAMETERS ProcessParameters;
PVOID SubSystemData;
PVOID ProcessHeap;
PVOID FastPebLock;
PPEBLOCKROUTINE FastPebLockRoutine;
PPEBLOCKROUTINE FastPebUnlockRoutine;
ULONG EnvironmentUpdateCount;
PPVOID KernelCallbackTable;
PVOID EventLogSection;
PVOID EventLog;
PPEB_FREE_BLOCK FreeList;
ULONG TlsExpansionCounter;
PVOID TlsBitmap;
ULONG TlsBitmapBits[0x2];
PVOID ReadOnlySharedMemoryBase;
PVOID ReadOnlySharedMemoryHeap;
PPVOID ReadOnlyStaticServerData;
PVOID AnsiCodePageData;
PVOID OemCodePageData;
PVOID UnicodeCaseTableData;
ULONG NumberOfProcessors;
ULONG NtGlobalFlag;
BYTE Spare2[0x4];
LARGE_INTEGER CriticalSectionTimeout;
ULONG HeapSegmentReserve;
ULONG HeapSegmentCommit;
ULONG HeapDeCommitTotalFreeThreshold;
ULONG HeapDeCommitFreeBlockThreshold;
ULONG NumberOfHeaps;
ULONG MaximumNumberOfHeaps;
PPVOID *ProcessHeaps;
PVOID GdiSharedHandleTable;
PVOID ProcessStarterHelper;
PVOID GdiDCAttributeList;
PVOID LoaderLock;
ULONG OSMajorVersion;
ULONG OSMinorVersion;
ULONG OSBuildNumber;
ULONG OSPlatformId;
ULONG ImageSubSystem;
ULONG ImageSubSystemMajorVersion;
ULONG ImageSubSystemMinorVersion;
ULONG GdiHandleBuffer[0x22];
ULONG PostProcessInitRoutine;
ULONG TlsExpansionBitmap;
BYTE TlsExpansionBitmapBits[0x80];
ULONG SessionId;
} PEB, *PPEB;
*/
2006-10-27 10:28:53 +00:00
void* /*__declspec(naked)*/ get_current_teb (void)
2006-09-22 14:05:30 +00:00
{
2006-10-27 10:28:53 +00:00
_asm
2006-09-22 14:05:30 +00:00
{
mov eax, fs:[0x18]
}
}
2006-10-27 09:19:21 +00:00
void* get_current_peb (void)
2006-09-22 14:05:30 +00:00
{
void* teb = get_current_teb ();
return *(void**)((char*)teb + 0x30);
}
2006-10-27 09:19:21 +00:00
int is_debugger_present (void)
2006-09-22 14:05:30 +00:00
{
void *peb = get_current_peb ();
return *((char*)peb+0x02);
}
2006-10-27 10:28:53 +00:00
int /*__declspec(naked)*/ is_debugger_present2 (void)
2006-09-22 14:05:30 +00:00
{
_asm
{
mov eax, fs:[0x18]
mov ebx, [eax+0x30]
xor eax, eax
mov al, byte ptr[ebx+0x02]
}
}
#endif
2006-10-27 09:19:21 +00:00
#if defined(_WIN32)
int _tmain (int argc, ase_char_t* argv[])
2006-12-17 12:50:59 +00:00
#elif defined(__MSDOS__) || defined(ASE_CHAR_IS_MCHAR)
2006-11-15 05:49:22 +00:00
int main (int argc, ase_char_t* argv[])
2006-05-12 09:39:20 +00:00
#else
2006-10-27 09:19:21 +00:00
int xp_main (int argc, ase_char_t* argv[])
2006-05-12 09:39:20 +00:00
#endif
{
int n;
2006-05-12 11:10:26 +00:00
#if defined(__linux) && defined(_DEBUG)
2006-05-12 09:39:20 +00:00
mtrace ();
#endif
2006-09-01 04:03:28 +00:00
/*#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
2006-05-12 10:56:18 +00:00
_CrtSetDbgFlag (_CRTDBG_LEAK_CHECK_DF | _CRTDBG_ALLOC_MEM_DF | _CRTDBG_CHECK_ALWAYS_DF);
#endif*/
2006-05-12 09:39:20 +00:00
2006-10-27 10:28:53 +00:00
#if defined(_WIN32)
2006-09-22 14:05:30 +00:00
if (IsDebuggerPresent ())
{
2006-10-27 10:28:53 +00:00
_tprintf (_T("Running application in a debugger....\n"));
2006-09-22 14:05:30 +00:00
}
if (is_debugger_present ())
{
2006-10-27 10:28:53 +00:00
_tprintf (_T("Running application in a debugger by is_debugger_present...\n"));
2006-09-22 14:05:30 +00:00
}
if (is_debugger_present2 ())
{
2006-10-27 10:28:53 +00:00
_tprintf (_T("Running application in a debugger by is_debugger_present2...\n"));
2006-09-22 14:05:30 +00:00
}
2006-09-02 15:17:44 +00:00
#endif
2006-12-17 12:33:31 +00:00
#if defined(__unix)
2006-12-17 12:50:59 +00:00
setlocale (LC_ALL, "");
2006-11-17 07:49:10 +00:00
#endif
2006-05-12 09:39:20 +00:00
n = __main (argc, argv);
2006-05-12 11:10:26 +00:00
#if defined(__linux) && defined(_DEBUG)
2006-01-30 17:50:38 +00:00
muntrace ();
#endif
2006-10-27 10:28:53 +00:00
#if defined(_WIN32) && defined(_DEBUG)
#if defined(_MSC_VER)
2006-05-12 09:39:20 +00:00
_CrtDumpMemoryLeaks ();
2006-10-27 10:28:53 +00:00
#endif
_tprintf (_T("Press ENTER to quit\n"));
2006-05-13 15:51:43 +00:00
getchar ();
2006-05-12 09:39:20 +00:00
#endif
2006-05-13 15:51:43 +00:00
2006-05-12 09:39:20 +00:00
return n;
2005-11-14 15:23:54 +00:00
}
2006-05-12 09:39:20 +00:00