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
|
/* @(#)getargs.c 2.47 06/09/13 Copyright 1985, 1988, 1994-2006 J. Schilling */
#ifndef lint
static char sccsid[] =
"@(#)getargs.c 2.47 06/09/13 Copyright 1985, 1988, 1994-2006 J. Schilling";
#endif
#define NEW
/*
* Copyright (c) 1985, 1988, 1994-2006 J. Schilling
*
* 1.3.88 Start implementation of release 2
*/
/*
* Parse arguments on a command line.
* Format string type specifier (appearing directly after flag name):
* '' BOOL size int set to TRUE (1)
* '%' Extended format, next char determines the type:
* '%0' BOOL with size modifier set to FALSE (0)
* '%1' BOOL with size modifier set to TRUE(1)
* '*' string
* '?' char
* '#' number
* '&' call function for any type flag
* '~' call function for BOOLEAN flag
* '+' inctype +++ NEU +++
*
* XXX Single char Boolen type '~' flags cannot yet be combined
* XXX Single char Boolen type '%' flags cannot yet be combined
*
* The format string 'f* ' may be used to disallow -ffoo for f*
* The same behavior is implemented for 'f# ', 'f? ' and 'f& '.
* The ' ' needs to immediately follow the format type specifier.
*
* The format string 'f*_' may be used to disallow -f foo for f*
* The same behavior is implemented for 'f#_', 'f?_' and 'f&_'.
* The '_' needs to immediately follow the format type specifier.
* This also allows to implement optional arguments to options.
* Note: 'f#_' is only implemented for orthogonality, -f will
* be converted to an integer value of 0.
*
* The '#', '+' and '%[01]' types may have size modifiers added:
* 'c'/'C' char
* 's'/'S' short
* 'i'/'I' int (default == no size modifier)
* 'l'/'L' long
* 'll'/'LL' long long
*/
/*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* See the file CDDL.Schily.txt in this distribution for details.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file CDDL.Schily.txt from this distribution.
*/
/* LINTLIBRARY */
#include <schily/mconfig.h>
#include <schily/standard.h>
#include <schily/utypes.h>
#include <schily/getargs.h>
#include <schily/varargs.h>
#include <schily/string.h>
#include <schily/schily.h>
#include <ctype.h>
#define NOARGS 0 /* No more args */
#define NOTAFLAG 1 /* Not a flag type argument */
#define BADFLAG (-1) /* Not a valid flag argument */
#define BADFMT (-2) /* Error in format string */
#define NOTAFILE (-3) /* Seems to be a flag type arg */
LOCAL char *retnames[] = {
"NOTAFILE",
"BADFMT",
"BADFLAG",
"NOARGS",
"NOTAFLAG",
};
#define RNAME(a) (retnames[(a)+3])
#define SCANONLY 0
#define SETARGS 1
#define ARGVECTOR 2
int _getargs __PR((int *, char *const **, void *,
int, va_list));
LOCAL int dofile __PR((int *, char *const **, const char **));
LOCAL int doflag __PR((int *, char *const **, const char *,
void *, int, va_list));
LOCAL int dosflags __PR((const char *, void *, int, va_list));
LOCAL int checkfmt __PR((const char *));
LOCAL int checkeql __PR((const char *));
LOCAL va_list va_dummy;
LOCAL char fmtspecs[] = "#?*&~+%";
#define isfmtspec(c) (strchr(fmtspecs, c) != NULL)
/*---------------------------------------------------------------------------
|
| get flags until a non flag type argument is reached
|
+---------------------------------------------------------------------------*/
/* VARARGS3 */
#ifdef PROTOTYPES
EXPORT int
getargs(int *pac, char *const **pav, const char *fmt, ...)
#else
EXPORT int
getargs(pac, pav, fmt, va_alist)
int *pac;
char **pav[];
char *fmt;
va_dcl
#endif
{
va_list args;
int ret;
#ifdef PROTOTYPES
va_start(args, fmt);
#else
va_start(args);
#endif
ret = _getargs(pac, pav, (void *)fmt, SETARGS, args);
va_end(args);
return (ret);
}
/*---------------------------------------------------------------------------
|
| get flags until a non flag type argument is reached (vector version)
|
+---------------------------------------------------------------------------*/
EXPORT int
getvargs(pac, pav, vfmt, dummy)
int *pac;
char * const *pav[];
struct ga_flags *vfmt;
void *dummy;
{
return (_getargs(pac, pav, vfmt, SETARGS | ARGVECTOR, va_dummy));
}
/*---------------------------------------------------------------------------
|
| get all flags on the command line, do not stop on files
|
+---------------------------------------------------------------------------*/
/* VARARGS3 */
#ifdef PROTOTYPES
EXPORT int
getallargs(int *pac, char *const **pav, const char *fmt, ...)
#else
EXPORT int
getallargs(pac, pav, fmt, va_alist)
int *pac;
char **pav[];
char *fmt;
va_dcl
#endif
{
va_list args;
int ret;
#ifdef PROTOTYPES
va_start(args, fmt);
#else
va_start(args);
#endif
for (; ; (*pac)--, (*pav)++) {
if ((ret = _getargs(pac, pav, (void *)fmt, SETARGS, args)) != NOTAFLAG)
break;
}
va_end(args);
return (ret);
}
/*---------------------------------------------------------------------------
|
| get all flags on the command line, do not stop on files (vector version)
|
+---------------------------------------------------------------------------*/
EXPORT int
getvallargs(pac, pav, vfmt, dummy)
int *pac;
char * const *pav[];
struct ga_flags *vfmt;
void *dummy;
{
int ret;
for (; ; (*pac)--, (*pav)++) {
if ((ret = _getargs(pac, pav, vfmt, SETARGS | ARGVECTOR, va_dummy)) != NOTAFLAG)
break;
}
return (ret);
}
/*---------------------------------------------------------------------------
|
| get next non flag type argument (i.e. a file)
|
+---------------------------------------------------------------------------*/
EXPORT int
getfiles(pac, pav, fmt)
int *pac;
char *const *pav[];
const char *fmt;
{
return (_getargs(pac, pav, (void *)fmt, SCANONLY, va_dummy));
}
/*---------------------------------------------------------------------------
|
| get next non flag type argument (i.e. a file) (vector version)
|
+---------------------------------------------------------------------------*/
EXPORT int
getvfiles(pac, pav, vfmt, dummy)
int *pac;
char *const *pav[];
struct ga_flags *vfmt;
void *dummy;
{
return (_getargs(pac, pav, vfmt, SCANONLY | ARGVECTOR, va_dummy));
}
/*---------------------------------------------------------------------------
|
| check args until the next non flag type argmument is reached
| *pac is decremented, *pav is incremented so that the
| non flag type argument is at *pav[0]
|
| return code:
| NOARGS no more args
| NOTAFLAG not a flag type argument
| BADFLAG a non-matching flag type argument
| BADFMT bad syntax in format string
|
|
+---------------------------------------------------------------------------*/
/*LOCAL*/ int
_getargs(pac, pav, vfmt, flags, args)
register int *pac;
register char *const **pav;
void *vfmt;
int flags;
va_list args;
{
const char *argp;
int ret;
for (; *pac > 0; (*pac)--, (*pav)++) {
argp = **pav;
ret = dofile(pac, pav, &argp);
if (ret != NOTAFILE)
return (ret);
ret = doflag(pac, pav, argp, vfmt, flags, args);
if (ret != NOTAFLAG)
return (ret);
}
return (NOARGS);
}
/*---------------------------------------------------------------------------
|
| check if *pargp is a file type argument
|
+---------------------------------------------------------------------------*/
LOCAL int
dofile(pac, pav, pargp)
register int *pac;
register char *const **pav;
const char **pargp;
{
register const char *argp = *pargp;
if (argp[0] == '-') {
/*
* "-" is a special non flag type argument
* that usually means take stdin instead of a named file
*/
if (argp[1] == '\0')
return (NOTAFLAG);
/*
* "--" is a prefix to take the next argument
* as non flag type argument
* NOTE: Posix requires "--" to indicate the end of the
* flags on the command line. But we are currently not
* Posix.
*/
if (argp[1] == '-' && argp[2] == '\0') {
if (--(*pac) > 0) {
(*pav)++;
return (NOTAFLAG);
} else {
return (NOARGS);
}
}
}
/*
* now check if it may be flag type argument
* flag type arguments begin with a '-', a '+' or contain a '='
* i.e. -flag +flag or flag=
*/
if (argp[0] != '-' && argp[0] != '+' && (!checkeql(argp)))
return (NOTAFLAG);
return (NOTAFILE);
}
/*---------------------------------------------------------------------------
|
| compare argp with the format string
| if a match is found store the result a la scanf in one of the
| arguments pointed to in the va_list
|
| If (flags & SETARGS) == 0, only check arguments for getfiles()
| In case that (flags & SETARGS) == 0 or that (flags & ARGVECTOR) != 0,
| va_list may be a dummy argument.
|
+---------------------------------------------------------------------------*/
LOCAL int
doflag(pac, pav, argp, vfmt, flags, oargs)
int *pac;
char *const **pav;
register const char *argp;
void *vfmt;
int flags;
va_list oargs;
{
register const char *fmt = (const char *)vfmt;
struct ga_flags *flagp = vfmt;
char argstr[2];
const char *fmtp;
long val;
Llong llval;
int singlecharflag = 0;
BOOL isspec;
BOOL hasdash = FALSE;
BOOL doubledash = FALSE;
BOOL haseql = checkeql(argp);
const char *sargp;
const char *sfmt;
va_list args;
char *const *spav = *pav;
int spac = *pac;
void *curarg = (void *)0;
sfmt = fmt;
/*
* flags beginning with '-' don't have to include the '-' in
* the format string.
* flags beginning with '+' have to include it in the format string.
*/
if (argp[0] == '-') {
argp++;
hasdash = TRUE;
/*
* Implement legacy support for --longopt
* If we find a double dash, we do not look for combinations
* of boolean single char flags.
*/
if (argp[0] == '-') {
argp++;
doubledash = TRUE;
/*
* Allow -- only for long options.
*/
if (argp[1] == '\0') {
return (BADFLAG);
}
}
}
sargp = argp;
/*
* Initialize 'args' to the start of the argument list.
* I don't know any portable way to copy an arbitrary
* C object so I use a system-specific routine
* (probably a macro) from stdarg.h. (Remember that
* if va_list is an array, 'args' will be a pointer
* and '&args' won't be what I would need for memcpy.)
* It is a system requirement for SVr4 compatibility
* to be able to do this assgignement. If your system
* defines va_list to be an array but does not define
* va_copy() you are lost.
* This is needed to make sure, that 'oargs' will not
* be clobbered.
*/
va_copy(args, oargs);
if (flags & ARGVECTOR) {
sfmt = fmt = flagp->ga_format;
if (fmt == NULL)
sfmt = fmt = "";
if (flags & SETARGS)
curarg = flagp->ga_arg;
} else if (flags & SETARGS) {
curarg = va_arg(args, void *);
}
/*
* check if the first flag in format string is a singlechar flag
*/
again:
if (fmt[1] == ',' || fmt[1] == '+' || fmt[1] == '\0')
singlecharflag++;
/*
* check the whole format string for a match
*/
for (;;) {
for (; *fmt; fmt++, argp++) {
if (*fmt == '\\') {
/*
* Allow "#?*&+" to appear inside a flag.
* NOTE: they must be escaped by '\\' only
* inside the the format string.
*/
fmt++;
isspec = FALSE;
} else {
isspec = isfmtspec(*fmt);
}
/*
* If isspec is TRUE, the arg beeing checked starts
* like a valid flag. Argp now points to the rest.
*/
if (isspec) {
/*
* If *argp is '+' and we are on the
* beginning of the arg that is currently
* checked, this cannot be an inc type flag.
*/
if (*argp == '+' && argp == sargp)
continue;
/*
* skip over to arg of flag
*/
if (*argp == '=') {
argp++;
} else if (*argp != '\0' && haseql) {
/*
* Flag and arg are not separated by a
* space.
* Check here for:
* xxxxx=yyyyy match on '&'
* Checked before:
* abc=yyyyy match on 'abc&'
* or 'abc*'
* or 'abc#'
* We come here if 'argp' starts with
* the same sequence as a valid flag
* and contains an equal sign.
* We have tested before if the text
* before 'argp' matches exactly.
* At this point we have no exact match
* and we only allow to match
* the special pattern '&'.
* We need this e.g. for 'make'.
* We allow any flag type argument to
* match the format string "&" to set
* up a function that handles all odd
* stuff that getargs will not grok.
* In addition, to allow getargs to be
* used for CPP type flags we allow to
* match -Dabc=xyz on 'D&'. Note that
* Dabc=xyz will not match 'D&'.
*/
if ((!hasdash && argp != sargp) || *fmt != '&')
goto nextarg;
}
/*
* The format string 'f* ' may be used
* to disallow -ffoo for f*
*
* The same behavior is implemented for
* 'f# '. 'f? ' and 'f& '.
*/
if (!haseql && *argp != '\0' &&
(fmt[0] == '*' || fmt[0] == '#' ||
fmt[0] == '?' || fmt[0] == '&') &&
fmt[1] == ' ') {
goto nextarg;
}
/*
* *arpp == '\0' || !haseql
* We come here if 'argp' starts with
* the same sequence as a valid flag.
* This will match on the following args:
* -farg match on 'f*'
* -f12 match on 'f#'
* +12 match on '+#'
* -12 match on '#'
* and all args that are separated from
* their flags.
* In the switch statement below, we check
* if the text after 'argp' (if *argp != 0) or
* the next arg is a valid arg for this flag.
*/
break;
} else if (*fmt == *argp) {
if (argp[1] == '\0' &&
(fmt[1] == '\0' || fmt[1] == ',')) {
if (flags & SETARGS)
*((int *)curarg) = TRUE;
return (checkfmt(fmt)); /* XXX */
}
} else {
/*
* skip over to next format identifier
* & reset arg pointer
*/
nextarg:
while (*fmt != ',' && *fmt != '\0') {
/* function has extra arg on stack */
if ((*fmt == '&' || *fmt == '~') &&
(flags & (SETARGS|ARGVECTOR)) == SETARGS) {
curarg = va_arg(args, void *);
}
fmt++;
}
argp = sargp;
break;
}
}
switch (*fmt) {
case '\0':
/*
* Boolean type has been tested before.
*/
if (flags & ARGVECTOR) {
if (flagp[1].ga_format != NULL) {
flagp++;
sfmt = fmt = flagp->ga_format;
if (flags & SETARGS)
curarg = flagp->ga_arg;
argp = sargp;
goto again;
}
if (singlecharflag && !doubledash &&
(val = dosflags(sargp, vfmt, flags,
oargs)) != BADFLAG) {
return (val);
}
return (BADFLAG);
}
if (singlecharflag && !doubledash &&
(val = dosflags(sargp, vfmt, flags, oargs)) !=
BADFLAG)
return (val);
return (BADFLAG);
case ',':
fmt++;
if (fmt[1] == ',' || fmt[1] == '+' || fmt[1] == '\0')
singlecharflag++;
if ((flags & (SETARGS|ARGVECTOR)) == SETARGS)
curarg = va_arg(args, void *);
continue;
case '*':
if (*argp == '\0' && fmt[1] != '_') {
if (*pac > 1) {
(*pac)--;
(*pav)++;
argp = **pav;
} else {
return (BADFLAG);
}
}
if (fmt[1] == '_') /* To disallow -f foo for f* */
fmt++;
else if (fmt[1] == ' ') /* To disallow -ffoo for f* */
fmt++;
if (flags & SETARGS)
*((const char **)curarg) = argp;
return (checkfmt(fmt));
case '?':
if (*argp == '\0' && fmt[1] != '_') {
if (*pac > 1) {
(*pac)--;
(*pav)++;
argp = **pav;
} else {
return (BADFLAG);
}
}
if (fmt[1] == '_') /* To disallow -f c for f? */
fmt++;
else if (fmt[1] == ' ') /* To disallow -fc for f? */
fmt++;
/*
* Allow -f '' to specify a nul character.
* If more than one char arg, it
* cannot be a character argument.
*/
if (argp[0] != '\0' && argp[1] != '\0')
goto nextchance;
if (flags & SETARGS)
*((char *)curarg) = *argp;
return (checkfmt(fmt));
case '+':
/*
* inc type is similar to boolean,
* there is no arg in argp to convert.
*/
if (*argp != '\0')
goto nextchance;
/*
* If *fmt is '+' and we are on the beginning
* of the format desciptor that is currently
* checked, this cannot be an inc type flag.
*/
if (fmt == sfmt || fmt[-1] == ',')
goto nextchance;
fmtp = fmt;
argstr[0] = fmt[1];
argstr[1] = '\0';
if (fmt[1] == 'l' || fmt[1] == 'L') {
if (fmt[2] == 'l' || fmt[2] == 'L') {
if (flags & SETARGS)
*((Llong *)curarg) += 1;
fmt += 2;
} else {
if (flags & SETARGS)
*((long *)curarg) += 1;
fmt++;
}
} else if (fmt[1] == 's' || fmt[1] == 'S') {
if (flags & SETARGS)
*((short *)curarg) += 1;
fmt++;
} else if (fmt[1] == 'c' || fmt[1] == 'C') {
if (flags & SETARGS)
*((char *)curarg) += 1;
fmt++;
} else {
if (fmt[1] == 'i' || fmt[1] == 'I')
fmt++;
if (flags & SETARGS)
*((int *)curarg) += 1;
}
return (checkfmt(fmt));
case '%':
/*
* inc type is similar to boolean,
* there is no arg in argp to convert.
*/
if (*argp != '\0')
goto nextchance;
fmt++;
if (*fmt == '1')
val = TRUE;
else if (*fmt == '0')
val = FALSE;
else
goto nextchance;
fmtp = fmt;
argstr[0] = fmt[1];
argstr[1] = '\0';
llval = (Llong)val;
if (fmt[1] == 'l' || fmt[1] == 'L') {
if (fmt[2] == 'l' || fmt[2] == 'L') {
if (flags & SETARGS)
*((Llong *)curarg) = llval;
fmt += 2;
} else {
if (flags & SETARGS)
*((long *)curarg) = val;
fmt++;
}
} else if (fmt[1] == 's' || fmt[1] == 'S') {
if (flags & SETARGS)
*((short *)curarg) = val;
fmt++;
} else if (fmt[1] == 'c' || fmt[1] == 'C') {
if (flags & SETARGS)
*((char *)curarg) = val;
fmt++;
} else {
if (fmt[1] == 'i' || fmt[1] == 'I')
fmt++;
if (flags & SETARGS)
*((int *)curarg) = val;
}
return (checkfmt(fmt));
case '#':
if (*argp == '\0' && fmt[1] != '_') {
if (*pac > 1) {
(*pac)--;
(*pav)++;
argp = **pav;
} else {
return (BADFLAG);
}
}
if (fmt[1] == '_') /* To disallow -f 123 for f# */
fmt++;
else if (fmt[1] == ' ') /* To disallow -f123 for f# */
fmt++;
if (*astoll(argp, &llval) != '\0') {
/*
* arg is not a valid number!
* go to next format in the format string
* and check if arg matches any other type
* in the format specs.
*/
nextchance:
while (*fmt != ',' && *fmt != '\0') {
if ((*fmt == '&' || *fmt == '~') &&
(flags & (SETARGS|ARGVECTOR)) == SETARGS) {
curarg = va_arg(args, void *);
}
fmt++;
}
argp = sargp;
*pac = spac;
*pav = spav;
continue;
}
fmtp = fmt;
argstr[0] = fmt[1];
argstr[1] = '\0';
val = (long)llval;
if (fmt[1] == 'l' || fmt[1] == 'L') {
if (fmt[2] == 'l' || fmt[2] == 'L') {
if (flags & SETARGS)
*((Llong *)curarg) = llval;
fmt += 2;
} else {
if (flags & SETARGS)
*((long *)curarg) = val;
fmt++;
}
} else if (fmt[1] == 's' || fmt[1] == 'S') {
if (flags & SETARGS)
*((short *)curarg) = (short)val;
fmt++;
} else if (fmt[1] == 'c' || fmt[1] == 'C') {
if (flags & SETARGS)
*((char *)curarg) = (char)val;
fmt++;
} else {
if (fmt[1] == 'i' || fmt[1] == 'I')
fmt++;
if (flags & SETARGS)
*((int *)curarg) = (int)val;
}
return (checkfmt(fmt));
case '~':
if (*argp != '\0')
goto nextchance;
if (haseql) {
return (BADFLAG);
}
goto callfunc;
case '&':
if (*argp == '\0' && fmt[1] != '_') {
if (*pac > 1) {
(*pac)--;
(*pav)++;
argp = **pav;
} else {
return (BADFLAG);
}
}
callfunc:
if (*fmt == '&' && fmt[1] == '_') /* To disallow -f foo for f& */
fmt++;
else if (fmt[1] == ' ') /* To disallow -ffoo for f& */
fmt++;
if ((val = checkfmt(fmt)) != NOTAFLAG)
return (val);
fmtp = sargp;
if (hasdash)
fmtp--;
if (doubledash)
fmtp--;
if ((flags & (SETARGS|ARGVECTOR)) == (SETARGS|ARGVECTOR)) {
int ret;
if (flagp->ga_funcp == NULL)
return (BADFMT);
ret = ((*flagp->ga_funcp) (argp, flagp->ga_arg,
pac, pav, fmtp));
if (ret != NOTAFILE)
return (ret);
fmt++;
} else
if (flags & SETARGS) {
int ret;
void *funarg = va_arg(args, void *);
ret = ((*(getpargfun)curarg) (argp, funarg,
pac, pav, fmtp));
if (ret != NOTAFILE)
return (ret);
fmt++;
} else {
return (val);
}
/*
* Called function returns NOTAFILE: try next format.
*/
}
}
}
/*---------------------------------------------------------------------------
|
| parse args for combined single char flags
|
+---------------------------------------------------------------------------*/
typedef struct {
void *curarg; /* The pointer to the arg to modify */
short count; /* The number of times a sc flag appears */
char c; /* The single char flag character */
char type; /* The type of the single char flag */
} sflags;
LOCAL int
dosflags(argp, vfmt, flags, oargs)
register const char *argp;
void *vfmt;
int flags;
va_list oargs;
{
register const char *fmt = (const char *)vfmt;
struct ga_flags *flagp = vfmt;
#define MAXSF 32
sflags sf[MAXSF];
va_list args;
register sflags *rsf = sf;
register int nsf = 0;
register const char *p = argp;
register int i;
register void *curarg = (void *)0;
char type;
/*
* Initialize 'args' to the start of the argument list.
* I don't know any portable way to copy an arbitrary
* C object so I use a system-specific routine
* (probably a macro) from stdarg.h. (Remember that
* if va_list is an array, 'args' will be a pointer
* and '&args' won't be what I would need for memcpy.)
* It is a system requirement for SVr4 compatibility
* to be able to do this assgignement. If your system
* defines va_list to be an array but does not define
* va_copy() you are lost.
* This is needed to make sure, that 'oargs' will not
* be clobbered.
*/
va_copy(args, oargs);
if (flags & ARGVECTOR) {
fmt = flagp->ga_format;
if (fmt == NULL)
fmt = "";
if (flags & SETARGS)
curarg = flagp->ga_arg;
} else if (flags & SETARGS) {
curarg = va_arg(args, void *);
}
while (*p) {
for (i = 0; i < nsf; i++) {
if (rsf[i].c == *p)
break;
}
if (i >= MAXSF)
return (BADFLAG);
if (i == nsf) {
rsf[i].curarg = (void *)0;
rsf[i].count = 0;
rsf[i].c = *p;
rsf[i].type = (char)-1;
nsf++;
}
rsf[i].count++;
p++;
}
/*
* XXX Single char Boolen type '~' flags cannot yet be combined
*/
again:
while (*fmt) {
if (!isfmtspec(*fmt) &&
(fmt[1] == ',' || fmt[1] == '+' || fmt[1] == '\0') &&
strchr(argp, *fmt)) {
for (i = 0; i < nsf; i++) {
if (rsf[i].c == *fmt) {
if (fmt[1] == '+') {
fmt++;
if (fmt[1] == ',' ||
fmt[1] == '\0') {
rsf[i].type = 'i';
} else if ((fmt[1] == 'l' ||
fmt[1] == 'L') &&
(fmt[2] == 'l' ||
fmt[2] == 'L')) {
/*
* Type 'Q'uad (ll)
*/
rsf[i].type = 'Q';
fmt++;
} else {
/*
* Type 'l','i','s','c'
*/
rsf[i].type = fmt[1];
}
} else {
/*
* ',' or '\0' for BOOL
*/
rsf[i].type = fmt[1];
}
rsf[i].curarg = curarg;
break;
}
}
}
while (*fmt != ',' && *fmt != '\0') {
/* function has extra arg on stack */
if ((*fmt == '&' || *fmt == '~') &&
(flags & (SETARGS|ARGVECTOR)) == SETARGS) {
curarg = va_arg(args, void *);
}
fmt++;
}
if (*fmt != '\0')
fmt++;
if ((flags & (SETARGS|ARGVECTOR)) == SETARGS)
curarg = va_arg(args, void *);
}
if ((flags & ARGVECTOR) && flagp[1].ga_format != NULL) {
flagp++;
fmt = flagp->ga_format;
if (flags & SETARGS)
curarg = flagp->ga_arg;
goto again;
}
for (i = 0; i < nsf; i++) {
type = rsf[i].type;
if (type == (char)-1) {
return (BADFLAG);
}
if (rsf[i].curarg) {
if (type == ',' || type == '\0') {
*((int *)rsf[i].curarg) = TRUE;
} else if (type == 'i' || type == 'I') {
*((int *)rsf[i].curarg) += rsf[i].count;
} else if (type == 'l' || type == 'L') {
*((long *)rsf[i].curarg) += rsf[i].count;
} else if (type == 'Q') {
*((Llong *)rsf[i].curarg) += rsf[i].count;
} else if (type == 's' || type == 'S') {
*((short *)rsf[i].curarg) += rsf[i].count;
} else if (type == 'c' || type == 'C') {
*((char *)rsf[i].curarg) += rsf[i].count;
} else {
return (BADFLAG);
}
}
}
return (NOTAFLAG);
}
/*---------------------------------------------------------------------------
|
| If the next format character is a comma or the string delimiter,
| there are no invalid format specifiers. Return success.
| Otherwise raise the getarg_bad_format condition.
|
+---------------------------------------------------------------------------*/
LOCAL int
checkfmt(fmt)
const char *fmt;
{
char c;
c = *(++fmt); /* non constant expression */
if (c == ',' || c == '\0') {
return (NOTAFLAG);
} else {
raisecond("getarg_bad_format", (long)fmt);
return (BADFMT);
}
}
/*---------------------------------------------------------------------------
|
| Parse the string as long as valid characters can be found.
| Valid flag identifiers are chosen from the set of
| alphanumeric characters, '-' and '_'.
| If the next character is an equal sign the string
| contains a valid flag identifier.
|
+---------------------------------------------------------------------------*/
LOCAL int
checkeql(str)
register const char *str;
{
register unsigned char c;
for (c = (unsigned char)*str;
isalnum(c) || c == '_' || c == '-'; c = *str++)
/* LINTED */
;
return (c == '=');
}
EXPORT char *
getargerror(err)
int err;
{
if (err < -3 || err > 1)
return ("Illegal arg error");
return (RNAME(err));
}
|