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 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
|
/***************************************************************
bwbasic.c Main Program File
for Bywater BASIC Interpreter
Copyright (c) 1993, Ted A. Campbell
Bywater Software
"I was no programmer, neither was I a
programmer's son; but I was an herdman
and a gatherer of sycomore fruit."
- Amos 7:14b AV, slightly adapted
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). */
/*---------------------------------------------------------------*/
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#include "bwbasic.h"
#include "bwb_mes.h"
#if HAVE_SIGNAL
#include <signal.h>
#endif
#if HAVE_LONGJUMP
#include <setjmp.h>
#endif
char *bwb_ebuf; /* error buffer */
static char *read_line;
int bwb_trace = FALSE;
FILE *errfdevice; /* output device for error messages */
#if HAVE_LONGJUMP
jmp_buf mark;
#endif
static int program_run = 0; /* has the command-line program been run? */
int bwb_curtask = 0; /* current task */
struct bwb_variable *ed; /* BWB.EDITOR$ variable */
struct bwb_variable *fi; /* BWB.FILES$ variable */
struct bwb_variable *pr; /* BWB.PROMPT$ variable */
struct bwb_variable *im; /* BWB.IMPLEMENTATION$ variable */
struct bwb_variable *co; /* BWB.COLORS variable */
#if PARACT
struct bwb_task *bwb_tasks[ TASKS ]; /* table of task pointers */
#else
char progfile[ MAXARGSIZE ]; /* program file */
int rescan = TRUE; /* program needs to be rescanned */
int number = 0; /* current line number */
struct bwb_line *bwb_l; /* current line pointer */
struct bwb_line bwb_start; /* starting line marker */
struct bwb_line bwb_end; /* ending line marker */
struct bwb_line *data_line; /* current line to read data */
int data_pos = 0; /* position in data_line */
struct bwb_variable var_start; /* variable list start marker */
struct bwb_variable var_end; /* variable list end marker */
struct bwb_function fnc_start; /* function list start marker */
struct bwb_function fnc_end; /* function list end marker */
struct fslte fslt_start; /* function-sub-label lookup table start marker */
struct fslte fslt_end; /* function-sub-label lookup table end marker */
int exsc = -1; /* EXEC stack counter */
int expsc = 0; /* expression stack counter */
int xtxtsc = 0; /* eXecute TeXT stack counter */
struct exse *excs; /* EXEC stack */
struct exp_ese *exps; /* Expression stack */
struct xtxtsl *xtxts; /* Execute Text stack */
#endif
/* Prototypes for functions visible only to this file */
#if ANSI_C
extern int is_ln( char *buffer );
#else
extern int is_ln();
#endif
/***************************************************************
FUNCTION: bwb_init()
DESCRIPTION: This function initializes bwBASIC.
***************************************************************/
void
#if ANSI_C
bwb_init( int argc, char **argv )
#else
bwb_init( argc, argv )
int argc;
char **argv;
#endif
{
static FILE *input = NULL;
register int n;
#if PROFILE
struct bwb_variable *v;
#endif
#if REDIRECT_STDERR
FILE *newerr;
#endif
#if PROFILE
FILE *profile;
#endif
#if PARACT
#else
static char start_buf[] = "\0";
static char end_buf[] = "\0";
#endif
errfdevice = stderr;
#if INTENSIVE_DEBUG
prn_xprintf( stderr, "Memory Allocation Statistics:\n" );
prn_xprintf( stderr, "----------------------------\n" );
#if PARACT
sprintf( bwb_ebuf, "task structure: %ld bytes\n",
(long) sizeof( struct bwb_task ) );
prn_xprintf( stderr, bwb_ebuf );
getchar();
#endif
#endif
/* set all task pointers to NULL */
#if PARACT
for ( n = 0; n < TASKS; ++n )
{
bwb_tasks[ n ] = NULL;
}
#else
/* Memory allocation */
/* eXecute TeXT stack */
/* Revised to CALLOC pass-thru call by JBV */
if ( ( xtxts = CALLOC( XTXTSTACKSIZE, sizeof( struct xtxtsl ), "bwb_init") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_init(): failed to find memory for xtxts" );
#else
bwb_error( err_getmem );
#endif
}
/* expression stack */
/* Revised to CALLOC pass-thru call by JBV */
if ( ( exps = CALLOC( ESTACKSIZE, sizeof( struct exp_ese ), "bwb_init") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_init(): failed to find memory for exps" );
#else
bwb_error( err_getmem );
#endif
}
/* EXEC stack */
/* Revised to CALLOC pass-thru call by JBV */
if ( ( excs = CALLOC( EXECLEVELS, sizeof( struct exse ), "bwb_init") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_init(): failed to find memory for excs" );
#else
bwb_error( err_getmem );
#endif
}
/* initialize tables of variables, functions */
bwb_start.number = 0;
bwb_start.next = &bwb_end;
bwb_end.number = MAXLINENO + 1;
bwb_end.next = &bwb_end;
bwb_start.buffer = start_buf;
bwb_end.buffer = end_buf;
data_line = &bwb_start;
data_pos = 0;
exsc = -1;
expsc = 0;
xtxtsc = 0;
bwb_start.position = 0;
bwb_l = &bwb_start;
var_init( 0 );
fnc_init( 0 );
fslt_init( 0 );
#endif
/* character buffers */
/* Revised to CALLOC pass-thru call by JBV */
if ( ( bwb_ebuf = CALLOC( MAXSTRINGSIZE + 1, sizeof(char), "bwb_init") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_init(): failed to find memory for bwb_ebuf" );
#else
bwb_error( err_getmem );
#endif
}
/* Revised to CALLOC pass-thru call by JBV */
if ( ( read_line = CALLOC( MAXREADLINESIZE + 1, sizeof(char), "bwb_init") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_init(): failed to find memory for read_line" );
#else
bwb_error( err_getmem );
#endif
}
#if PARACT
/* request task 0 as current (base) task */
bwb_curtask = bwb_newtask( 0 );
if ( bwb_curtask == -1 )
{
return; /* error message has already been called*/
}
#endif
#if TEST_BSTRING
for ( n = 0; n < ESTACKSIZE; ++n )
{
sprintf( CURTASK exps[ n ].sval.name, "<Exp stack bstring %d>", n );
}
#endif
/* assign memory for the device table */
#if COMMON_CMDS
/* Revised to CALLOC pass-thru call by JBV */
if ( ( dev_table = CALLOC( DEF_DEVICES, sizeof( struct dev_element ), "bwb_init") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_init(): failed to find memory for dev_table" );
#else
bwb_error( err_getmem );
#endif
bwx_terminate();
}
/* initialize all devices to DEVMODE_AVAILABLE */
for ( n = 0; n < DEF_DEVICES; ++n )
{
dev_table[ n ].mode = DEVMODE_AVAILABLE;
dev_table[ n ].reclen = -1;
dev_table[ n ].cfp = NULL;
dev_table[ n ].buffer = NULL;
dev_table[ n ].width = DEF_WIDTH;
dev_table[ n ].col = 1;
}
#endif /* COMMON_CMDS */
/* initialize preset variables */
ed = var_find( DEFVNAME_EDITOR );
ed->preset = TRUE;
ed->common = TRUE;
str_ctob( var_findsval( ed, ed->array_pos ), DEF_EDITOR );
fi = var_find( DEFVNAME_FILES );
fi->preset = TRUE;
fi->common = TRUE;
str_ctob( var_findsval( fi, fi->array_pos ), DEF_FILES );
pr = var_find( DEFVNAME_PROMPT );
pr->preset = TRUE;
pr->common = TRUE;
str_ctob( var_findsval( pr, pr->array_pos ), PROMPT );
im = var_find( DEFVNAME_IMPL );
im->preset = TRUE;
im->common = TRUE;
str_ctob( var_findsval( im, im->array_pos ), IMP_IDSTRING );
co = var_find( DEFVNAME_COLORS );
co->preset = TRUE;
co->common = TRUE;
* var_findnval( co, co->array_pos ) = (bnumber) DEF_COLORS;
/* Signon message */
bwx_signon();
/* Redirect stderr if specified */
#if REDIRECT_STDERR
newerr = freopen( ERRFILE, "w", stderr );
if ( newerr == NULL )
{
sprintf( bwb_ebuf, "Failed to redirect error messages to file <%s>\n",
ERRFILE );
errfdevice = stdout;
prn_xprintf( errfdevice, bwb_ebuf );
}
else
{
sprintf( bwb_ebuf, "NOTE: Error messages are redirected to file <%s>\n",
ERRFILE );
prn_xprintf( errfdevice, bwb_ebuf );
errfdevice = stderr;
}
#else
errfdevice = stdout;
#endif
/* if there is a profile.bas, execute it */
#if PROFILE
if ( ( profile = fopen( PROFILENAME, "r" )) != NULL )
{
bwb_fload( profile ); /* load profile */
bwb_run( &CURTASK bwb_start ); /* run profile */
/* profile must be run immediately, not by scheduler */
while ( CURTASK exsc > -1 )
{
bwb_execline();
}
/* mark all profiled variables as preset */
for ( v = CURTASK var_start.next; v != &CURTASK var_end; v = v->next )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_init(): marked variable <%s> preset TRUE",
v->name );
bwb_debug( bwb_ebuf );
#endif
v->preset = TRUE;
}
bwb_new( &CURTASK bwb_start ); /* remove profile from memory */
}
#endif
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in main(): Ready to save jump MARKER" );
bwb_debug( bwb_ebuf );
#endif
/* set a buffer for jump: program execution returns to this point
in case of a jump (error, interrupt, or finish program) */
#if INTERACTIVE
#if HAVE_SIGNAL
signal( SIGINT, break_mes );
#endif
#if HAVE_LONGJUMP
setjmp( mark );
#endif
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_init(): Return from jump MARKER, program run <%d>",
program_run + 1 );
bwb_debug( bwb_ebuf );
getchar();
#endif
/* if INTERACTIVE is FALSE, then we must have a program file */
#else
if ( argc < 2 )
{
bwb_error( err_noprogfile );
}
#endif /* INTERACTIVE */
/* check to see if there is a program file: but do this only the first
time around! */
++program_run;
if (( argc > 1 ) && ( program_run == 1 ))
{
strcpy( CURTASK progfile, argv[ 1 ] ); /* JBV */
if ( ( input = fopen( CURTASK progfile, "r" )) == NULL ) /* JBV */
{
strcat( CURTASK progfile, ".bas" );
if ( ( input = fopen( CURTASK progfile, "r" )) == NULL )
{
CURTASK progfile[ 0 ] = 0;
sprintf( bwb_ebuf, err_openfile, argv[ 1 ] );
bwb_error( bwb_ebuf );
}
}
if ( input != NULL )
{
/* strcpy( CURTASK progfile, argv[ 1 ] ); */ /* Removed by JBV */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in main(): progfile is <%s>.", CURTASK progfile );
bwb_debug( bwb_ebuf );
#endif
bwb_fload( input );
bwb_run( &CURTASK bwb_start );
}
}
}
/***************************************************************
FUNCTION: bwb_interact()
DESCRIPTION: This function gets a line from the user
and processes it.
***************************************************************/
#if INTERACTIVE
int
#if ANSI_C
bwb_interact( void )
#else
bwb_interact()
#endif
{
char tbuf[ MAXSTRINGSIZE + 1 ]; /* JBV */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_interact(): ready to read from keyboard" );
bwb_debug( bwb_ebuf );
#endif
/* take input from keyboard */
bwb_gets( read_line );
bwb_stripcr( read_line ); /* JBV */
/* If there is no line number, execute the line as received */
if ( is_ln( read_line ) == FALSE )
{
bwb_xtxtline( read_line );
}
/*-----------------------------------------------------------------*/
/* Another possibility: if read_line is a numeric constant, delete */
/* the indicated line number (JBV) */
/*-----------------------------------------------------------------*/
else if ( is_numconst( read_line ) == TRUE )
{
strcpy(tbuf, read_line);
sprintf(read_line, "delete %s\0", tbuf);
bwb_xtxtline( read_line );
}
/* If there is a line number, add the line to the file in memory */
else
{
bwb_ladd( read_line, TRUE );
#if INTENSIVE_DEBUG
bwb_debug( "Return from bwb_ladd()" );
#endif
}
return TRUE;
}
#endif /* INTERACTIVE == TRUE */
/***************************************************************
FUNCTION: bwb_fload()
DESCRIPTION: This function loads a BASIC program
file into memory given a FILE pointer.
***************************************************************/
int
#if ANSI_C
bwb_fload( FILE *file )
#else
bwb_fload( file )
FILE *file;
#endif
{
while ( feof( file ) == FALSE )
{
read_line[ 0 ] = '\0';
fgets( read_line, MAXREADLINESIZE, file );
if ( file == stdin )
{
* prn_getcol( stdout ) = 1; /* reset column */
}
bwb_stripcr( read_line );
/* be sure that this is not EOF with a NULL line */
if (( feof( file ) == FALSE ) || ( strlen( read_line ) > 0 ))
{
bwb_ladd( read_line, FALSE );
}
}
/* close file stream */
fclose( file );
return TRUE;
}
/***************************************************************
FUNCTION: bwb_ladd()
DESCRIPTION: This function adds a new line (in the
buffer) to the program in memory.
***************************************************************/
int
#if ANSI_C
bwb_ladd( char *buffer, int replace )
#else
bwb_ladd( buffer, replace )
char *buffer;
int replace;
#endif
{
struct bwb_line *l, *previous, *p;
static char *s_buffer;
static int init = FALSE;
static int prev_num = 0;
char *newbuffer;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): add line <%s>",
buffer );
bwb_debug( bwb_ebuf );
#endif
/* get memory for temporary buffer if necessary */
if ( init == FALSE )
{
init = TRUE;
/* Revised to CALLOC pass-thru call by JBV */
if ( ( s_buffer = CALLOC( (size_t) MAXSTRINGSIZE + 1, sizeof( char ), "bwb_ladd" )) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_ladd(): failed to find memory for s_buffer" );
#else
bwb_error( err_getmem );
#endif
return FALSE;
}
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): s_buffer initialized " );
bwb_debug( bwb_ebuf );
#endif
/* get memory for this line */
/* Revised to CALLOC pass-thru call by JBV */
if ( ( l = (struct bwb_line *) CALLOC( (size_t) 1, sizeof( struct bwb_line ), "bwb_ladd")) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_ladd(): failed to find memory for new line" );
#else
bwb_error( err_getmem );
#endif
return FALSE;
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): got memory." );
bwb_debug( bwb_ebuf );
#endif
/* note that line is not yet marked and the program must be rescanned */
l->marked = FALSE;
CURTASK rescan = TRUE; /* program needs to be scanned again */
l->xnum = FALSE;
/* get the first element and test for a line number */
adv_element( buffer, &( l->position ), s_buffer );
/* set line number in line structure */
if ( is_numconst( s_buffer ) == TRUE )
{
l->number = atoi( s_buffer );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): line is numbered, number is <%d>",
l->number );
bwb_debug( bwb_ebuf );
#endif
prev_num = l->number;
l->xnum = TRUE;
++( l->position );
newbuffer = &( buffer[ l->position ] );
/* allocate memory and assign buffer to line buffer */
ln_asbuf( l, newbuffer );
}
/* There is not a line number */
else
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): line is not numbered, using prev <%d>",
prev_num );
bwb_debug( bwb_ebuf );
#endif
newbuffer = buffer;
/* allocate memory and assign buffer to line buffer */
ln_asbuf( l, newbuffer );
l->xnum = FALSE;
l->number = prev_num;
}
/* find the place of the current line */
for ( previous = &CURTASK bwb_start; previous != &CURTASK bwb_end; previous = previous->next )
{
/* replace a previously existing line */
if ( ( l->xnum == (char) TRUE ) /* Better recast this one (JBV) */
&& ( previous->number == l->number )
&& ( replace == TRUE )
)
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): writing to previous number <%d>",
l->number );
bwb_debug( bwb_ebuf );
#endif
/* allocate memory and assign buffer to line buffer */
ln_asbuf( previous, newbuffer );
/* free the current line */
/* Revised to FREE pass-thru calls by JBV */
/* if (l->buffer != NULL) FREE( l->buffer, "bwb_ladd" ); */
/* FREE( l, "bwb_ladd" ); */
bwb_freeline( l ); /* JBV */
/* and return */
return TRUE;
}
/* add after previously existing line: this is to allow unnumbered
lines that follow in sequence after a previously numbered line */
else if (( previous->number == l->number )
&& ( replace == FALSE )
)
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): adding doubled number <%d>",
l->number );
bwb_debug( bwb_ebuf);
#endif
/* if there are multiple instances of this particular line number,
then it is incumbent upon us to find the very last one */
for ( p = previous; p->number == l->number; p = p->next )
{
#if INTENSIVE_DEBUG
bwb_debug( "in bwb_ladd(): advancing..." );
#endif
previous = p;
}
l->next = previous->next;
previous->next = l;
return TRUE;
}
/* add a new line */
else if ( ( previous->number < l->number )
&& ( previous->next->number > l->number ))
{
l->next = previous->next;
previous->next = l;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): added new line <%d> buffer <%s>",
l->number, l->buffer );
bwb_debug( bwb_ebuf );
#endif
return TRUE;
}
}
/* attempt to link line number has failed; free memory */
/* Revised to FREE pass-thru calls by JBV */
/* if (l->buffer != NULL) FREE( l->buffer, "bwb_ladd" ); */
/* FREE( l, "bwb_ladd" ); */
bwb_freeline( l ); /* JBV */
sprintf( bwb_ebuf, ERR_LINENO );
bwb_error( bwb_ebuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_ladd(): attempt to add line has failed" );
bwb_debug( bwb_ebuf );
#endif
return FALSE;
}
/***************************************************************
FUNCTION: bwb_xtxtline()
DESCRIPTION: This function executes a text line, i.e.,
places it in memory and then relinquishes
control.
***************************************************************/
struct bwb_line *
#if ANSI_C
bwb_xtxtline( char *buffer )
#else
bwb_xtxtline( buffer )
char *buffer;
#endif
{
struct bwb_line *c;
char *p;
int loop;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xtxtline(): received <%s>", buffer );
bwb_debug( bwb_ebuf );
#endif
/* increment xtxt stack counter */
if ( CURTASK xtxtsc >= XTXTSTACKSIZE )
{
sprintf( bwb_ebuf, "Exceeded maximum xtxt stack <%d>",
CURTASK xtxtsc );
return &CURTASK bwb_end;
}
++CURTASK xtxtsc;
/* advance past whitespace */
p = buffer;
loop = TRUE;
while( loop == TRUE )
{
switch( *p )
{
case '\0': /* end of string */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "Null command line received." );
bwb_debug( bwb_ebuf );
#endif
--CURTASK xtxtsc;
return &CURTASK bwb_end;
case ' ': /* whitespace */
case '\t':
++p;
break;
default:
loop = FALSE;
break;
}
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xtxtline(): ready to get memory" );
bwb_debug( bwb_ebuf );
#endif
/* Removed by JBV (no longer needed, done by ln_asbuf) */
/* if ( CURTASK xtxts[ CURTASK xtxtsc ].l.buffer != NULL )
{ */
/* #if INTENSIVE_DEBUG */
/* sprintf( bwb_ebuf, "in bwb_xtxtline(): freeing buffer memory" );
bwb_debug( bwb_ebuf ); */
/* #endif */
/* Revised to FREE pass-thru call by JBV */
/* FREE( CURTASK xtxts[ CURTASK xtxtsc ].l.buffer, "bwb_xtxtline" );
} */
/* copy the whole line to the line structure buffer */
ln_asbuf( &( CURTASK xtxts[ CURTASK xtxtsc ].l ), buffer );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xtxtline(): copied to line buffer <%s>.",
CURTASK xtxts[ CURTASK xtxtsc ].l.buffer );
bwb_debug( bwb_ebuf );
#endif
/* set line number in line structure */
CURTASK xtxts[ CURTASK xtxtsc ].l.number = 0;
CURTASK xtxts[ CURTASK xtxtsc ].l.marked = FALSE;
/* execute the line as BASIC command line */
CURTASK xtxts[ CURTASK xtxtsc ].l.next = &CURTASK bwb_end;
c = &( CURTASK xtxts[ CURTASK xtxtsc ].l );
c->position = 0;
#if THEOLDWAY
do
{
c = bwb_xline( c );
}
while( c != &CURTASK bwb_end );
#endif
bwb_incexec(); /* increment EXEC stack */
bwb_setexec( c, 0, EXEC_NORM ); /* and set current line in it */
/* decrement xtxt stack counter ??? */
--CURTASK xtxtsc;
return c;
}
/***************************************************************
FUNCTION: bwb_incexec()
DESCRIPTION: This function increments the EXEC
stack counter.
***************************************************************/
#if ANSI_C
extern void
bwb_incexec( void )
{
#else
void
bwb_incexec()
{
#endif
++CURTASK exsc;
if ( CURTASK exsc >= EXECLEVELS )
{
--CURTASK exsc;
#if PROG_ERRORS
sprintf( bwb_ebuf, "in bwb_incexec(): incremented EXEC stack past max <%d>",
EXECLEVELS );
bwb_error( bwb_ebuf );
#else
bwb_error( err_overflow );
#endif
}
CURTASK excs[ CURTASK exsc ].while_line = NULL;
CURTASK excs[ CURTASK exsc ].wend_line = NULL;
CURTASK excs[ CURTASK exsc ].n_cvs = 0;
CURTASK excs[ CURTASK exsc ].local_variable = NULL;
}
/***************************************************************
FUNCTION: bwb_decexec()
DESCRIPTION: This function decrements the EXEC
stack counter.
***************************************************************/
#if ANSI_C
extern void
bwb_decexec( void )
{
#else
void
bwb_decexec()
{
#endif
/* decrement the exec stack counter */
--CURTASK exsc;
if ( CURTASK exsc < -1 )
{
CURTASK exsc = -1;
#if PROG_ERRORS
sprintf( bwb_ebuf, "in bwb_decexec(): decremented EXEC stack past min <-1>" );
bwb_error( bwb_ebuf );
#else
bwb_error( err_overflow );
#endif
}
/* check for EXEC_ON and decrement recursively */
if ( CURTASK excs[ CURTASK exsc ].code == EXEC_ON )
{
/* Revised to FREE pass-thru calls by JBV */
/* FREE( CURTASK excs[ CURTASK exsc ].while_line->buffer, "bwb_decexec" ); */
/* FREE( CURTASK excs[ CURTASK exsc ].while_line, "bwb_decexec" ); */
bwb_freeline( CURTASK excs[ CURTASK exsc ].while_line ); /* JBV */
bwb_decexec();
}
}
/***************************************************************
FUNCTION: bwb_setexec()
DESCRIPTION: This function sets the line and position
for the next call to bwb_execline();
***************************************************************/
#if ANSI_C
extern int
bwb_setexec( struct bwb_line *l, int position, int code )
{
#else
int
bwb_setexec( l, position, code )
struct bwb_line *l;
int position;
int code;
{
#endif
CURTASK excs[ CURTASK exsc ].line = l;
CURTASK excs[ CURTASK exsc ].position = position;
CURTASK excs[ CURTASK exsc ].code = code;
return TRUE;
}
/***************************************************************
FUNCTION: bwb_mainloop()
DESCRIPTION: This C function performs one iteration
of the interpreter. In a non-preemptive
scheduler, this function should be called
by the scheduler, not by bwBASIC code.
***************************************************************/
void
#if ANSI_C
bwb_mainloop( void )
#else
bwb_mainloop()
#endif
{
errfdevice = stderr;
if ( CURTASK exsc > -1 )
{
bwb_execline(); /* execute one line of program */
}
#if INTERACTIVE
else
{
bwb_interact(); /* get user interaction */
}
#endif
}
/***************************************************************
FUNCTION: bwb_execline()
DESCRIPTION: This function executes a single line of
a program in memory. This function is
called by bwb_mainloop().
***************************************************************/
void
#if ANSI_C
bwb_execline( void )
#else
bwb_execline()
#endif
{
struct bwb_line *r, *l;
l = CURTASK excs[ CURTASK exsc ].line;
/* if the line is &CURTASK bwb_end, then break out of EXEC loops */
if ( l == &CURTASK bwb_end )
{
CURTASK exsc = -1;
return;
}
/* Check for wacko line numbers */
#if INTENSIVE_DEBUG
if ( l->number < -1 )
{
#if PROG_ERRORS
sprintf( bwb_ebuf, "in bwb_execline(): received line number <%d> < -1",
l->number );
bwb_error( bwb_ebuf );
#else
bwb_error( err_syntax );
#endif
return;
}
if ( l->number > MAXLINENO )
{
#if PROG_ERRORS
sprintf( bwb_ebuf, "in bwb_execline(): received line number <%d> > MAX <%d>",
l->number, MAXLINENO );
bwb_error( bwb_ebuf );
#else
bwb_error( err_syntax );
#endif
return;
}
#endif
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_execline(): buffer <%s>",
&( l->buffer[ l->position ] ) );
bwb_debug( bwb_ebuf );
#endif
/* Print line number if trace is on */
if ( bwb_trace == TRUE )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "[ %d ]", l->number );
prn_xprintf( errfdevice, bwb_ebuf );
#else
if ( l->number > 0 )
{
sprintf( bwb_ebuf, "[ %d ]", l->number );
prn_xprintf( errfdevice, bwb_ebuf );
}
#endif
}
/* Set current line for error/break handling */
CURTASK number = l->number;
CURTASK bwb_l = l;
/* advance beyond whitespace */
adv_ws( l->buffer, &( l->position ) );
/* advance past segment delimiter and warn */
#if MULTISEG_LINES
if ( l->buffer[ l->position ] == ':' )
{
++( l->position );
adv_ws( l->buffer, &( l->position ) );
}
l->marked = FALSE;
#else
#if PROG_ERRORS
if ( l->buffer[ l->position ] == ':' )
{
++( l->position );
adv_ws( l->buffer, &( l->position ) );
sprintf( bwb_ebuf, "Enable MULTISEG_LINES for multi-segmented lines",
VERSION );
bwb_error( bwb_ebuf );
}
#endif
#endif
/* set positions in buffer */
#if MULTISEG_LINES
if ( ( l->marked != TRUE ) || ( l->position > l->startpos ))
{
line_start( l->buffer, &( l->position ), &( l->lnpos ), &( l->lnum ),
&( l->cmdpos ), &( l->cmdnum ), &( l->startpos ) );
l->marked = TRUE;
}
else
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_execline(): line <%d> is already marked",
l->number );
bwb_debug( bwb_ebuf );
#endif
}
l->position = l->startpos;
#else /* not MULTISEG_LINES */
line_start( l->buffer, &( l->position ), &( l->lnpos ), &( l->lnum ),
&( l->cmdpos ), &( l->cmdnum ), &( l->startpos ) );
if ( l->position < l->startpos )
{
l->position = l->startpos;
}
#endif
/* if there is a BASIC command in the line, execute it here */
if ( l->cmdnum > -1 )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_execline(): executing <%s>", l->buffer );
bwb_debug( bwb_ebuf );
#endif
/* execute the command vector */
r = bwb_cmdtable[ l->cmdnum ].vector ( l );
}
/* No BASIC command; try to execute it as a shell command */
#if COMMAND_SHELL
else
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "Breaking out to shell, line num <%d> buf <%s> cmd <%d> pos <%d>",
l->number, &( l->buffer[ l->position ] ), l->cmdnum, l->position );
bwb_debug( bwb_ebuf );
getchar();
#endif
bwx_shell( l );
bwb_setexec( l->next, 0, CURTASK excs[ CURTASK exsc ].code );
return;
}
#else /* COMMAND_SHELL == FALSE */
else
{
bwb_error( err_uc );
}
#endif
/* check for end of line: if so, advance to next line and return */
adv_ws( r->buffer, &( r->position ) );
switch( r->buffer[ r->position ] )
{
case '\n':
case '\r':
case '\0':
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_execline(): detected end of line" );
bwb_debug( bwb_ebuf );
#endif
r->next->position = 0;
bwb_setexec( r->next, 0, CURTASK excs[ CURTASK exsc ].code );
return; /* and return */
}
/* else reset with the value in r */
bwb_setexec( r, r->position, CURTASK excs[ CURTASK exsc ].code );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_execline(): exit setting line number <%d>",
r->number );
bwb_debug( bwb_ebuf );
#endif
}
/***************************************************************
FUNCTION: ln_asbuf()
DESCRIPTION: This function allocates memory and copies
a null-terminated string to a line buffer.
***************************************************************/
int
#if ANSI_C
ln_asbuf( struct bwb_line *l, char *s )
#else
ln_asbuf( l, s )
struct bwb_line *l;
char *s;
#endif
{
/* Reinstated by JBV */
/* #if DONTDOTHIS */ /* but why not? */
if ( l->buffer != NULL )
{
/* Revised to FREE pass-thru call by JBV */
FREE( l->buffer, "ln_asbuf" );
l->buffer = NULL; /* JBV */
}
/* #endif */
/* Revised to CALLOC pass-thru call by JBV */
if ( ( l->buffer = CALLOC( strlen( s ) + 2, sizeof( char ), "ln_asbuf") )
== NULL )
{
#if PROG_ERRORS
bwb_error( "in ln_asbuf(): failed to find memory for new line" );
#else
bwb_error( err_getmem );
#endif
return FALSE;
}
/* copy the whole line to the line structure buffer */
strcpy( l->buffer, s );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in ln_asbuf(): allocated buffer <%s>", l->buffer );
bwb_debug( bwb_ebuf );
#endif
/* strip CR from the buffer */
bwb_stripcr( l->buffer );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in ln_asbuf(): stripped CRs" );
bwb_debug( bwb_ebuf );
#endif
return TRUE;
}
/***************************************************************
FUNCTION: bwb_gets()
DESCRIPTION: This function reads a single line from
the specified buffer.
***************************************************************/
int
#if ANSI_C
bwb_gets( char *buffer )
#else
bwb_gets( buffer )
char *buffer;
#endif
{
struct bwb_variable *v;
char tbuf[ MAXSTRINGSIZE + 1 ];
#if PARACT
char ubuf[ MAXSTRINGSIZE + 1 ];
#endif
CURTASK number = 0;
v = var_find( DEFVNAME_PROMPT );
str_btoc( tbuf, var_getsval( v ) );
#if PARACT
sprintf( ubuf, "TASK %d %s", bwb_curtask, tbuf );
strcpy( tbuf, ubuf );
#endif
bwx_input( tbuf, buffer );
return TRUE;
}
/***************************************************************
FUNCTION: break_mes()
DESCRIPTION: This function is called (a) by a SIGINT
signal or (b) by error-handling routines.
It prints an error message then calls
break_handler() to handle the program
interruption.
***************************************************************/
void
#if ANSI_C
break_mes( int x )
#else
break_mes( x )
int x;
#endif
{
static char *tmp_buffer;
static int init = FALSE;
/* get memory for temporary buffer if necessary */
if ( init == FALSE )
{
init = TRUE;
/* Revised to CALLOC pass-thru call by JBV */
if ( ( tmp_buffer = CALLOC( MAXSTRINGSIZE + 1, sizeof( char ), "break_mes")) == NULL )
{
#if PROG_ERRORS
bwb_error( "in break_mes(): failed to find memory for tmp_buffer" );
#else
bwb_error( err_getmem );
#endif
}
}
CURTASK expsc = 0;
sprintf( tmp_buffer, "\r%s %d\n", MES_BREAK, CURTASK number );
prn_xprintf( errfdevice, tmp_buffer );
break_handler();
}
/***************************************************************
FUNCTION: break_handler()
DESCRIPTION: This function is called by break_mes()
and handles program interruption by break
(or by the STOP command).
***************************************************************/
void
#if ANSI_C
break_handler( void )
#else
break_handler()
#endif
{
#if INTERACTIVE /* INTERACTIVE: reset counters and jump back to mark */
/* reset all stack counters */
CURTASK exsc = -1;
CURTASK expsc = 0;
CURTASK xtxtsc = 0;
err_gosubl[ 0 ] = '\0';
/* reset the break handler */
#if HAVE_SIGNAL
signal( SIGINT, break_mes );
#endif
#if HAVE_LONGJUMP
longjmp( mark, -1 );
#else /* HAVE_LONGJUMP = FALSE; no jump available; terminate */
bwx_terminate();
#endif
#else /* nonINTERACTIVE: terminate immediately */
bwx_terminate();
#endif
}
/***************************************************************
FUNCTION: is_ln()
DESCRIPTION: This function determines whether a program
line (in buffer) begins with a line number.
***************************************************************/
int
#if ANSI_C
is_ln( char *buffer )
#else
is_ln( buffer )
char *buffer;
#endif
{
static int position;
position = 0;
adv_ws( buffer, &position );
switch( buffer[ position ] )
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
return TRUE;
default:
return FALSE;
}
}
/***************************************************************
FUNCTION: CALLOC()
DESCRIPTION: Pass-thru function to calloc() for debugging
purposes. Added by JBV 10/95
***************************************************************/
void *
#if ANSI_C
CALLOC( size_t nelem, size_t elsize, char *str )
#else
CALLOC( nelem, elsize, str )
size_t nelem;
size_t elsize;
char *str;
#endif
{
void *ptr;
ptr = calloc(nelem, elsize);
/* printf("%x %x\n", ptr, mallocblksize(ptr)); */
return ptr;
}
/***************************************************************
FUNCTION: FREE()
DESCRIPTION: Pass-thru function to free() for debugging
purposes. Added by JBV 10/95
***************************************************************/
void
#if ANSI_C
FREE( void *ptr, char *str )
#else
FREE( ptr, str )
void *ptr;
char *str;
#endif
{
/* printf("%x\n", ptr); */
free(ptr);
}
|