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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
|
/***************************************************************
bwx_tty.c Environment-dependent implementation
for Bywater BASIC Interpreter
using simple TTY-style input/output
This file should be used as a template
for developing more sophisticated
environment-dependent implementations
Copyright (c) 1993, Ted A. Campbell
Bywater Software
email: tcamp@delphi.com
Copyright and Permissions Information:
All U.S. and international rights are claimed by the author,
Ted A. Campbell.
This software is released under the terms of the GNU General
Public License (GPL), which is distributed with this software
in the file "COPYING". The GPL specifies the terms under
which users may copy and use the software in this distribution.
A separate license is available for commercial distribution,
for information on which you should contact the author.
***************************************************************/
/*---------------------------------------------------------------*/
/* NOTE: Modifications marked "JBV" were made by Jon B. Volkoff, */
/* 11/1995 (eidetics@cerf.net). */
/* */
/* Those additionally marked with "DD" were at the suggestion of */
/* Dale DePriest (daled@cadence.com). */
/*---------------------------------------------------------------*/
#include <stdio.h>
#include "bwbasic.h"
#include "bwb_mes.h"
#if HAVE_LONGJUMP /* Revised by JBV (bug found by DD) */
#include <setjmp.h>
#endif
extern int prn_col;
#if HAVE_LONGJUMP /* Revised by JBV (bug found by DD) */
extern jmp_buf mark;
#endif
/***************************************************************
FUNCTION: main()
DESCRIPTION: As in any C program, main() is the basic
function from which the rest of the
program is called. Some environments,
however, provide their own main() functions
(Microsoft Windows (tm) is an example).
In these cases, the following code will
have to be included in the initialization
function that is called by the environment.
***************************************************************/
#if ANSI_C
void
main( int argc, char **argv )
#else
main( argc, argv )
int argc;
char **argv;
#endif
{
bwb_init( argc, argv );
#if HAVE_LONGJUMP /* Revised by JBV (bug found by DD) */
#if INTERACTIVE
setjmp( mark );
#endif
#endif
/* main program loop */
while( !feof( stdin ) ) /* condition !feof( stdin ) added in v1.11 */
{
bwb_mainloop();
}
bwx_terminate(); /* allow ^D (Unix) exit with grace */
}
/***************************************************************
FUNCTION: bwx_signon()
DESCRIPTION: This function prints out the sign-on
message for bwBASIC.
***************************************************************/
#if ANSI_C
int
bwx_signon( void )
#else
int
bwx_signon()
#endif
{
sprintf( bwb_ebuf, "\r%s %s\n", MES_SIGNON, VERSION );
prn_xprintf( stdout, bwb_ebuf );
sprintf( bwb_ebuf, "\r%s\n", MES_COPYRIGHT );
prn_xprintf( stdout, bwb_ebuf );
sprintf( bwb_ebuf, "\r%s\n", MES_COPYRIGHT_2 ); /* JBV 1/97 */
prn_xprintf( stdout, bwb_ebuf );
#if PERMANENT_DEBUG
sprintf( bwb_ebuf, "\r%s\n", "Debugging Mode" );
prn_xprintf( stdout, bwb_ebuf );
#else
sprintf( bwb_ebuf, "\r%s\n", MES_LANGUAGE );
prn_xprintf( stdout, bwb_ebuf );
#endif
return TRUE;
}
/***************************************************************
FUNCTION: bwx_message()
DESCRIPTION: This function outputs a message to the
default output device.
***************************************************************/
#if ANSI_C
int
bwx_message( char *m )
#else
int
bwx_message( m )
char *m;
#endif
{
#if INTENSIVE_DEBUG
fprintf( stderr, "<MES>" );
#endif
prn_xprintf( stdout, m );
return TRUE;
}
/***************************************************************
FUNCTION: bwx_putc()
DESCRIPTION: This function outputs a single character
to the default output device.
***************************************************************/
#if ANSI_C
int
bwx_putc( char c )
#else
int
bwx_putc( c )
char c;
#endif
{
return fputc( c, stdout );
}
/***************************************************************
FUNCTION: bwx_error()
DESCRIPTION: This function outputs a message to the
default error-message device.
***************************************************************/
#if ANSI_C
int
bwx_errmes( char *m )
#else
int
bwx_errmes( m )
char *m;
#endif
{
static char tbuf[ MAXSTRINGSIZE + 1 ]; /* this memory should be
permanent in case of memory
overrun errors */
if (( prn_col != 1 ) && ( errfdevice == stderr ))
{
prn_xprintf( errfdevice, "\n" );
}
if ( CURTASK number == 0 )
{
sprintf( tbuf, "\n%s: %s\n", ERRD_HEADER, m );
}
else
{
sprintf( tbuf, "\n%s %d: %s\n", ERROR_HEADER, CURTASK number, m );
}
#if INTENSIVE_DEBUG
fprintf( stderr, "<ERR>" );
#endif
prn_xprintf( errfdevice, tbuf );
return TRUE;
}
/***************************************************************
FUNCTION: bwx_input()
DESCRIPTION: This function outputs the string pointed
to by 'prompt', then inputs a character
string.
***************************************************************/
#if ANSI_C
int
bwx_input( char *prompt, char *buffer )
#else
int
bwx_input( prompt, buffer )
char *prompt;
char *buffer;
#endif
{
#if INTENSIVE_DEBUG
fprintf( stderr, "<INP>" );
#endif
prn_xprintf( stdout, prompt );
fgets( buffer, MAXREADLINESIZE, stdin );
* prn_getcol( stdout ) = 1; /* reset column */
return TRUE;
}
/***************************************************************
FUNCTION: bwx_terminate()
DESCRIPTION: This function terminates program execution.
***************************************************************/
#if ANSI_C
void
bwx_terminate( void )
#else
void
bwx_terminate()
#endif
{
exit( 0 );
}
/***************************************************************
FUNCTION: bwx_shell()
DESCRIPTION: This function runs a shell program.
***************************************************************/
#if COMMAND_SHELL
#if ANSI_C
extern int
bwx_shell( struct bwb_line *l )
#else
extern int
bwx_shell( l )
struct bwb_line *l;
#endif
{
static char *s_buffer;
static int init = FALSE;
static int position;
/* get memory for temporary buffer if necessary */
if ( init == FALSE )
{
init = TRUE;
/* Revised to CALLOC pass-thru call by JBV */
if ( ( s_buffer = CALLOC( MAXSTRINGSIZE + 1, sizeof( char ), "bwx_shell" )) == NULL )
{
bwb_error( err_getmem );
return FALSE;
}
}
/* get the first element and check for a line number */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwx_shell(): line buffer is <%s>.", l->buffer );
bwb_debug( bwb_ebuf );
#endif
position = 0;
adv_element( l->buffer, &position, s_buffer );
if ( is_numconst( s_buffer ) != TRUE ) /* not a line number */
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwx_shell(): no line number, command <%s>.",
l->buffer );
bwb_debug( bwb_ebuf );
#endif
if ( system( l->buffer ) == 0 )
{
return TRUE;
}
else
{
return FALSE;
}
}
else /* advance past line number */
{
adv_ws( l->buffer, &position ); /* advance past whitespace */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwx_shell(): line number, command <%s>.",
l->buffer );
bwb_debug( bwb_ebuf );
#endif
if ( system( &( l->buffer[ position ] ) ) == 0 )
{
return TRUE;
}
else
{
return FALSE;
}
}
}
#endif
/***************************************************************
FUNCTION: matherr()
DESCRIPTION: This function is called to handle math
errors in Bywater BASIC. It displays
the error message, then calls the
break_handler() routine.
***************************************************************/
#if ANSI_C
int
matherr( struct exception *except )
#else
int
matherr( except )
struct exception *except;
#endif
{
perror( MATHERR_HEADER );
break_handler();
return FALSE;
}
#if COMMON_CMDS
/***************************************************************
FUNCTION: bwb_edit()
DESCRIPTION: This function implements the BASIC EDIT
program by shelling out to a default editor
specified by the variable BWB.EDITOR$.
SYNTAX: EDIT
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_edit( struct bwb_line *l )
#else
struct bwb_line *
bwb_edit( l )
struct bwb_line *l;
#endif
{
char tbuf[ MAXSTRINGSIZE + 1 ];
char edname[ MAXSTRINGSIZE + 1 ];
struct bwb_variable *ed;
FILE *loadfile;
ed = var_find( DEFVNAME_EDITOR );
str_btoc( edname, var_getsval( ed ));
sprintf( tbuf, "%s %s", edname, CURTASK progfile );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_edit(): command line <%s>", tbuf );
bwb_debug( bwb_ebuf );
#else
system( tbuf );
#endif
/* open edited file for read */
if ( ( loadfile = fopen( CURTASK progfile, "r" )) == NULL )
{
sprintf( bwb_ebuf, err_openfile, CURTASK progfile );
bwb_error( bwb_ebuf );
return bwb_zline( l );
}
/* clear current contents */
bwb_new( l ); /* Relocated by JBV (bug found by DD) */
/* and (re)load the file into memory */
bwb_fload( loadfile );
return bwb_zline( l );
}
/***************************************************************
FUNCTION: bwb_renum()
DESCRIPTION: This function implements the BASIC RENUM
command by shelling out to a default
renumbering program called "renum".
Added by JBV 10/95
SYNTAX: RENUM
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_renum( struct bwb_line *l )
#else
struct bwb_line *
bwb_renum( l )
struct bwb_line *l;
#endif
{
char tbuf[ MAXSTRINGSIZE + 1 ];
FILE *loadfile;
sprintf( tbuf, "renum %s\0", CURTASK progfile );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_renum(): command line <%s>", tbuf );
bwb_debug( bwb_ebuf );
#else
system( tbuf );
#endif
/* open edited file for read */
if ( ( loadfile = fopen( CURTASK progfile, "r" )) == NULL )
{
sprintf( bwb_ebuf, err_openfile, CURTASK progfile );
bwb_error( bwb_ebuf );
return bwb_zline( l );
}
/* clear current contents */
bwb_new( l ); /* Relocated by JBV (bug found by DD) */
/* and (re)load the file into memory */
bwb_fload( loadfile );
return bwb_zline( l );
}
/***************************************************************
FUNCTION: bwb_files()
DESCRIPTION: This function implements the BASIC FILES
command, in this case by shelling out to
a directory listing program or command
specified in the variable BWB.FILES$.
SYNTAX: FILES filespec$
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_files( struct bwb_line *l )
#else
struct bwb_line *
bwb_files( l )
struct bwb_line *l;
#endif
{
char tbuf[ MAXVARNAMESIZE + 1 ];
char finame[ MAXVARNAMESIZE + 1 ];
char argument[ MAXVARNAMESIZE + 1 ];
struct bwb_variable *fi;
struct exp_ese *e;
fi = var_find( DEFVNAME_FILES );
str_btoc( finame, var_getsval( fi ));
/* get argument */
adv_ws( l->buffer, &( l->position ));
switch( l->buffer[ l->position ] )
{
case '\0':
case '\r':
case '\n':
argument[ 0 ] = '\0';
break;
default:
e = bwb_exp( l->buffer, FALSE, &( l->position ) );
if ( e->type != STRING )
{
bwb_error( err_mismatch );
return bwb_zline( l );
}
str_btoc( argument, exp_getsval( e ) );
break;
}
sprintf( tbuf, "%s %s", finame, argument );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_files(): command line <%s>", tbuf );
bwb_debug( bwb_ebuf );
#else
system( tbuf );
#endif
return bwb_zline( l );
}
#endif /* COMMON_CMDS */
|