2008-06-27 04:46:00 +00:00
|
|
|
/*
|
|
|
|
* $Id: tgp.c,v 1.5 2007/05/16 09:15:14 bacon Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ase/tgp/tgp.h>
|
|
|
|
|
|
|
|
#include <ase/utl/ctype.h>
|
|
|
|
#include <ase/utl/stdio.h>
|
|
|
|
#include <ase/utl/main.h>
|
|
|
|
#include <ase/utl/getopt.h>
|
|
|
|
#include <ase/cmn/mem.h>
|
|
|
|
#include <ase/cmn/str.h>
|
|
|
|
|
2008-06-29 02:37:09 +00:00
|
|
|
#include <ase/utl/helper.h>
|
2008-06-27 04:46:00 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
|
|
|
|
#define _CRTDBG_MAP_ALLOC
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__linux) && defined(_DEBUG)
|
|
|
|
#include <mcheck.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void print_usage (const ase_char_t* argv0)
|
|
|
|
{
|
|
|
|
ase_fprintf (ASE_STDERR,
|
2008-06-30 07:41:11 +00:00
|
|
|
ASE_T("Usage: %s [options] [file]\n"), argv0);
|
2008-06-27 04:46:00 +00:00
|
|
|
ase_fprintf (ASE_STDERR,
|
|
|
|
ASE_T(" -h print this message\n"));
|
2008-06-29 00:14:04 +00:00
|
|
|
|
|
|
|
ase_fprintf (ASE_STDERR,
|
|
|
|
ASE_T(" -u user id\n"));
|
|
|
|
ase_fprintf (ASE_STDERR,
|
|
|
|
ASE_T(" -g group id\n"));
|
|
|
|
ase_fprintf (ASE_STDERR,
|
|
|
|
ASE_T(" -r chroot\n"));
|
|
|
|
ase_fprintf (ASE_STDERR,
|
|
|
|
ASE_T(" -U enable upload\n"));
|
2008-06-27 04:46:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int handle_args (int argc, ase_char_t* argv[])
|
|
|
|
{
|
|
|
|
ase_opt_t opt;
|
|
|
|
ase_cint_t c;
|
|
|
|
|
|
|
|
ase_memset (&opt, 0, ASE_SIZEOF(opt));
|
2008-06-29 00:14:04 +00:00
|
|
|
opt.str = ASE_T("hu:g:r:");
|
2008-06-27 04:46:00 +00:00
|
|
|
|
|
|
|
while ((c = ase_getopt (argc, argv, &opt)) != ASE_CHAR_EOF)
|
|
|
|
{
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case ASE_T('h'):
|
|
|
|
print_usage (argv[0]);
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
case ASE_T('?'):
|
|
|
|
ase_fprintf (ASE_STDERR, ASE_T("Error: illegal option - %c\n"), opt.opt);
|
|
|
|
print_usage (argv[0]);
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
case ASE_T(':'):
|
|
|
|
ase_fprintf (ASE_STDERR, ASE_T("Error: missing argument for %c\n"), opt.opt);
|
|
|
|
print_usage (argv[0]);
|
|
|
|
return -1;
|
2008-06-29 00:14:04 +00:00
|
|
|
|
|
|
|
case ASE_T('u'):
|
|
|
|
//opt.arg;
|
|
|
|
break;
|
|
|
|
case ASE_T('g'):
|
|
|
|
//opt.arg;
|
|
|
|
break;
|
|
|
|
case ASE_T('r'):
|
|
|
|
//opt.arg;
|
|
|
|
break;
|
|
|
|
case ASE_T('U'):
|
|
|
|
//opt.arg;
|
|
|
|
break;
|
2008-06-27 04:46:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt.ind < argc)
|
|
|
|
{
|
|
|
|
ase_printf (ASE_T("Error: redundant argument - %s\n"), argv[opt.ind]);
|
|
|
|
print_usage (argv[0]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-06 01:25:54 +00:00
|
|
|
typedef struct xin_t
|
2008-06-30 07:41:11 +00:00
|
|
|
{
|
|
|
|
const ase_char_t* name;
|
|
|
|
ASE_FILE* fp;
|
2008-07-06 01:25:54 +00:00
|
|
|
} xin_t;
|
2008-06-30 07:41:11 +00:00
|
|
|
|
2008-07-06 01:25:54 +00:00
|
|
|
typedef struct xout_t
|
2008-06-30 07:41:11 +00:00
|
|
|
{
|
|
|
|
const ase_char_t* name;
|
|
|
|
ASE_FILE* fp;
|
2008-07-06 01:25:54 +00:00
|
|
|
} xout_t;
|
2008-06-30 07:41:11 +00:00
|
|
|
|
|
|
|
|
2008-07-06 09:05:48 +00:00
|
|
|
static int io_in (int cmd, void* arg, ase_char_t* buf, int len)
|
2008-06-30 07:41:11 +00:00
|
|
|
{
|
|
|
|
xin_t* xin = (xin_t*)arg;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
2008-07-06 01:25:54 +00:00
|
|
|
case ASE_TGP_IO_OPEN:
|
2008-07-06 09:05:48 +00:00
|
|
|
xin->fp = (xin->name == ASE_NULL)?
|
|
|
|
ASE_STDIN:
|
|
|
|
ase_fopen(xin->name,ASE_T("r"));
|
|
|
|
|
2008-07-06 01:25:54 +00:00
|
|
|
return (xin->fp == NULL)? -1: 0;
|
2008-06-30 07:41:11 +00:00
|
|
|
|
2008-07-06 01:25:54 +00:00
|
|
|
case ASE_TGP_IO_CLOSE:
|
2008-07-06 09:05:48 +00:00
|
|
|
if (xin->name != ASE_NULL) ase_fclose (xin->fp);
|
2008-06-30 07:41:11 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-07-06 01:25:54 +00:00
|
|
|
case ASE_TGP_IO_READ:
|
2008-07-06 09:05:48 +00:00
|
|
|
if (ase_fgets (buf, len, xin->fp) == ASE_NULL) return 0;
|
|
|
|
return ase_strlen(buf);
|
2008-06-30 07:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-07-06 09:05:48 +00:00
|
|
|
static int io_out (int cmd, void* arg, ase_char_t* buf, int len)
|
2008-06-30 07:41:11 +00:00
|
|
|
{
|
2008-07-06 09:05:48 +00:00
|
|
|
xout_t* xout = (xout_t*)arg;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case ASE_TGP_IO_OPEN:
|
|
|
|
xout->fp = (xout->name == ASE_NULL)?
|
|
|
|
ASE_STDOUT:
|
|
|
|
ase_fopen(xout->name,ASE_T("r"));
|
|
|
|
|
|
|
|
return (xout->fp == NULL)? -1: 0;
|
|
|
|
|
|
|
|
case ASE_TGP_IO_CLOSE:
|
|
|
|
if (xout->name != ASE_NULL) ase_fclose (xout->fp);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case ASE_TGP_IO_WRITE:
|
|
|
|
ase_fprintf (xout->fp, "%.*s", len, buf);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2008-06-30 07:41:11 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 04:46:00 +00:00
|
|
|
int tgp_main (int argc, ase_char_t* argv[])
|
|
|
|
{
|
|
|
|
ase_tgp_t* tgp;
|
2008-07-06 09:05:48 +00:00
|
|
|
|
|
|
|
xin_t xin;
|
|
|
|
xout_t xout;
|
|
|
|
|
2008-06-30 07:41:11 +00:00
|
|
|
int ret = 0;
|
2008-06-27 04:46:00 +00:00
|
|
|
|
|
|
|
if (handle_args (argc, argv) == -1) return -1;
|
|
|
|
|
|
|
|
tgp = ase_tgp_open (ASE_GETMMGR());
|
|
|
|
if (tgp == ASE_NULL)
|
|
|
|
{
|
|
|
|
ase_fprintf (ASE_STDERR,
|
|
|
|
ASE_T("Error: cannot create a tgp instance\n"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-07-06 09:05:48 +00:00
|
|
|
xin.name = ASE_T("x.tgp");
|
|
|
|
xout.name = ASE_NULL;
|
|
|
|
|
|
|
|
ase_tgp_attachin (tgp, io_in, &xin);
|
|
|
|
ase_tgp_attachout (tgp, io_out, &xout);
|
2008-06-30 07:41:11 +00:00
|
|
|
/*
|
|
|
|
ase_tgp_setexecin (tgp, io, );
|
|
|
|
ase_tgp_setexecout (tgp, io, );
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ase_tgp_run (tgp) == -1)
|
|
|
|
{
|
|
|
|
ase_fprintf (ASE_STDERR,
|
|
|
|
ASE_T("Error: cannot run a tgp instance\n"));
|
|
|
|
ret = -1;
|
|
|
|
}
|
2008-06-27 04:46:00 +00:00
|
|
|
|
|
|
|
ase_tgp_close (tgp);
|
2008-06-30 07:41:11 +00:00
|
|
|
return ret;
|
2008-06-27 04:46:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ase_main (int argc, ase_achar_t* argv[])
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
#if defined(__linux) && defined(_DEBUG)
|
|
|
|
mtrace ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
n = ase_runmain (argc, argv, tgp_main);
|
|
|
|
|
|
|
|
#if defined(__linux) && defined(_DEBUG)
|
|
|
|
muntrace ();
|
|
|
|
#endif
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
|
|
|
|
_CrtDumpMemoryLeaks ();
|
|
|
|
wprintf (L"Press ENTER to quit\n");
|
|
|
|
getchar ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|