1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/*
Copyright (C) 2001-2008, Parrot Foundation.
=head1 NAME
src/test_main.c - A sample test program
=head1 DESCRIPTION
C<examples/c/test_main.c> is being retained as an example of a non-trivial, but
still clean, Parrot embedding.
While it bears some resemblance to IMCC, no effort is made to keep this
sample up to date with respect to the latest parrot functionality.
=head2 Functions
=over 4
=cut
*/
#include "parrot/parrot.h"
#include "parrot/longopt.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define setopt(flag) Parrot_setflag(interp, (flag), (*argv)[0]+2);
#define unsetopt(flag) Parrot_setflag(interp, (flag), 0)
static char *parseflags(PARROT_INTERP, int *argc, char **argv[]);
#define OPT_GC_DEBUG 128
#define OPT_DESTROY_FLAG 129
static struct longopt_opt_decl options[] = {
{ 'b', 'b', 0, { "--bounds-checks" } },
{ 'd', 'd', 0, { "--debug" } },
{ 'h', 'h', 0, { "--help" } },
{ 'j', 'j', 0, { "--jit" } },
{ 'o', 'o', 0, { "--output-file" } },
{ 'p', 'p', 0, { "--profile" } },
{ 'P', 'P', 0, { "--prederefrenced-core" } },
{ 'S', 'S', 0, { "--switched-core" } },
{ 'g', 'g', 0, { "--no-computed-goto" } },
{ 't', 't', 0, { "--trace" } },
{ 'v', 'v', 0, { "--version" } },
{ '.', '.', 0, { "--wait" } },
{'\0', OPT_GC_DEBUG, 0, { "--gc-debug" } },
{'\0', OPT_DESTROY_FLAG, 0, { "--leak-test", "--destroy-at-end" } },
{'\0', 0, 0, { NULL } }
};
static void usage(void);
static void version(void);
/*
=item C<int main(int argc, char *argv[])>
Loads the file and runs the code.
=cut
*/
int
main(int argc, char *argv[])
{
Parrot_Interp interp;
char *filename;
Parrot_PackFile pf;
interp = Parrot_new(NULL);
if (!interp) {
return 1;
}
filename = parseflags(interp, &argc, &argv);
pf = Parrot_pbc_read(interp, filename, 0);
if (!pf) {
return 1;
}
Parrot_pbc_load(interp, pf);
Parrot_runcode(interp, argc, argv);
Parrot_destroy(interp);
Parrot_x_exit(interp, 0);
return 0;
}
/*
=item C<static char * parseflags(PARROT_INTERP, int *argc, char **argv[])>
Parses the command-line.
=cut
*/
static char *
parseflags(PARROT_INTERP, int *argc, char **argv[])
{
struct longopt_opt_info opt = LONGOPT_OPT_INFO_INIT;
if (*argc == 1) {
usage();
}
++*argv;
--*argc;
opt.opt_index = 0;
#ifdef HAVE_COMPUTED_GOTO
setopt(PARROT_CGOTO_FLAG);
#endif
while (longopt_get(*argc, *argv, options, &opt)) {
if (opt.opt_id == -1) {
fprintf(stderr, "parrot: %s\n", opt.opt_error);
Parrot_x_exit(interp, 1);
}
switch (opt.opt_id) {
case 'b':
setopt(PARROT_BOUNDS_FLAG);
break;
case 'j':
setopt(PARROT_JIT_FLAG);
break;
case 'o':
setopt(PARROT_EXEC_FLAG);
break;
case 'p':
setopt(PARROT_PROFILE_FLAG);
break;
case 'P':
setopt(PARROT_PREDEREF_FLAG);
break;
case 'S':
setopt(PARROT_SWITCH_FLAG);
break;
case 'g':
unsetopt(PARROT_CGOTO_FLAG);
break;
case 't':
setopt(PARROT_TRACE_FLAG);
break;
case 'd':
setopt(PARROT_DEBUG_FLAG);
break;
case 'h':
usage();
break;
case 'v':
version();
break;
case 'w':
Parrot_setwarnings(interp, PARROT_WARNINGS_ALL_FLAG);
break;
case '.': /* Give Windows Parrot hackers an opportunity to
* attach a debuggger. */
fgetc(stdin);
break;
case OPT_GC_DEBUG:
#if DISABLE_GC_DEBUG
Parrot_warn(interp, PARROT_WARNINGS_ALL_FLAG,
"PARROT_GC_DEBUG is set but the binary was "
"compiled with DISABLE_GC_DEBUG.");
#endif
setopt(PARROT_GC_DEBUG_FLAG);
break;
case OPT_DESTROY_FLAG:
setopt(PARROT_DESTROY_FLAG);
break;
}
}
*argv += opt.opt_index;
*argc -= opt.opt_index;
if ((*argv)[0])
return (*argv)[0];
else {
usage();
return 0; /* This won't happen */
}
}
/*
=item C<static void usage(void)>
Returns the user help.
=cut
*/
static void
usage(void)
{
fprintf(stderr,
"Usage: parrot [switches] [--] programfile [arguments]\n\
-b --bounds-checks Activate bounds checks\n\
-d --debug Activate debugging\n\
-h --help Display this message\n\
-j --jit Activate Just-In-Time compiler\n\
-p --profile Activate profiling\n\
-t --trace Activate tracing\n\
-v --version Display version information\n\
-. --wait Wait for a keypress (gives Windows users\n\
time to attach a debugger)\n\
--gc-debug\n\
Enable garbage collection debugging mode. This may also be enabled\n\
by setting the environment variable $PARROT_GC_DEBUG to 1.\n\
\n");
Parrot_x_exit(interp, 0);
}
/*
=item C<static void version(void)>
Returns the version information.
=cut
*/
static void
version(void)
{
fprintf(stderr,
"This is parrot version " PARROT_VERSION " built for "
PARROT_ARCHNAME "\n\
Copyright (C) 2001-2003, Parrot Foundation.\n\
\n\
Parrot may be copied only under the terms of either the Artistic License or the\
\n\
GNU General Public License, which may be found in the Parrot source kit.\n\
\n\
This program is distributed in the hope that it will be useful,\n\
but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either\n\
the GNU General Public License or the Artistic License for more details.\n\n");
Parrot_x_exit(interp, 0);
}
/*
=back
=head1 SEE ALSO
F<imcc/main.c>.
=head1 HISTORY
This file used to be the C<parrot> executable, but F<imcc/main.c>
performs that role.
=cut
*/
/*
* Local variables:
* c-file-style: "parrot"
* End:
* vim: expandtab shiftwidth=4 cinoptions='\:2=2' :
*/
|