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 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800
|
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.24 06/05/06 */
/* */
/* TEXT PROCESSING MODULE */
/*******************************************************/
/*************************************************************/
/* Purpose: */
/* */
/* Principal Programmer(s): */
/* Brian L. Donnell */
/* */
/* Contributing Programmer(s): */
/* Gary D. Riley */
/* */
/* Revision History: */
/* 6.23: Modified error messages so that they were */
/* directly printed rather than storing them in */
/* a string buffer which might not be large */
/* enough to contain the entire message. DR0855 */
/* Correction for FalseSymbol/TrueSymbol. DR0859 */
/* */
/* 6.24: Added get-region function. */
/* */
/* Added environment parameter to GenClose. */
/* Added environment parameter to GenOpen. */
/* */
/*************************************************************/
/**************************************************************************/
/**************************************************************************/
/* LOOKUP TABLE FUNCTIONS */
/* */
/* The functions contained in this file set up and access a hierarchical */
/* lookup system for multiple files. */
/* */
/* For usage see external documentation. */
/**************************************************************************/
/**************************************************************************/
#define _TEXTPRO_SOURCE_
#include "setup.h"
#include <stdio.h>
#define _STDIO_INCLUDED_
#include <ctype.h>
#include <string.h>
#include "argacces.h"
#include "commline.h"
#include "envrnmnt.h"
#include "extnfunc.h"
#include "memalloc.h"
#include "router.h"
#include "sysdep.h"
#include "textpro.h"
#if TEXTPRO_FUNCTIONS || HELP_FUNCTIONS
#define NAMESIZE 80
#define NULLCHAR '\0'
#define BLANK (' ')
#define TAB ('\t')
#define LNFEED ('\n')
/*=========================================================*/
/*Status returns for the file loading and lookup functions */
/*=========================================================*/
#define NORMAL 0 /*Entry information found in file */
#define NO_FILE -10 /*File not found for reference */
#define NEW_FILE -15 /*File loaded onto internal lookup table*/
#define OLD_FILE -20 /*File was already on the lookup table */
#define NO_TOPIC -25 /*No entry information was found in file*/
#define EXIT -30 /*Branch-up from root; exit lookup table*/
#define BRANCH_UP -35 /*Move up from subtopic entry to parent */
#define BRANCH_DOWN -40 /*Move down from main topic to subtopic */
/*=================*/
/*Entry data types */
/*=================*/
#define MENU -45 /*Entry has subtopics*/
#define INFO -50 /*Entry is a leaf; contains only information*/
/*==========================================*/
/*Entry node type for internal lookup table */
/*==========================================*/
struct entries
{
int level; /*Level of entry node in the lookup tree */
int type; /*Entry node data type : menu or info */
char name[NAMESIZE]; /*Entry node name */
long int offset; /*Location of entry info in the file */
struct entries *child; /*Address of list of subtopic entries */
struct entries *parent; /*Address of parent topic entry */
struct entries *next; /*Address of next entry at the same level */
};
/*=========================================*/
/*File node type for internal lookup table */
/*=========================================*/
struct lists
{
char file[NAMESIZE]; /*File name */
struct entries *topics; /*Address of list of entry topics for file */
struct entries *curr_menu; /*Address of current main topic in file */
struct lists *next; /*Address of next file in the table */
};
/*==================================================*/
/*Delimeter strings for marking entries in the file */
/*==================================================*/
#define BDELIM "BEGIN-ENTRY-"
#define BDLEN 12
#define EDELIM "END-ENTRY"
#define EDLEN 9
#define BFORMAT "%d%1s%12s%s" /*Format string for sscanf*/
#define LIT_DELIM ('$')
#if IBM_TBC
#define OPEN_READ "rb"
#else
#define OPEN_READ "r"
#endif
#define TEXTPRO_DATA 8
struct textProcessingData
{
struct lists *headings;
struct entries *parent;
#if HELP_FUNCTIONS
int HELP_INIT;
char *help_file;
#endif
};
#define TextProcessingData(theEnv) ((struct textProcessingData *) GetEnvironmentData(theEnv,TEXTPRO_DATA))
int TextLookupFetch(void *,char *);
int TextLookupToss(void *,char *);
static FILE *GetEntries(void *,char *,char **,char *,int *);
static FILE *GetCurrentMenu(void *,char *,int *);
static char *grab_string(void *,FILE *,char *,int);
static int findstr(char *,char *);
static void upper(char *);
static struct lists *NewFetchFile(void *,char *);
static struct entries *AllocateEntryNode(void *,FILE *,char *,char *,int);
static int AttachLeaf(void *,struct lists *,struct entries *,FILE *,char *,int);
static long LookupEntry(void *,char *,char **,char *,int *);
static void TossFunction(void *,struct entries *);
static void DeallocateTextProcessingData(void *);
/******************************************************************************/
/*============================================================================*/
/* INTERNAL ROUTINES */
/*============================================================================*/
/******************************************************************************/
/****************************************************************************/
/*LOAD FUNCTION : */
/* Input : 1) name of file to be loaded into the lookup table */
/* 2) caller-allocated buffer to contain an error message (if any) */
/* 3) size of error message buffer */
/* Output : */
/* This function attempts to load the file's topic information into the */
/* lookup table according to the format below : */
/* */
/* <level-num><entry-type-code>BEGIN-ENTRY-<topic-name> */
/* . */
/* . */
/* Entry information in the form in which */
/* it is to be displayed when referenced. */
/* . */
/* . */
/* END-ENTRY */
/* */
/* The function returns the number of entries loaded if the entire file was */
/* was correctly formatted, else it returns -1. */
/****************************************************************************/
globle int TextLookupFetch(
void *theEnv,
char *file)
{
FILE *fp; /*Pointer into stream of input file */
char str[256]; /*Buffer for storing input file lines */
int INFO_BEGIN, INFO_END; /*Flags used to check proper syntax */
struct lists *lnode; /*Used to store file node in list */
struct entries *enode; /*Used to store entry node in topic list */
int line_ct; /*Line count - used for error messages */
int entries_ct; /*Number of entries successfully loaded. */
fp = GenOpen(theEnv,file,OPEN_READ);
if (fp == NULL)
{
PrintErrorID(theEnv,"TEXTPRO",1,FALSE);
EnvPrintRouter(theEnv,WERROR,"Could not open file \"");
EnvPrintRouter(theEnv,WERROR,file);
EnvPrintRouter(theEnv,WERROR,"\".\n");
return(-1);
}
if ((lnode = NewFetchFile(theEnv,file)) == NULL)
{
GenClose(theEnv,fp);
PrintErrorID(theEnv,"TEXTPRO",2,FALSE);
EnvPrintRouter(theEnv,WERROR,"File \"");
EnvPrintRouter(theEnv,WERROR,file);
EnvPrintRouter(theEnv,WERROR,"\" already loaded.\n");
return(-1);
}
/*===========================*/
/*Store the file entry topics*/
/*===========================*/
line_ct = 0;
entries_ct = 0;
INFO_BEGIN = FALSE;
INFO_END = TRUE;
while (fgets(str,256,fp) != NULL)
{
line_ct++;
/*=============================================================*/
/*Forces the load function to ignore lines beginning with `$$' */
/*=============================================================*/
if ((str[0] != LIT_DELIM) || (str[1] != LIT_DELIM))
{
if (findstr(str,EDELIM) >= 0)
{
if (INFO_BEGIN == TRUE)
{
INFO_BEGIN = FALSE;
INFO_END = TRUE;
entries_ct++;
}
else
{
GenClose(theEnv,fp);
TextLookupToss(theEnv,file);
PrintErrorID(theEnv,"TEXTPRO",8,FALSE);
EnvPrintRouter(theEnv,WERROR,"Line ");
PrintLongInteger(theEnv,WERROR,line_ct);
EnvPrintRouter(theEnv,WERROR," : Unmatched end marker.\n");
return(-1);
}
}
else if (findstr(str,BDELIM) >= 0)
{
if (INFO_END == TRUE)
{
INFO_END = FALSE;
INFO_BEGIN = TRUE;
}
else
{
GenClose(theEnv,fp);
TextLookupToss(theEnv,file);
PrintErrorID(theEnv,"TEXTPRO",4,FALSE);
EnvPrintRouter(theEnv,WERROR,"Line ");
PrintLongInteger(theEnv,WERROR,line_ct);
EnvPrintRouter(theEnv,WERROR," : Previous entry not closed.\n");
return(-1);
}
if ((enode=AllocateEntryNode(theEnv,fp,file,str,line_ct))==NULL)
return(-1);
/*=================================*/
/*Store new entry node in the tree */
/*=================================*/
if (AttachLeaf(theEnv,lnode,enode,fp,file,line_ct) == FALSE)
return(-1);
}
}
}
GenClose(theEnv,fp);
if (INFO_END == FALSE)
{
TextLookupToss(theEnv,file);
PrintErrorID(theEnv,"TEXTPRO",4,FALSE);
EnvPrintRouter(theEnv,WERROR,"Line ");
PrintLongInteger(theEnv,WERROR,line_ct);
EnvPrintRouter(theEnv,WERROR," : Previous entry not closed.\n");
return(-1);
}
if (entries_ct == 0)
TextLookupToss(theEnv,file);
return(entries_ct);
}
/******************************************************************************/
/*FUNCTION UNLOAD : */
/* Input : 1) name of file to be taken off the lookup table */
/* Output : This functions deletes a file and all entry-topics associated with*/
/* it from the lookup table and returns a boolean flag indicating */
/* failure or success. */
/******************************************************************************/
globle int TextLookupToss(
void *theEnv,
char *file)
{
struct lists *plptr, *clptr;
int l_flag;
clptr = TextProcessingData(theEnv)->headings;
plptr = clptr;
if (clptr != NULL)
if (strcmp(clptr->file,file) != 0)
l_flag = 1;
else
l_flag = 0;
else
l_flag = 0;
while (l_flag > 0)
{
plptr = clptr;
clptr = clptr->next;
if (clptr != NULL)
if (strcmp(clptr->file,file) != 0)
l_flag = 1;
else
l_flag = 0;
else
l_flag = 0;
}
if (clptr == NULL)
return(FALSE);
TossFunction(theEnv,clptr->topics);
if (plptr == clptr)
TextProcessingData(theEnv)->headings = clptr->next;
else
plptr->next = clptr->next;
rm(theEnv,(void *) clptr,(int) sizeof(struct lists));
return(TRUE);
}
/******************************************************************************/
/*FUNCTION GET_ENTRIES : */
/* Input : 1) name of file to be accessed for lookup of entry */
/* 2) caller allocated buffer for main topic name */
/* 3) name of the entry to be accessed in the file */
/* 4) caller allocated buffer for a status code (see LOOKUP). */
/* Output : 1) returns a pointer into the stream of the lookup file which */
/* indicates the starting position of the lookup information */
/* (NULL if the topic was not found) */
/* This function passes its input directly to LOOKUP. See its description */
/* for further detail. */
/* */
/******************************************************************************/
static FILE *GetEntries(
void *theEnv,
char *file,
char **menu,
char *name,
int *code)
{
FILE *fp; /*Lookup file stream*/
long int offset; /*Offset from beginning of file to beginning of topic*/
offset = LookupEntry(theEnv,file,menu,name,code);
if (offset < 0)
return(NULL);
fp = GenOpen(theEnv,file,OPEN_READ);
if (fp == NULL)
{
*code = NO_FILE;
return(NULL);
}
if (fseek(fp,offset,0) < 0)
{
GenClose(theEnv,fp);
*code = NO_FILE;
return(NULL);
}
return(fp);
}
/******************************************************************************/
/*FUNCTION GET_CURR_MENU : */
/* Input : 1) name of file to be accessed */
/* 2) caller allocated buffer for the current menu name */
/* 3) caller allocated buffer for status code : NO_FILE, NO_TOPIC, or */
/* NORMAL. */
/* Output : 1) returns a pointer into the file stream indicating the beginning*/
/* of the description of the current menu for the named file */
/* (returns NULL if there is no current menu) */
/******************************************************************************/
static FILE *GetCurrentMenu(
void *theEnv,
char *file,
int *status)
{
struct lists *lptr; /*Used in searching the file list*/
FILE *fp; /*File stream*/
int l_flag; /*Used in looping through the file list*/
/*=====================================*/
/*Find the named file in the file list */
/*=====================================*/
lptr = TextProcessingData(theEnv)->headings;
if (lptr != NULL)
if (strcmp(lptr->file,file) != 0)
l_flag = 1;
else
l_flag = 0;
else
l_flag = 0;
while (l_flag > 0)
{
lptr = lptr->next;
if (lptr != NULL)
if (strcmp(lptr->file,file) != 0)
l_flag = 1;
else
l_flag = 0;
else
l_flag = 0;
}
if (lptr == NULL)
{
*status = NO_FILE;
return(NULL);
}
/*============================================================*/
/*Position the pointer in the file stream to the current menu */
/*============================================================*/
if (lptr->curr_menu == NULL)
{
*status = NO_TOPIC;
return(NULL);
}
if ((fp = GenOpen(theEnv,file,OPEN_READ)) == NULL)
{
*status = NO_FILE;
return(NULL);
}
if (fseek(fp,lptr->curr_menu->offset,0) < 0)
{
GenClose(theEnv,fp);
*status = NO_FILE;
return(NULL);
}
*status = NORMAL;
return(fp);
}
/******************************************************************************/
/*FUNCTION GRAB_STRING : */
/* Input : 1) file stream pointer */
/* 2) caller allocated buffer for storage of read string */
/* 3) size of caller's buffer */
/* Output : This function grabs a line of text from the currently opened */
/* lookup file at the given file position in the stream. If it */
/* encounters EOF or the closing topic delimeter, it closes the file */
/* and returns NULL. Otherwise, the return value is simply the */
/* address of the caller's buffer. */
/* */
/* Notes : 1) This function expects a file pointer into a stream of a file */
/* already opened!! */
/* 2) The caller must close the file himself if he wishes to */
/* prematurely abort the complete reading of an entry. */
/******************************************************************************/
static char *grab_string(
void *theEnv,
FILE *fp,
char *buf,
int bufsize)
{
if (fgets(buf,bufsize,fp) == NULL)
{
GenClose(theEnv,fp);
return(NULL);
}
if ((buf[0] == LIT_DELIM) && (buf[1] == LIT_DELIM))
{
buf[0] = BLANK;
buf[1] = BLANK;
}
else if (findstr(buf,EDELIM) >= 0)
{
buf = NULL;
GenClose(theEnv,fp);
}
return(buf);
}
/**************************************************************************/
/*FINDSTR FUNCTION : */
/* Input : 1) string to be searched */
/* 2) string to be found */
/* Output : 1) returns index of string-1 where string-2 started, if found */
/* 2) returns -1, if not found */
/**************************************************************************/
static int findstr(
char *s,
char *t)
{
int i,j,k;
for (i = 0; s[i] != '\0'; i++)
{
for (j = i, k = 0; t[k] != '\0' && s[j] == t[k]; j++, k++) ;
if ((t[k] == '\0') && (k != 0))
return(i);
}
return(-1);
}
/**********************************************************************/
/*UPPER FUNCTION : */
/* Input : 1) alphanumeric string */
/* Output : 1) all alphabetic characters of string are capitalized */
/**********************************************************************/
static void upper(
char *str)
{
int theIndex;
for (theIndex = 0 ; str[theIndex] != NULLCHAR; theIndex++)
if (islower(str[theIndex])) str[theIndex] = (char) toupper(str[theIndex]);
}
/******************************************************************************/
/*FILE_NODE FUNCTION : */
/* Input : 1) name of a file */
/* Output : 1) returns address of an initalized NewFetchFile, if the file was */
/* not already on the lookup table */
/* 2) returns the null address, if the file was already present */
/******************************************************************************/
static struct lists *NewFetchFile(
void *theEnv,
char *file)
{
struct lists *lptr = NULL, *lnode;
if (TextProcessingData(theEnv)->headings != NULL)
{
lptr = TextProcessingData(theEnv)->headings;
while (lptr->next != NULL)
{
if (strcmp(lptr->file,file) == 0)
return(NULL);
lptr = lptr->next;
}
if (strcmp(lptr->file,file) == 0)
return(NULL);
}
lnode = (struct lists *) gm2(theEnv,(int) sizeof(struct lists));
strcpy(lnode->file,file);
lnode->topics = NULL;
lnode->curr_menu = NULL;
lnode->next = NULL;
if (TextProcessingData(theEnv)->headings == NULL)
TextProcessingData(theEnv)->headings = lnode;
else
lptr->next = lnode;
return(lnode);
}
/******************************************************************************/
/*ENTRIES_NODE FUNCTION : */
/* Input : 1) file pointer */
/* 2) file name */
/* 3) input string from the file */
/* 4) buffer for error messages */
/* 5) size of the error message buffer */
/* 6) line count in the file */
/* Output : */
/*This function scans the input string for the appropriate topic entry */
/*delimeter and, if it finds this to be correct, allocates a new entry node, */
/*and initializes it, and returns the address to the calling routine. If an */
/*error is detected, the function writes an appropriate message to the */
/*caller's buffer, deallocates the node, deletes all previous nodes from the */
/*current file from the lookup table, closes the file, and returns the null */
/*address. */
/******************************************************************************/
static struct entries *AllocateEntryNode(
void *theEnv,
FILE *fp,
char *file,
char *str,
int line_ct)
{
struct entries *enode;
char bmarker[BDLEN+1], /*Entry topic delimiting strings */
t_code[2]; /*Type of entry flag : menu or info */
/*================================================================*/
/*Allocate a new node and scan the delimeter string for tree info */
/*================================================================*/
enode = (struct entries *) gm2(theEnv,(int) sizeof(struct entries));
if (sscanf(str,BFORMAT,
&enode->level,t_code,bmarker,enode->name) != 4)
{
rm(theEnv,(void *) enode,(int) sizeof(struct entries));
GenClose(theEnv,fp);
TextLookupToss(theEnv,file);
PrintErrorID(theEnv,"TEXTPRO",5,FALSE);
EnvPrintRouter(theEnv,WERROR,"Line ");
PrintLongInteger(theEnv,WERROR,line_ct);
EnvPrintRouter(theEnv,WERROR," : Invalid delimeter string.\n");
return(NULL);
}
if (t_code[0] == 'M')
enode->type = MENU;
else if (t_code[0] == 'I')
enode->type = INFO;
else
{
rm(theEnv,(void *) enode,(int) sizeof(struct entries));
GenClose(theEnv,fp);
TextLookupToss(theEnv,file);
PrintErrorID(theEnv,"TEXTPRO",6,FALSE);
EnvPrintRouter(theEnv,WERROR,"Line ");
PrintLongInteger(theEnv,WERROR,line_ct);
EnvPrintRouter(theEnv,WERROR," : Invalid entry type.\n");
return(NULL);
}
if (strcmp(bmarker,BDELIM) != 0)
{
rm(theEnv,(void *) enode,(int) sizeof(struct entries));
GenClose(theEnv,fp);
TextLookupToss(theEnv,file);
PrintErrorID(theEnv,"TEXTPRO",5,FALSE);
EnvPrintRouter(theEnv,WERROR,"Line ");
PrintLongInteger(theEnv,WERROR,line_ct);
EnvPrintRouter(theEnv,WERROR," : Invalid delimeter string.\n");
return(NULL);
}
/*===============================================================*/
/* For systems which have record file systems (such as VMS), */
/* the following statement is necessary to move the file pointer */
/* to the beginning of the next record. */
/*===============================================================*/
ungetc(getc(fp),fp);
enode->offset = ftell(fp);
enode->parent = NULL;
enode->child = NULL;
enode->next = NULL;
upper(enode->name);
return(enode);
}
/******************************************************************************/
/*FUNCTION ATTACH_LEAF : */
/* Input : 1) address of current NewFetchFile */
/* 2) address of current topic entry-node */
/* 3) file pointer */
/* 4) name of file */
/* 5) error message buffer */
/* 6) size of error message buffer */
/* 7) line count in the file */
/* Output : */
/*This function attaches the entry-node to its proper place in the tree of the*/
/*current file. The function returns a boolean flag indicating the success */
/*(or lack thereof) of this connection. In the case of an error, an error */
/*message is written to the caller's buffer, the file is closed, and the */
/*previous file entries are deleted from the lookup table. */
/******************************************************************************/
static int AttachLeaf(
void *theEnv,
struct lists *lnode,
struct entries *enode,
FILE *fp,
char *file,
int line_ct)
{
int p_flag; /*Used in searching the tree for a parent*/
/*====================*/
/*First topic for file*/
/*====================*/
if (lnode->topics == NULL)
lnode->topics = enode;
/*================================*/
/*Subtopic - branch down the tree */
/*================================*/
else if (enode->level > TextProcessingData(theEnv)->parent->level)
if (TextProcessingData(theEnv)->parent->type == MENU)
{
enode->parent = TextProcessingData(theEnv)->parent;
TextProcessingData(theEnv)->parent->child = enode;
}
else
{
rm(theEnv,(void *) enode,(int) sizeof(struct entries));
GenClose(theEnv,fp);
TextLookupToss(theEnv,file);
PrintErrorID(theEnv,"TEXTPRO",7,FALSE);
EnvPrintRouter(theEnv,WERROR,"Line ");
PrintLongInteger(theEnv,WERROR,line_ct);
EnvPrintRouter(theEnv,WERROR," : Non-menu entries cannot have subtopics.\n");
return(FALSE);
}
/*====================================*/
/*Brother-topic -- same level in tree */
/*====================================*/
else if (enode->level == TextProcessingData(theEnv)->parent->level)
{
enode->parent = TextProcessingData(theEnv)->parent->parent;
enode->next = TextProcessingData(theEnv)->parent->next;
TextProcessingData(theEnv)->parent->next = enode;
}
/*==========================================================*/
/*Topic is unrelated to previous topic - branch up the tree */
/*==========================================================*/
else
{
if (TextProcessingData(theEnv)->parent != NULL)
p_flag = 1;
else
p_flag = 0;
while (p_flag > 0)
{
TextProcessingData(theEnv)->parent = TextProcessingData(theEnv)->parent->parent;
if (TextProcessingData(theEnv)->parent != NULL)
if (enode->level < TextProcessingData(theEnv)->parent->level)
p_flag = 1;
else
p_flag = 0;
else
p_flag = 0;
}
if (TextProcessingData(theEnv)->parent != NULL)
/*========*/
/*Subtopic*/
/*========*/
if (TextProcessingData(theEnv)->parent->level < enode->level)
{
enode->parent = TextProcessingData(theEnv)->parent;
enode->next = TextProcessingData(theEnv)->parent->child;
TextProcessingData(theEnv)->parent->child = enode;
}
/*=============*/
/*Brother-topic*/
/*=============*/
else
{
enode->parent = TextProcessingData(theEnv)->parent->parent;
enode->next = TextProcessingData(theEnv)->parent->next;
TextProcessingData(theEnv)->parent->next = enode;
}
/*=========*/
/*Root Node*/
/*=========*/
else
{
enode->parent = NULL;
enode->next = lnode->topics;
lnode->topics = enode;
}
}
TextProcessingData(theEnv)->parent = enode;
return(TRUE);
}
/******************************************************************************/
/*FUNCTION LOOKUP : */
/* Input : 1) name of entry-topic file to be used for reference */
/* 2) caller allocated buffer to contain the main topic name */
/* 3) name of the entry-topic to be found */
/* 4) caller allocated buffer to store the return status */
/* Output : 1) offset from the beginning of the entry-topic file stream to the*/
/* beginning of the requested topic (-1 if the topic not found) */
/* 2) status code stored in caller's buffer indicating the result of */
/* the lookup : NO_FILE, NO_TOPIC, BRANCH_UP, BRANCH_DOWN, EXIT, */
/* or NORMAL. */
/* */
/* Notes : 1) If NULL is given as an entry-topic, the lookup routine branches */
/* up one level in the tree (status BRANCH_UP). If the current */
/* level of the tree is already the root, all paths are set to NULL*/
/* (status EXIT). */
/* 2) If an entry-topic is not found, the file position of the current*/
/* main topic (or menu) is returned (status NO_TOPIC). */
/******************************************************************************/
static long int LookupEntry(
void *theEnv,
char *file,
char **menu,
char *name,
int *code)
{
struct lists *lptr; /*Local pointers used to move through the tree*/
struct entries *eptr;
int l_flag, e_flag; /*Flags used in looping to find entry-topics*/
/*===============================*/
/*Find named file in lookup list */
/*===============================*/
lptr = TextProcessingData(theEnv)->headings;
if (lptr != NULL)
if (strcmp(lptr->file,file) != 0)
l_flag = 1;
else
l_flag = 0;
else
l_flag = 0;
while (l_flag > 0)
{
lptr = lptr->next;
if (lptr != NULL)
if (strcmp(lptr->file,file) != 0)
l_flag = 1;
else
l_flag = 0;
else
l_flag = 0;
}
if (lptr == NULL)
{
*code = NO_FILE;
return(-1);
}
/*==================================================================*/
/*If entry-topic was NULL, branch up one-level in the tree, or exit */
/*the tree if already at the root. */
/*==================================================================*/
if (name == NULL)
{
if (lptr->curr_menu == NULL)
{
*code = EXIT;
return(-1);
}
else
{
if (lptr->curr_menu->parent == NULL)
{
*code = EXIT;
lptr->curr_menu = NULL;
*menu = NULL;
return(-1);
}
lptr->curr_menu = lptr->curr_menu->parent;
*code = BRANCH_UP;
*menu = lptr->curr_menu->name;
return(lptr->curr_menu->offset);
}
}
/*========================================*/
/*Find the topic in the file's topic tree */
/*========================================*/
upper(name);
if (lptr->curr_menu != NULL)
eptr = lptr->curr_menu->child;
else
eptr = lptr->topics;
if (eptr != NULL)
if (findstr(eptr->name,name) == 0)
e_flag = 0;
else
e_flag = 1;
else
e_flag = 0;
while (e_flag > 0)
{
eptr = eptr->next;
if (eptr != NULL)
if (findstr(eptr->name,name) == 0)
e_flag = 0;
else
e_flag = 1;
else
e_flag = 0;
}
/*===================================================================*/
/*If the topic was not found, return the position of the current menu*/
/*===================================================================*/
if (eptr == NULL)
{
*code = NO_TOPIC;
if (lptr->curr_menu != NULL)
{
*menu = lptr->curr_menu->name;
return(lptr->curr_menu->offset);
}
return(-1);
}
/*===============================================================*/
/*If the requested topic has children, branch down to its level. */
/*===============================================================*/
if (eptr->type == MENU)
{
*code = BRANCH_DOWN;
lptr->curr_menu = eptr;
}
else
*code = NORMAL;
if (lptr->curr_menu != NULL)
*menu = lptr->curr_menu->name;
return(eptr->offset);
}
/******************************************************************************/
/*FUNCTION TOSS : */
/* Input : 1) entry-topic address */
/* Output : This function recursively deletes a node and all child nodes */
/******************************************************************************/
static void TossFunction(
void *theEnv,
struct entries *eptr)
{
struct entries *prev;
while (eptr != NULL)
{
if (eptr->child != NULL)
TossFunction(theEnv,eptr->child);
prev = eptr;
eptr = eptr->next;
rm(theEnv,(void *) prev,(int) sizeof(struct entries));
}
}
/****************************************************************************/
/****************************************************************************/
/* TEXT PROCESSING FUNCTIONS */
/* */
/* The functions contained in this file can be called to handle */
/* external file referencing and accessing. FetchCommand() loads a file */
/* onto an internal run-time lookup table, TossCommand() removes the file, */
/* PrintRegionCommand accesses the loaded file to display a requested */
/* entry, and HelpFunction() provides an on-line help facility */
/* using the external help data file specified in the header file setup.h. */
/* For information on the format of the data file(s) required, see the */
/* internal documentation in LOOKUP.C and the external documentation. */
/* */
/* For usage of these functions, see the external documentation. */
/****************************************************************************/
/****************************************************************************/
#define SCREEN_LN 22 /*Typical terminal screen length -- 22 lines*/
/*Used for scrolling in the help facility */
/*==========================================*/
/*Topic node for help facility's query list */
/*==========================================*/
struct topics
{
char name[NAMESIZE]; /*Name of the node */
struct topics *end_list; /*Pointer to end of query list */
struct topics *next; /*Pointer to next topic in the list*/
};
/******************************************************************************/
/*============================================================================*/
/* FUNCTION DECLARATIONS */
/*============================================================================*/
/******************************************************************************/
#if HELP_FUNCTIONS
static int RecognizeHelpRouters(void *,char *);
static int HelpPrint(void *,char *,char *);
static int HelpGetc(void *,char *);
static int HelpUngetc(void *,int,char *);
static struct topics *AskForNewHelpTopic(void *,struct topics *,char **);
#endif
static struct topics *GetCommandLineTopics(void *);
static FILE *FindTopicInEntries(void *,char *,struct topics *,char **,int *);
/******************************************************************************/
/*============================================================================*/
/* EXTERNAL ACCESS FUNCTIONS */
/*============================================================================*/
/******************************************************************************/
/******************************************************************************/
/*FUNCTION HelpFunction : (H/L function help) */
/* Input : Multiple or no topic requests may be passed to the help facility */
/* from the top level via a "stack" accessed by the */
/* system routines num_args() and rstring(). */
/* Output : This function loads the help file specified in setup.h into a */
/* a hierarchical tree structure using the routines of LOOKUP.C. */
/* It then queries the user for topics, and, using the LOOKUP */
/* routines, branches through the tree, displaying information where */
/* appropriate. The function returns control once the user */
/* has indicated an exit from the help tree. */
/* */
/* For usage see external documentation. */
/******************************************************************************/
#if HELP_FUNCTIONS
globle void HelpFunction(
void *theEnv)
{
int status; /*Return code from the lookup routines */
FILE *fp; /*Pointer in to the help file stream */
struct topics *main_topic, /*Pointer to the first requested topic */
*tptr; /*Used in deallocating the topic list */
char buf[256], /*Buffer for storing input strings from the help file */
*menu[1]; /*Buffer for the name of the current main topic */
#if ! WINDOW_INTERFACE
char termbuf[2]; /*Buffer for storing the terminators of a scroll */
int line_cnt; /*Line count used for scrolling purposes */
#endif
if (TextProcessingData(theEnv)->HELP_INIT == FALSE)
{
if (TextProcessingData(theEnv)->help_file == NULL)
{
TextProcessingData(theEnv)->help_file = (char *) gm2(theEnv,strlen(HELP_DEFAULT) + 1);
strcpy(TextProcessingData(theEnv)->help_file,HELP_DEFAULT);
}
EnvPrintRouter(theEnv,WDIALOG,"Loading help file entries from ");
EnvPrintRouter(theEnv,WDIALOG,TextProcessingData(theEnv)->help_file);
EnvPrintRouter(theEnv,WDIALOG,".\nPlease wait...\n");
status = TextLookupFetch(theEnv,TextProcessingData(theEnv)->help_file);
if (status <= 0)
{
return;
}
else
{
/* ================================================================
Enables logical name "whelp" as the destination for all help I/O
================================================================ */
EnvAddRouter(theEnv,"whelp",10,RecognizeHelpRouters,HelpPrint,
HelpGetc,HelpUngetc,NULL);
TextProcessingData(theEnv)->HELP_INIT = TRUE;
}
}
EnvActivateRouter(theEnv,"whelp");
/* ====================================================================
The root node of the help-tree is MAIN (see external documentation.)
Add this node to the front of the initial topic request list given
by the user on the top level command line.
==================================================================== */
main_topic = (struct topics *) gm2(theEnv,(int) sizeof(struct topics));
strcpy(main_topic->name,"MAIN");
main_topic->next = GetCommandLineTopics(theEnv);
main_topic->end_list = NULL;
EnvPrintRouter(theEnv,"whelp","\n");
/*============================*/
/*Process user topic requests */
/*============================*/
do
{
fp = FindTopicInEntries(theEnv,TextProcessingData(theEnv)->help_file,main_topic,menu,&status);
if (status == NO_FILE)
{
PrintErrorID(theEnv,"TEXTPRO",1,FALSE);
EnvPrintRouter(theEnv,WERROR,"Unable to access help file.\n");
break;
}
if (status == EXIT)
break;
if (status == NO_TOPIC)
{
if (fp == NULL)
{
/*===================================================*/
/*The lookup routines return the file location of the*/
/*current main topic if the requested topic is not */
/*found. The help-tree has one root: MAIN (see */
/*external docs). This topic should always be */
/*available. Thus, if the topic was not found and */
/*there is no current menu, the help-file has been */
/*tampered with and should be corrected. */
/*===================================================*/
EnvPrintRouter(theEnv,"whelp","Root entry \"MAIN\" not found in ");
EnvPrintRouter(theEnv,"whelp",TextProcessingData(theEnv)->help_file);
EnvPrintRouter(theEnv,"whelp",".\nSee external documentation.\n");
break;
}
EnvPrintRouter(theEnv,"whelp","\nSorry, no information available.\n\n");
}
if (status != BRANCH_UP)
{
#if ! WINDOW_INTERFACE
line_cnt = 0;
#endif
/*======================================================*/
/*Print lines from the information entry stopping after */
/*every screenful of lines. The user at that point has */
/*the option to continue or abort the entry to continue */
/*at the current menu level. */
/*======================================================*/
while (grab_string(theEnv,fp,buf,256) != NULL)
{
#if ! WINDOW_INTERFACE
if (line_cnt >= (SCREEN_LN + 1))
{
EnvPrintRouter(theEnv,"whelp","PRESS <RETURN> FOR MORE. ");
EnvPrintRouter(theEnv,"whelp","PRESS <A>,<RETURN> TO ABORT.");
RouterData(theEnv)->CommandBufferInputCount = 0;
do
{
termbuf[0] = (char) EnvGetcRouter(theEnv,"whelp");
if (termbuf[0] != LNFEED)
{
if (termbuf[0] == 'a')
termbuf[0] = 'A';
if (termbuf[0] != '\b')
RouterData(theEnv)->CommandBufferInputCount++;
else if (RouterData(theEnv)->CommandBufferInputCount != 0)
RouterData(theEnv)->CommandBufferInputCount--;
termbuf[1] = (char) EnvGetcRouter(theEnv,"whelp");
}
}
while ((termbuf[0] != LNFEED) &&
(termbuf[0] != 'A'));
RouterData(theEnv)->CommandBufferInputCount = -1;
line_cnt = 0;
if (termbuf[0] == 'A')
{
GenClose(theEnv,fp);
break;
}
}
line_cnt++;
#endif
EnvPrintRouter(theEnv,"whelp",buf);
}
}
else if (fp != NULL)
/*==========================================================*/
/*If the user branched-up the help-tree, don't reprint that */
/*menu. However, the help file still needs to be closed. */
/*==========================================================*/
GenClose(theEnv,fp);
main_topic = AskForNewHelpTopic(theEnv,main_topic,menu);
if (EvaluationData(theEnv)->HaltExecution)
{
while (status != EXIT)
if ((fp = GetEntries(theEnv,TextProcessingData(theEnv)->help_file,menu,NULL,&status)) != NULL)
GenClose(theEnv,fp);
}
} while (status != EXIT);
EnvDeactivateRouter(theEnv,"whelp");
/*========================================================*/
/*Release any space used by the user's topic request list */
/*========================================================*/
while (main_topic != NULL)
{
tptr = main_topic;
main_topic = main_topic->next;
rm(theEnv,(void *) tptr,(int) sizeof(struct topics));
}
}
/***************************************************************************/
/*FUNCTION HelpPathFunction : (function help-path) */
/* Input : Via the argument "stack", the name of the new help entries */
/* file, or no input. */
/* Output : This function redefines the lookup file for the help facility. */
/* If no argument is given, it displays the current file name. */
/***************************************************************************/
globle void HelpPathFunction(
void *theEnv)
{
char *help_name;
DATA_OBJECT arg_ptr;
if (EnvRtnArgCount(theEnv) == 0)
{
EnvPrintRouter(theEnv,WDIALOG,"The current help entries file is ");
if (TextProcessingData(theEnv)->help_file != NULL)
EnvPrintRouter(theEnv,WDIALOG,TextProcessingData(theEnv)->help_file);
else
EnvPrintRouter(theEnv,WDIALOG,HELP_DEFAULT);
EnvPrintRouter(theEnv,WDIALOG,"\n");
}
else
{
if (TextProcessingData(theEnv)->help_file != NULL)
{
if (TextProcessingData(theEnv)->HELP_INIT == TRUE)
{
EnvPrintRouter(theEnv,WDIALOG,"Releasing help entries from file ");
EnvPrintRouter(theEnv,WDIALOG,TextProcessingData(theEnv)->help_file);
EnvPrintRouter(theEnv,WDIALOG,"...\n");
TextLookupToss(theEnv,TextProcessingData(theEnv)->help_file);
EnvDeleteRouter(theEnv,"whelp");
TextProcessingData(theEnv)->HELP_INIT = FALSE;
}
rm(theEnv,(void *) TextProcessingData(theEnv)->help_file,strlen(TextProcessingData(theEnv)->help_file) + 1);
}
if (EnvArgTypeCheck(theEnv,"help-path",1,SYMBOL_OR_STRING,&arg_ptr) == FALSE) return;
help_name = DOToString(arg_ptr);
TextProcessingData(theEnv)->help_file = (char *) gm2(theEnv,strlen(help_name) + 1);
strcpy(TextProcessingData(theEnv)->help_file,help_name);
EnvPrintRouter(theEnv,WDIALOG,"Help entries file reset to ");
EnvPrintRouter(theEnv,WDIALOG,help_name);
EnvPrintRouter(theEnv,WDIALOG,"\n");
}
}
#endif
#if TEXTPRO_FUNCTIONS
/***************************************************************************/
/*FUNCTION FetchCommand : (H/L function fetch) */
/* Input : Name of the file to be stored in the lookup table - passed via */
/* the argument "stack" and result buffer */
/* Output : This function loads a file into the internal lookup table and */
/* returns a (float) boolean flag indicating failure or success. */
/***************************************************************************/
globle void FetchCommand(
void *theEnv,
DATA_OBJECT *result)
{
int load_ct; /*Number of entries loaded */
DATA_OBJECT arg_ptr;
result->type = SYMBOL;
result->value = EnvFalseSymbol(theEnv);
if (EnvArgTypeCheck(theEnv,"fetch",1,SYMBOL_OR_STRING,&arg_ptr) == FALSE)
return;
load_ct = TextLookupFetch(theEnv,DOToString(arg_ptr));
if (load_ct <= 0)
{
if (load_ct == 0)
{
PrintErrorID(theEnv,"TEXTPRO",3,FALSE);
EnvPrintRouter(theEnv,WERROR,"No entries found.\n");
}
return;
}
result->type = INTEGER;
result->value = (void *) EnvAddLong(theEnv,(long) load_ct);
}
/******************************************************************************/
/*FUNCTION PrintRegionCommand : (H/L function print-region) */
/* Input : Via the argument "stack", logical name for the output, the name of the */
/* file to be accessed, and the name of the topic(s) to be looked up. */
/* Output : This function accesses a previously loaded file and prints the */
/* information of the topic entry requested to the screen. The tree */
/* structure must currently be at the correct level in order for the */
/* topic to be accessed. To branch down the tree, each topic in the */
/* path to the one desired must be named. Multiple arguments are */
/* allowed as in the help facility (see the external documentation.) */
/* To branch up the tree, the special topic character `^' must be */
/* specified for each upwards branch. Giving no topic name will */
/* cause a single branch-up in the tree. The `?' character given at */
/* the end of a path will return the current main topic menu. */
/* */
/* For usage, see the external documentation. */
/******************************************************************************/
globle int PrintRegionCommand(
void *theEnv)
{
struct topics *params, /*Lookup file and list of topic requests */
*tptr; /*Used in deallocating the parameter list */
char buf[256]; /*Buffer for the topic entry strings */
FILE *fp; /*Stream for the input file */
char *menu[1]; /*Buffer for the current menu name */
int status, /*Lookup status return code */
com_code; /*Completion flag */
params = GetCommandLineTopics(theEnv);
fp = FindTopicInEntries(theEnv,params->next->name,params->next->next,menu,&status);
if ((status != NO_FILE) && (status != NO_TOPIC) && (status != EXIT))
{
if (strcmp(params->name,"t") == 0)
strcpy(params->name,"stdout");
EnvPrintRouter(theEnv,params->name,"\n");
while (grab_string(theEnv,fp,buf,256) != NULL)
EnvPrintRouter(theEnv,params->name,buf);
com_code = TRUE;
}
else
{
/* ==================================================================
On NO_TOPIC results, the file is left open to point to the current
menu. This used as a check by the Help System. In the case of
print-region, however, we need to always make sure the file is
closed.
================================================================== */
if (fp != NULL)
GenClose(theEnv,fp);
com_code = FALSE;
}
/* =======================================================
Release any space used by the user's topic request list
======================================================= */
while (params != NULL)
{
tptr = params;
params = params->next;
rm(theEnv,(void *) tptr,(int) sizeof(struct topics));
}
return(com_code);
}
/******************************************************************************/
/*FUNCTION GetRegionCommand : (H/L functionget-region) */
/******************************************************************************/
globle void *GetRegionCommand(
void *theEnv)
{
struct topics *params, /*Lookup file and list of topic requests */
*tptr; /*Used in deallocating the parameter list */
char buf[256]; /*Buffer for the topic entry strings */
FILE *fp; /*Stream for the input file */
char *menu[1]; /*Buffer for the current menu name */
int status; /*Lookup status return code */
char *theString = NULL;
void *theResult;
int oldPos = 0;
unsigned oldMax = 0;
unsigned sLength;
params = GetCommandLineTopics(theEnv);
fp = FindTopicInEntries(theEnv,params->name,params->next,menu,&status);
if ((status != NO_FILE) && (status != NO_TOPIC) && (status != EXIT))
{
while (grab_string(theEnv,fp,buf,256) != NULL)
theString = AppendToString(theEnv,buf,theString,&oldPos,&oldMax);
}
else
{
/* ==================================================================
On NO_TOPIC results, the file is left open to point to the current
menu. This used as a check by the Help System. In the case of
print-region, however, we need to always make sure the file is
closed.
================================================================== */
if (fp != NULL)
GenClose(theEnv,fp);
}
/* =======================================================
Release any space used by the user's topic request list
======================================================= */
while (params != NULL)
{
tptr = params;
params = params->next;
rm(theEnv,(void *) tptr,(int) sizeof(struct topics));
}
if (theString == NULL)
{ theResult = EnvAddSymbol(theEnv,""); }
else
{
sLength = strlen(theString);
if ((sLength > 0) &&
(((theString[sLength-1] == '\r') && (theString[sLength-2] == '\n'))
||
((theString[sLength-1] == '\n') && (theString[sLength-2] == '\r'))))
{ theString[sLength-2] = 0; }
theResult = EnvAddSymbol(theEnv,theString);
}
if (theString != NULL)
{ genfree(theEnv,theString,oldMax); }
return(theResult);
}
/***************************************************************************/
/*FUNCTION TossCommand : (H/L function toss) */
/* Input : Name of the file to be deleted from the lookup table (passed via*/
/* the argument "stack") */
/* Output : This function deletes the named file from the lookup table and */
/* returns a (float) boolean flag indicating failure or success. */
/***************************************************************************/
globle int TossCommand(
void *theEnv)
{
char *file; /*Name of the file */
DATA_OBJECT arg_ptr;
if (EnvArgTypeCheck(theEnv,"toss",1,SYMBOL_OR_STRING,&arg_ptr) == FALSE)
return (FALSE);
file = DOToString(arg_ptr);
#if HELP_FUNCTIONS
if (TextProcessingData(theEnv)->help_file != NULL)
if ((strcmp(file,TextProcessingData(theEnv)->help_file) == 0) && (TextProcessingData(theEnv)->HELP_INIT == TRUE))
{
rm(theEnv,(void *) TextProcessingData(theEnv)->help_file,strlen(TextProcessingData(theEnv)->help_file) + 1);
TextProcessingData(theEnv)->help_file = NULL;
TextProcessingData(theEnv)->HELP_INIT = FALSE;
EnvDeleteRouter(theEnv,"whelp");
}
#endif
return(TextLookupToss(theEnv,file));
}
#endif
/******************************************************************************/
/* The following four functions are the router routines for the logical name */
/* "whelp". Currently, all they do is direct all accesses to standard I/O. */
/******************************************************************************/
#if HELP_FUNCTIONS
#if IBM_TBC
#pragma argsused
#endif
static int RecognizeHelpRouters(
void *theEnv,
char *log_name)
{
#if MAC_MCW || IBM_MCW || MAC_XCD
#pragma unused(theEnv)
#endif
if (strcmp(log_name,"whelp") == 0)
return(TRUE);
return(FALSE);
}
#if IBM_TBC
#pragma argsused
#endif
static int HelpPrint(
void *theEnv,
char *log_name,
char *str)
{
#if MAC_MCW || IBM_MCW || MAC_XCD
#pragma unused(log_name)
#endif
EnvPrintRouter(theEnv,"stdout",str);
return(1);
}
#if IBM_TBC
#pragma argsused
#endif
static int HelpGetc(
void *theEnv,
char *log_name)
{
#if MAC_MCW || IBM_MCW || MAC_XCD
#pragma unused(log_name)
#endif
return(EnvGetcRouter(theEnv,"stdin"));
}
#if IBM_TBC
#pragma argsused
#endif
static int HelpUngetc(
void *theEnv,
int ch,
char *log_name)
{
#if MAC_MCW || IBM_MCW || MAC_XCD
#pragma unused(log_name)
#endif
return(EnvUngetcRouter(theEnv,ch,"stdin"));
}
#endif
/******************************************************************************/
/*============================================================================*/
/* INTERNAL ROUTINES */
/*============================================================================*/
/******************************************************************************/
/******************************************************************************/
/*FUNCTION CMD_LINE_TOPICS : */
/* Input : None */
/* Output : This function builds a linked list of topics requested by the */
/* user at the H/L level using the argument "stack" routines, */
/* num_args() and rstring(). It returns the address of the top of */
/* the list or NULL if there were no command line topics. */
/******************************************************************************/
static struct topics *GetCommandLineTopics(
void *theEnv)
{
int topic_num, /*Number of topics specified by the user */
theIndex; /*Used to loop through the topic list */
struct topics *head, /*Address of the top of the topic list */
*tnode, /*Address of new topic node */
*tptr; /*Used to attach new node to the list */
DATA_OBJECT val; /*Unknown-type H/L data structure */
head = NULL;
topic_num = EnvRtnArgCount(theEnv);
for (theIndex = 1; theIndex <= topic_num; theIndex++)
{
tnode = (struct topics *) gm2(theEnv,(int) sizeof(struct topics));
EnvRtnUnknown(theEnv,theIndex,&val);
if ((GetType(val) == SYMBOL) || (GetType(val) == STRING))
strncpy(tnode->name,DOToString(val),NAMESIZE-1);
else if (GetType(val) == FLOAT)
strncpy(tnode->name,FloatToString(theEnv,DOToDouble(val)),NAMESIZE-1);
else if (GetType(val) == INTEGER)
strncpy(tnode->name,LongIntegerToString(theEnv,DOToLong(val)),NAMESIZE-1);
else
strncpy(tnode->name,"***ERROR***",NAMESIZE-1);
tnode->next = NULL;
tnode->end_list = NULL;
if (head == NULL)
head = tnode;
else
{
tptr = head;
while (tptr->next != NULL)
tptr = tptr->next;
tptr->next = tnode;
}
}
return(head);
}
/******************************************************************************/
/*FUNCTION QUERY_TOPIC : */
/* Input : 1) The address of the old topic list (this routines writes over */
/* previously allocated memory, if available) */
/* 2) A buffer holding the name of the current menu in the tree */
/* Output : This function prompts the user for a new set of topic(s) and */
/* displays the name of the current menu. Each new topic is */
/* delineated by white-space, and this function builds a linked list */
/* of these topics. It returns the address of the top of this list. */
/******************************************************************************/
#if HELP_FUNCTIONS
static struct topics *AskForNewHelpTopic(
void *theEnv,
struct topics *old_list,
char **menu)
{
int theIndex, cnt; /*Indices of the user input buffer and topic name */
struct topics *tmain, /*Address of the top of the topic list */
*tnode, /*Address of the new topic node */
*tptr; /*Used to add the new node to the topic list */
char list[256], /*User input buffer */
name[NAMESIZE]; /*Name of the new topic in the list */
/*==================================================================*/
/*Read a line of input from the user (substituting blanks for tabs) */
/*==================================================================*/
EnvPrintRouter(theEnv,"whelp",*menu);
EnvPrintRouter(theEnv,"whelp"," Topic? ");
RouterData(theEnv)->CommandBufferInputCount = 0;
for ( theIndex = 0;
((list[theIndex] = (char) EnvGetcRouter(theEnv,"whelp")) != LNFEED) && (theIndex < 254);
theIndex++ , RouterData(theEnv)->CommandBufferInputCount++)
{
if (EvaluationData(theEnv)->HaltExecution)
break;
if (list[theIndex] == TAB)
list[theIndex] = BLANK;
else if ((list[theIndex] == '\b') && (theIndex != 0))
{
theIndex -= 2;
RouterData(theEnv)->CommandBufferInputCount -= 2;
}
}
#if VAX_VMS
EnvPrintRouter(theEnv,"whelp","\n");
#endif
RouterData(theEnv)->CommandBufferInputCount = -1;
if (EvaluationData(theEnv)->HaltExecution)
{
EnvPrintRouter(theEnv,"whelp","\n");
old_list->end_list = old_list;
return(old_list);
}
list[theIndex] = BLANK;
list[theIndex+1] = NULLCHAR;
/*=======================================*/
/*Parse user buffer into separate topics */
/*=======================================*/
tmain = old_list;
theIndex = 0; cnt = 0;
while (list[theIndex] != NULLCHAR)
{
if ((list[theIndex] != BLANK) && (cnt < NAMESIZE))
name[cnt++] = list[theIndex++];
else if (cnt > 0)
{
while ((list[theIndex] != BLANK) && (list[theIndex] != NULLCHAR))
theIndex++;
name[cnt] = NULLCHAR;
cnt = 0;
/*==============================================*/
/*Write over previous topic lists, if available */
/*==============================================*/
if (old_list != NULL)
{
strcpy(old_list->name,name);
old_list = old_list->next;
}
else
{
tnode = (struct topics *) gm2(theEnv,(int) sizeof(struct topics));
strcpy(tnode->name,name);
tnode->next = NULL;
tnode->end_list = NULL;
if (tmain == NULL)
tmain = tnode;
else
{
tptr = tmain;
while (tptr->next != NULL)
tptr = tptr->next;
tptr->next = tnode;
}
}
}
else
theIndex++;
}
/*========================================================================*/
/*If the new list is shorter than the previous one, we must mark the end. */
/*========================================================================*/
tmain->end_list = old_list;
return(tmain);
}
#endif
/******************************************************************************/
/*FUNCTION FIND_TOPIC : */
/* Input : 1) File to be searched for topic request */
/* 2) Address of topic request list */
/* 3) Buffer for current menu name */
/* 4) Lookup status return code */
/* Output : This function flows through the user topic request path by */
/* calling the lookup routines. When it reaches the last element, */
/* it returns a pointer into the stream of the lookup file */
/* indicating the beginning of the topic entry. If any topic in the */
/* path is not found, the function aborts and returns the address of */
/* of the current menu in the lookup tree for the file. The exact */
/* nature of the final lookup is indicated in the status buffer. */
/******************************************************************************/
static FILE *FindTopicInEntries(
void *theEnv,
char *file,
struct topics *main_topic,
char **menu,
int *status)
{
FILE *fp = NULL; /*Input file stream */
struct topics *tptr, /*Used to loop through the topic list */
*end_list; /*Address of the end of the topic list */
if (main_topic != NULL)
end_list = main_topic->end_list;
else
end_list = NULL;
tptr = main_topic;
if (tptr != end_list)
do
{
if (fp != NULL)
GenClose(theEnv,fp);
/*======================*/
/*Branch up in the tree */
/*======================*/
if (strcmp(tptr->name,"^") == 0)
fp = GetEntries(theEnv,file,menu,NULL,status);
/*=======================================================*/
/*Return the current main topic menu of the lookup table */
/*=======================================================*/
else if ((strcmp(tptr->name,"?") == 0) && (tptr->next == end_list))
fp = GetCurrentMenu(theEnv,file,status);
/*=====================*/
/*Lookup topic request */
/*=====================*/
else
fp = GetEntries(theEnv,file,menu,tptr->name,status);
if ((*status == NO_FILE) || (*status == NO_TOPIC))
break;
tptr = tptr->next;
} while (tptr != end_list);
else
/*==================================================================*/
/*An empty topic request list causes a single branch-up in the tree */
/*==================================================================*/
fp = GetEntries(theEnv,file,menu,NULL,status);
return(fp);
}
/*******************************************/
/* HelpFunctionDefinitions: */
/*******************************************/
globle void HelpFunctionDefinitions(
void *theEnv)
{
AllocateEnvironmentData(theEnv,TEXTPRO_DATA,sizeof(struct textProcessingData),DeallocateTextProcessingData);
#if ! RUN_TIME
#if HELP_FUNCTIONS
EnvDefineFunction2(theEnv,"help",'v',PTIEF HelpFunction,"HelpFunction",NULL);
EnvDefineFunction2(theEnv,"help-path",'v',PTIEF HelpPathFunction,"HelpPathFunction","*1k");
#endif
#if TEXTPRO_FUNCTIONS
EnvDefineFunction2(theEnv,"fetch",'u', PTIEF FetchCommand,"FetchCommand","11k");
EnvDefineFunction2(theEnv,"toss",'b', PTIEF TossCommand,"TossCommand","11k");
EnvDefineFunction2(theEnv,"print-region",'b', PTIEF PrintRegionCommand,"PrintRegionCommand","2**wk");
EnvDefineFunction2(theEnv,"get-region",'s', PTIEF GetRegionCommand,"GetRegionCommand","1**k");
#endif
#endif
}
/*********************************************************/
/* DeallocateTextProcessingData: Deallocates environment */
/* data for text processing routines. */
/*********************************************************/
static void DeallocateTextProcessingData(
void *theEnv)
{
struct lists *nextptr, *clptr;
clptr = TextProcessingData(theEnv)->headings;
while (clptr != NULL)
{
nextptr = clptr->next;
TossFunction(theEnv,clptr->topics);
rm(theEnv,(void *) clptr,(int) sizeof(struct lists));
clptr = nextptr;
}
#if HELP_FUNCTIONS
if (TextProcessingData(theEnv)->help_file != NULL)
{
rm(theEnv,TextProcessingData(theEnv)->help_file,
strlen(TextProcessingData(theEnv)->help_file) + 1);
}
#endif
}
#endif
|