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
|
/* File: freesubs.c
* Author: Richard Durbin (rd@mrc-lmb.cam.ac.uk)
* Copyright (C) J Thierry-Mieg and R Durbin, 1991
*-------------------------------------------------------------------
* This file is part of the ACEDB genome database package, written by
* Richard Durbin (MRC LMB, UK) rd@mrc-lmb.cam.ac.uk, and
* Jean Thierry-Mieg (CRBM du CNRS, France) mieg@kaa.cnrs-mop.fr
*
* Description: free format input - record based
* Exported functions: lots - see regular.h
* HISTORY:
* Last edited: Dec 4 11:20 1998 (fw)
* * Dec 3 14:46 1998 (edgrif): Insert version macros for libfree.
* freecard ignores "\r" and "\n" under WIN32
* * Sep 30 14:19 1998 (edgrif)
* * Nov 27 12:30 1995 (mieg): freecard no longer stips \, freeword does
* also i added freeunprotect
* Created: Sun Oct 27 18:16:01 1991 (rd)
*-------------------------------------------------------------------
*/
/* $Id: freesubs.c,v 1.1 2002/11/14 20:00:06 lstein Exp $ */
#include "regular.h"
#include "version.h"
#include <ctype.h>
/* free package version and copyright string. */
/* */
#define FREE_TITLE "Free library"
#define FREE_DESC "Sanger Centre Informatics utilities library."
#define FREE_VERSION 1
#define FREE_RELEASE 1
#define FREE_UPDATE 1
#define FREE_VERSION_NUMBER UT_MAKE_VERSION_NUMBER(FREE_VERSION, FREE_RELEASE, FREE_UPDATE)
UT_COPYRIGHT_STRING(FREE_TITLE, FREE_VERSION, FREE_RELEASE, FREE_UPDATE, FREE_DESC)
int isInteractive = TRUE ; /* can set FALSE, i.e. in tace */
#define MAXSTREAM 80
#define MAXNPAR 80
typedef struct
{ FILE *fil ;
char *text ;
char special[24] ;
int npar ;
int parMark[MAXNPAR] ;
int line ;
BOOL isPipe ;
} STREAM ;
static STREAM stream[MAXSTREAM] ;
static int streamlevel ;
static FILE *currfil ; /* either currfil or currtext is 0 */
static char *currtext ; /* the other is the current source */
static Stack parStack ;
static int maxcard = 1024 ;
static unsigned char *card, *word, *cardEnd, *pos ;
static Associator filAss ;
#define _losewhite while (*pos == ' '|| *pos == '\t') ++pos
#define _stepover(x) (*pos == x && ++pos)
#define _FREECHAR (currfil ? getc (currfil) : *currtext++)
/************************************/
void freeinit (void)
{ static BOOL isInitialised = FALSE ;
if (!isInitialised)
{ streamlevel = 0 ;
currtext = 0 ;
stream[streamlevel].fil = currfil = stdin ;
stream[streamlevel].text = 0 ;
freespecial ("\n\t\\/@%") ;
card = (unsigned char *) messalloc (maxcard) ;
cardEnd = &card[maxcard-1] ;
pos = card ;
word = (unsigned char *) messalloc (maxcard) ;
filAss = assCreate () ;
parStack = stackCreate (128) ;
isInitialised = TRUE ;
}
}
/*******************/
/* Sometimes you may need to know if a function below you succeeded in */
/* changing a stream level. */
UTIL_FUNC_DCL int freeCurrLevel(void)
{
return streamlevel ;
}
/*******************/
static void freeExtend (unsigned char **pin)
{ /* only happens when getting card */
unsigned char *oldCard = card ;
maxcard *= 2 ;
card = (unsigned char *) messalloc (maxcard) ;
if (oldCard) /* jtm june 22, 1992 */
memcpy (card, oldCard, maxcard/2) ;
cardEnd = &card[maxcard-1] ;
*pin += (card - oldCard) ;
messfree (oldCard) ;
messfree (word) ;
word = (unsigned char *) messalloc (maxcard) ;
}
/********************/
static char special[256] ;
void freespecial (char* text)
{
if (!text)
messcrash ("freespecial received 0 text") ;
if (strlen(text) > 23)
messcrash ("freespecial received a string longer than 23") ;
if (text != stream[streamlevel].special)
strcpy (stream[streamlevel].special, text) ;
memset (special, 0, (mysize_t) 256) ;
while (*text)
special [((int) *text++) & 0xFF] = TRUE ;
special[0] = TRUE ;
special[(unsigned char)EOF] = TRUE ; /* better have these to ensure streams terminate! */
}
/********************/
void freeforcecard (char *string)
{ int level = freesettext (string, "") ;
freespecial ("") ;
freecard (level) ;
}
/********************/
char* freecard (int level) /* returns 0 when streamlevel drops below level */
{
unsigned char *in,ch,*cp ;
int kpar ;
int isecho = FALSE ; /* could reset sometime? */
FILE *fil ;
BOOL acceptShell, acceptCommand ;
restart :
if (level > streamlevel)
return 0 ;
if (isecho)
printf (!currfil ? "From text >" : "From file >") ;
in = card ; --in ;
acceptCommand = special['@'] ;
acceptShell = special['$'] ;
while (TRUE)
{ if (++in >= cardEnd)
freeExtend (&in) ;
*in = _FREECHAR ;
lao:
if (special[((int) *in) & 0xFF] && *in != '$' && *in != '@' )
switch (*in)
{
#if defined(WIN32)
case '\r':
continue ; /* ignore carriage returns */
#endif
case '\n': /* == '\x0a' */
case ';': /* card break for multiple commands on one line */
goto got_line ;
case (unsigned char) EOF:
case '\0':
freeclose(streamlevel) ;
goto got_line;
case '\t': /* tabs should get rounded to 8 spaces */
if (isecho) /* write it out */
putchar (*in) ;
*in++ = ' ' ;
while ((in - card) % 8)
{ if (in >= cardEnd)
freeExtend (&in) ;
*in++ = ' ' ;
}
--in ;
continue ;
case '/': /* // means start of comment */
if ((ch = _FREECHAR) == '/')
{ while ((ch = _FREECHAR) != '\n' && ch != (unsigned char)EOF) ;
goto got_line ;
}
else
{ if (isecho) putchar (*in) ;
if (currfil) /* push back ch */
ungetc (ch, currfil) ;
else
--currtext ;
}
break ;
case '%': /* possible parameter */
--in ; kpar = 0 ;
while (isdigit (ch = _FREECHAR))
kpar = kpar*10 + (ch - '0') ;
if (kpar > 0 && kpar <= stream[streamlevel].npar)
for (cp = (unsigned char *) stackText (parStack,
stream[streamlevel].parMark[kpar-1]) ; *cp ; ++cp)
{ if (++in >= cardEnd)
freeExtend (&in) ;
*in = *cp ;
if (isecho)
putchar (*in) ;
}
else
messout ("Parameter %%%d can not be substituted", kpar) ;
if (++in >= cardEnd)
freeExtend (&in) ;
*in = ch ;
goto lao ; /* mieg */
case '\\': /* escapes next character - interprets \n */
*in = _FREECHAR ;
if (*in == '\n') /* fold continuation lines */
{ if (isInteractive && !streamlevel)
printf (" Continuation >") ;
while ((ch = _FREECHAR) == ' ' || ch == '\t') ;
/* remove whitespace at start of next line */
if (currfil) /* push back ch */
ungetc (ch, currfil) ;
else
--currtext ;
stream[streamlevel].line++ ;
--in ;
}
#if !defined(WIN32)
else if (*in == 'n') /* reinterpret \n as a format */
{ *in = '\n' ;
}
#endif
else /* keep the \ till freeword is called */
{ *(in+1) = *in ;
*in = '\\' ;
if (++in >= cardEnd)
freeExtend (&in) ;
}
break ;
default:
messerror ("freesubs got unrecognised special character 0x%x = %c\n",
*in, *in) ;
}
else
{ if (!isprint(*in) && *in != '\t' && *in != '\n') /* mieg dec 15 94 */
--in ;
else if (isecho) /* write it out */
putchar (*in) ;
}
} /* while TRUE loop */
got_line:
stream[streamlevel].line++ ;
*in = 0 ;
if (isecho)
putchar ('\n') ;
pos = card ;
_losewhite ;
if (acceptCommand && _stepover ('@')) /* command file */
{ char *name ;
if ((name = freeword ()) &&
(fil = filopen (name, 0, "r")))
freesetfile (fil, (char*) pos) ;
goto restart ;
}
if (acceptShell && _stepover ('$')) /* shell command */
{
#if !defined(MACINTOSH)
system ((char*)pos) ;
#endif
goto restart ;
}
return (char*) card ;
}
/************************************************/
void freecardback (void) /* goes back one card */
{ stream[streamlevel].line-- ;
freesettext ((char*) card, "") ;
}
/************************************************/
BOOL freeread (FILE *fil) /* reads card from fil */
{
unsigned char ch, *in = card ;
int *line, chint ;
if (!assFind (filAss, fil, &line))
{ line = (int*) messalloc (sizeof (int)) ;
assInsert (filAss, fil, line) ;
}
--in ;
while (TRUE)
{ ++in ;
if (in >= cardEnd)
freeExtend (&in) ;
chint = getc(fil) ;
if (ferror(fil))
messerror ("chint was bad");
*in = chint ;
switch (*in)
{
case '\n' :
++*line ;
case (unsigned char) EOF :
goto got_line ;
case '/' : /* // means start of comment */
if ((ch = getc (fil)) == '/')
{ while (getc(fil) != '\n' && !feof(fil)) ;
++*line ;
if (in > card) /* // at start of line ignores line */
goto got_line ;
else
--in ; /* in = 0 unprintable, so backstepped */
}
else
ungetc (ch,fil) ;
break ;
case '\\' : /* escape next character */
*in = getc(fil) ;
if (*in == '\n') /* continuation */
{ ++*line ;
while (isspace (*in = getc(fil))) ; /* remove whitespace */
}
else if (*in == '"' || *in == '\\') /* escape for freeword */
{ *(in+1) = *in ;
*in = '\\' ;
++in ;
}
/* NB fall through - in case next char is nonprinting */
default:
if (!isprint (*in) && *in != '\t') /* ignore control chars, e.g. \x0d */
--in ;
}
}
got_line :
*in = 0 ;
pos = card ;
_losewhite ;
if (feof(fil))
{ assRemove (filAss, fil) ;
messfree (line) ;
}
return *pos || !feof(fil) ;
}
int freeline (FILE *fil)
{ int *line ;
if (assFind (filAss, fil, &line))
return *line ;
else
return 0 ;
}
int freestreamline (int level)
{
return stream[level].line ;
}
/********************************************/
static void freenewstream (char *parms)
{
int kpar ;
stream[streamlevel].fil = currfil ;
stream[streamlevel].text = currtext ;
if (++streamlevel == MAXSTREAM)
messcrash ("MAXSTREAM overflow in freenewstream") ;
strcpy (stream[streamlevel].special, stream[streamlevel-1].special) ;
stream[streamlevel].npar = 0 ;
stream[streamlevel].line = 1 ;
if (!parms || !*parms)
return ; /* can t abuse NULL ! */
pos = (unsigned char *) parms ; /* abuse freeword() to get parms */
for (kpar = 0 ; kpar < MAXNPAR && freeword () ; kpar++) /* read parameters */
{ stream[streamlevel].parMark[kpar] = stackMark (parStack) ;
pushText (parStack, (char*) word) ;
}
stream[streamlevel].npar = kpar ;
stream[streamlevel].isPipe = FALSE ;
pos = card ; /* restore pos to start of blank card */
*card = 0 ;
}
int freesettext (char *string, char *parms)
{
freenewstream (parms) ;
currfil = 0 ;
currtext = string ;
return streamlevel ;
}
int freesetfile (FILE *fil, char *parms)
{
freenewstream (parms) ;
currfil = fil ;
currtext = 0 ;
return streamlevel ;
}
int freesetpipe (FILE *fil, char *parms)
{
freenewstream (parms) ;
currfil = fil ;
currtext = 0 ;
stream[streamlevel].isPipe = TRUE ;
return streamlevel ;
}
void freeclose(int level)
{ int kpar ;
while (streamlevel >= level)
{ if (currfil && currfil != stdin && currfil != stdout)
{
if (stream[streamlevel].isPipe)
pclose (currfil) ;
else
filclose (currfil) ;
}
for (kpar = stream[streamlevel].npar ; kpar-- ;)
popText (parStack) ;
--streamlevel ;
currfil = stream[streamlevel].fil ;
currtext = stream[streamlevel].text ;
freespecial (stream[streamlevel].special) ;
}
}
/************************************************/
/* freeword(), freewordcut() and freestep() are the only calls that
directly move pos forward -- all others act via freeword().
freeback() moves pos back one word.
*/
char *freeword (void)
{
unsigned char *cw ;
_losewhite ; /* needed in case of intervening freestep() */
if (_stepover ('"'))
{ for (cw = word ; !_stepover('"') && *pos ; *cw++ = *pos++)
if (_stepover('\\')) /* accept next char unless end of line */
if (!*pos)
break ;
_losewhite ;
*cw = 0 ;
return (char*) word ; /* always return a word, even if empty */
}
/* default: break on space and \t, not on comma */
for (cw = word ; isgraph (*pos) && *pos != '\t' ; *cw++ = *pos++)
if (_stepover('\\')) /* accept next char unless end of line */
if (!*pos)
break ;
_losewhite ;
*cw = 0 ;
return *word ? (char*) word : 0 ;
}
/************************************************/
#if defined(WIN32)
char *freepath (void)
{
unsigned char *cw ;
_losewhite ; /* needed in case of intervening freestep() */
if (_stepover ('"'))
{ for (cw = word ; !_stepover('"') && *pos ; *cw++ = *pos++)
if (_stepover('\\')) /* accept next char unless end of line */
if (!*pos)
break ;
_losewhite ;
*cw = 0 ;
return (char*) word ; /* always return a word, even if empty */
}
/* default: break on space, \t or end of line, not on comma
also, does not skip over backslashes which are assumed to be
MS DOS/Windows path delimiters */
for (cw = word ; ( *pos == '\\' || isgraph (*pos) ) && *pos != '\t' ; *cw++ = *pos++) ;
_losewhite ;
*cw = 0 ;
return *word ? (char*) word : 0 ;
}
#endif
/************************************************/
char *freewordcut (char *cutset, char *cutter)
/* Moves along card, looking for a character from cut, which is a
0-terminated char list of separators.
Returns everything up to but not including the first match.
pos is moved one char beyond the character.
*cutter contains the char found, or if end of card is reached, 0.
*/
{ unsigned char *cc,*cw ;
for (cw = word ; *pos ; *cw++ = *pos++)
for (cc = (unsigned char *) cutset ; *cc ; ++cc)
if (*cc == *pos)
goto wcut ;
wcut:
*cutter = *pos ;
if (*pos)
++pos ;
_losewhite ;
*cw = 0 ;
return *word ? (char*) word : 0 ;
}
/************************************************/
void freeback (void) /* goes back one word - inefficient but reliable */
{unsigned char *now = pos ;
unsigned char *old = pos ;
pos = card ; _losewhite ;
while (pos < now)
{old = pos ;
freeword () ;
}
pos = old ;
}
/************************************************/
#define NON_INT -(1<<30)
#define NON_FLOAT -(1<<30)
BOOL freeint (int *p)
{unsigned char *keep = pos ;
unsigned char *cp ;
int value = 0 ;
BOOL isMinus = FALSE ;
if (freeword ())
{ /*printf ("freeint got '%s'\n", word) ;*/
cp = word ;
if (!strcmp ((char*)cp, "NULL"))
{ *p = NON_INT ;
return TRUE ;
}
if (*cp == '-')
{ isMinus = TRUE ;
++cp ;
}
while (*cp)
{ if (*cp >= '0' && *cp <= '9')
value = value*10 + (*cp++ - '0') ;
else
{ pos = keep ;
return FALSE ;
}
}
*p = isMinus ? -value : value ;
return (TRUE) ;
}
else
{ pos = keep ;
return (FALSE) ;
}
}
/*****************************/
BOOL freefloat (float *p)
{
unsigned char *keep = pos ;
float old = *p ;
char dummy ;
if (freeword ())
{ if (!strcmp ((char*)word, "NULL"))
{ *p = NON_FLOAT ;
return TRUE ;
}
if (sscanf ((char*) word,"%f%c",p,&dummy) == 1)
return (TRUE) ;
}
pos = keep ;
*p = old ;
return (FALSE) ;
}
/**************************************************/
BOOL freedouble (double *p)
{
unsigned char *keep = pos ;
double old = *p ;
char dummy ;
if (freeword () && (sscanf ((char*) word,"%lf%c",p,&dummy) == 1))
return (TRUE) ;
else
{ pos = keep ;
*p = old ;
return (FALSE) ;
}
}
/*************************************************/
static int ambiguouskey;
BOOL freekey (KEY *kpt, FREEOPT *options)
{
unsigned char *keep = pos ;
if (!freeword())
return FALSE ;
if (freekeymatch ((char*) word, kpt, options))
return TRUE;
if (ambiguouskey)
messout ("Keyword %s is ambiguous",word) ;
else if (word[0] != '?')
messout ("Keyword %s does not match",word) ;
pos = keep ;
return FALSE ;
}
/*****************/
BOOL freekeymatch (char *cp, KEY *kpt, FREEOPT *options)
{
char *io,*iw ;
int nopt = (int)options->key ;
KEY key ;
ambiguouskey = FALSE;
if (!nopt || !cp)
return FALSE ;
while (TRUE)
{ iw = cp ;
io = (++options)->text ;
while (freeupper (*iw++) == freeupper(*io++))
if (!*iw)
goto foundit ;
if (!--nopt)
return FALSE ;
}
foundit :
key = options->key ;
if (*io && *io != ' ') /* not a full word match */
while (--nopt) /* check that later options are different */
{ io = (++options)->text ;
iw = (char*) word ;
while (freeupper (*iw++) == freeupper (*io++))
if (!*iw)
{ ambiguouskey = TRUE;
return FALSE ;
}
}
*kpt = key ;
return TRUE ;
}
/***************************************************/
/* Return the text corresponding to the key */
char *freekey2text (KEY k, FREEOPT *o)
{ int i = o->key ; char *title = o->text ;
if (i<0)
messcrash("Negative number of options in freekey2text") ;
while (o++, i--)
if (o->key == k)
return (o->text) ;
return title ;
}
/***************************************************/
BOOL freeselect (KEY *kpt, FREEOPT *options) /* like the old freemenu */
{
if (isInteractive)
printf ("%s > ",options[0].text) ;
freecard (0) ; /* just get a card */
if (isInteractive)
while (freestep ('?')) /* write out options list */
{ int i ;
for (i = 1 ; i <= options[0].key ; i++)
printf (" %s\n",options[i].text) ;
printf ("%s > ",options[0].text) ;
freecard (0) ;
}
return freekey (kpt,options) ;
}
/* same but returns TRUE, -1, if stremlevel drops below level */
BOOL freelevelselect (int level, KEY *kpt, FREEOPT *options) /* like the old freemenu */
{
if (isInteractive)
printf ("%s > ",options[0].text) ;
if (!freecard (level)) /* try to get another card */
{ *kpt = (KEY)(-1) ;
return TRUE ;
}
if (isInteractive)
while (freestep ('?')) /* write out options list */
{ int i ;
for (i = 1 ; i <= options[0].key ; i++)
printf (" %s\n",options[i].text) ;
printf ("%s > ",options[0].text) ;
if (!freecard (level)) /* try to get another card */
{ *kpt = (KEY)(-1) ;
return TRUE ;
}
}
return freekey (kpt,options) ;
}
/**************************************/
BOOL freequery (char *query)
{
if (isInteractive)
{ int retval, answer = 0 ;
printf ("%s (y or n) ",query) ;
answer = getchar () ;
retval = (answer == 'y' || answer == 'Y') ? TRUE : FALSE ;
while (answer != (unsigned char) EOF &&
answer != -1 && /* mieg: used not to break on EOF in pipes */
answer != '\n')
answer = getchar () ;
return retval ;
}
else
return TRUE ;
}
/**********/
BOOL freeprompt (char *prompt, char *dfault, char *fmt)
{
if (isInteractive)
printf("%s ? > ",prompt);
freecard (0) ; /* just get a card */
if (freecheck (fmt))
return TRUE ;
else
{ messout ("input mismatch : format '%s' expected, card was\n%s",
fmt, card) ;
return FALSE ;
}
}
/*************************************/
int freefmtlength (char *fmt)
{char *cp ;
int length = 0 ;
if (isdigit((int)*fmt))
{sscanf (fmt,"%d",&length) ;
return length ;
}
for (cp = fmt ; *cp ; ++cp)
switch (*cp)
{
case 'i' : case 'f' : case 'd' : length += 8 ; break ;
case 'w' : length += 32 ; break ;
case 't' : length += 80 ; break ;
case 'o' :
if (*++cp)
messcrash ("'o' can not end free format %s",fmt) ;
length += 2 ; break ;
}
if (!length)
length = 40 ;
return length ;
}
/****************/
BOOL freecheck (char *fmt)
/* checks that whatever is in card fits specified format
note that 't' format option changes card by inserting a '"' */
{unsigned char *keep = pos ;
union {int i ; float r ; double d ;}
target ;
char *fp ;
unsigned char *start ;
int nquote = 1 ;
for (fp = fmt ; *fp ; ++fp)
switch (*fp)
{
case 'w' : if (freeword ()) break ; else goto retFALSE ;
case 'i' : if (freeint (&target.i)) break ; else goto retFALSE ;
case 'f' : if (freefloat (&target.r)) break ; else goto retFALSE ;
case 'd' : if (freedouble (&target.d)) break ; else goto retFALSE ;
case 't' : /* must insert '"' and escape any remaining '"'s or '\'s */
for (start = pos ; *pos ; ++pos)
if (*pos == '"' || *pos == '\\')
++nquote ;
*(pos+nquote+1) = '"' ; /* end of line */
for ( ; pos >= start ; --pos)
{ *(pos + nquote) = *pos ;
if (*pos == '"' || *pos == '\\')
*(pos + --nquote) = '\\' ;
}
*start = '"' ;
goto retTRUE ;
case 'z' : if (freeword ()) goto retFALSE ; else goto retTRUE ;
case 'o' :
if (!*++fp) messcrash ("'o' can not end free format %s",fmt) ;
freestep (*fp) ; break ;
case 'b' : break; /* special for graphToggleEditor no check needed il */
default :
if (!isdigit((int)*fp) && !isspace((int)*fp))
messerror ("unrecognised char %d = %c in free format %s",
*fp, *fp, fmt) ;
}
retTRUE :
pos = keep ; return TRUE ;
retFALSE :
pos = keep ; return FALSE ;
}
/************************ little routines ************************/
BOOL freestep (char x)
{return (*pos && freeupper (*pos) == x && pos++) ;
}
void freenext (void)
{_losewhite ;
}
char FREE_UPPER[] =
{ 0,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,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,123,124,125,126,127
} ;
char FREE_LOWER[] =
{ 0, 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, 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, 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
} ;
char* freepos (void) /* cheat to give pos onwards */
{ return (char*) pos ;
}
#ifdef JUNK
/* we want a more direct reciprocal to free protect */
char* freeunprotect (char *text)
{ int level ; char *cp ;
static Stack s = 0 ;
if (!text || !*text) return 0 ;
s = stackReCreate (s, 80) ;
level = freesettext (text,"") ;
freespecial ("\t\\") ; /* No \n, no subshells, No attach, No %, Nothing */
freecard(level) ;
while ((cp = freeword()))
{ if (stackMark(s)) catText (s, " ") ;
catText (s, cp);
}
freeclose (level) ;
return stackMark (s) ? stackText (s, 0) : "" ; /* is text is not 0, do not return 0 */
}
#endif
char* freeunprotect (char *text)
{
static char *buf = 0 ;
char *cp, *cp0, *cq ;
messfree (buf) ;
buf = strnew(text ? text : "", 0) ;
/* remove external space and tabs and first quotes */
cp = buf ;
while (*cp == ' ' || *cp == '\t') cp++ ;
if (*cp == '"') cp++ ;
while (*cp == ' ' || *cp == '\t') cp++ ;
cq = cp + strlen(cp) - 1 ;
while (cq > cp && (*cp == ' ' || *cq == '\t')) *cq-- = 0 ;
if (*cq == '"') /* remove one unprotected quote */
{
int i = 0 ; char *cr = cq - 1 ;
while (cr > cp && *cr == '\\')
{ i++ ; cr-- ; }
if ( i%2 == 0)
*cq-- = 0 ; /* discard */
}
while (cq > cp && (*cp == ' ' || *cq == '\t')) *cq-- = 0 ;
/* gobble the \ */
cp0 = cq = cp-- ;
while (*++cp)
switch (*cp)
{
case '\\':
if (*(cp+1) == '\\') { cp++ ; *cq++ = '\\' ; break ;}
if (*(cp+1) == '\n') { cp ++ ; break ; } /* skip backsalh-newline */
if (*(cp+1) == 'n') { cp ++ ; *cq++ = '\n' ; break ; }
break ;
default: *cq++ = *cp ;
}
*cq = 0 ; /* terminate the string */
return cp0 ;
}
char* freeprotect (char* text) /* freeword will read result back as text */
{
static Array a = 0 ;
char *cp, *cq ;
int base ;
/* code to make this efficiently reentrant */
if (a && text >= arrp(a,0,char) && text < arrp(a,arrayMax(a),char))
{ base = text - arrp(a,0,char) ;
array (a, base+3*(1+strlen(text)), char) = 0 ; /* ensure long enough */
text = arrp(a,0,char) + base ; /* may have relocated */
base += 1 + strlen(text) ;
}
else
{ a = arrayReCreate (a, 128, char) ;
base = 0 ;
array (a, 2*(1+strlen(text)), char) = 0 ; /* ensure long enough */
}
cq = arrp (a, base, char) ;
*cq++ = '"' ;
for (cp = text ; *cp ; *cq++ = *cp++)
{ if (*cp == '\\' || *cp == '"' || /* protect these */
*cp == '/' || *cp == '%' || *cp == ';' ||
*cp == '\t' || *cp == '\n')
*cq++ = '\\' ;
if (*cp == '\n') {*cq++ = 'n' ; *cq++ = '\\' ; } /* -> /n/n (text then real) */
}
*cq++ = '"' ;
*cq = 0 ;
return arrp (a, base, char) ;
}
char* freejavaprotect (char* text) /* freeword will read result back as text */
{
static Array a = 0 ;
char *cp, *cq ;
int base ;
/* code to make this efficiently reentrant */
if (a && text >= arrp(a,0,char) && text < arrp(a,arrayMax(a),char))
{ base = text - arrp(a,0,char) ;
array (a, base+3*(1+strlen(text)), char) = 0 ; /* ensure long enough */
text = arrp(a,0,char) + base ; /* may have relocated */
base += 1 + strlen(text) ;
}
else
{ a = arrayReCreate (a, 128, char) ;
base = 0 ;
array (a, 2*(1+strlen(text)), char) = 0 ; /* ensure long enough */
}
cq = arrp (a, base, char) ;
cp = text;
#ifdef JUNK
while (*cp) {
if (*cp == '\t' || *cp == '\n' || *cp == '\r') {
*cq++ = '\\' ;
switch (*cp) {
case '\t':
*cq++ = 't';
break;
case '\n':
*cq++ = 'n';
break;
case '\r':
*cq++ = 'r';
break;
default:
;
}
cp++; /* skip this character */
}
else {
if (*cp == '?') *cq++ = '\\';
*cq++ = *cp++;
}
}
#endif
while (*cp)
switch (*cp)
{
case '\n':
*cq++ = '\\';
*cq++ = 'n';
cp++;
break;
case '\\': case '?':
*cq++ = '\\' ;
/* fall thru */
default:
*cq++ = *cp++;
}
*cq = 0 ;
return arrp (a, base, char) ;
}
/*********** end of file *****************/
|