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 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
|
char * cklibv = "C-Kermit library, 7.0.009, 29 Nov 1999";
#define CKCLIB_C
/* C K C L I B . C -- C-Kermit Library routines. */
/*
Author: Frank da Cruz <fdc@columbia.edu>,
Columbia University Academic Information Systems, New York City.
Copyright (C) 1999, 2000,
Trustees of Columbia University in the City of New York.
All rights reserved. See the C-Kermit COPYING.TXT file or the
copyright text in the ckcmai.c module for disclaimer and permissions.
*/
/*
General-purpose, system/platform/compiler-independent routines for use
by all modules. Most are replacements for commonly used C library
functions that are not found on every platform, and/or that lack needed
functionality (e.g. caseless string search/compare).
ckstrncpy() - Similar to strncpy() but different (see comments).
chartostr() - Converts a char to a string (self or ctrl char name).
ckstrchr() - Portable strchr().
cklower() - Lowercase a string (in place).
ckindex() - Left or right index.
ckitoa() - Converts int to string.
ckltoa() - Converts long to string.
ckmatch() - Pattern matching.
ckmemcpy() - Portable memcpy().
ckrchar() - Rightmost character of a string.
ckstrcmp() - Possibly caseless string comparison.
ckstrpre() - Caseless string prefix comparison.
sh_sort() - Sorts an array of strings, many options.
brstrip() - Strips enclosing braces.
makelist() - Splits "{{item}{item}...}" into an array.
makestr() - Careful malloc() front end.
xmakestr() - ditto (see comments).
fileselect() - Select a file based on size, date, excption list, etc.
radix() - Convert number radix (2-36).
b8tob64() - Convert data to base 64.
b64tob8() - Convert base 64 to data.
chknum() - Checks if string is an integer.
rdigits() - Checks if string is composed only of digits.
isfloat() - Checks if string is a valid floating-point number.
parnam() - Returns parity name string.
hhmmss() - Converts seconds to hh:mm:ss string.
lset() - Write fixed-length field left-adjusted into a record.
rset() - Write fixed-length field right-adjusted into a record.
ulongtohex() - Converts an unsigned long to a hex string.
hextoulong() - Converts a hex string to an unsigned long.
Prototypes are in ckclib.h.
*/
#include "ckcsym.h"
#include "ckcdeb.h"
#include "ckcasc.h"
char *
ccntab[] = { /* Names of ASCII (C0) control characters 0-31 */
"NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
"BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
"DLE", "DC1", "DC2", "DC3", "DC4", "NAK", "SYN", "ETB",
"CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US"
};
char *
c1tab[] = { /* Names of ISO 6429 (C1) control characters 0-32 */
"XXX", "XXX", "BPH", "NBH", "IND", "NEL", "SSA", "ESA",
"HTS", "HTJ", "VTS", "PLD", "PLU", "RI", "SS2", "SS3",
"DCS", "PU1", "PU2", "STS", "CCH", "MW", "SPA", "EPA",
"SOS", "XXX", "SCI", "CSI", "ST", "OSC", "PM", "APC", "NBS"
};
/* C K S T R N C P Y */
/*
Copies a NUL-terminated string into a buffer whose total length is given,
ensuring that the result is NUL-terminated even if it had to be truncated.
Call with:
dest = pointer to destination buffer
src = pointer to source string
len = length of destination buffer (the actual length, not one less).
Returns:
int, The number of bytes copied, 0 or more.
NOTE: This is NOT a replacement for strncpy():
. strncpy() does not require its source string to be NUL-terminated.
. strncpy() does not necessarily NUL-terminate its result.
. strncpy() right-pads dest with NULs if it is longer than src.
. strncpy() treats the length argument as the number of bytes to copy.
. ckstrncpy() treats the length argument as the size of the dest buffer.
. ckstrncpy() doesn't dump core if given NULL string pointers.
. ckstrncpy() returns a number.
*/
int
#ifdef CK_ANSIC
ckstrncpy(char * dest, const char * src, int len)
#else
ckstrncpy(dest,src,len) char * dest, * src; int len;
#endif /* CK_ANSIC */
{
int i, x;
if (len < 1 || !src || !dest) { /* Nothing or nowhere to copy */
if (dest) *dest = NUL;
return(0);
}
#ifndef NOCKSTRNCPY
for (i = 0; src[i] && (i < len-1); i++) /* Args OK, copy */
dest[i] = src[i];
dest[i] = NUL;
#else
i = strlen(src);
if (i > len) i = len;
strncpy(dest,src,i);
dest[len] = NUL;
#endif /* NOCKSTRNCPY */
return(i);
}
/* C H A R T O S T R */
/* Convert a character to a string, interpreting controls. */
char *
chartostr(x) int x; { /* Call with char x */
static char buf[2]; /* Returns string pointer. */
if (x < 32)
return(ccntab[x]);
if (x == 127)
return("DEL");
if (x > 127 && x < 161)
return(c1tab[x]);
if (x == 0xAD)
return("SHY");
buf[1] = NUL;
buf[0] = (unsigned)(x & 0xff);
return((char *)buf);
}
/* C K R C H A R */
/* Returns the rightmost character of the given null-terminated string */
int
ckrchar(s) char * s; {
register CHAR c = '\0', *p;
p = (CHAR *)s;
if (!p) p = (CHAR *)""; /* Null pointer == empty string */
if (!*p) return(0);
while (*p) /* Crawl to end of string */
c = *p++;
return((unsigned)(c & 0xff)); /* Return final character */
}
/* C K S T R C H R */
/* Replacement for strchr(), which is not universal. */
/* Call with:
s = pointer to string to look in.
c = character to look for.
Returns:
NULL if c not found in s or upon any kind of error, or:
pointer to first occurrence of c in s.
*/
char *
#ifdef CK_ANSIC
ckstrchr(char * s, char c)
#else
ckstrchr(s,c) char *s, c;
#endif /* CK_ANSIC */
/* ckstrchr */ {
if (!s)
return(NULL);
while (*s && *s != c)
s++;
return((*s == c) ? s : NULL);
}
/* C K L O W E R -- Lowercase a string */
/* Returns the length of the string */
int
cklower(s) char *s; {
int n = 0;
if (!s) return(0);
while (*s) {
if (isupper(*s)) *s = (char) tolower(*s);
s++, n++;
}
return(n);
}
/* C K L T O A -- Long to string -- FOR DISCIPLINED USE ONLY */
#define NUMBUF 1024
static char numbuf[NUMBUF+32] = { NUL, NUL };
static int numbp = 0;
/*
ckltoa() and ckitoa() are like atol() and atoi() in the reverse direction,
returning a pointer to the string representation of the given number without
the caller having to worry about allocating or defining a buffer first.
They manage their own internal buffer, so successive calls return different
pointers. However, to keep memory consumption from growing without bound,
the buffer recycles itself. So after several hundred calls (depending on
the size of the numbers), some of the earlier pointers might well find
themselves referencing something different. Moral: You can't win in C.
Therefore, these routines are intended mainly for generating numeric strings
for short-term use, e.g. for passing numbers in string form as parameters to
functions. For long-term use, the result must be copied to a safe place.
*/
char *
#ifdef CK_ANSIC
ckltoa(long n)
#else
ckltoa(n) long n;
#endif /* CK_ANSIC */
/* ckltoa */ {
char buf[32]; /* Internal working buffer */
char * p, * s, * q;
int k, x, sign = 0;
if (n < 0L) { /* Sign */
n = 0L - n;
sign = 1;
}
buf[31] = NUL;
for (k = 30; k > 0; k--) { /* Convert number to string */
x = n % 10L;
buf[k] = x + '0';
n = n / 10L;
if (!n)
break;
}
if (sign) buf[--k] = '-'; /* Add sign if necessary */
p = numbuf + numbp;
q = p;
s = buf + k;
while (*p++ = *s++ ) ; /* Copy */
if (numbp >= NUMBUF) /* Update pointer */
numbp = 0;
else
numbp += k;
return(q); /* Return pointer */
}
/* C K I T O A -- Int to string -- FOR DISCIPLINED USE ONLY */
char *
ckitoa(n) int n; { /* See comments with ckltoa(). */
long nn;
nn = n;
return(ckltoa(nn));
}
/* C K I N D E X -- C-Kermit's index function */
/*
We can't depend on C libraries to have one, so here is our own.
Call with:
s1 - String to look for.
s2 - String to look in.
t - Offset from right or left of s2, 0 based; -1 for rightmost char in s2.
r - 0 for left-to-right search, non-0 for right-to-left.
icase 0 for case independence, non-0 if alphabetic case matters.
Returns 0 if string not found, otherwise a 1-based result.
Also returns 0 on any kind of error, e.g. junk parameters.
*/
int
ckindex(s1,s2,t,r,icase) char *s1, *s2; int t, r, icase; {
int len1, len2, i, j, x, ot = t; /* ot = original t */
char * s;
if (!s1 || !s2) return(0);
len1 = (int)strlen(s1); /* length of string to look for */
len2 = (int)strlen(s = s2); /* length of string to look in */
if (t < 0) t = len2 - 1;
if (len1 < 0) return(0); /* paranoia */
if (len2 < 0) return(0);
j = len2 - len1; /* length difference */
if (j < 0 || (r == 0 && t > j)) /* search string is longer */
return(0);
if (r == 0) { /* Index */
s = s2 + t; /* Point to beginning of target */
for (i = 0; i <= (j - t); i++) { /* Now compare */
x = ckstrcmp(s1,s++,len1,icase);
if (!x)
return(i+1+t);
}
} else { /* Reverse Index */
i = len2 - len1; /* Where to start looking */
if (ot > 0) /* Figure in offset if any */
i -= t;
for (j = i; j > -1; j--) {
if (!ckstrcmp(s1,&s2[j],len1,icase))
return(j+1);
}
}
return(0);
}
/* B R S T R I P -- Strip enclosing braces from arg string, in place */
/*
Call with:
Pointer to string that can be poked.
Returns:
Pointer to string without enclosing braces.
If original string was not braced, this is the arg pointer;
otherwise it is 1 + the arg pointer, with the matching closing
brace zero'd out. If the string starts with a brace but does not
end with a matching brace, the original pointer to the original
string is returned. If the arg pointer is NULL, a pointer to an
empty string is returned.
*/
char *
brstrip(p) char *p; {
if (!p) return("");
if (*p == '{') {
int x;
x = (int)strlen(p) - 1;
if (p[x] == '}') {
p[x] = NUL;
p++;
}
}
return(p);
}
/* M A K E L I S T --- Breaks {{s1}{s2}..{sn}} into an array of strings */
/*
Call with:
s = pointer to string to break up.
list = array of string pointers.
len = number of elements in array.
NOTE: The array must be preinitialized to all NULL pointers.
If any array element is not NULL, it is assumed to have been malloc'd
and is therefore freed. Do NOT call this function with an unitialized
array, or with an array that has had any static elements assigned to it.
*/
VOID
makelist(s,list,len) char * s; char *list[]; int len; {
int i, n, q, bc = 0;
char *p = NULL, *s2 = NULL;
debug(F110,"makelist s",s,0);
if (!s) { /* Check for null or empty string */
list[0] = NULL;
return;
}
n = strlen(s);
if (n == 0) {
list[0] = NULL;
return;
}
if (s2 = (char *)malloc(n+1)) { /* Safe copy for poking */
strcpy(s2,s); /* (no need for ckstrncpy here) */
s = s2;
}
s = brstrip(s); /* Strip braces */
n = strlen(s); /* Get length */
if (*s != '{') { /* Outer braces only */
if (p = (char *)malloc(n+1)) { /* So just one pattern */
strcpy(p,s); /* (no need for ckstrncpy here) */
if (list[0])
free(list[0]);
list[0] = p;
}
if (s2) free(s2);
return;
}
q = 0; /* Inner ones too */
i = 0; /* so a list of patterns. */
n = 0;
while (*s && i < len) {
if (*s == CMDQ) { /* Quote... */
q = 1;
s++;
n++;
continue;
}
if (*s == '{' && !q) { /* Opening brace */
if (bc++ == 0) { /* Beginning of a group */
p = ++s;
n = 0;
} else { /* It's a brace inside the group */
n++;
s++;
}
continue;
} else if (*s == '}' && !q) { /* Closing brace */
if (--bc == 0) { /* End of a group */
*s++ = NUL;
debug(F111,"makelist element",p,i);
if (list[i])
free(list[i]);
if (list[i] = (char *)malloc(n+1)) {
ckstrncpy(list[i],p,n+1); /* Note: n+1 */
i++;
}
while (*s == SP) s++;
p = s;
n = 0;
continue;
} else { /* Within a group */
n++;
s++;
}
} else { /* Regular character */
q = 0;
s++;
n++;
}
}
if (*p && i < len) { /* Last one */
if (list[i])
free(list[i]);
if (list[i] = (char *)malloc(n+1)) {
ckstrncpy(list[i],p,n+1);
debug(F111,"makelist last element",p,i);
}
}
if (s2) free(s2);
}
/*
M A K E S T R -- Creates a dynamically allocated string.
Makes a new copy of string s and sets pointer p to its address.
Handles degenerate cases, like when buffers overlap or are the same,
one or both arguments are NULL, etc.
The target pointer must be either NULL or else a pointer to a previously
malloc'ed buffer. If not, expect a core dump or segmentation fault.
Note: The caller can tell whether this routine failed as follows:
malloc(&p,q);
if (q & !p) { makestr() failed };
*/
VOID
#ifdef CK_ANSIC
makestr(char **p, const char *s)
#else
makestr(p,s) char **p, *s;
#endif
/* makestr */ {
int x;
char *q = NULL;
if (*p == s) /* The two pointers are the same. */
return; /* Don't do anything. */
if (!s) { /* New definition is null? */
if (*p) /* Free old storage. */
free(*p);
*p = NULL; /* Return null pointer. */
return;
}
if ((x = strlen(s)) >= 0) { /* Get length, even of empty string. */
q = malloc(x+1); /* Get and point to temp storage. */
if (q) {
strcpy(q,s); /* (no need for ckstrncpy() here) */
}
#ifdef DEBUG
else { /* This would be a really bad error */
char tmp[24]; /* So get a good record of it. */
if (x > 23) {
ckstrncpy(tmp,s,20);
strcpy(tmp+20,"...");
tmp[23] = NUL;
} else {
ckstrncpy(tmp,s,24);
}
debug(F110,"MAKESTR MALLOC FAILURE ",s,0);
}
#endif /* DEBUG */
} else
q = NULL; /* Length of string is zero */
if (*p) { /* Now free the original storage. */
#ifdef BETATEST
memset(*p,0xFF,sizeof(**p)); /* (not portable) */
#endif /* BETATEST */
free(*p);
}
#ifdef COMMENT
*q = NULL; /* Set up return pointer */
if (q)
*p = q;
#else
*p = q; /* This is exactly the same */
#endif /* COMMENT */
}
/* X M A K E S T R -- Non-destructive makestr() if s is NULL. */
VOID
#ifdef CK_ANSIC
xmakestr(char **p, const char *s)
#else
xmakestr(p,s) char **p, *s;
#endif
/* xmakestr */ {
if (s) makestr(p,s);
}
/* C K M E M C P Y -- Portable (but slow) memcpy() */
/* Copies n bytes from s to p, allowing for overlap. */
/* For use when real memcpy() not available. */
VOID
ckmemcpy(p,s,n) char *p, *s; int n; {
char * q = NULL;
register int i;
int x;
if (!s || !p || n <= 0 || p == s) /* Verify args */
return;
x = p - s; /* Check for overlap */
if (x < 0)
x = 0 - x;
if (x < n) { /* They overlap */
q = p;
if (!(p = (char *)malloc(n))) /* So use a temporary buffer */
return;
}
for (i = 0; i < n; i++) /* Copy n bytes */
p[i] = s[i];
if (q) { /* If we used a temporary buffer */
for (i = 0; i < n; i++) /* copy from it to destination */
q[i] = p[i];
if (p) free(p); /* and free the temporary buffer */
}
}
/* C K S T R C M P -- String comparison with case-matters selection */
/*
Call with pointers to the two strings, s1 and s2, a length, n,
and c == 0 for caseless comparison, nonzero for case matters.
Call with n == -1 to compare without a length limit.
Compares up to n characters of the two strings and returns:
1 if s1 > s2
0 if s1 = s2
-1 if s1 < s2
*/
int
ckstrcmp(s1,s2,n,c) char *s1, *s2; int n, c; {
CHAR t1, t2;
if (n == 0) return(0);
if (!s1) s1 = ""; /* Watch out for null pointers. */
if (!s2) s2 = "";
if (!*s1) return(*s2 ? -1 : 0);
if (!*s2) return(1);
while (n--) {
t1 = (CHAR) *s1++; /* Get next character from each. */
t2 = (CHAR) *s2++;
if (!t1) return(t2 ? -1 : 0);
if (!t2) return(1);
if (!c) { /* If case doesn't matter */
if (isupper(t1)) t1 = tolower(t1); /* Convert case. */
if (isupper(t2)) t2 = tolower(t2);
}
if (t1 < t2) return(-1); /* s1 < s2 */
if (t1 > t2) return(1); /* s1 > s2 */
}
return(0); /* They're equal */
}
/* C K S T R P R E -- Caseless string prefix comparison */
/* Returns position of the first char in the 2 strings that doesn't match */
int
ckstrpre(s1,s2) char *s1, *s2; {
CHAR t1, t2;
int n = 0;
if (!s1) s1 = "";
if (!s2) s2 = "";
while (1) {
t1 = (CHAR) *s1++;
t2 = (CHAR) *s2++;
if (!t1 || !t2) return(n);
if (isupper(t1)) t1 = tolower(t1);
if (isupper(t2)) t2 = tolower(t2);
if (t1 != t2)
return(n);
n++;
}
}
#define GLOBBING
/* C K M A T C H -- Match a string against a pattern */
/*
Call with a pattern containing * and/or ? metacharacters.
icase is 1 if case-sensitive, 0 otherwise.
opts is a bitmask:
Bit 0: 1 to match strings starting with '.', else 0.
Bit 1: 1 = file globbing (dirseps are fences, etc), 0 = ordinary string.
Bit 2 (and beyond): Undefined.
Works only with NUL-terminated strings.
Pattern may contain any number of ? and/or *.
If CKREGEX is defined, also [abc], [a-z], and/or {string,string,...}.
Returns:
0 if string does not match pattern,
1 if it does.
To be done:
Find a way to identify the piece of the string that matched the pattern,
as in Snobol "LINE (PAT . RESULT)". Some prelinary attempts are commented
out (see "mstart"); these fail because they always indicate the entire
string. The piece we want (I think) is the the part that matches the
first non-* segment of the pattern through the final non-* part. If this
can be done, we can streamline INPUT and friends considerably, and also
add regexp support to functions like \findex(\fpattern(a*b),\%s). INPUT
accomplishes this now by repeated calls to ckmatch, which is overkill.
*/
#ifdef COMMENT
char * ckmstring = NULL;
#endif /* COMMENT */
int
ckmatch(pattern, string, icase, opts) char *pattern,*string; int icase, opts; {
int q = 0, i = 0, k = -1, x, flag = 0;
CHAR cp; /* Current character from pattern */
CHAR cs; /* Current character from string */
char * psave = NULL;
int dot, globbing;
#ifdef COMMENT
char * mstart = NULL; /* Pointer to beginning of match */
#endif /* COMMENT */
dot = opts & 1;
globbing = opts & 2;
#ifdef COMMENT
makestr(&ckmstring,NULL);
#endif /* COMMENT */
if (!pattern) pattern = "";
if (!*pattern) return(1); /* Null pattern always matches */
if (!string) string = "";
debug(F110,"ckmatch string",string,0);
debug(F111,"ckmatch pattern",pattern,opts);
#ifdef COMMENT
mstart = string;
#endif /* COMMENT */
#ifdef UNIX
if (!dot) { /* For UNIX file globbing */
if (*string == '.' && *pattern != '.' && !matchdot) {
if (
#ifdef CKREGEX
*pattern != '{' && *pattern != '['
#else
1
#endif /* CKREGEX */
) {
debug(F110,"ckmatch skip",string,0);
return(0);
}
}
}
#endif /* UNIX */
while (1) {
k++;
cp = *pattern; /* Character from pattern */
cs = *string; /* Character from string */
if (!cs) { /* End of string - done. */
x = (!cp || (cp == '*' && !*(pattern+1))) ? 1 : 0;
#ifdef COMMENT
if (x) makestr(&ckmstring,mstart);
#endif /* COMMENT */
return(x);
}
if (!icase) { /* If ignoring case */
if (isupper(cp)) /* convert both to lowercase. */
cp = tolower(cp);
if (isupper(cs))
cs = tolower(cs);
}
if (q) { /* This character was quoted */
q = 0; /* Turn off quote flag */
if (cs == cp) /* Compare directly */
pattern++, string++; /* no metacharacters */
continue;
}
if (cp == CMDQ && !q) { /* Quote in pattern */
q = 1; /* Set flag */
pattern++; /* Advance to next pattern character */
cp = *pattern; /* Case conversion... */
if (!icase)
if (isupper(cp))
cp = tolower(cp);
if (cp != cs) /* Literal char so compare now */
return(0); /* No match, done. */
string++, pattern++; /* They match so advance pointers */
continue; /* and continue. */
}
if (cs && cp == '?') { /* '?' matches any char */
pattern++, string++;
continue;
#ifdef CKREGEX
} else if (cp == '[') { /* Have bracket */
int q = 0; /* My own private q */
char * psave = NULL; /* and backup pointer */
CHAR clist[256]; /* Character list from brackets */
CHAR c, c1, c2;
for (i = 0; i < 256; i++) /* memset() etc not portable */
clist[i] = NUL;
psave = ++pattern; /* Where pattern starts */
for (flag = 0; !flag; pattern++) { /* Loop thru pattern */
c = (unsigned)*pattern; /* Current char */
if (q) { /* Quote within brackets */
q = 0;
clist[c] = 1;
continue;
}
if (!icase) /* Case conversion */
if (isupper(c))
c = tolower(c);
switch (c) { /* Handle unquoted character */
case NUL: /* End of string */
return(0); /* No matching ']' so fail */
case CMDQ: /* Next char is quoted */
q = 1; /* Set flag */
continue; /* and continue. */
case '-': /* A range is specified */
c1 = (pattern > psave) ? (unsigned)*(pattern-1) : NUL;
c2 = (unsigned)*(pattern+1);
if (c2 == ']') c2 = NUL;
if (c1 == NUL) c1 = c2;
for (c = c1; c <= c2; c++)
clist[c] = 1;
continue;
case ']': /* End of bracketed sequence */
flag = 1; /* Done with FOR loop */
break; /* Compare what we have */
default: /* Just a char */
clist[c] = 1; /* Record it */
continue;
}
}
if (!clist[(unsigned)cs]) /* Match? */
return(0); /* Nope, done. */
string++; /* Yes, advance string pointer */
continue; /* and go on. */
} else if (cp == '{') { /* Braces with list of strings */
char * p, * s, * s2, * buf = NULL;
int n, bc = 0;
int len = 0;
for (p = pattern++; *p; p++) {
if (*p == '{') bc++;
if (*p == '}') bc--;
if (bc < 1) break;
}
if (bc != 0) { /* Braces don't match */
return(0); /* Fail */
} else { /* Braces do match */
int q = 0, done = 0;
len = *p ? strlen(p+1) : 0; /* Length of rest of pattern */
n = p - pattern; /* Size of list in braces */
if (buf = (char *)malloc(n+1)) { /* Copy so we can poke it */
char * tp = NULL;
int k;
ckstrncpy(buf,pattern,n+1);
n = 0;
for (s = s2 = buf; 1; s++) { /* Loop through segments */
n++;
if (q) { /* This char is quoted */
q = 0;
if (!*s)
done = 1;
continue;
}
if (*s == CMDQ && !q) { /* Quote next char */
q = 1;
continue;
}
if (!*s || *s == ',') { /* End of this segment */
if (!*s) /* If end of buffer */
done = 1; /* then end of last segment */
*s = NUL; /* Overwrite comma with NUL */
if (!*s2) { /* Empty segment, no advancement */
k = 0;
} else if (tp = (char *)malloc(n+len+1)) {
strcpy(tp,s2); /* Current segment */
strcat(tp,p+1); /* Add rest of pattern */
tp[n+len] = NUL;
k = ckmatch(tp,string,icase,opts);
free(tp);
if (k > 0) { /* If it matched we're done */
#ifdef COMMENT
makestr(&ckmstring,mstart);
#endif /* COMMENT */
return(1);
}
} else { /* Malloc failure, just compare */
k = !ckstrcmp(tp,string,n-1,icase);
}
if (k) { /* Successful comparison */
string += n-1; /* Advance pointers */
pattern = p+1;
break;
}
if (done) /* If no more segments */
break; /* break out of segment loop. */
s2 = s+1; /* Otherwise, on to next segment */
n = 0;
}
}
free(buf);
}
}
#endif /* CKREGEX */
} else if (cp == '*') { /* Asterisk */
char * p, * s = NULL;
int k, n, q = 0;
while (*pattern == '*') /* Collapse successive asterisks */
pattern++;
psave = pattern; /* First non-asterisk after asterisk */
for (n = 0, p = psave; *p; p++,n++) { /* Find next meta char */
if (!q) {
if (*p == '?' || *p == '*' || *p == CMDQ
#ifdef CKREGEX
|| *p == '[' || *p == '{'
#endif /* CKREGEX */
)
break;
#ifdef GLOBBING
if (globbing
#ifdef UNIXOROSK
&& *p == '/'
#else
#ifdef VMS
&& (*p == '.' || *p == ']' ||
*p == '<' || *p == '>' ||
*p == ':' || *p == ';')
#else
#ifdef datageneral
&& *p == ':'
#else
#ifdef STRATUS
&& *p == '>'
#endif /* STRATUS */
#endif /* datageneral */
#endif /* VMS */
#endif /* UNIXOROSK */
)
break;
#endif /* GLOBBING */
}
}
if (n > 0) { /* Literal string to match */
s = (char *)malloc(n+1);
if (s) {
ckstrncpy(s,psave,n+1); /* Copy cuz no poking original */
debug(F111,"XXX",s,n+1);
if (*p == '*')
k = ckindex(s,string,0,0,icase); /* 1-based index() */
else
k = ckindex(s,string,-1,1,icase); /* 1-based rindex() */
free(s);
if (k < 1)
return(0);
string += k + n - 1;
pattern += n;
continue;
}
} else if (!*p) { /* Asterisk at end matches the rest */
if (!globbing) { /* (if not filename globbing) */
#ifdef COMMENT
makestr(&ckmstring,mstart);
#endif /* COMMENT */
return(1);
}
#ifdef GLOBBING
while (*string) { /* Globbing so don't cross fields */
if (globbing
#ifdef UNIXOROSK
&& *string == '/'
#else
#ifdef VMS
&& (*string == '.' || *string == ']' ||
*string == '<' || *string == '>' ||
*string == ':' || *string == ';')
#else
#ifdef datageneral
&& *string == ':'
#else
#ifdef STRATUS
&& *string == '>'
#endif /* STRATUS */
#endif /* datageneral */
#endif /* VMS */
#endif /* UNIXOROSK */
)
return(0);
string++;
}
#endif /* GLOBBING */
#ifdef COMMENT
makestr(&ckmstring,mstart);
#endif /* COMMENT */
return(1);
} else { /* A meta char follows asterisk */
while (*string && (k = ckmatch(p,string,icase,opts) < 1))
string++;
#ifdef COMMENT
if (*string) makestr(&ckmstring,mstart);
#endif /* COMMENT */
return(*string ? 1 : 0);
}
} else if (cs == cp) {
pattern++, string++;
continue;
} else
return(0);
}
}
#ifdef CKFLOAT
/* I S F L O A T -- Verify that arg represents a floating-point number */
/*
Portable replacement for atof(), strtod(), scanf(), etc.
Call with:
s = pointer to string
flag == 0 means entire string must be a (floating-pointing) number.
flag != 0 means to terminate scan on first character that is not legal.
Returns:
1 if result is a floating point number;
0 if not or if string empty.
Side effect:
Sets global floatval to floating-point value if successful.
Number need not contain a decimal point -- integer is subcase of float.
Scientific notation not supported.
*/
CKFLOAT floatval = 0.0; /* For returning value */
int
isfloat(s,flag) char *s; int flag; {
int state = 0;
int sign = 0;
char c;
CKFLOAT d = 0.0, f = 0.0;
if (!s) return(0);
if (!*s) return(0);
while (isspace(*s)) s++;
if (*s == '-') { /* Handle optional sign */
sign = 1;
s++;
} else if (*s == '+')
s++;
while (c = *s++) { /* Handle numeric part */
switch (state) {
case 0: /* Mantissa... */
if (isdigit(c)) {
f = f * 10.0 + (CKFLOAT)(c - '0');
continue;
} else if (c == '.') {
state = 1;
d = 1.0;
continue;
}
if (flag) /* Not digit or period */
goto done; /* break if flag != 0 */
return(0); /* otherwise fail. */
case 1: /* Fraction... */
if (isdigit(c)) {
d *= 10.0;
f += (CKFLOAT)(c - '0') / d;
continue;
}
default:
if (flag) /* Illegal character */
goto done; /* Break */
return(0); /* or fail, depending on flag */
}
}
done:
if (sign) f = 0.0 - f; /* Apply sign to result */
floatval = f; /* Set result */
return(1); /* Succeed */
}
#endif /* CKFLOAT */
/* Sorting routines... */
#ifdef USE_QSORT
/*
Quicksort works but it's not measurably faster than shell sort,
probably because it makes a lot more comparisons, since
it was originally designed for sorting an array of integers.
It would need more thorough testing and debugging before production use.
*/
static int /* Internal comparison routine for ckqsort() */
compare(s1,s2,k,r,c) char *s1, *s2; int k, r, c; {
int x;
char *t, *t1, *t2;
#ifdef CKFLOAT
CKFLOAT f1, f2;
#else
long n1, n2;
#endif /* CKFLOAT */
t = t2 = s1; /* String 1 */
if (!t) /* If it's NULL */
t2 = ""; /* make it the empty string */
if (k > 0 && *t2) {
if ((int)strlen(t2) < k) /* If key too big */
t2 = ""; /* make key the empty string */
else /* Key is in string */
t2 += k; /* so point to key position */
}
t1 = s2;
if (!t1) /* Same deal for s2 */
t1 = "";
if (k > 0 && *t1) {
if ((int)strlen(t1) < k)
t1 = "";
else
t1 += k;
}
if (c == 2) { /* Numeric comparison */
x = 0;
#ifdef CKFLOAT
f2 = 0.0;
f1 = 0.0;
if (isfloat(t1,1)) {
f1 = floatval;
if (isfloat(t2,1))
f2 = floatval;
else
f1 = 0.0;
}
if (f2 < f1)
x = 1;
else
x = -1;
#else
n2 = 0L;
n1 = 0L;
if (rdigits(t1)) {
n1 = atol(t1);
if (rdigits(t2))
n2 = atol(t2);
else
n1 = 0L;
}
if (n2 < n1)
x = 1;
else
x = -1;
#endif /* CKFLOAT */
} else {
x = ckstrcmp(t1,t2,-1,c);
}
return(x);
}
/* It's called sh_sort() but it's really quicksort... */
VOID
sh_sort(s,s2,n,k,r,how) char **s, **s2; int n, k, r, how; {
int x, lp, up, p, lv[16], uv[16], m, c;
char * y, * y2;
if (!s) return;
if (n < 2) return;
if (k < 0) k = 0;
lv[0] = 0;
uv[0] = n-1;
p = 0;
stb: /* Hmmm, looks like Fortran... */
if (p < 0)
return;
stc:
lp = lv[p];
up = uv[p];
m = up - lp + 1;
if (m < 2) {
p--;
goto stb;
}
if (m == 2) {
x = compare(s[lp],s[up],k,r,how);
if (x > 0) {
y = s[lp];
s[lp] = s[up];
s[up] = y;
if (s2) {
y2 = s2[lp];
s2[lp] = s2[up];
s2[up] = y2;
}
}
p--;
goto stb;
}
c = (lp+up) / 2;
if (m < 10)
goto std;
x = compare(s[lp],s[c],k,r,how);
if (x < 1) {
if (s[c] <= s[up]) {
goto std;
} else {
x = compare(s[lp],s[up],k,r,how);
if (x < 1)
c = up;
else
c = lp;
goto std;
}
} else {
x = compare(s[up],s[c],k,r,how);
if (x < 1) {
goto std;
} else {
x = compare(s[lp],s[up],k,r,how);
if (x < 1)
c = lp;
else
c = up;
goto std;
}
}
std:
y = s[c];
s[c] = s[up];
if (s2) {
y2 = s2[c];
s2[c] = s2[up];
}
lp--;
stf:
if ((up - lp) < 2)
goto stk;
lp++;
x = compare(s[lp],y,k,r,how);
if (x < 1)
goto stf;
s[up] = s[lp];
sth:
if ((up - lp) < 2)
goto stj;
up--;
x = compare(s[up],y,k,r,how);
if (x > 0)
goto sth;
s[lp] = s[up];
goto stf;
stj:
up--;
stk:
if (up == uv[p]) {
lp = lv[p] - 1;
stl:
if ((up - lp) < 2)
goto stq;
lp++;
x = compare(s[lp],y,k,r,how);
if (x < 0)
goto stl;
s[up] = s[lp];
stn:
if ((up - lp) < 2)
goto stp;
up--;
x = compare(s[up],y,k,r,how);
if (x >= 0)
goto stn;
s[lp] = s[up];
goto stl;
stp:
up--;
stq:
s[up] = y;
if (s2)
s2[up] = y2;
if (up == lv[p]) {
p--;
goto stb;
}
uv[p] = up - 1;
goto stc;
}
s[up] = y;
if (s2)
s2[up] = y2;
if ((up - lv[p]) < (uv[p] - up)) {
lv[p+1] = lv[p];
uv[p+1] = up - 1;
lv[p] = up + 1;
} else {
lv[p+1] = up + 1;
uv[p+1] = uv[p];
uv[p] = up - 1;
}
p++;
goto stc;
}
#else /* !USE_QSORT */
/* S H _ S O R T -- Shell sort -- sorts string array s in place. */
/*
Highly defensive and relatively quick.
Uses shell sort algorithm.
Args:
s = pointer to array of strings.
p = pointer to a second array to sort in parallel s, or NULL for none.
n = number of elements in s.
k = position of key.
r = ascending lexical order if zero, reverse lexical order if nonzero.
c = 0 for case independence, 1 for case matters, 2 for numeric.
If k is past the right end of a string, the string is considered empty
for comparison purposes.
Hint:
To sort a piece of an array, call with s pointing to the first element
and n the number of elements to sort.
Return value:
None. Always succeeds, unless any of s[0]..s[n-1] are bad pointers,
in which case memory violations are possible, but C offers no defense
against this, so no way to gracefully return an error code.
*/
VOID
sh_sort(s,p,n,k,r,c) char **s, **p; int n, k, r, c; {
int m, i, j, x;
char *t, *t1, *t2, *u = NULL;
#ifdef CKFLOAT
CKFLOAT f1, f2;
#else
long n1, n2;
#endif /* CKFLOAT */
if (!s) return; /* Nothing to sort? */
if (n < 2) return; /* Not enough elements to sort? */
if (k < 0) k = 0; /* Key */
m = n; /* Initial group size is whole array */
while (1) {
m = m / 2; /* Divide group size in half */
if (m < 1) /* Small as can be, so done */
break;
for (j = 0; j < n-m; j++) { /* Sort each group */
t = t2 = s[j+m]; /* Compare this one... */
if (!t) /* But if it's NULL */
t2 = ""; /* make it the empty string */
if (p) /* Handle parallel array, if any */
u = p[j+m];
if (k > 0 && *t2) {
if ((int)strlen(t2) < k) /* If key too big */
t2 = ""; /* make key the empty string */
else /* Key is in string */
t2 = t + k; /* so point to key position */
}
for (i = j; i >= 0; i -= m) { /* Loop thru comparands s[i..]*/
t1 = s[i];
if (!t1) /* Same deal */
t1 = "";
if (k > 0 && *t1) {
if ((int)strlen(t1) < k)
t1 = "";
else
t1 = s[i]+k;
}
if (c == 2) { /* Numeric comparison */
x = 0;
#ifdef CKFLOAT
f2 = 0.0;
f1 = 0.0;
if (isfloat(t1,1)) {
f1 = floatval;
if (isfloat(t2,1))
f2 = floatval;
else
f1 = 0.0;
}
if (f2 < f1)
x = 1;
else
x = -1;
#else
n2 = 0L;
n1 = 0L;
if (rdigits(t1)) {
n1 = atol(t1);
if (rdigits(t2))
n2 = atol(t2);
else
n1 = 0L;
}
if (n2 < n1)
x = 1;
else
x = -1;
#endif /* CKFLOAT */
} else {
x = ckstrcmp(t1,t2,-1,c); /* Compare */
}
if (r == 0 && x < 0)
break;
if (r != 0 && x > 0)
break;
s[i+m] = s[i];
if (p) p[i+m] = p[i];
}
s[i+m] = t;
if (p) p[i+m] = u;
}
}
}
#endif /* COMMENT */
/* F I L E S E L E C T -- Select this file for sending */
int
fileselect(f,sa,sb,sna,snb,minsiz,maxsiz,nbu,nxlist,xlist)
char *f,*sa,*sb,*sna,*snb; long minsiz,maxsiz; int nbu,nxlist; char ** xlist;
/* fileselect */ {
char *fdate;
int n;
long z;
if (!sa) sa = "";
if (!sb) sb = "";
if (!sna) sna = "";
if (!snb) snb = "";
debug(F110,"fileselect",f,0);
if (*sa || *sb || *sna || *snb) {
fdate = zfcdat(f); /* Date/time of this file */
if (!fdate) fdate = "";
n = strlen(fdate);
debug(F111,"fileselect fdate",fdate,n);
if (n != 17) /* Failed to get it */
return(1);
/* /AFTER: */
if (sa[0] && (strcmp(fdate,(char *)sa) <= 0)) {
debug(F110,"fileselect sa",sa,0);
/* tlog(F110,"Skipping (too old)",f,0); */
return(0);
}
/* /BEFORE: */
if (sb[0] && (strcmp(fdate,(char *)sb) >= 0)) {
debug(F110,"fileselect sb",sb,0);
/* tlog(F110,"Skipping (too new)",f,0); */
return(0);
}
/* /NOT-AFTER: */
if (sna[0] && (strcmp(fdate,(char *)sna) > 0)) {
debug(F110,"fileselect sna",sna,0);
/* tlog(F110,"Skipping (too new)",f,0); */
return(0);
}
/* /NOT-BEFORE: */
if (snb[0] && (strcmp(fdate,(char *)snb) < 0)) {
debug(F110,"fileselect snb",snb,0);
/* tlog(F110,"Skipping (too old)",f,0); */
return(0);
}
}
if (minsiz > -1L || maxsiz > -1L) { /* Smaller or larger */
z = zchki(f); /* Get size */
debug(F101,"fileselect filesize","",z);
if (z < 0)
return(1);
if ((minsiz > -1L) && (z >= minsiz)) {
debug(F111,"fileselect minsiz skipping",f,minsiz);
/* tlog(F111,"Skipping (too big)",f,z); */
return(0);
}
if ((maxsiz > -1L) && (z <= maxsiz)) {
debug(F111,"fileselect maxsiz skipping",f,maxsiz);
/* tlog(F110,"Skipping (too small)",f,0); */
return(0);
}
}
if (nbu) { /* Skipping backup files? */
if (ckmatch(
#ifdef CKREGEX
"*.~[0-9]*~" /* Not perfect but close enough. */
#else
"*.~*~" /* Less close. */
#endif /* CKREGEX */
,f,filecase,2+1)) {
debug(F110,"fileselect skipping backup",f,0);
return(0);
}
}
for (n = 0; xlist && n < nxlist; n++) {
if (!xlist[n]) {
debug(F101,"fileselect xlist empty",0,n);
break;
}
if (ckmatch(xlist[n],f,filecase,2+1)) {
debug(F111,"fileselect xlist",xlist[n],n);
debug(F110,"fileselect skipping",f,0);
return(0);
}
}
debug(F110,"fileselect selecting",f,0);
return(1);
}
/* C K R A D I X -- Radix converter */
/*
Call with:
s: a number in string format.
in: int, specifying the radix of s, 2-36.
out: int, specifying the radix to convert to, 2-36.
Returns:
NULL on error (illegal radix, illegal number, etc.).
"-1" on overflow (number too big for unsigned long).
Otherwise: Pointer to result.
*/
#define RXRESULT 127
static char rxdigits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
static char rxresult[RXRESULT+1];
char *
ckradix(s,in,out) char * s; int in, out; {
char c, *r = rxresult;
int d, minus = 0;
unsigned long zz = 0L;
long z;
if (in < 2 || in > 36) /* Verify legal input radix */
return(NULL);
if (out < 2 || out > 36) /* and output radix. */
return(NULL);
if (*s == '+') { /* Get sign if any */
s++;
} else if (*s == '-') {
minus++;
s++;
}
while (*s == SP || *s == '0') /* Trim leading blanks or 0's */
s++;
/*
For detecting overflow, we use a signed copy of the unsigned long
accumulator. If it goes negative, we know we'll overflow NEXT time
through the loop.
*/
for (; *s; s++) { /* Convert from input radix to */
c = *s; /* unsigned long */
if (islower(c)) c = toupper(c);
if (c >= '0' && c <= '9')
d = c - '0';
else if (c >= 'A' && c <= 'Z')
d = c - 'A' + 10;
else
return(NULL);
zz = zz * in + d;
if (z < 0L) /* Clever(?) overflow detector */
return("-1");
z = zz;
}
if (!zz) return("0");
r = &rxresult[RXRESULT]; /* Convert from unsigned long */
*r-- = NUL; /* to output radix. */
while (zz > 0 && r > rxresult) {
d = zz % out;
*r-- = rxdigits[d];
zz = zz / out;
}
if (minus) *r-- = '-'; /* Replace original sign */
return((char *)(r+1));
}
#ifndef NOB64
/* Base-64 conversion routines */
static char b64[] = { /* Encoding vector */
#ifdef pdp11
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
#else
'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S',
'T','U','V','W','X','Y','Z','a','b','c','d','e','f','g','h','i','j','k','l',
'm','n','o','p','q','r','s','t','u','v','w','x','y','z','0','1','2','3','4',
'5','6','7','8','9','+','/','=','\0'
#endif /* pdp11 */
};
static int b64tbl[] = { /* Decoding vector */
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -2, -1, -1,
-1, 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, -1, -1, -1, -1, -1,
-1, 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, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
};
/*
B 8 T O B 6 4 -- Converts 8-bit data to Base64 encoding.
Call with:
s = Pointer to 8-bit data;
n = Number of source bytes to encode (SEE NOTE).
If it's a null-terminated string, you can use -1 here.
out = Address of output buffer.
len = Length of output buffer (should > 4/3 longer than input).
Returns:
>= 0 if OK, number of bytes placed in output buffer,
with the subsequent byte set to NUL if space permits.
-1 on error (output buffer space exhausted).
NOTE:
If this function is to be called repeatedly, e.g. to encode a data
stream a chunk at a time, the source length must be a multiple of 3
in all calls but the final one to avoid the generation of extraneous
pad characters that would throw the decoder out of sync. When encoding
only a single string, this is not a consideration. No internal state
is kept, so there is no reset function.
*/
int
b8tob64(s,n,out,len) char * s,* out; int n, len; {
int b3, b4, i, x = 0;
unsigned int t;
if (n < 0) n = strlen(s);
for (i = 0; i < n; i += 3,x += 4) { /* Loop through source bytes */
b3 = b4 = 0;
t = (unsigned)((unsigned)((unsigned)s[i] & 0xff) << 8);
if (n - 1 > i) { /* Do we have another after this? */
t |= (unsigned)(s[i+1] & 0xff); /* Yes, OR it in */
b3 = 1; /* And remember */
}
t <<= 8; /* Move over */
if (n - 2 > i) { /* Another one after that? */
t |= (unsigned)(s[i+2] & 0xff); /* Yes, OR it in */
b4 = 1; /* and remember */
}
if (x + 4 > len) /* Check output space */
return(-1);
out[x+3] = b64[b4 ? (t & 0x3f) : 64]; /* 64 = code for '=' */
t >>= 6;
out[x+2] = b64[b3 ? (t & 0x3f) : 64];
t >>= 6;
out[x+1] = b64[t & 0x3f];
t >>= 6;
out[x] = b64[t & 0x3f];
}
if (x < len) out[x] = NUL; /* Null-terminate the string */
return(x);
}
/*
B 6 4 T O B 8 -- Converts Base64 string to 8-bit data.
Call with:
s = pointer to Base64 string (whitespace ignored).
n = length of string, or -1 if null terminated, or 0 to reset.
out = address of output buffer.
len = length of output buffer.
Returns:
>= 0 if OK, number of bytes placed in output buffer,
with the subsequent byte set to NUL if space permits.
< 0 on error:
-1 = output buffer too small for input.
-2 = input contains illegal characters.
-3 = internal coding error.
NOTE:
Can be called repeatedly to decode a Base64 stream, one chunk at a
time. However, if it is to be called for multiple streams in
succession, its internal state must be reset at the beginning of
the new stream.
*/
int
b64tob8(s,n,out,len) char * s,* out; int len; { /* Decode */
static int bits = 0;
static unsigned int r = 0;
int i, k = 0, x, t;
unsigned char c;
if (n == 0) { /* Reset state */
bits = 0;
r = 0;
return(0);
}
x = (n < 0) ? strlen(s) : n; /* Source length */
n = ((x + 3) / 4) * 3; /* Compute destination length */
if (x > 0 && s[x-1] == '=') n--; /* Account for padding */
if (x > 1 && s[x-2] == '=') n--;
if (n > len) /* Destination not big enough */
return(-1); /* Fail */
for (i = 0; i < x; i++) { /* Loop thru source */
c = (unsigned)s[i]; /* Next char */
t = b64tbl[c]; /* Code for this char */
if (t == -2) { /* Whitespace or Ctrl */
n--; /* Ignore */
continue;
} else if (t == -1) { /* Illegal code */
return(-2); /* Fail. */
} else if (t > 63 || t < 0) /* Illegal value */
return(-3); /* fail. */
bits += 6; /* Count bits */
r <<= 6; /* Make space */
r |= (unsigned) t; /* OR in new code */
if (bits >= 8) { /* Have a byte yet? */
bits -= 8; /* Output it */
c = (unsigned) ((r >> bits) & 0xff);
out[k++] = c;
}
}
if (k < len) out[k] = NUL; /* Null-terminate in case it's */
return(k); /* a text string */
}
#endif /* NOB64 */
/* C H K N U M -- See if argument string is an integer */
/* Returns 1 if OK, zero if not OK */
/* If OK, string should be acceptable to atoi() */
/* Allows leading space, sign */
int
chknum(s) char *s; { /* Check Numeric String */
int x = 0; /* Flag for past leading space */
int y = 0; /* Flag for digit seen */
char c;
debug(F110,"chknum",s,0);
while (c = *s++) { /* For each character in the string */
switch (c) {
case SP: /* Allow leading spaces */
case HT:
if (x == 0) continue;
else return(0);
case '+': /* Allow leading sign */
case '-':
if (x == 0) x = 1;
else return(0);
break;
default: /* After that, only decimal digits */
if (c >= '0' && c <= '9') {
x = y = 1;
continue;
} else return(0);
}
}
return(y);
}
/* R D I G I T S -- Verify that all characters in arg ARE DIGITS */
/* Returns 1 if so, 0 if not or if string is empty */
int
rdigits(s) char *s; {
if (!s) return(0);
do {
if (!isdigit(*s)) return(0);
s++;
} while (*s);
return(1);
}
/* P A R N A M -- Return parity name */
char *
#ifdef CK_ANSIC
parnam(char c)
#else
parnam(c) char c;
#endif /* CK_ANSIC */
/* parnam */ {
switch (c) {
case 'e': return("even");
case 'o': return("odd");
case 'm': return("mark");
case 's': return("space");
case 0: return("none");
default: return("invalid");
}
}
char * /* Convert seconds to hh:mm:ss */
#ifdef CK_ANSIC
hhmmss(long x)
#else
hhmmss(x) long x;
#endif /* CK_ANSIC */
/* hhmmss(x) */ {
static char buf[10];
long s, h, m;
h = x / 3600L; /* Hours */
x = x % 3600L;
m = x / 60L; /* Minutes */
s = x % 60L; /* Seconds */
if (x > -1L)
sprintf(buf,"%02ld:%02ld:%02ld",h,m,s);
else
buf[0] = NUL;
return((char *)buf);
}
/* L S E T -- Set s into p, right padding to length n with char c; */
/*
s is a NUL-terminated string.
If length(s) > n, only n bytes are moved.
The result is NOT NUL terminated unless c == NUL and length(s) < n.
The intended of this routine is for filling in fixed-length record fields.
*/
VOID
lset(p,s,n,c) char *s; char *p; int n; int c; {
int x;
#ifndef USE_MEMCPY
int i;
#endif /* USE_MEMCPY */
if (!s) s = "";
x = strlen(s);
if (x > n) x = n;
#ifdef USE_MEMCPY
memcpy(p,s,x);
if (n > x)
memset(p+x,c,n-x);
#else
for (i = 0; i < x; i++)
*p++ = *s++;
for (; i < n; i++)
*p++ = c;
#endif /* USE_MEMCPY */
}
/* R S E T -- Right-adjust s in p, left padding to length n with char c */
VOID
rset(p,s,n,c) char *s; char *p; int n; int c; {
int x;
#ifndef USE_MEMCPY
int i;
#endif /* USE_MEMCPY */
if (!s) s = "";
x = strlen(s);
if (x > n) x = n;
#ifdef USE_MEMCPY
memset(p,c,n-x);
memcpy(p+n-x,s,x);
#else
for (i = 0; i < (n - x); i++)
*p++ = c;
for (; i < n; i++)
*p++ = *s++;
#endif /* USE_MEMCPY */
}
/* U L O N G T O H E X -- Unsigned long to hex */
/*
Converts unsigned long arg to hex and returns string pointer to
rightmost n hex digits left padded with 0's. Allows for longs
up to 64 bits. Returns pointer to result.
*/
char *
ulongtohex(z,n) unsigned long z; int n; {
static char hexbuf[17];
int i = 16, x, k = 0;
hexbuf[16] = '\0';
if (n > 16) n = 16;
k = 2 * (sizeof(long));
for (i = 0; i < n; i++) {
if (i > k || z == 0) {
hexbuf[15-i] = '0';
} else {
x = z & 0x0f;
z = z >> 4;
hexbuf[15-i] = x + ((x < 10) ? '0' : 0x37);
}
}
return((char *)(&hexbuf[16-i]));
}
/* H E X T O U L O N G -- Hex string to unsigned long */
/*
Converts n chars from s from hex to unsigned long.
Returns:
0L or positive, good result (0L is returned if arg is NULL or empty).
-1L on error: non-hex arg or overflow.
*/
long
hextoulong(s,n) char *s; int n; {
char buf[64];
unsigned long result = 0L;
int d, count = 0, i;
int flag = 0;
if (!s) s = "";
if (!*s) {
return(0L);
}
if (n < 1)
return(0L);
if (n > 63) n = 63;
strncpy(buf,s,n);
buf[n] = '\0';
s = buf;
while (*s) {
d = *s++;
if ((d == '0' || d == ' ')) {
if (!flag)
continue;
} else {
flag = 1;
}
if (islower(d))
d = toupper(d);
if (d >= '0' && d <= '9') {
d -= 0x30;
} else if (d >= 'A' && d <= 'F') {
d -= 0x37;
} else {
return(-1L);
}
if (++count > (sizeof(long) * 2))
return(-1L);
result = (result << 4) | (d & 0x0f);
}
return(result);
}
/* End of ckclib.c */
|