ckclib.c
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:48k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. char * cklibv = "C-Kermit library, 7.0.009, 29 Nov 1999";
  2. #define CKCLIB_C
  3. /* C K C L I B . C  --  C-Kermit Library routines. */
  4. /*
  5.   Author: Frank da Cruz <fdc@columbia.edu>,
  6.   Columbia University Academic Information Systems, New York City.
  7.   Copyright (C) 1999, 2000,
  8.     Trustees of Columbia University in the City of New York.
  9.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  10.     copyright text in the ckcmai.c module for disclaimer and permissions.
  11. */
  12. /*
  13.   General-purpose, system/platform/compiler-independent routines for use
  14.   by all modules.  Most are replacements for commonly used C library
  15.   functions that are not found on every platform, and/or that lack needed
  16.   functionality (e.g. caseless string search/compare).
  17.     ckstrncpy()  - Similar to strncpy() but different (see comments).
  18.     chartostr()  - Converts a char to a string (self or ctrl char name).
  19.     ckstrchr()   - Portable strchr().
  20.     cklower()    - Lowercase a string (in place).
  21.     ckindex()    - Left or right index.
  22.     ckitoa()     - Converts int to string.
  23.     ckltoa()     - Converts long to string.
  24.     ckmatch()    - Pattern matching.
  25.     ckmemcpy()   - Portable memcpy().
  26.     ckrchar()    - Rightmost character of a string.
  27.     ckstrcmp()   - Possibly caseless string comparison.
  28.     ckstrpre()   - Caseless string prefix comparison.
  29.     sh_sort()    - Sorts an array of strings, many options.
  30.     brstrip()    - Strips enclosing braces.
  31.     makelist()   - Splits "{{item}{item}...}" into an array.
  32.     makestr()    - Careful malloc() front end.
  33.     xmakestr()   - ditto (see comments).
  34.     fileselect() - Select a file based on size, date, excption list, etc.
  35.     radix()      - Convert number radix (2-36).
  36.     b8tob64()    - Convert data to base 64.
  37.     b64tob8()    - Convert base 64 to data.
  38.     chknum()     - Checks if string is an integer.
  39.     rdigits()    - Checks if string is composed only of digits.
  40.     isfloat()    - Checks if string is a valid floating-point number.
  41.     parnam()     - Returns parity name string.
  42.     hhmmss()     - Converts seconds to hh:mm:ss string.
  43.     lset()       - Write fixed-length field left-adjusted into a record.
  44.     rset()       - Write fixed-length field right-adjusted into a record.
  45.     ulongtohex() - Converts an unsigned long to a hex string.
  46.     hextoulong() - Converts a hex string to an unsigned long.
  47.   Prototypes are in ckclib.h.
  48. */
  49. #include "ckcsym.h"
  50. #include "ckcdeb.h"
  51. #include "ckcasc.h"
  52. char *
  53. ccntab[] = { /* Names of ASCII (C0) control characters 0-31 */
  54.     "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  55.     "BS",  "HT",  "LF",  "VT",  "FF",  "CR",  "SO",  "SI",
  56.     "DLE", "DC1", "DC2", "DC3", "DC4", "NAK", "SYN", "ETB",
  57.     "CAN", "EM",  "SUB", "ESC", "FS",  "GS",  "RS",  "US"
  58. };
  59. char *
  60. c1tab[] = { /* Names of ISO 6429 (C1) control characters 0-32 */
  61.     "XXX", "XXX", "BPH", "NBH", "IND", "NEL", "SSA", "ESA",
  62.     "HTS", "HTJ", "VTS", "PLD", "PLU", "RI",  "SS2", "SS3",
  63.     "DCS", "PU1", "PU2", "STS", "CCH", "MW",  "SPA", "EPA",
  64.     "SOS", "XXX", "SCI", "CSI", "ST",  "OSC", "PM",  "APC", "NBS"
  65. };
  66. /*  C K S T R N C P Y */
  67. /*
  68.   Copies a NUL-terminated string into a buffer whose total length is given,
  69.   ensuring that the result is NUL-terminated even if it had to be truncated.
  70.   Call with:
  71.     dest = pointer to destination buffer
  72.     src  = pointer to source string
  73.     len  = length of destination buffer (the actual length, not one less).
  74.   Returns:
  75.     int, The number of bytes copied, 0 or more.
  76.   NOTE: This is NOT a replacement for strncpy():
  77.    . strncpy() does not require its source string to be NUL-terminated.
  78.    . strncpy() does not necessarily NUL-terminate its result.
  79.    . strncpy() right-pads dest with NULs if it is longer than src.
  80.    . strncpy() treats the length argument as the number of bytes to copy.
  81.    . ckstrncpy() treats the length argument as the size of the dest buffer.
  82.    . ckstrncpy() doesn't dump core if given NULL string pointers.
  83.    . ckstrncpy() returns a number.
  84. */
  85. int
  86. #ifdef CK_ANSIC
  87. ckstrncpy(char * dest, const char * src, int len)
  88. #else
  89. ckstrncpy(dest,src,len) char * dest, * src; int len;
  90. #endif /* CK_ANSIC */
  91. {
  92.     int i, x;
  93.     if (len < 1 || !src || !dest) { /* Nothing or nowhere to copy */
  94. if (dest) *dest = NUL;
  95. return(0);
  96.     }
  97. #ifndef NOCKSTRNCPY
  98.     for (i = 0; src[i] && (i < len-1); i++) /* Args OK, copy */
  99.       dest[i] = src[i];
  100.     dest[i] = NUL;
  101. #else
  102.     i = strlen(src);
  103.     if (i > len) i = len;
  104.     strncpy(dest,src,i);
  105.     dest[len] = NUL;
  106. #endif /* NOCKSTRNCPY */
  107.     return(i);
  108. }
  109. /*  C H A R T O S T R  */
  110. /*  Convert a character to a string, interpreting controls.  */
  111. char *
  112. chartostr(x) int x; { /* Call with char x */
  113.     static char buf[2]; /* Returns string pointer. */
  114.     if (x < 32)
  115.       return(ccntab[x]);
  116.     if (x == 127)
  117.       return("DEL");
  118.     if (x > 127 && x < 161)
  119.       return(c1tab[x]);
  120.     if (x == 0xAD)
  121.       return("SHY");
  122.     buf[1] = NUL;
  123.     buf[0] = (unsigned)(x & 0xff);
  124.     return((char *)buf);
  125. }
  126. /*  C K R C H A R */
  127. /*  Returns the rightmost character of the given null-terminated string */
  128. int
  129. ckrchar(s) char * s; {
  130.     register CHAR c = '', *p;
  131.     p = (CHAR *)s;
  132.     if (!p) p = (CHAR *)""; /* Null pointer == empty string */
  133.     if (!*p) return(0);
  134.     while (*p) /* Crawl to end of string */
  135.       c = *p++;
  136.     return((unsigned)(c & 0xff)); /* Return final character */
  137. }
  138. /*  C K S T R C H R  */
  139. /*  Replacement for strchr(), which is not universal.  */
  140. /*  Call with:
  141.      s = pointer to string to look in.
  142.      c = character to look for.
  143.     Returns:
  144.      NULL if c not found in s or upon any kind of error, or:
  145.      pointer to first occurrence of c in s.
  146. */
  147. char *
  148. #ifdef CK_ANSIC
  149. ckstrchr(char * s, char c)
  150. #else
  151. ckstrchr(s,c) char *s, c;
  152. #endif /* CK_ANSIC */
  153. /* ckstrchr */ {
  154.     if (!s)
  155.       return(NULL);
  156.     while (*s && *s != c)
  157.       s++;
  158.     return((*s == c) ? s : NULL);
  159. }
  160. /*  C K L O W E R  --  Lowercase a string  */
  161. /* Returns the length of the string */
  162. int
  163. cklower(s) char *s; {
  164.     int n = 0;
  165.     if (!s) return(0);
  166.     while (*s) {
  167.         if (isupper(*s)) *s = (char) tolower(*s);
  168.         s++, n++;
  169.     }
  170.     return(n);
  171. }
  172. /*  C K L T O A  --  Long to string  --  FOR DISCIPLINED USE ONLY  */
  173. #define NUMBUF 1024
  174. static char numbuf[NUMBUF+32] = { NUL, NUL };
  175. static int numbp = 0;
  176. /*
  177.   ckltoa() and ckitoa() are like atol() and atoi() in the reverse direction,
  178.   returning a pointer to the string representation of the given number without
  179.   the caller having to worry about allocating or defining a buffer first.
  180.   They manage their own internal buffer, so successive calls return different
  181.   pointers.  However, to keep memory consumption from growing without bound,
  182.   the buffer recycles itself.  So after several hundred calls (depending on
  183.   the size of the numbers), some of the earlier pointers might well find
  184.   themselves referencing something different.  Moral: You can't win in C.
  185.   Therefore, these routines are intended mainly for generating numeric strings
  186.   for short-term use, e.g. for passing numbers in string form as parameters to
  187.   functions.  For long-term use, the result must be copied to a safe place.
  188. */
  189. char *
  190. #ifdef CK_ANSIC
  191. ckltoa(long n)
  192. #else
  193. ckltoa(n) long n;
  194. #endif /* CK_ANSIC */
  195. /* ckltoa */ {
  196.     char buf[32]; /* Internal working buffer */
  197.     char * p, * s, * q;
  198.     int k, x, sign = 0;
  199.     if (n < 0L) { /* Sign */
  200. n = 0L - n;
  201. sign = 1;
  202.     }
  203.     buf[31] = NUL;
  204.     for (k = 30; k > 0; k--) { /* Convert number to string */
  205. x = n % 10L;
  206. buf[k] = x + '0';
  207. n = n / 10L;
  208. if (!n)
  209.   break;
  210.     }
  211.     if (sign) buf[--k] = '-'; /* Add sign if necessary */
  212.     p = numbuf + numbp;
  213.     q = p;
  214.     s = buf + k;
  215.     while (*p++ = *s++ ) ; /* Copy */
  216.     if (numbp >= NUMBUF) /* Update pointer */
  217.       numbp = 0;
  218.     else
  219.       numbp += k;
  220.     return(q); /* Return pointer */
  221. }
  222. /*  C K I T O A  --  Int to string  -- FOR DISCIPLINED USE ONLY  */
  223. char *
  224. ckitoa(n) int n; { /* See comments with ckltoa(). */
  225.     long nn;
  226.     nn = n;
  227.     return(ckltoa(nn));
  228. }
  229. /*  C K I N D E X  --  C-Kermit's index function  */
  230. /*
  231.   We can't depend on C libraries to have one, so here is our own.
  232.   Call with:
  233.     s1 - String to look for.
  234.     s2 - String to look in.
  235.      t - Offset from right or left of s2, 0 based; -1 for rightmost char in s2.
  236.      r - 0 for left-to-right search, non-0 for right-to-left.
  237.   icase  0 for case independence, non-0 if alphabetic case matters.
  238.   Returns 0 if string not found, otherwise a 1-based result.
  239.   Also returns 0 on any kind of error, e.g. junk parameters.
  240. */
  241. int
  242. ckindex(s1,s2,t,r,icase) char *s1, *s2; int t, r, icase; {
  243.     int len1, len2, i, j, x, ot = t; /* ot = original t */
  244.     char * s;
  245.     if (!s1 || !s2) return(0);
  246.     len1 = (int)strlen(s1); /* length of string to look for */
  247.     len2 = (int)strlen(s = s2); /* length of string to look in */
  248.     if (t < 0) t = len2 - 1;
  249.     if (len1 < 0) return(0); /* paranoia */
  250.     if (len2 < 0) return(0);
  251.     j = len2 - len1; /* length difference */
  252.     if (j < 0 || (r == 0 && t > j)) /* search string is longer */
  253.       return(0);
  254.     if (r == 0) { /* Index */
  255. s = s2 + t; /* Point to beginning of target */
  256. for (i = 0; i <= (j - t); i++) { /* Now compare */
  257.     x = ckstrcmp(s1,s++,len1,icase);
  258.     if (!x)
  259.       return(i+1+t);
  260. }
  261.     } else { /* Reverse Index */
  262.         i = len2 - len1; /* Where to start looking */
  263.         if (ot > 0) /* Figure in offset if any */
  264.   i -= t;
  265. for (j = i; j > -1; j--) {
  266.     if (!ckstrcmp(s1,&s2[j],len1,icase))
  267.       return(j+1);
  268. }
  269.     }
  270.     return(0);
  271. }
  272. /*  B R S T R I P  --  Strip enclosing braces from arg string, in place */
  273. /*
  274.   Call with:
  275.     Pointer to string that can be poked.
  276.   Returns:
  277.     Pointer to string without enclosing braces.
  278.     If original string was not braced, this is the arg pointer;
  279.     otherwise it is 1 + the arg pointer, with the matching closing
  280.     brace zero'd out.  If the string starts with a brace but does not
  281.     end with a matching brace, the original pointer to the original
  282.     string is returned.  If the arg pointer is NULL, a pointer to an
  283.     empty string is returned.
  284. */
  285. char *
  286. brstrip(p) char *p; {
  287.     if (!p) return("");
  288.     if (*p == '{') {
  289. int x;
  290. x = (int)strlen(p) - 1;
  291. if (p[x] == '}') {
  292.     p[x] = NUL;
  293.     p++;
  294. }
  295.     }
  296.     return(p);
  297. }
  298. /*  M A K E L I S T  ---  Breaks {{s1}{s2}..{sn}} into an array of strings */
  299. /*
  300.   Call with:
  301.     s    = pointer to string to break up.
  302.     list = array of string pointers.
  303.     len  = number of elements in array.
  304.   NOTE: The array must be preinitialized to all NULL pointers.
  305.   If any array element is not NULL, it is assumed to have been malloc'd
  306.   and is therefore freed.  Do NOT call this function with an unitialized
  307.   array, or with an array that has had any static elements assigned to it.
  308. */
  309. VOID
  310. makelist(s,list,len) char * s; char *list[]; int len; {
  311.     int i, n, q, bc = 0;
  312.     char *p = NULL, *s2 = NULL;
  313.     debug(F110,"makelist s",s,0);
  314.     if (!s) { /* Check for null or empty string */
  315. list[0] = NULL;
  316. return;
  317.     }
  318.     n = strlen(s);
  319.     if (n == 0) {
  320. list[0] = NULL;
  321. return;
  322.     }
  323.     if (s2 = (char *)malloc(n+1)) { /* Safe copy for poking */
  324. strcpy(s2,s); /* (no need for ckstrncpy here) */
  325. s = s2;
  326.     }
  327.     s = brstrip(s); /* Strip braces */
  328.     n = strlen(s); /* Get length */
  329.     if (*s != '{') { /* Outer braces only */
  330. if (p = (char *)malloc(n+1)) { /* So just one pattern */
  331.     strcpy(p,s); /* (no need for ckstrncpy here) */
  332.     if (list[0])
  333.       free(list[0]);
  334.     list[0] = p;
  335. }
  336. if (s2) free(s2);
  337. return;
  338.     }
  339.     q = 0; /* Inner ones too */
  340.     i = 0; /* so a list of patterns. */
  341.     n = 0;
  342.     while (*s && i < len) {
  343. if (*s == CMDQ) { /* Quote... */
  344.     q = 1;
  345.     s++;
  346.     n++;
  347.     continue;
  348. }
  349. if (*s == '{' && !q) { /* Opening brace */
  350.     if (bc++ == 0) { /* Beginning of a group */
  351. p = ++s;
  352. n = 0;
  353.     } else { /* It's a brace inside the group */
  354. n++;
  355. s++;
  356.     }
  357.     continue;
  358. } else if (*s == '}' && !q) { /* Closing brace */
  359.     if (--bc == 0) { /* End of a group */
  360. *s++ = NUL;
  361. debug(F111,"makelist element",p,i);
  362. if (list[i])
  363.   free(list[i]);
  364. if (list[i] = (char *)malloc(n+1)) {
  365.     ckstrncpy(list[i],p,n+1); /* Note: n+1 */
  366.     i++;
  367. }
  368. while (*s == SP) s++;
  369. p = s;
  370. n = 0;
  371. continue;
  372.     } else { /* Within a group */
  373. n++;
  374. s++;
  375.     }
  376. } else { /* Regular character */
  377.     q = 0;
  378.     s++;
  379.     n++;
  380. }
  381.     }
  382.     if (*p && i < len) { /* Last one */
  383. if (list[i])
  384.   free(list[i]);
  385. if (list[i] = (char *)malloc(n+1)) {
  386.     ckstrncpy(list[i],p,n+1);
  387.     debug(F111,"makelist last element",p,i);
  388. }
  389.     }
  390.     if (s2) free(s2);
  391. }
  392. /*
  393.    M A K E S T R  --  Creates a dynamically allocated string.
  394.    Makes a new copy of string s and sets pointer p to its address.
  395.    Handles degenerate cases, like when buffers overlap or are the same,
  396.    one or both arguments are NULL, etc.
  397.    The target pointer must be either NULL or else a pointer to a previously
  398.    malloc'ed buffer.  If not, expect a core dump or segmentation fault.
  399.    Note: The caller can tell whether this routine failed as follows:
  400.      malloc(&p,q);
  401.      if (q & !p) { makestr() failed };
  402. */
  403. VOID
  404. #ifdef CK_ANSIC
  405. makestr(char **p, const char *s)
  406. #else
  407. makestr(p,s) char **p, *s;
  408. #endif
  409. /* makestr */ {
  410.     int x;
  411.     char *q = NULL;
  412.     if (*p == s) /* The two pointers are the same. */
  413.       return; /* Don't do anything. */
  414.     if (!s) { /* New definition is null? */
  415. if (*p) /* Free old storage. */
  416.   free(*p);
  417. *p = NULL; /* Return null pointer. */
  418. return;
  419.     }
  420.     if ((x = strlen(s)) >= 0) { /* Get length, even of empty string. */
  421. q = malloc(x+1); /* Get and point to temp storage. */
  422. if (q) {
  423.     strcpy(q,s); /* (no need for ckstrncpy() here) */
  424. }
  425. #ifdef DEBUG
  426. else { /* This would be a really bad error */
  427.     char tmp[24]; /* So get a good record of it. */
  428.     if (x > 23) {
  429. ckstrncpy(tmp,s,20);
  430. strcpy(tmp+20,"...");
  431. tmp[23] = NUL;
  432.     } else {
  433. ckstrncpy(tmp,s,24);
  434.     }
  435.     debug(F110,"MAKESTR MALLOC FAILURE ",s,0);
  436. }
  437. #endif /* DEBUG */
  438.     } else
  439.       q = NULL; /* Length of string is zero */
  440.     if (*p) { /* Now free the original storage. */
  441. #ifdef BETATEST
  442. memset(*p,0xFF,sizeof(**p)); /* (not portable) */
  443. #endif /* BETATEST */
  444. free(*p);
  445.     }
  446. #ifdef COMMENT
  447.     *q = NULL; /* Set up return pointer */
  448.     if (q)
  449.       *p = q;
  450. #else
  451.     *p = q; /* This is exactly the same */
  452. #endif /* COMMENT */
  453. }
  454. /*  X M A K E S T R  --  Non-destructive makestr() if s is NULL.  */
  455. VOID
  456. #ifdef CK_ANSIC
  457. xmakestr(char **p, const char *s)
  458. #else
  459. xmakestr(p,s) char **p, *s;
  460. #endif
  461. /* xmakestr */ {
  462.     if (s) makestr(p,s);
  463. }
  464. /* C K M E M C P Y  --  Portable (but slow) memcpy() */
  465. /* Copies n bytes from s to p, allowing for overlap. */
  466. /* For use when real memcpy() not available. */
  467. VOID
  468. ckmemcpy(p,s,n) char *p, *s; int n; {
  469.     char * q = NULL;
  470.     register int i;
  471.     int x;
  472.     if (!s || !p || n <= 0 || p == s) /* Verify args */
  473.       return;
  474.     x = p - s; /* Check for overlap */
  475.     if (x < 0)
  476.       x = 0 - x;
  477.     if (x < n) { /* They overlap */
  478. q = p;
  479. if (!(p = (char *)malloc(n))) /* So use a temporary buffer */
  480.   return;
  481.     }
  482.     for (i = 0; i < n; i++) /* Copy n bytes */
  483.       p[i] = s[i];
  484.     if (q) { /* If we used a temporary buffer */
  485. for (i = 0; i < n; i++) /* copy from it to destination */
  486.   q[i] = p[i];
  487. if (p) free(p); /* and free the temporary buffer */
  488.     }
  489. }
  490. /*  C K S T R C M P  --  String comparison with case-matters selection */
  491. /*
  492.   Call with pointers to the two strings, s1 and s2, a length, n,
  493.   and c == 0 for caseless comparison, nonzero for case matters.
  494.   Call with n == -1 to compare without a length limit.
  495.   Compares up to n characters of the two strings and returns:
  496.     1 if s1 > s2
  497.     0 if s1 = s2
  498.    -1 if s1 < s2
  499. */
  500. int
  501. ckstrcmp(s1,s2,n,c) char *s1, *s2; int n, c; {
  502.     CHAR t1, t2;
  503.     if (n == 0) return(0);
  504.     if (!s1) s1 = ""; /* Watch out for null pointers. */
  505.     if (!s2) s2 = "";
  506.     if (!*s1) return(*s2 ? -1 : 0);
  507.     if (!*s2) return(1);
  508.     while (n--) {
  509. t1 = (CHAR) *s1++; /* Get next character from each. */
  510. t2 = (CHAR) *s2++;
  511. if (!t1) return(t2 ? -1 : 0);
  512. if (!t2) return(1);
  513. if (!c) { /* If case doesn't matter */
  514.     if (isupper(t1)) t1 = tolower(t1); /* Convert case. */
  515.     if (isupper(t2)) t2 = tolower(t2);
  516. }
  517. if (t1 < t2) return(-1); /* s1 < s2 */
  518. if (t1 > t2) return(1); /* s1 > s2 */
  519.     }
  520.     return(0); /* They're equal */
  521. }
  522. /*  C K S T R P R E  --  Caseless string prefix comparison  */
  523. /* Returns position of the first char in the 2 strings that doesn't match */
  524. int
  525. ckstrpre(s1,s2) char *s1, *s2; {
  526.     CHAR t1, t2;
  527.     int n = 0;
  528.     if (!s1) s1 = "";
  529.     if (!s2) s2 = "";
  530.     while (1) {
  531. t1 = (CHAR) *s1++;
  532. t2 = (CHAR) *s2++;
  533. if (!t1 || !t2) return(n);
  534. if (isupper(t1)) t1 = tolower(t1);
  535. if (isupper(t2)) t2 = tolower(t2);
  536. if (t1 != t2)
  537.   return(n);
  538. n++;
  539.     }
  540. }
  541. #define GLOBBING
  542. /*  C K M A T C H  --  Match a string against a pattern  */
  543. /*
  544.   Call with a pattern containing * and/or ? metacharacters.
  545.   icase is 1 if case-sensitive, 0 otherwise.
  546.   opts is a bitmask:
  547.     Bit 0: 1 to match strings starting with '.', else 0.
  548.     Bit 1: 1 = file globbing (dirseps are fences, etc), 0 = ordinary string.
  549.     Bit 2 (and beyond): Undefined.
  550.   Works only with NUL-terminated strings.
  551.   Pattern may contain any number of ? and/or *.
  552.   If CKREGEX is defined, also [abc], [a-z], and/or {string,string,...}.
  553.   Returns:
  554.     0 if string does not match pattern,
  555.     1 if it does.
  556.   To be done:
  557.     Find a way to identify the piece of the string that matched the pattern,
  558.     as in Snobol "LINE (PAT . RESULT)".  Some prelinary attempts are commented
  559.     out (see "mstart"); these fail because they always indicate the entire
  560.     string.  The piece we want (I think) is the the part that matches the
  561.     first non-* segment of the pattern through the final non-* part.  If this
  562.     can be done, we can streamline INPUT and friends considerably, and also
  563.     add regexp support to functions like findex(fpattern(a*b),%s).  INPUT
  564.     accomplishes this now by repeated calls to ckmatch, which is overkill.
  565. */
  566. #ifdef COMMENT
  567. char * ckmstring = NULL;
  568. #endif /* COMMENT */
  569. int
  570. ckmatch(pattern, string, icase, opts) char *pattern,*string; int icase, opts; {
  571.     int q = 0, i = 0, k = -1, x, flag = 0;
  572.     CHAR cp; /* Current character from pattern */
  573.     CHAR cs; /* Current character from string */
  574.     char * psave = NULL;
  575.     int dot, globbing;
  576. #ifdef COMMENT
  577.     char * mstart = NULL; /* Pointer to beginning of match */
  578. #endif /* COMMENT */
  579.     dot = opts & 1;
  580.     globbing = opts & 2;
  581. #ifdef COMMENT
  582.     makestr(&ckmstring,NULL);
  583. #endif /* COMMENT */
  584.     if (!pattern) pattern = "";
  585.     if (!*pattern) return(1); /* Null pattern always matches */
  586.     if (!string) string = "";
  587.     debug(F110,"ckmatch string",string,0);
  588.     debug(F111,"ckmatch pattern",pattern,opts);
  589. #ifdef COMMENT
  590.     mstart = string;
  591. #endif /* COMMENT */
  592. #ifdef UNIX
  593.     if (!dot) { /* For UNIX file globbing */
  594. if (*string == '.' && *pattern != '.' && !matchdot) {
  595.     if (
  596. #ifdef CKREGEX
  597. *pattern != '{' && *pattern != '['
  598. #else
  599. 1
  600. #endif /* CKREGEX */
  601. ) {
  602. debug(F110,"ckmatch skip",string,0);
  603. return(0);
  604.     }
  605. }
  606.     }
  607. #endif /* UNIX */
  608.     while (1) {
  609. k++;
  610. cp = *pattern; /* Character from pattern */
  611. cs = *string; /* Character from string */
  612. if (!cs) { /* End of string - done. */
  613.     x = (!cp || (cp == '*' && !*(pattern+1))) ? 1 : 0;
  614. #ifdef COMMENT
  615.     if (x) makestr(&ckmstring,mstart);
  616. #endif /* COMMENT */
  617.     return(x);
  618. }
  619.         if (!icase) { /* If ignoring case */
  620.     if (isupper(cp)) /* convert both to lowercase. */
  621.       cp = tolower(cp);
  622.     if (isupper(cs))
  623.       cs = tolower(cs);
  624.         }
  625. if (q) { /* This character was quoted */
  626.     q = 0; /* Turn off quote flag */
  627.     if (cs == cp) /* Compare directly */
  628.       pattern++, string++; /* no metacharacters */
  629.     continue;
  630. }
  631. if (cp == CMDQ && !q) { /* Quote in pattern */
  632.     q = 1; /* Set flag */
  633.     pattern++; /* Advance to next pattern character */
  634.     cp = *pattern; /* Case conversion... */
  635.     if (!icase)
  636.       if (isupper(cp))
  637. cp = tolower(cp);
  638.     if (cp != cs) /* Literal char so compare now */
  639.       return(0); /* No match, done. */
  640.     string++, pattern++; /* They match so advance pointers */
  641.     continue; /* and continue. */
  642. }
  643. if (cs && cp == '?') { /* '?' matches any char */
  644.     pattern++, string++;
  645.     continue;
  646. #ifdef CKREGEX
  647. } else if (cp == '[') { /* Have bracket */
  648.     int q = 0; /* My own private q */
  649.     char * psave = NULL; /* and backup pointer */
  650.     CHAR clist[256]; /* Character list from brackets */
  651.     CHAR c, c1, c2;
  652.     for (i = 0; i < 256; i++) /* memset() etc not portable */
  653.       clist[i] = NUL;
  654.     psave = ++pattern; /* Where pattern starts */
  655.     for (flag = 0; !flag; pattern++) { /* Loop thru pattern */
  656. c = (unsigned)*pattern; /* Current char */
  657. if (q) { /* Quote within brackets */
  658.     q = 0;
  659.     clist[c] = 1;
  660.     continue;
  661. }
  662. if (!icase) /* Case conversion */
  663.   if (isupper(c))
  664.     c = tolower(c);
  665. switch (c) { /* Handle unquoted character */
  666.   case NUL: /* End of string */
  667.     return(0); /* No matching ']' so fail */
  668.   case CMDQ: /* Next char is quoted */
  669.     q = 1; /* Set flag */
  670.     continue; /* and continue. */
  671.   case '-': /* A range is specified */
  672.     c1 = (pattern > psave) ? (unsigned)*(pattern-1) : NUL;
  673.     c2 = (unsigned)*(pattern+1);
  674.     if (c2 == ']') c2 = NUL;
  675.     if (c1 == NUL) c1 = c2;
  676.     for (c = c1; c <= c2; c++)
  677.       clist[c] = 1;
  678.     continue;
  679.   case ']': /* End of bracketed sequence */
  680.     flag = 1; /* Done with FOR loop */
  681.     break; /* Compare what we have */
  682.   default: /* Just a char */
  683.     clist[c] = 1; /* Record it */
  684.     continue;
  685. }
  686.     }
  687.     if (!clist[(unsigned)cs])  /* Match? */
  688.       return(0); /* Nope, done. */
  689.     string++; /* Yes, advance string pointer */
  690.     continue; /* and go on. */
  691. } else if (cp == '{') { /* Braces with list of strings */
  692.     char * p, * s, * s2, * buf = NULL;
  693.     int n, bc = 0;
  694.     int len = 0;
  695.     for (p = pattern++; *p; p++) {
  696. if (*p == '{') bc++;
  697. if (*p == '}') bc--;
  698. if (bc < 1) break;
  699.     }
  700.     if (bc != 0) { /* Braces don't match */
  701. return(0); /* Fail */
  702.     } else { /* Braces do match */
  703. int q = 0, done = 0;
  704. len = *p ? strlen(p+1) : 0; /* Length of rest of pattern */
  705. n = p - pattern; /* Size of list in braces */
  706. if (buf = (char *)malloc(n+1)) { /* Copy so we can poke it */
  707.     char * tp = NULL;
  708.     int k;
  709.     ckstrncpy(buf,pattern,n+1);
  710.     n = 0;
  711.     for (s = s2 = buf; 1; s++) { /* Loop through segments */
  712. n++;
  713. if (q) { /* This char is quoted */
  714.     q = 0;
  715.     if (!*s)
  716.       done = 1;
  717.     continue;
  718. }
  719. if (*s == CMDQ && !q) { /* Quote next char */
  720.     q = 1;
  721.     continue;
  722. }
  723. if (!*s || *s == ',') { /* End of this segment */
  724.     if (!*s) /* If end of buffer */
  725.       done = 1; /* then end of last segment */
  726.     *s = NUL; /* Overwrite comma with NUL */
  727.     if (!*s2) { /* Empty segment, no advancement */
  728. k = 0;
  729.     } else if (tp = (char *)malloc(n+len+1)) {
  730. strcpy(tp,s2);  /* Current segment */
  731. strcat(tp,p+1); /* Add rest of pattern */
  732. tp[n+len] = NUL;
  733. k = ckmatch(tp,string,icase,opts);
  734. free(tp);
  735. if (k > 0) { /* If it matched we're done */
  736. #ifdef COMMENT
  737.     makestr(&ckmstring,mstart);
  738. #endif /* COMMENT */
  739.     return(1);
  740. }
  741.     } else { /* Malloc failure, just compare */
  742. k = !ckstrcmp(tp,string,n-1,icase);
  743.     }
  744.     if (k) { /* Successful comparison */
  745. string += n-1; /* Advance pointers */
  746. pattern = p+1;
  747. break;
  748.     }
  749.     if (done) /* If no more segments */
  750.       break; /* break out of segment loop. */
  751.     s2 = s+1; /* Otherwise, on to next segment */
  752.     n = 0;
  753. }
  754.     }
  755.     free(buf);
  756. }
  757.     }
  758. #endif /* CKREGEX */
  759. } else if (cp == '*') { /* Asterisk */
  760.     char * p, * s = NULL;
  761.     int k, n, q = 0;
  762.     while (*pattern == '*') /* Collapse successive asterisks */
  763.       pattern++;
  764.     psave = pattern; /* First non-asterisk after asterisk */
  765.     for (n = 0, p = psave; *p; p++,n++) { /* Find next meta char */
  766. if (!q) {
  767.     if (*p == '?' || *p == '*' || *p == CMDQ
  768. #ifdef CKREGEX
  769. || *p == '[' || *p == '{'
  770. #endif /* CKREGEX */
  771. )
  772.       break;
  773. #ifdef GLOBBING
  774.     if (globbing
  775. #ifdef UNIXOROSK
  776. && *p == '/'
  777. #else
  778. #ifdef VMS
  779. && (*p == '.' || *p == ']' ||
  780.     *p == '<' || *p == '>' ||
  781.     *p == ':' || *p == ';')
  782. #else
  783. #ifdef datageneral
  784. && *p == ':'
  785. #else
  786. #ifdef STRATUS
  787. && *p == '>'
  788. #endif /* STRATUS */
  789. #endif /* datageneral */
  790. #endif /* VMS */
  791. #endif /* UNIXOROSK */
  792. )
  793.       break;
  794. #endif /* GLOBBING */
  795. }
  796.     }
  797.     if (n > 0) { /* Literal string to match  */
  798. s = (char *)malloc(n+1);
  799. if (s) {
  800.     ckstrncpy(s,psave,n+1); /* Copy cuz no poking original */
  801.     debug(F111,"XXX",s,n+1);
  802.     if (*p == '*')
  803.       k = ckindex(s,string,0,0,icase); /* 1-based index() */
  804.     else
  805.       k = ckindex(s,string,-1,1,icase); /* 1-based rindex() */
  806.     free(s);
  807.     if (k < 1)
  808.       return(0);
  809.     string += k + n - 1;
  810.     pattern += n;
  811.     continue;
  812. }
  813.     } else if (!*p) { /* Asterisk at end matches the rest */
  814. if (!globbing) { /* (if not filename globbing) */
  815. #ifdef COMMENT
  816.     makestr(&ckmstring,mstart);
  817. #endif /* COMMENT */
  818.     return(1);
  819. }
  820. #ifdef GLOBBING
  821. while (*string) { /* Globbing so don't cross fields */
  822.     if (globbing
  823. #ifdef UNIXOROSK
  824. && *string == '/'
  825. #else
  826. #ifdef VMS
  827. && (*string == '.' || *string == ']' ||
  828.     *string == '<' || *string == '>' ||
  829.     *string == ':' || *string == ';')
  830. #else
  831. #ifdef datageneral
  832. && *string == ':'
  833. #else
  834. #ifdef STRATUS
  835. && *string == '>'
  836. #endif /* STRATUS */
  837. #endif /* datageneral */
  838. #endif /* VMS */
  839. #endif /* UNIXOROSK */
  840. )
  841.       return(0);
  842.     string++;
  843. }
  844. #endif /* GLOBBING */
  845. #ifdef COMMENT
  846. makestr(&ckmstring,mstart);
  847. #endif /* COMMENT */
  848. return(1);
  849.     } else { /* A meta char follows asterisk */
  850. while (*string && (k = ckmatch(p,string,icase,opts) < 1))
  851.   string++;
  852. #ifdef COMMENT
  853. if (*string) makestr(&ckmstring,mstart);
  854. #endif /* COMMENT */
  855. return(*string ? 1 : 0);
  856.     }
  857. } else if (cs == cp) {
  858.     pattern++, string++;
  859.     continue;
  860. } else
  861.   return(0);
  862.     }
  863. }
  864. #ifdef CKFLOAT
  865. /*  I S F L O A T  -- Verify that arg represents a floating-point number */
  866. /*
  867.   Portable replacement for atof(), strtod(), scanf(), etc.
  868.   Call with:
  869.     s = pointer to string
  870.     flag == 0 means entire string must be a (floating-pointing) number.
  871.     flag != 0 means to terminate scan on first character that is not legal.
  872.   Returns:
  873.     1 if result is a floating point number;
  874.     0 if not or if string empty.
  875.   Side effect:
  876.     Sets global floatval to floating-point value if successful.
  877.   Number need not contain a decimal point -- integer is subcase of float.
  878.   Scientific notation not supported.
  879. */
  880. CKFLOAT floatval = 0.0; /* For returning value */
  881. int
  882. isfloat(s,flag) char *s; int flag; {
  883.     int state = 0;
  884.     int sign = 0;
  885.     char c;
  886.     CKFLOAT d = 0.0, f = 0.0;
  887.     if (!s) return(0);
  888.     if (!*s) return(0);
  889.     while (isspace(*s)) s++;
  890.     if (*s == '-') { /* Handle optional sign */
  891. sign = 1;
  892. s++;
  893.     } else if (*s == '+')
  894.       s++;
  895.     while (c = *s++) { /* Handle numeric part */
  896. switch (state) {
  897.   case 0: /* Mantissa... */
  898.     if (isdigit(c)) {
  899. f = f * 10.0 + (CKFLOAT)(c - '0');
  900. continue;
  901.     } else if (c == '.') {
  902. state = 1;
  903. d = 1.0;
  904. continue;
  905.     }
  906.     if (flag) /* Not digit or period */
  907.       goto done; /* break if flag != 0 */
  908.     return(0); /* otherwise fail. */
  909.   case 1: /* Fraction... */
  910.     if (isdigit(c)) {
  911. d *= 10.0;
  912. f += (CKFLOAT)(c - '0') / d;
  913. continue;
  914.     }
  915.   default:
  916.     if (flag) /* Illegal character */
  917.       goto done; /* Break */
  918.     return(0); /* or fail, depending on flag */
  919. }
  920.     }
  921.   done:
  922.     if (sign) f = 0.0 - f; /* Apply sign to result */
  923.     floatval = f; /* Set result */
  924.     return(1); /* Succeed */
  925. }
  926. #endif /* CKFLOAT */
  927. /* Sorting routines... */
  928. #ifdef USE_QSORT
  929. /*
  930.   Quicksort works but it's not measurably faster than shell sort,
  931.   probably because it makes a lot more comparisons, since
  932.   it was originally designed for sorting an array of integers.
  933.   It would need more thorough testing and debugging before production use.
  934. */
  935. static int /* Internal comparison routine for ckqsort() */
  936. compare(s1,s2,k,r,c) char *s1, *s2; int k, r, c; {
  937.     int x;
  938.     char *t, *t1, *t2;
  939. #ifdef CKFLOAT
  940.     CKFLOAT f1, f2;
  941. #else
  942.     long n1, n2;
  943. #endif /* CKFLOAT */
  944.     t = t2 = s1; /* String 1 */
  945.     if (!t) /* If it's NULL */
  946.       t2 = ""; /* make it the empty string */
  947.     if (k > 0 && *t2) {
  948. if ((int)strlen(t2) < k) /* If key too big */
  949.   t2 = ""; /* make key the empty string */
  950. else /* Key is in string */
  951.   t2 += k; /* so point to key position */
  952.     }
  953.     t1 = s2;
  954.     if (!t1) /* Same deal for s2 */
  955.       t1 = "";
  956.     if (k > 0 && *t1) {
  957. if ((int)strlen(t1) < k)
  958.   t1 = "";
  959. else
  960.   t1 += k;
  961.     }
  962.     if (c == 2) { /* Numeric comparison */
  963. x = 0;
  964. #ifdef CKFLOAT
  965. f2 = 0.0;
  966. f1 = 0.0;
  967. if (isfloat(t1,1)) {
  968.     f1 = floatval;
  969.     if (isfloat(t2,1))
  970.       f2 = floatval;
  971.     else
  972.       f1 = 0.0;
  973. }
  974. if (f2 < f1)
  975.   x = 1;
  976. else
  977.   x = -1;
  978. #else
  979. n2 = 0L;
  980. n1 = 0L;
  981. if (rdigits(t1)) {
  982.     n1 = atol(t1);
  983.     if (rdigits(t2))
  984.       n2 = atol(t2);
  985.     else
  986.       n1 = 0L;
  987. }
  988. if (n2 < n1)
  989.   x = 1;
  990. else
  991.   x = -1;
  992. #endif /* CKFLOAT */
  993.     } else {
  994. x = ckstrcmp(t1,t2,-1,c);
  995.     }
  996.     return(x);
  997. }
  998. /* It's called sh_sort() but it's really quicksort... */
  999. VOID
  1000. sh_sort(s,s2,n,k,r,how) char **s, **s2; int n, k, r, how; {
  1001.     int x, lp, up, p, lv[16], uv[16], m, c;
  1002.     char * y, * y2;
  1003.     if (!s) return;
  1004.     if (n < 2) return;
  1005.     if (k < 0) k = 0;
  1006.     lv[0] = 0;
  1007.     uv[0] = n-1;
  1008.     p = 0;
  1009. stb: /* Hmmm, looks like Fortran... */
  1010.     if (p < 0)
  1011.     return;
  1012. stc:
  1013.     lp = lv[p];
  1014.     up = uv[p];
  1015.     m = up - lp + 1;
  1016.     if (m < 2) {
  1017. p--;
  1018. goto stb;
  1019.     }
  1020.     if (m == 2) {
  1021. x = compare(s[lp],s[up],k,r,how);
  1022. if (x > 0) {
  1023.     y = s[lp];
  1024.     s[lp] = s[up];
  1025.     s[up] = y;
  1026.     if (s2) {
  1027. y2 = s2[lp];
  1028. s2[lp] = s2[up];
  1029. s2[up] = y2;
  1030.     }
  1031. }
  1032. p--;
  1033. goto stb;
  1034.     }
  1035.     c = (lp+up) / 2;
  1036.     if (m < 10)
  1037.       goto std;
  1038.     x = compare(s[lp],s[c],k,r,how);
  1039.     if (x < 1) {
  1040. if (s[c] <= s[up]) {
  1041.     goto std;
  1042.         } else {
  1043.     x = compare(s[lp],s[up],k,r,how);
  1044.     if (x < 1)
  1045.       c = up;
  1046.     else
  1047.       c = lp;
  1048.     goto std;
  1049. }
  1050.     } else {
  1051. x = compare(s[up],s[c],k,r,how);
  1052. if (x < 1) {
  1053.     goto std;
  1054. } else {
  1055.     x = compare(s[lp],s[up],k,r,how);
  1056.     if (x < 1)
  1057.       c = lp;
  1058.     else
  1059.       c = up;
  1060.     goto std;
  1061. }
  1062.     }
  1063. std:
  1064.     y = s[c];
  1065.     s[c] = s[up];
  1066.     if (s2) {
  1067. y2 = s2[c];
  1068. s2[c] = s2[up];
  1069.     }
  1070.     lp--;
  1071. stf:
  1072.     if ((up - lp) < 2)
  1073.       goto stk;
  1074.     lp++;
  1075.     x = compare(s[lp],y,k,r,how);
  1076.     if (x < 1)
  1077.       goto stf;
  1078.     s[up] = s[lp];
  1079. sth:
  1080.     if ((up - lp) < 2)
  1081.       goto stj;
  1082.     up--;
  1083.     x = compare(s[up],y,k,r,how);
  1084.     if (x > 0)
  1085.       goto sth;
  1086.     s[lp] = s[up];
  1087.     goto stf;
  1088. stj:
  1089.     up--;
  1090. stk:
  1091.     if (up == uv[p]) {
  1092. lp = lv[p] - 1;
  1093. stl:
  1094. if ((up - lp) < 2)
  1095.   goto stq;
  1096. lp++;
  1097. x = compare(s[lp],y,k,r,how);
  1098. if (x < 0)
  1099.   goto stl;
  1100. s[up] = s[lp];
  1101. stn:
  1102. if ((up - lp) < 2)
  1103.   goto stp;
  1104. up--;
  1105. x = compare(s[up],y,k,r,how);
  1106. if (x >= 0)
  1107.   goto stn;
  1108. s[lp] = s[up];
  1109. goto stl;
  1110. stp:
  1111. up--;
  1112. stq:
  1113. s[up] = y;
  1114. if (s2)
  1115.   s2[up] = y2;
  1116.         if (up == lv[p]) {
  1117.     p--;
  1118.     goto stb;
  1119. }
  1120. uv[p] = up - 1;
  1121. goto stc;
  1122.     }
  1123.     s[up] = y;
  1124.     if (s2)
  1125.       s2[up] = y2;
  1126.     if ((up - lv[p]) < (uv[p] - up)) {
  1127. lv[p+1] = lv[p];
  1128. uv[p+1] = up - 1;
  1129. lv[p] = up + 1;
  1130.     } else {
  1131. lv[p+1] = up + 1;
  1132. uv[p+1] = uv[p];
  1133. uv[p] = up - 1;
  1134.     }
  1135.     p++;
  1136.     goto stc;
  1137. }
  1138. #else  /* !USE_QSORT */
  1139. /* S H _ S O R T  --  Shell sort -- sorts string array s in place. */
  1140. /*
  1141.   Highly defensive and relatively quick.
  1142.   Uses shell sort algorithm.
  1143.   Args:
  1144.    s = pointer to array of strings.
  1145.    p = pointer to a second array to sort in parallel s, or NULL for none.
  1146.    n = number of elements in s.
  1147.    k = position of key.
  1148.    r = ascending lexical order if zero, reverse lexical order if nonzero.
  1149.    c = 0 for case independence, 1 for case matters, 2 for numeric.
  1150.   If k is past the right end of a string, the string is considered empty
  1151.   for comparison purposes.
  1152.   Hint:
  1153.    To sort a piece of an array, call with s pointing to the first element
  1154.    and n the number of elements to sort.
  1155.   Return value:
  1156.    None.  Always succeeds, unless any of s[0]..s[n-1] are bad pointers,
  1157.    in which case memory violations are possible, but C offers no defense
  1158.    against this, so no way to gracefully return an error code.
  1159. */
  1160. VOID
  1161. sh_sort(s,p,n,k,r,c) char **s, **p; int n, k, r, c; {
  1162.     int m, i, j, x;
  1163.     char *t, *t1, *t2, *u = NULL;
  1164. #ifdef CKFLOAT
  1165.     CKFLOAT f1, f2;
  1166. #else
  1167.     long n1, n2;
  1168. #endif /* CKFLOAT */
  1169.     if (!s) return; /* Nothing to sort? */
  1170.     if (n < 2) return; /* Not enough elements to sort? */
  1171.     if (k < 0) k = 0; /* Key */
  1172.     m = n; /* Initial group size is whole array */
  1173.     while (1) {
  1174. m = m / 2; /* Divide group size in half */
  1175. if (m < 1) /* Small as can be, so done */
  1176.   break;
  1177. for (j = 0; j < n-m; j++) { /* Sort each group */
  1178.     t = t2 = s[j+m]; /* Compare this one... */
  1179.     if (!t) /* But if it's NULL */
  1180.       t2 = ""; /* make it the empty string */
  1181.     if (p) /* Handle parallel array, if any */
  1182.       u = p[j+m];
  1183.     if (k > 0 && *t2) {
  1184. if ((int)strlen(t2) < k) /* If key too big */
  1185.   t2 = ""; /* make key the empty string */
  1186. else /* Key is in string */
  1187.   t2 = t + k; /* so point to key position */
  1188.     }
  1189.     for (i = j; i >= 0; i -= m) { /* Loop thru comparands s[i..]*/
  1190. t1 = s[i];
  1191. if (!t1) /* Same deal */
  1192.   t1 = "";
  1193. if (k > 0 && *t1) {
  1194.     if ((int)strlen(t1) < k)
  1195.       t1 = "";
  1196.     else
  1197.       t1 = s[i]+k;
  1198. }
  1199. if (c == 2) { /* Numeric comparison */
  1200.     x = 0;
  1201. #ifdef CKFLOAT
  1202.     f2 = 0.0;
  1203.     f1 = 0.0;
  1204.     if (isfloat(t1,1)) {
  1205. f1 = floatval;
  1206. if (isfloat(t2,1))
  1207.   f2 = floatval;
  1208. else
  1209.   f1 = 0.0;
  1210.     }
  1211.     if (f2 < f1)
  1212.       x = 1;
  1213.     else
  1214.       x = -1;
  1215. #else
  1216.     n2 = 0L;
  1217.     n1 = 0L;
  1218.     if (rdigits(t1)) {
  1219. n1 = atol(t1);
  1220. if (rdigits(t2))
  1221.   n2 = atol(t2);
  1222. else
  1223.   n1 = 0L;
  1224.     }
  1225.     if (n2 < n1)
  1226.       x = 1;
  1227.     else
  1228.       x = -1;
  1229. #endif /* CKFLOAT */
  1230. } else {
  1231.     x = ckstrcmp(t1,t2,-1,c); /* Compare */
  1232. }
  1233. if (r == 0 && x < 0)
  1234.   break;
  1235. if (r != 0 && x > 0)
  1236.   break;
  1237. s[i+m] = s[i];
  1238. if (p) p[i+m] = p[i];
  1239.     }
  1240.     s[i+m] = t;
  1241.     if (p) p[i+m] = u;
  1242. }
  1243.     }
  1244. }
  1245. #endif /* COMMENT */
  1246. /*  F I L E S E L E C T  --  Select this file for sending  */
  1247. int
  1248. fileselect(f,sa,sb,sna,snb,minsiz,maxsiz,nbu,nxlist,xlist)
  1249.  char *f,*sa,*sb,*sna,*snb; long minsiz,maxsiz; int nbu,nxlist; char ** xlist;
  1250. /* fileselect */ {
  1251.     char *fdate;
  1252.     int n;
  1253.     long z;
  1254.     if (!sa) sa = "";
  1255.     if (!sb) sb = "";
  1256.     if (!sna) sna = "";
  1257.     if (!snb) snb = "";
  1258.     debug(F110,"fileselect",f,0);
  1259.     if (*sa || *sb || *sna || *snb) {
  1260. fdate = zfcdat(f); /* Date/time of this file */
  1261. if (!fdate) fdate = "";
  1262. n = strlen(fdate);
  1263. debug(F111,"fileselect fdate",fdate,n);
  1264. if (n != 17) /* Failed to get it */
  1265.   return(1);
  1266. /* /AFTER: */
  1267. if (sa[0] && (strcmp(fdate,(char *)sa) <= 0)) {
  1268.     debug(F110,"fileselect sa",sa,0);
  1269.     /* tlog(F110,"Skipping (too old)",f,0); */
  1270.     return(0);
  1271. }
  1272. /* /BEFORE: */
  1273. if (sb[0] && (strcmp(fdate,(char *)sb) >= 0)) {
  1274.     debug(F110,"fileselect sb",sb,0);
  1275.     /* tlog(F110,"Skipping (too new)",f,0); */
  1276.     return(0);
  1277. }
  1278. /* /NOT-AFTER: */
  1279. if (sna[0] && (strcmp(fdate,(char *)sna) > 0)) {
  1280.     debug(F110,"fileselect sna",sna,0);
  1281.     /* tlog(F110,"Skipping (too new)",f,0); */
  1282.     return(0);
  1283. }
  1284. /* /NOT-BEFORE: */
  1285. if (snb[0] && (strcmp(fdate,(char *)snb) < 0)) {
  1286.     debug(F110,"fileselect snb",snb,0);
  1287.     /* tlog(F110,"Skipping (too old)",f,0); */
  1288.     return(0);
  1289. }
  1290.     }
  1291.     if (minsiz > -1L || maxsiz > -1L) { /* Smaller or larger */
  1292. z = zchki(f); /* Get size */
  1293. debug(F101,"fileselect filesize","",z);
  1294. if (z < 0)
  1295.   return(1);
  1296. if ((minsiz > -1L) && (z >= minsiz)) {
  1297.     debug(F111,"fileselect minsiz skipping",f,minsiz);
  1298.     /* tlog(F111,"Skipping (too big)",f,z); */
  1299.     return(0);
  1300. }
  1301. if ((maxsiz > -1L) && (z <= maxsiz)) {
  1302.     debug(F111,"fileselect maxsiz skipping",f,maxsiz);
  1303.     /* tlog(F110,"Skipping (too small)",f,0); */
  1304.     return(0);
  1305. }
  1306.     }
  1307.     if (nbu) { /* Skipping backup files? */
  1308. if (ckmatch(
  1309. #ifdef CKREGEX
  1310.     "*.~[0-9]*~" /* Not perfect but close enough. */
  1311. #else
  1312.     "*.~*~" /* Less close. */
  1313. #endif /* CKREGEX */
  1314.     ,f,filecase,2+1)) {
  1315.     debug(F110,"fileselect skipping backup",f,0);
  1316.     return(0);
  1317. }
  1318.     }
  1319.     for (n = 0; xlist && n < nxlist; n++) {
  1320. if (!xlist[n]) {
  1321.     debug(F101,"fileselect xlist empty",0,n);
  1322.     break;
  1323. }
  1324. if (ckmatch(xlist[n],f,filecase,2+1)) {
  1325.     debug(F111,"fileselect xlist",xlist[n],n);
  1326.     debug(F110,"fileselect skipping",f,0);
  1327.     return(0);
  1328. }
  1329.     }
  1330.     debug(F110,"fileselect selecting",f,0);
  1331.     return(1);
  1332. }
  1333. /* C K R A D I X  --  Radix converter */
  1334. /*
  1335.    Call with:
  1336.      s:   a number in string format.
  1337.      in:  int, specifying the radix of s, 2-36.
  1338.      out: int, specifying the radix to convert to, 2-36.
  1339.    Returns:
  1340.      NULL on error (illegal radix, illegal number, etc.).
  1341.      "-1" on overflow (number too big for unsigned long).
  1342.      Otherwise: Pointer to result.
  1343. */
  1344. #define RXRESULT 127
  1345. static char rxdigits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  1346. static char rxresult[RXRESULT+1];
  1347. char *
  1348. ckradix(s,in,out) char * s; int in, out; {
  1349.     char c, *r = rxresult;
  1350.     int d, minus = 0;
  1351.     unsigned long zz = 0L;
  1352.     long z;
  1353.     if (in < 2 || in > 36) /* Verify legal input radix */
  1354.       return(NULL);
  1355.     if (out < 2 || out > 36) /* and output radix. */
  1356.       return(NULL);
  1357.     if (*s == '+') { /* Get sign if any */
  1358. s++;
  1359.     } else if (*s == '-') {
  1360. minus++;
  1361. s++;
  1362.     }
  1363.     while (*s == SP || *s == '0') /* Trim leading blanks or 0's */
  1364.       s++;
  1365. /*
  1366.   For detecting overflow, we use a signed copy of the unsigned long
  1367.   accumulator.  If it goes negative, we know we'll overflow NEXT time
  1368.   through the loop.
  1369. */
  1370.     for (; *s;  s++) { /* Convert from input radix to */
  1371. c = *s; /* unsigned long */
  1372. if (islower(c)) c = toupper(c);
  1373. if (c >= '0' && c <= '9')
  1374.   d = c - '0';
  1375. else if (c >= 'A' && c <= 'Z')
  1376.   d = c - 'A' + 10;
  1377. else
  1378.   return(NULL);
  1379. zz = zz * in + d;
  1380. if (z < 0L) /* Clever(?) overflow detector */
  1381.   return("-1");
  1382.         z = zz;
  1383.     }
  1384.     if (!zz) return("0");
  1385.     r = &rxresult[RXRESULT]; /* Convert from unsigned long */
  1386.     *r-- = NUL; /* to output radix. */
  1387.     while (zz > 0 && r > rxresult) {
  1388. d = zz % out;
  1389. *r-- = rxdigits[d];
  1390. zz = zz / out;
  1391.     }
  1392.     if (minus) *r-- = '-'; /* Replace original sign */
  1393.     return((char *)(r+1));
  1394. }
  1395. #ifndef NOB64
  1396. /* Base-64 conversion routines */
  1397. static char b64[] = { /* Encoding vector */
  1398. #ifdef pdp11
  1399.   "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
  1400. #else
  1401.   'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S',
  1402.   'T','U','V','W','X','Y','Z','a','b','c','d','e','f','g','h','i','j','k','l',
  1403.   'm','n','o','p','q','r','s','t','u','v','w','x','y','z','0','1','2','3','4',
  1404.   '5','6','7','8','9','+','/','=',''
  1405. #endif /* pdp11 */
  1406. };
  1407. static int b64tbl[] = { /* Decoding vector */
  1408.     -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  1409.     -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
  1410.     -2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
  1411.     52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -2, -1, -1,
  1412.     -1,  0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14,
  1413.     15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
  1414.     -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  1415.     41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1,
  1416.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  1417.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  1418.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  1419.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  1420.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  1421.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  1422.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  1423.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
  1424. };
  1425. /*
  1426.    B 8 T O B 6 4  --  Converts 8-bit data to Base64 encoding.
  1427.    Call with:
  1428.      s   = Pointer to 8-bit data;
  1429.      n   = Number of source bytes to encode (SEE NOTE).
  1430.            If it's a null-terminated string, you can use -1 here.
  1431.      out = Address of output buffer.
  1432.      len = Length of output buffer (should > 4/3 longer than input).
  1433.    Returns:
  1434.      >= 0 if OK, number of bytes placed in output buffer,
  1435.           with the subsequent byte set to NUL if space permits.
  1436.      -1 on error (output buffer space exhausted).
  1437.    NOTE:
  1438.      If this function is to be called repeatedly, e.g. to encode a data
  1439.      stream a chunk at a time, the source length must be a multiple of 3
  1440.      in all calls but the final one to avoid the generation of extraneous
  1441.      pad characters that would throw the decoder out of sync.  When encoding
  1442.      only a single string, this is not a consideration.  No internal state
  1443.      is kept, so there is no reset function.
  1444. */
  1445. int
  1446. b8tob64(s,n,out,len) char * s,* out; int n, len; {
  1447.     int b3, b4, i, x = 0;
  1448.     unsigned int t;
  1449.     if (n < 0) n = strlen(s);
  1450.     for (i = 0; i < n; i += 3,x += 4) { /* Loop through source bytes */
  1451. b3 = b4 = 0;
  1452. t = (unsigned)((unsigned)((unsigned)s[i] & 0xff) << 8);
  1453. if (n - 1 > i) { /* Do we have another after this? */
  1454.             t |= (unsigned)(s[i+1] & 0xff); /* Yes, OR it in */
  1455.             b3 = 1; /* And remember */
  1456.         }
  1457.         t <<= 8; /* Move over */
  1458.         if (n - 2 > i) { /* Another one after that? */
  1459.             t |= (unsigned)(s[i+2] & 0xff); /* Yes, OR it in */
  1460.             b4 = 1; /* and remember */
  1461.         }
  1462. if (x + 4 > len) /* Check output space */
  1463.   return(-1);
  1464. out[x+3] = b64[b4 ? (t & 0x3f) : 64]; /* 64 = code for '=' */
  1465.         t >>= 6;
  1466.         out[x+2] = b64[b3 ? (t & 0x3f) : 64];
  1467.         t >>= 6;
  1468.         out[x+1] = b64[t & 0x3f];
  1469.         t >>= 6;
  1470.         out[x]   = b64[t & 0x3f];
  1471.     }
  1472.     if (x < len) out[x] = NUL; /* Null-terminate the string */
  1473.     return(x);
  1474. }
  1475. /*
  1476.    B 6 4 T O B 8  --  Converts Base64 string to 8-bit data.
  1477.    Call with:
  1478.      s   = pointer to Base64 string (whitespace ignored).
  1479.      n   = length of string, or -1 if null terminated, or 0 to reset.
  1480.      out = address of output buffer.
  1481.      len = length of output buffer.
  1482.    Returns:
  1483.      >= 0 if OK, number of bytes placed in output buffer,
  1484.           with the subsequent byte set to NUL if space permits.
  1485.      <  0 on error:
  1486.        -1 = output buffer too small for input.
  1487.        -2 = input contains illegal characters.
  1488.        -3 = internal coding error.
  1489.    NOTE:
  1490.      Can be called repeatedly to decode a Base64 stream, one chunk at a
  1491.      time.  However, if it is to be called for multiple streams in
  1492.      succession, its internal state must be reset at the beginning of
  1493.      the new stream.
  1494. */
  1495. int
  1496. b64tob8(s,n,out,len) char * s,* out; int len; { /* Decode */
  1497.     static int bits = 0;
  1498.     static unsigned int r = 0;
  1499.     int i, k = 0, x, t;
  1500.     unsigned char c;
  1501.     if (n == 0) { /* Reset state */
  1502. bits = 0;
  1503. r = 0;
  1504. return(0);
  1505.     }
  1506.     x = (n < 0) ? strlen(s) : n; /* Source length */
  1507.     n = ((x + 3) / 4) * 3; /* Compute destination length */
  1508.     if (x > 0 && s[x-1] == '=') n--; /* Account for padding */
  1509.     if (x > 1 && s[x-2] == '=') n--;
  1510.     if (n > len) /* Destination not big enough */
  1511.       return(-1); /* Fail */
  1512.     for (i = 0; i < x; i++) { /* Loop thru source */
  1513. c = (unsigned)s[i]; /* Next char */
  1514.         t = b64tbl[c]; /* Code for this char */
  1515. if (t == -2) { /* Whitespace or Ctrl */
  1516.     n--; /* Ignore */
  1517.     continue;
  1518. } else if (t == -1) { /* Illegal code */
  1519.     return(-2); /* Fail. */
  1520. } else if (t > 63 || t < 0) /* Illegal value */
  1521.   return(-3); /* fail. */
  1522. bits += 6; /* Count bits */
  1523. r <<= 6; /* Make space */
  1524. r |= (unsigned) t; /* OR in new code */
  1525. if (bits >= 8) { /* Have a byte yet? */
  1526.     bits -= 8; /* Output it */
  1527.     c = (unsigned) ((r >> bits) & 0xff);
  1528.     out[k++] = c;
  1529. }
  1530.     }
  1531.     if (k < len) out[k] = NUL; /* Null-terminate in case it's */
  1532.     return(k); /* a text string */
  1533. }
  1534. #endif /* NOB64 */
  1535. /* C H K N U M  --  See if argument string is an integer  */
  1536. /* Returns 1 if OK, zero if not OK */
  1537. /* If OK, string should be acceptable to atoi() */
  1538. /* Allows leading space, sign */
  1539. int
  1540. chknum(s) char *s; { /* Check Numeric String */
  1541.     int x = 0; /* Flag for past leading space */
  1542.     int y = 0; /* Flag for digit seen */
  1543.     char c;
  1544.     debug(F110,"chknum",s,0);
  1545.     while (c = *s++) { /* For each character in the string */
  1546. switch (c) {
  1547.   case SP: /* Allow leading spaces */
  1548.   case HT:
  1549.     if (x == 0) continue;
  1550.     else return(0);
  1551.   case '+': /* Allow leading sign */
  1552.   case '-':
  1553.     if (x == 0) x = 1;
  1554.     else return(0);
  1555.     break;
  1556.   default: /* After that, only decimal digits */
  1557.     if (c >= '0' && c <= '9') {
  1558. x = y = 1;
  1559. continue;
  1560.     } else return(0);
  1561. }
  1562.     }
  1563.     return(y);
  1564. }
  1565. /*  R D I G I T S  -- Verify that all characters in arg ARE DIGITS  */
  1566. /*  Returns 1 if so, 0 if not or if string is empty */
  1567. int
  1568. rdigits(s) char *s; {
  1569.     if (!s) return(0);
  1570.     do {
  1571.         if (!isdigit(*s)) return(0);
  1572.         s++;
  1573.     } while (*s);
  1574.     return(1);
  1575. }
  1576. /*  P A R N A M  --  Return parity name */
  1577. char *
  1578. #ifdef CK_ANSIC
  1579. parnam(char c)
  1580. #else
  1581. parnam(c) char c;
  1582. #endif /* CK_ANSIC */
  1583. /* parnam */ {
  1584.     switch (c) {
  1585. case 'e': return("even");
  1586. case 'o': return("odd");
  1587. case 'm': return("mark");
  1588. case 's': return("space");
  1589. case 0:   return("none");
  1590. default:  return("invalid");
  1591.     }
  1592. }
  1593. char * /* Convert seconds to hh:mm:ss */
  1594. #ifdef CK_ANSIC
  1595. hhmmss(long x)
  1596. #else
  1597. hhmmss(x) long x;
  1598. #endif /* CK_ANSIC */
  1599. /* hhmmss(x) */ {
  1600.     static char buf[10];
  1601.     long s, h, m;
  1602.     h = x / 3600L; /* Hours */
  1603.     x = x % 3600L;
  1604.     m = x / 60L; /* Minutes */
  1605.     s = x % 60L; /* Seconds */
  1606.     if (x > -1L)
  1607.       sprintf(buf,"%02ld:%02ld:%02ld",h,m,s);
  1608.     else
  1609.       buf[0] = NUL;
  1610.     return((char *)buf);
  1611. }
  1612. /* L S E T  --  Set s into p, right padding to length n with char c; */
  1613. /*
  1614.    s is a NUL-terminated string.
  1615.    If length(s) > n, only n bytes are moved.
  1616.    The result is NOT NUL terminated unless c == NUL and length(s) < n.
  1617.    The intended of this routine is for filling in fixed-length record fields.
  1618. */
  1619. VOID
  1620. lset(p,s,n,c) char *s; char *p; int n; int c; {
  1621.     int x;
  1622. #ifndef USE_MEMCPY
  1623.     int i;
  1624. #endif /* USE_MEMCPY */
  1625.     if (!s) s = "";
  1626.     x = strlen(s);
  1627.     if (x > n) x = n;
  1628. #ifdef USE_MEMCPY
  1629.     memcpy(p,s,x);
  1630.     if (n > x)
  1631.       memset(p+x,c,n-x);
  1632. #else
  1633.     for (i = 0; i < x; i++)
  1634.       *p++ = *s++;
  1635.     for (; i < n; i++)
  1636.       *p++ = c;
  1637. #endif /* USE_MEMCPY */
  1638. }
  1639. /* R S E T  --  Right-adjust s in p, left padding to length n with char c */
  1640. VOID
  1641. rset(p,s,n,c) char *s; char *p; int n; int c; {
  1642.     int x;
  1643. #ifndef USE_MEMCPY
  1644.     int i;
  1645. #endif /* USE_MEMCPY */
  1646.     if (!s) s = "";
  1647.     x = strlen(s);
  1648.     if (x > n) x = n;
  1649. #ifdef USE_MEMCPY
  1650.     memset(p,c,n-x);
  1651.     memcpy(p+n-x,s,x);
  1652. #else
  1653.     for (i = 0; i < (n - x); i++)
  1654.       *p++ = c;
  1655.     for (; i < n; i++)
  1656.       *p++ = *s++;
  1657. #endif /* USE_MEMCPY */
  1658. }
  1659. /*  U L O N G T O H E X  --  Unsigned long to hex  */
  1660. /*
  1661.   Converts unsigned long arg to hex and returns string pointer to
  1662.   rightmost n hex digits left padded with 0's.  Allows for longs
  1663.   up to 64 bits.  Returns pointer to result.
  1664. */
  1665. char *
  1666. ulongtohex(z,n) unsigned long z; int n; {
  1667.     static char hexbuf[17];
  1668.     int i = 16, x, k = 0;
  1669.     hexbuf[16] = '';
  1670.     if (n > 16) n = 16;
  1671.     k = 2 * (sizeof(long));
  1672.     for (i = 0; i < n; i++) {
  1673. if (i > k || z == 0) {
  1674.     hexbuf[15-i] = '0';
  1675. } else {
  1676.     x = z & 0x0f;
  1677.     z = z >> 4;
  1678.     hexbuf[15-i] = x + ((x < 10) ? '0' : 0x37);
  1679. }
  1680.     }
  1681.     return((char *)(&hexbuf[16-i]));
  1682. }
  1683. /*  H E X T O U L O N G  --  Hex string to unsigned long  */
  1684. /*
  1685.   Converts n chars from s from hex to unsigned long.
  1686.   Returns:
  1687.    0L or positive, good result (0L is returned if arg is NULL or empty).
  1688.   -1L on error: non-hex arg or overflow.
  1689. */
  1690. long
  1691. hextoulong(s,n) char *s; int n; {
  1692.     char buf[64];
  1693.     unsigned long result = 0L;
  1694.     int d, count = 0, i;
  1695.     int flag = 0;
  1696.     if (!s) s = "";
  1697.     if (!*s) {
  1698. return(0L);
  1699.     }
  1700.     if (n < 1)
  1701.       return(0L);
  1702.     if (n > 63) n = 63;
  1703.     strncpy(buf,s,n);
  1704.     buf[n] = '';
  1705.     s = buf;
  1706.     while (*s) {
  1707. d = *s++;
  1708. if ((d == '0' || d == ' ')) {
  1709.     if (!flag)
  1710.       continue;
  1711. } else {
  1712.     flag = 1;
  1713. }
  1714. if (islower(d))
  1715.   d = toupper(d);
  1716. if (d >= '0' && d <= '9') {
  1717.     d -= 0x30;
  1718. } else if (d >= 'A' && d <= 'F') {
  1719.     d -= 0x37;
  1720. } else {
  1721.     return(-1L);
  1722. }
  1723. if (++count > (sizeof(long) * 2))
  1724.   return(-1L);
  1725. result = (result << 4) | (d & 0x0f);
  1726.     }
  1727.     return(result);
  1728. }
  1729. /* End of ckclib.c */