home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / old / ckermit5a188 / ckuusx.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  64KB  |  2,288 lines

  1. /*  C K U U S X --  "User Interface" common functions. */
  2.  
  3. /*
  4.   Author: Frank da Cruz (fdc@columbia.edu, FDCCU@CUVMA.BITNET),
  5.   Columbia University Center for Computing Activities.
  6.   First released January 1985.
  7.   Copyright (C) 1985, 1992, Trustees of Columbia University in the City of New
  8.   York.  Permission is granted to any individual or institution to use this
  9.   software as long as it is not sold for profit.  This copyright notice must be
  10.   retained.  This software may not be included in commercial products without
  11.   written permission of Columbia University.
  12. */
  13.  
  14. /*
  15.   This module contains user interface functions needed by both the interactive
  16.   user interface and the command-line-only user interface.
  17. */
  18.  
  19. /* Includes */
  20.  
  21. #include "ckcdeb.h"
  22. #include "ckcasc.h"
  23. #include "ckcker.h"
  24. #include "ckuusr.h"
  25. #ifndef WINTCP
  26. #include <signal.h>
  27. #endif /* WINTCP */
  28.  
  29. #ifdef VMS
  30. #ifdef WINTCP
  31. #include <descrip.h>
  32. #include <ssdef.h>
  33. #include <stsdef.h>
  34. #include <signal.h>
  35. #else
  36. #include <descrip.h>
  37. #include <ssdef.h>
  38. #include <stsdef.h>
  39. #endif /* WINTCP */
  40. #endif /* VMS */
  41.  
  42. /* Used internally */
  43. _PROTOTYP( VOID screenc, (int, char, long, char *) );
  44. static int ft_win = 0;  /* Fullscreen file transfer display window is active */
  45.  
  46. /* Variables declared here */
  47.  
  48. int fdispla = XYFD_R;            /* File transfer display type */
  49. int tt_crd = 0;                /* Carriage return display */
  50.  
  51. #ifdef DEBUG
  52. char debfil[50];            /* Debugging log file name */
  53. #endif /* DEBUG */
  54.  
  55. #ifdef TLOG
  56. char trafil[50];            /* Transaction log file name */
  57. #endif /* TLOG */
  58.  
  59. char pktfil[50];            /* Packet log file name */
  60. char sesfil[50];            /* Session log file name */
  61.  
  62. #ifndef NOFRILLS
  63. char optbuf[100];            /* Options for MAIL or REMOTE PRINT */
  64. #endif /* NOFRILLS */
  65. char cmdstr[256];            /* Place to build generic command */
  66.  
  67. char fspec[FSPECL];            /* Filename string for \v(filespec) */
  68.  
  69. /*  C C N T A B  --  Names of ASCII control characters 0-31 */
  70.  
  71. char *ccntab[] = { "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  72.  "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
  73.  "DLE", "DC1/XON", "DC2", "DC3/XOFF", "DC4", "NAK", "SYN", "ETB", "CAN",
  74.  "EM", "SUB", "ESC", "FS", "GS", "RS", "US"
  75. };
  76.  
  77. int success = 1,            /* Command success/failure flag */
  78.  
  79. #ifndef NOSPL
  80.     cmdlvl = 0,                /* Command level */
  81. #endif /* NOSPL */
  82.     action,                /* Action selected on command line*/
  83.     sessft = 0,                /* Session log file type, 0 = text */
  84.     pflag = 1,                /* Print prompt */
  85.     msgflg = 1;                /* Print informational messages */
  86.  
  87. #ifndef NOMSEND                /* Multiple SEND */
  88. char *msfiles[MSENDMAX];
  89. #endif /* NOMSEND */
  90.  
  91. /* External variables */
  92.  
  93. #ifndef NODIAL
  94. extern FILE * dialfd;            /* Dialing directory */
  95. #endif /* NODIAL */
  96.  
  97. extern int local, quiet, binary, bctu, rptflg, ebqflg, network, server,
  98.   what, spsiz, urpsiz, wmax, czseen, cxseen, winlo, displa, timint, parity,
  99.   npad, ebq, ebqflg, bctr, rptq, atcapu, lpcapu, swcapu, wslotn, wslotr, rtimo,
  100.   mypadn, sq, capas, rpsiz, tsecs, dfloc, tralog, pktlog, seslog, lscapu,
  101.   xitsta, escape, tlevel, bgset, backgrd, wslots, suspend, srvdis,
  102.   spackets, spktl, rpktl, retrans, wcur, numerrs, fsecs;
  103.  
  104. #ifdef datageneral            /* 2/12/92 ENH */
  105. #include <sysid.h>
  106. extern int con_reads_mt, conint_ch, conint_avl;
  107. #endif /* datageneral */
  108.  
  109. extern long speed, filcnt, ffc, tfc, rptn, fsize;
  110.  
  111. extern CHAR *rdatap, padch, seol, ctlq, mypadc, eol;
  112.  
  113. extern char ttname[], *dftty, *cmarg, **cmlist, *versio, myhost[];
  114. #ifndef NOICP
  115. #ifdef DCMDBUF
  116. extern char *cmdbuf;            /* Command buffer */
  117. #else
  118. extern char cmdbuf[];            /* Command buffer */
  119. #endif /* DCMDBUF */
  120. #endif /* NOICP */
  121.  
  122. #ifndef NOCCTRAP
  123. #include <setjmp.h>            /* Control-C trap */
  124. jmp_buf cmjbuf;
  125. #endif /* NOCCTRAP */
  126.  
  127. #ifndef NOCSETS
  128. #include "ckcxla.h"
  129. extern int fcharset, tcharset;
  130. extern struct csinfo fcsinfo[], tcsinfo[];
  131. #endif /* NOCSETS */
  132.  
  133. /*  P A R N A M  --  Return parity name */
  134.  
  135. char *
  136. #ifdef CK_ANSIC
  137. parnam(char c)
  138. #else
  139. parnam(c) char c;
  140. #endif /* CK_ANSIC */
  141. /* parnam */ {
  142.     switch (c) {
  143.     case 'e': return("even");
  144.     case 'o': return("odd");
  145.     case 'm': return("mark");
  146.     case 's': return("space");
  147.     case 0:   return("none");
  148.     default:  return("invalid");
  149.     }
  150. }
  151.  
  152. /*  S H O M D M  --  Show modem signals  */
  153.  
  154. VOID
  155. shomdm() {
  156. /*
  157.   Note use of "\r\n" to make sure this report prints right, even when
  158.   called during CONNECT mode.
  159. */
  160.     int y;
  161.     y = ttgmdm();
  162.     switch (y) {
  163.       case -3: printf(
  164.              "Modem signals unavailable in this version of Kermit\r\n");
  165.            break;
  166.       case -2: printf("No modem control for this device\r\n"); break;
  167.       case -1: printf("Modem signals unavailable\r\n"); break;
  168.       default:
  169. #ifndef MAC
  170.         printf(
  171.       " Carrier Detect      (CD):  %s\r\n",(y & BM_DCD) ? "On": "Off");
  172.     printf(
  173.           " Dataset Ready       (DSR): %s\r\n",(y & BM_DSR) ? "On": "Off");
  174. #endif /* MAC */
  175.     printf(
  176.           " Clear To Send       (CTS): %s\r\n",(y & BM_CTS) ? "On": "Off");
  177. #ifndef MAC
  178.         printf(
  179.           " Ring Indicator      (RI):  %s\r\n",(y & BM_RNG) ? "On": "Off");
  180. #endif /* MAC */
  181.         printf(
  182.           " Data Terminal Ready (DTR): %s\r\n",(y & BM_DTR) ? "On": "Off");
  183. #ifndef MAC
  184.         printf(
  185.           " Request to Send     (RTS): %s\r\n",(y & BM_RTS) ? "On": "Off");
  186. #endif /* MAC */
  187.     }
  188. }
  189.  
  190. /*  S D E B U  -- Record spar results in debugging log  */
  191.  
  192. VOID
  193. sdebu(len) int len; {
  194.     debug(F111,"spar: data",(char *) rdatap,len);
  195.     debug(F101," spsiz ","", spsiz);
  196.     debug(F101," timint","",timint);
  197.     debug(F101," npad  ","",  npad);
  198.     debug(F101," padch ","", padch);
  199.     debug(F101," seol  ","",  seol);
  200.     debug(F101," ctlq  ","",  ctlq);
  201.     debug(F101," ebq   ","",   ebq);
  202.     debug(F101," ebqflg","",ebqflg);
  203.     debug(F101," bctr  ","",  bctr);
  204.     debug(F101," rptq  ","",  rptq);
  205.     debug(F101," rptflg","",rptflg);
  206.     debug(F101," lscapu","",lscapu);
  207.     debug(F101," atcapu","",atcapu);
  208.     debug(F101," lpcapu","",lpcapu);
  209.     debug(F101," swcapu","",swcapu);
  210.     debug(F101," wslotn","", wslotn);
  211. }
  212. /*  R D E B U -- Debugging display of rpar() values  */
  213.  
  214. VOID
  215. rdebu(d,len) CHAR *d; int len; {
  216.     debug(F111,"rpar: data",d,len);
  217.     debug(F101," rpsiz ","", xunchar(d[0]));
  218.     debug(F101," rtimo ","", rtimo);
  219.     debug(F101," mypadn","",mypadn);
  220.     debug(F101," mypadc","",mypadc);
  221.     debug(F101," eol   ","",   eol);
  222.     debug(F101," ctlq  ","",  ctlq);
  223.     debug(F101," sq    ","",    sq);
  224.     debug(F101," ebq   ","",   ebq);
  225.     debug(F101," ebqflg","",ebqflg);
  226.     debug(F101," bctr  ","",  bctr);
  227.     debug(F101," rptq  ","",  d[8]);
  228.     debug(F101," rptflg","",rptflg);
  229.     debug(F101," capas ","", capas);
  230.     debug(F101," bits  ","",d[capas]);
  231.     debug(F101," lscapu","",lscapu);
  232.     debug(F101," atcapu","",atcapu);
  233.     debug(F101," lpcapu","",lpcapu);
  234.     debug(F101," swcapu","",swcapu);
  235.     debug(F101," wslotr","", wslotr);
  236.     debug(F101," rpsiz(extended)","",rpsiz);
  237. }
  238.  
  239. #ifdef COMMENT
  240. /*  C H K E R R  --  Decide whether to exit upon a protocol error  */
  241.  
  242. VOID
  243. chkerr() {
  244.     if (backgrd && !server) fatal("Protocol error");
  245. }
  246. #endif /* COMMENT */
  247.  
  248. /*  F A T A L  --  Fatal error message */
  249.  
  250. VOID
  251. fatal(msg) char *msg; {
  252. #ifdef VMS
  253. #ifndef NOICP
  254.     if (strncmp(msg,"%CKERMIT",8)) {
  255.     sprintf(cmdbuf,"%%CKERMIT-E-FATAL, %s",msg);
  256.     msg = cmdbuf;
  257.     }
  258. #endif /* NOICP */
  259.     conoll(msg);
  260. #else
  261.     screen(SCR_EM,0,0L,msg);
  262. #endif /* VMS */
  263.     debug(F110,"fatal",msg,0);
  264.     tlog(F110,"Fatal:",msg,0L);
  265.     doexit(BAD_EXIT,xitsta | 1);    /* Exit indicating failure */
  266. }
  267.  
  268. /*  B L D L E N  --  Make length-encoded copy of string  */
  269.  
  270. char *
  271. bldlen(str,dest) char *str, *dest; {
  272.     int len;
  273.     len = (int)strlen(str);
  274.     *dest = tochar(len);
  275.     strcpy(dest+1,str);
  276.     return(dest+len+1);
  277. }
  278.  
  279.  
  280. /*  S E T G E N  --  Construct a generic command  */
  281.  
  282. CHAR
  283. #ifdef CK_ANSIC
  284. setgen(char type,char * arg1, char * arg2, char * arg3)
  285. #else
  286. setgen(type,arg1,arg2,arg3) char type, *arg1, *arg2, *arg3;
  287. #endif /* CK_ANSIC */
  288. /* setgen */ {
  289.     char *upstr, *cp;
  290.  
  291.     cp = cmdstr;
  292.     *cp++ = type;
  293.     *cp = NUL;
  294.     if (*arg1 != NUL) {
  295.     upstr = bldlen(arg1,cp);
  296.     if (*arg2 != NUL) {
  297.         upstr = bldlen(arg2,upstr);
  298.         if (*arg3 != NUL) bldlen(arg3,upstr);
  299.     }
  300.     }
  301.     cmarg = cmdstr;
  302.     debug(F110,"setgen",cmarg,0);
  303.  
  304.     return('g');
  305. }
  306.  
  307. #ifndef NOMSEND
  308. static char *mgbufp = NULL;
  309.  
  310. /*  F N P A R S E  --  */
  311.  
  312. /*
  313.   Argument is a character string containing one or more filespecs.
  314.   This function breaks the string apart into an array of pointers, one
  315.   to each filespec, and returns the number of filespecs.  Used by server
  316.   when it receives a GET command to allow it to process multiple file
  317.   specifications in one transaction.  Sets cmlist to point to a list of
  318.   file pointers, exactly as if they were command line arguments.
  319.  
  320.   This version of fnparse treats spaces as filename separators.  If your
  321.   operating system allows spaces in filenames, you'll need a different
  322.   separator.
  323.  
  324.   This version of fnparse mallocs a string buffer to contain the names.  It
  325.   cannot assume that the string that is pointed to by the argument is safe.
  326. */
  327. int
  328. fnparse(string) char *string; {
  329.     char *p, *s, *q;
  330.     int r = 0, x;            /* Return code */
  331.  
  332.     if (mgbufp) free(mgbufp);        /* Free this from last time. */
  333.     mgbufp = malloc((int)strlen(string)+2);
  334.     if (!mgbufp) {
  335.     debug(F100,"fnparse malloc error","",0);
  336.     return(0);
  337.     }    
  338. #ifndef NOICP
  339. #ifndef NOSPL
  340.     strncpy(fspec,string,FSPECL);    /* Make copy for \v(filespec) */
  341. #endif /* NOSPL */
  342. #endif /* NOICP */
  343.     s = string;                /* Input string */
  344.     p = q = mgbufp;            /* Point to the copy */
  345.     r = 0;                /* Initialize our return code */
  346.     while (*s == SP || *s == HT)    /* Skip leading spaces and tabs */
  347.       s++;
  348.     for (x = strlen(s);            /* Strip trailing spaces */
  349.      (x > 1) && (s[x-1] == SP || s[x-1] == HT);
  350.      x--)
  351.       s[x-1] = NUL;
  352.     while (1) {                /* Loop through rest of string */
  353.     if (*s == CMDQ) {        /* Backslash (quote character)? */
  354.         if ((x = xxesc(&s)) > -1) {    /* Go interpret it. */
  355.         *q++ = (char) x;    /* Numeric backslash code, ok */
  356.         } else {            /* Just let it quote next char */
  357.         s++;            /* get past the backslash */
  358.         *q++ = *s++;        /* deposit next char */
  359.         }
  360.         continue;
  361.     } else if (*s == SP || *s == NUL) { /* Unquoted space or NUL? */
  362.         *q++ = NUL;            /* End of output filename. */
  363.         msfiles[r] = p;        /* Add this filename to the list */
  364.         debug(F111,"fnparse",msfiles[r],r);
  365.         r++;            /* Count it */
  366.         if (*s == NUL) break;    /* End of string? */
  367.         while (*s == SP) s++;    /* Skip repeated spaces */
  368.         p = q;            /* Start of next name */
  369.         continue;
  370.     } else *q++ = *s;        /* Otherwise copy the character */
  371.     s++;                /* Next input character */
  372.     }
  373.     debug(F101,"fnparse r","",r);
  374.     msfiles[r] = "";            /* Put empty string at end of list */
  375.     cmlist = msfiles;
  376.     return(r);
  377. }
  378. #endif /* NOMSEND */
  379.  
  380. char *                    /* dbchr() for DEBUG SESSION */
  381. dbchr(c) int c; {
  382.     static char s[8];
  383.     char *cp = s;
  384.  
  385.     c &= 0xff;
  386.     if (c & 0x80) {            /* 8th bit on */
  387.     *cp++ = '~';
  388.     c &= 0x7f;
  389.     }
  390.     if (c < SP) {            /* Control character */
  391.     *cp++ = '^';
  392.     *cp++ = ctl(c);
  393.     } else if (c == DEL) {
  394.     *cp++ = '^';
  395.     *cp++ = '?';
  396.     } else {                /* Printing character */
  397.     *cp++ = c;
  398.     }
  399.     *cp = '\0';                /* Terminate string */
  400.     cp = s;                /* Return pointer to it */
  401.     return(cp);
  402. }
  403.  
  404. /*  C K H O S T  --  Get name of local host (where C-Kermit is running)  */
  405.  
  406. /*
  407.   Call with pointer to buffer to put hostname in, and length of buffer.
  408.   Copies hostname into buffer on success, puts null string in buffer on
  409.   failure.
  410. */
  411. #ifdef BSD44
  412. #define BSD4
  413. #undef ATTSV
  414. #endif /* BSD44 */
  415.  
  416. #ifdef ATTSV
  417. #include <sys/utsname.h>
  418. #endif /* ATTSV */
  419.  
  420. VOID
  421. ckhost(vvbuf,vvlen) char * vvbuf; int vvlen; {
  422.     char *g;
  423. #ifdef VMS
  424.     int x;
  425. #endif /* VMS */
  426. #ifdef ATTSV
  427.     struct utsname hname;
  428. #endif /* ATTSV */
  429. #ifdef datageneral
  430.     int ac0 = (char *) vvbuf, ac1 = -1, ac2 = 0;
  431. #endif /* datageneral */
  432.  
  433.     *vvbuf = NUL;
  434. #ifndef OXOS
  435. #ifdef ATTSV
  436.     if (uname(&hname) > -1) strncpy(vvbuf,hname.nodename,vvlen);
  437. #else
  438. #ifdef BSD4
  439.     if (gethostname(vvbuf,vvlen) < 0) *vvbuf = NUL;
  440. #else
  441. #ifdef VMS
  442.     g = getenv("SYS$NODE");
  443.     if (g) strncpy(vvbuf,g,vvlen);
  444.     x = (int)strlen(vvbuf);
  445.     if (x > 1 && vvbuf[x-1] == ':' && vvbuf[x-2] == ':') vvbuf[x-2] = NUL;
  446. #else
  447. #ifdef datageneral
  448.     if (sys($HNAME,&ac0,&ac1,&ac2) == 0) /* successful */
  449.         vvlen = ac2 + 1;        /* enh - have to add one */
  450. #else
  451. #ifdef OS2                /* OS/2 */
  452.     g = getenv("SYSTEMNAME");
  453.     if (!g) g = getenv("HOSTNAME");
  454.     if (g) strncpy(vvbuf,g,vvlen);
  455. #endif /* OS2 */
  456. #endif /* datageneral */
  457. #endif /* VMS */
  458. #endif /* BSD4 */
  459. #endif /* ATTSV */
  460. #else /* OXOS */
  461.     /* If TCP/IP is not installed, gethostname() fails, use uname() */
  462.     if (gethostname(vvbuf,vvlen) < 0) {
  463.     if (uname(&hname) > -1)
  464.         strncpy(vvbuf,hname.nodename,vvlen);
  465.     else
  466.         *vvbuf = NUL;
  467.     }
  468. #endif /* OXOS */
  469.     if (*vvbuf == NUL) {        /* If it's still empty */
  470.         g = getenv("HOST");        /* try this */
  471.         if (g) strncpy(vvbuf,g,vvlen);
  472.     }
  473.     vvbuf[vvlen-1] = NUL;        /* Make sure result is terminated. */
  474. }
  475. #ifdef BSD44
  476. #undef BSD4
  477. #define ATTSV
  478. #endif /* BSD44 */
  479.  
  480.  
  481. #ifndef NOSPL
  482. #define ASKMORE
  483. #endif /* NOSPL */
  484. #ifndef NOHELP
  485. #ifndef ASKMORE
  486. #define ASKMORE
  487. #endif /* ASKMORE */
  488. #endif /* NOHELP */
  489.  
  490. #ifdef ASKMORE
  491. /*
  492.   A S K M O R E  --  Poor person's "more".
  493.   Returns 0 if no more, 1 if more wanted.
  494.   Presently used by SHO MAC, SHO GLOB, SHO VAR, and HELP, so compiled out if
  495.   those options are also compiled out.
  496. */
  497. int
  498. askmore() {
  499.     char c; int rv;
  500.  
  501.     rv = -1;
  502.     while (rv < 0) {
  503. #ifndef OS2
  504.     printf("more? ");
  505. #ifdef UNIX
  506. #ifdef NOSETBUF
  507.     fflush(stdout);
  508. #endif /* NOSETBUF */
  509. #endif /* UNIX */
  510. #else
  511.     printf("more? (Y or space-bar for yes, N for no) ");
  512.     fflush(stdout);
  513. #endif /* OS2 */
  514.     c = coninc(0);
  515.     switch (c) {
  516.       /* Yes */
  517.       case SP: case 'y': case 'Y': case 012:  case 015:
  518.         printf("\015      \015");
  519.         rv = 1;
  520.         break;
  521.           /* No */
  522.       case 'n': case 'N': case 'q': case 'Q':
  523.         printf("\015\012");
  524.         rv = 0;
  525.         break;
  526.       /* Invalid answer */
  527.       default:
  528.         printf("Y or space-bar for yes, N for no\n");
  529.         continue;
  530.     }
  531. #ifdef OS2
  532.     printf("\r                                         \r");
  533.     fflush(stdout);
  534. #endif /* OS2 */
  535.     }
  536.     return(rv);
  537. }
  538. #endif /* ASKMORE */
  539.  
  540. /*  T R A P  --  Terminal interrupt handler */
  541.  
  542. SIGTYP
  543. trap(sig) int sig; {
  544. #ifdef VMS
  545.     int i; FILE *f;
  546. #endif /* VMS */
  547. #ifdef __EMX__
  548.   signal(SIGINT, SIG_ACK);
  549. #endif
  550. #ifdef GEMDOS
  551. /* GEM is not reentrant, no i/o from interrupt level */
  552.     longjmp(cmjbuf,1);            /* Jump back to parser now! */
  553. #endif /* GEMDOS */
  554.     debug(F101,"^C trap() caught signal","",sig);
  555.     zclose(ZIFILE);            /* If we were transferring a file, */
  556.     zclose(ZOFILE);            /* close it. */
  557. #ifdef VMS
  558. /*
  559.   Fix terminal.
  560. */
  561.     if (ft_win) {            /* If curses window open */
  562.     screen(SCR_CW,0,0L,"");        /* Close it */
  563.     conres();            /* Restore terminal */
  564.     i = printf("^C...");        /* Echo ^C to standard output */
  565.     } else {
  566.     conres();
  567.     i = printf("^C...\n");        /* Echo ^C to standard output */
  568.     }
  569.     if (i < 1 && ferror(stdout)) {    /* If there was an error */
  570.     fclose(stdout);            /* close standard output */
  571.     f = fopen(dftty, "w");        /* open the controlling terminal */
  572.     if (f) stdout = f;        /* and make it standard output */
  573.     printf("^C...\n");        /* and echo the ^C again. */
  574.     }
  575. #else                    /* Not VMS */
  576.     if (ft_win) {            /* If curses window open, */
  577.     screen(SCR_CW,0,0L,"");        /* close it. */
  578.     printf("^C...");        /* Echo ^C to standard output */
  579.     } else {
  580.     printf("^C...\n");
  581.     }
  582. #endif /* VMS */
  583. #ifdef datageneral
  584.     connoi_mt();             /* Kill asynch task that listens to */
  585.     ttimoff();                /* the keyboard */
  586.     conres();
  587. #endif /* datageneral */
  588.  
  589. #ifndef NOCCTRAP
  590. #ifdef UNIX
  591.     ttimoff();                /* Turn off any timer interrupts */
  592. #endif /* UNIX */
  593. #ifdef OSK
  594.     ttimoff();                /* Turn off any timer interrupts */
  595.     sigmask(-1);
  596. /*
  597.   We are in an intercept routine but do not perform a F$RTE (done implicitly
  598.   but rts).  We have to decrement the sigmask as F$RTE does.  Warning:
  599.   longjump only restores the cpu registers, NOT the fpu registers.  So don't
  600.   use fpu at all or at least don't use common fpu (double or float) register
  601.   variables.
  602. */
  603. #endif /* OSK */
  604.     longjmp(cmjbuf,1);            /* Jump back to parser */
  605. #else
  606. /* No Ctrl-C trap, just exit. */
  607. #ifdef CK_CURSES            /* Curses support? */
  608.     screen(SCR_CW,0,0L,"");        /* Close curses window */
  609. #endif /* CK_CURSES */
  610.     doexit(BAD_EXIT,what);        /* Exit poorly */
  611. #endif /* NOCCTRAP */
  612.     SIGRETURN;
  613. }
  614.  
  615. /*  C C _ C L E A N  --  Cleanup after terminal interrupt handler */
  616.  
  617. #ifdef GEMDOS
  618. int
  619. cc_clean() {
  620.     zclose(ZIFILE);            /* If we were transferring a file, */
  621.     zclose(ZOFILE);            /* close it. */
  622.     printf("^C...\n");            /* Not VMS, no problem... */
  623. }
  624. #endif /* GEMDOS */
  625.  
  626.  
  627. /*  S T P T R A P -- Handle SIGTSTP (suspend) signals */
  628.  
  629. SIGTYP
  630. stptrap(sig) int sig; {
  631. #ifndef NOJC
  632.     int x; extern int cmflgs;
  633.     debug(F101,"stptrap() caught signal","",sig);
  634.     if (!suspend) {
  635.     printf("\r\nsuspend disabled\r\n");
  636. #ifndef NOICP
  637.     if (what == W_COMMAND) {    /* If we were parsing commands */
  638.         prompt(xxstring);        /* reissue the prompt and partial */
  639.         if (!cmflgs)        /* command (if any) */
  640.           printf("%s",cmdbuf);
  641.     }
  642. #endif /* NOICP */
  643.     } else {
  644.     conres();            /* Reset the console */
  645. #ifndef OS2
  646.     /* Flush pending output first, in case we are continued */
  647.     /* in the background, which could make us block */
  648.     fflush(stdout);
  649.  
  650.     x = psuspend(suspend);        /* Try to suspend. */
  651.     if (x < 0)
  652. #endif /* OS2 */
  653.       printf("Job control not supported\r\n");
  654.     conint(trap,stptrap);        /* Rearm the trap. */
  655.     debug(F100,"stptrap back from suspend","",0);
  656.     switch (what) {
  657.       case W_CONNECT:        /* If suspended during CONNECT? */
  658.         conbin((char)escape);    /* put console back in binary mode */
  659.         debug(F100,"stptrap W_CONNECT","",0);
  660.         break;
  661. #ifndef NOICP
  662.       case W_COMMAND:        /* Suspended in command mode */
  663.         debug(F101,"stptrap W_COMMAND pflag","",pflag);
  664.         concb((char)escape);    /* Put back CBREAK tty mode */
  665.         if (pflag) {        /* If command parsing was */
  666.         prompt(xxstring);    /* reissue the prompt and partial */
  667.         if (!cmflgs)        /* command (if any) */
  668.           printf("%s",cmdbuf);
  669.         }
  670.         break;
  671. #endif /* NOICP */
  672.       default:            /* All other cases... */
  673.         debug(F100,"stptrap default","",0);
  674.         concb((char)escape);    /* Put it back in CBREAK mode */
  675.         break;
  676.     }
  677.     }
  678. #endif /* NOJC */
  679.     SIGRETURN;
  680. }
  681.  
  682. #ifndef MAC
  683. /*
  684.   The rest of this file is for all implementations but the Macintosh.
  685. */
  686.  
  687. /*  C H K I N T  --  Check for console interrupts  */
  688.  
  689. int
  690. chkint() {
  691.     int ch, cn; long zz;
  692.  
  693.     if ((!local) || (quiet)) return(0);    /* Only do this if local & not quiet */
  694. #ifdef datageneral
  695.     if (con_reads_mt)                   /* if conint_mt task is active */
  696.         if (conint_avl) {               /* and there's an interrupt pending */
  697.             cn = 1;                     /* process it */
  698.             ch = conint_ch;
  699.             conint_avl = 0;             /* turn off flag so conint_mt can */
  700.         } else                          /* proceed */
  701.             return(0);
  702.     else                                /* if conint_mt not active */
  703.         if ((ch = coninc(2)) < 0)       /* try to get char manually */
  704.             return(0);                  /* I/O error, or no data */
  705.         else                            /* if successful, set cn so we */
  706.             cn = 1;                     /* know we got one */
  707.     debug(F101,"chkint got keyboard character",ch,cn);
  708. #else
  709.     cn = conchk();            /* Any input waiting? */
  710.     debug(F101,"conchk","",cn);
  711.     if (cn < 1) return(0);
  712.     if ((ch = coninc(5)) < 0) return(0);
  713. #endif /* datageneral */
  714.  
  715.     switch (ch & 0177) {
  716.       case 'A': case 'a': case 0001:        /* Status report */
  717.     if (fdispla != XYFD_R && fdispla != XYFD_S)
  718.       return(0);                            /* Only for serial or simple */
  719.     screen(SCR_TN,0,0l,"Status report:");
  720.     screen(SCR_TN,0,0l," file type: ");
  721.     if (binary) {
  722. #ifdef VMS
  723.         if (binary == XYFT_I)        /* VMS-only file types */
  724.           screen(SCR_TZ,0,0l,"image");
  725.         else if (binary == XYFT_L)
  726.           screen(SCR_TZ,0,0l,"labeled");
  727.         else screen(SCR_TZ,0,0l,"binary");
  728. #else
  729.         screen(SCR_TZ,0,0l,"binary");
  730. #endif /* VMS */
  731.     } else {
  732. #ifdef NOCSETS
  733.         screen(SCR_TZ,0,0l,"text");
  734. #else
  735.         screen(SCR_TU,0,0l,"text, ");
  736.         if (tcharset == TC_TRANSP) {
  737.         screen(SCR_TZ,0,0l,"transparent");
  738.         } else {
  739.         if (what == W_SEND) {
  740.             screen(SCR_TZ,0,0l,tcsinfo[tcharset].keyword);
  741.             screen(SCR_TU,0,0l," => ");
  742.             screen(SCR_TZ,0,0l,fcsinfo[fcharset].keyword);
  743.         } else {
  744.             screen(SCR_TZ,0,0l,fcsinfo[fcharset].keyword);
  745.             screen(SCR_TU,0,0l," => ");
  746.             screen(SCR_TZ,0,0l,tcsinfo[tcharset].keyword);
  747.         }
  748.         }
  749. #endif /* NOCSETS */
  750.     }
  751.     screen(SCR_QE,0,filcnt," file number");
  752.     if (fsize) screen(SCR_QE,0,fsize," size");
  753.     screen(SCR_QE,0,ffc,   " characters so far");
  754.     if (fsize > 0L) {
  755.         zz = ( ffc * 100L ) / fsize;
  756.         screen(SCR_QE,0,zz,      " percent done");
  757.     }
  758.     if (bctu == 4) {        /* Block check */
  759.         screen(SCR_TU,0,0L," block check: ");
  760.         screen(SCR_TZ,0,0L,"blank-free-2");
  761.     } else screen(SCR_QE,0,(long)bctu,  " block check");
  762.     screen(SCR_QE,0,(long)rptflg," compression");
  763.     screen(SCR_QE,0,(long)ebqflg," 8th-bit prefixing");
  764.     screen(SCR_QE,0,(long)lscapu," locking shifts");
  765.     if (!network)
  766.       screen(SCR_QE,0, speed, " speed");
  767.     if (what == W_SEND)
  768.       screen(SCR_QE,0,(long)spsiz, " packet length");
  769.     else if (what == W_RECV || what == W_REMO)
  770.       screen(SCR_QE,0,(long)urpsiz," packet length");
  771.     screen(SCR_QE,0,(long)wslots,  " window slots");
  772.     return(0);
  773.  
  774.       case 'B': case 'b': case 0002:    /* Cancel batch */
  775.       case 'Z': case 'z': case 0032:
  776.     screen(SCR_TN,0,0l,"Cancelling Batch ");
  777.     czseen = 1;
  778.     return(0);
  779.  
  780.       case 'F': case 'f': case 0006:    /* Cancel file */
  781.       case 'X': case 'x': case 0030:
  782.     screen(SCR_TN,0,0l,"Cancelling File ");
  783.     cxseen = 1;
  784.     return(0);
  785.  
  786.       case 'R': case 'r': case 0022:    /* Resend */
  787.       case 0015: case 0012:
  788.     screen(SCR_TN,0,0l,"Resending packet ");
  789.     numerrs++;
  790.     resend(winlo);
  791.     return(1);
  792.  
  793.       case 'E': case 'e':        /* Send error packet */
  794.       case 0005:
  795.     return(-1);
  796.  
  797. #ifdef datageneral
  798.       case '\03':                       /* We're not trapping ^C's with */
  799.         trap(0);                        /* signals, so we check here    */
  800. #endif /* datageneral */
  801.  
  802.       default:                /* Anything else, print message */
  803.     intmsg(1L);
  804.     return(0);
  805.     }
  806. }
  807.  
  808. /*  I N T M S G  --  Issue message about terminal interrupts  */
  809.  
  810. VOID
  811. #ifdef CK_ANSIC
  812. intmsg(long n)
  813. #else
  814. intmsg(n) long n;
  815. #endif /* CK_ANSIC */
  816. /* intmsg */ {
  817.     char buf[80];
  818.  
  819.     if (!displa || quiet)        /* Not if we're being quiet */
  820.       return;
  821.     if (server && (!srvdis || n > -1L))    /* Special for server */
  822.       return;
  823.     buf[0] = NUL;            /* Keep compilers happy */
  824. #ifndef OXOS
  825. #ifdef SVORPOSIX
  826.     conchk();                /* Clear out pending escape-signals */
  827. #endif /* SVORPOSIX */
  828. #endif /* ! OXOS */
  829. #ifdef VMS
  830.     conres();                /* So Ctrl-C will work */
  831. #endif /* VMS */
  832.     if ((!server && n == 1L) || (server && n < 0L)) {
  833.  
  834. #ifdef SVORPOSIX            /* We need to signal before kb input */
  835. #ifndef aegis
  836. #ifndef datageneral
  837. #ifndef OXOS
  838.     sprintf(buf,"Type escape character (%s) followed by:",dbchr(escape));
  839.     screen(SCR_TN,0,0l,buf);
  840. #endif /* ! OXOS */
  841. #endif /* datageneral */
  842. #endif /* aegis */
  843. #endif /* SVORPOSIX */
  844.  
  845.  screen(SCR_TN,0,0l,"X to cancel file,  CR to resend current packet");
  846.  screen(SCR_TN,0,0l,"Z to cancel group, A for status report");
  847.  screen(SCR_TN,0,0l,"E to send Error packet, Ctrl-C to quit immediately: ");
  848. /* if (server) */ screen(SCR_TN,0,0l,"");
  849.     }
  850.     else screen(SCR_TU,0,0l," ");
  851. }
  852.  
  853. static int newdpy = 0;            /* New display flag */
  854. static char fbuf[80];            /* Filename buffer */
  855. static char abuf[80];            /* As-name buffer */
  856. static long oldffc = 0L;
  857. static long dots = 0L;
  858. static int hpos = 0;
  859.  
  860. static VOID                /* Initialize Serial or CTR display */
  861. dpyinit() {
  862.     newdpy = 0;                /*  Don't do this again */
  863.     oldffc = 0L;            /*  Reset this */
  864.     dots = 0L;                /*  and this.. */
  865.     conoll("");                        /* New line */
  866.     if (what == W_SEND) conol("Sending: ");         /* Action */
  867.     else if (what == W_RECV) conol("Receiving: ");
  868.     conol(fbuf);
  869.     if (*abuf) conol(" => "); conoll(abuf);         /* Names */
  870.     *fbuf = NUL; *abuf = NUL;
  871.     if (fsize > -1L) {                    /* Size */
  872.     sprintf(fbuf,"Size: %ld, Type: ",fsize);
  873.     conol(fbuf); *fbuf = NUL;
  874.     } else conol("Size: unknown, Type: ");
  875.     if (binary) {                    /* Type */
  876. #ifdef VMS
  877.     if (binary == XYFT_I)        /* VMS-only file types */
  878.       conoll("image");
  879.     else if (binary == XYFT_L)
  880.       conoll("labeled");
  881.     else
  882. #endif /* VMS */
  883.       conoll("binary");
  884.     } else {
  885. #ifdef NOCSETS
  886.     conoll("text");
  887. #else
  888.     conol("text, ");
  889.     if (tcharset == TC_TRANSP) {
  890.         conoll("transparent");
  891.     } else {
  892.         if (what == W_SEND) {
  893.         conol(fcsinfo[fcharset].keyword);
  894.         conol(" => ");
  895.         conoll(tcsinfo[tcharset].keyword);
  896.         } else {
  897.         conol(tcsinfo[tcharset].keyword);
  898.         conol(" => ");
  899.         conoll(fcsinfo[fcharset].keyword);
  900.         }
  901.     }
  902. #endif /* NOCSETS */
  903.     }
  904.     if (fdispla == XYFD_S) {        /* CRT field headings */
  905. /*
  906.   Define CK_CPS to show current transfer rate.
  907.   Leave it undefined to show estimated time remaining.
  908.   Estimated-time-remaining code from Andy Fyfe, not tested on
  909.   pathological cases.
  910. */
  911. #define CK_CPS
  912.  
  913. #ifdef CK_CPS
  914.     conoll("    File   Percent       Packet");
  915.     conoll("    Bytes  Done     CPS  Length");
  916. #else
  917.     conoll("    File   Percent  Secs Packet");
  918.     conoll("    Bytes  Done     Left Length");
  919. #endif /* CK_CPS */
  920.     newdpy = 0;
  921.     }
  922.     hpos = 0;
  923. }
  924.  
  925. /*
  926.   showpkt(c)
  927.   c = completion code: 0 means transfer in progress, nonzero means it's done.
  928.   show the file transfer progress counter and perhaps verbose packet type.
  929.   Original by: Kai Uwe Rommel.
  930. */
  931. VOID
  932. #ifdef CK_ANSIC
  933. showpkt(char c)
  934. #else
  935. showpkt(c) char c;
  936. #endif /* CK_ANSIC */
  937. /* showpkt */ {
  938.  
  939.     if (newdpy)                /* Put up filenames, etc, */
  940.       dpyinit();            /* if they're not there already. */
  941.  
  942.     if (fdispla == XYFD_S) {        /* CRT display */
  943.     char buffer[40];
  944.     long et;            /* Elapsed time, entire batch  */
  945.     long pd;            /* Percent done, this file     */
  946.     long tp;            /* Transfer rate, entire batch */
  947.     long ps;            /* Packet size, current packet */
  948.     long myffc, mytfc;        /* Local copies of byte counters */
  949.  
  950.     et = gtimer();            /* Elapsed time  */
  951.     ps = (what == W_RECV) ? rpktl+1 : spktl+1; /* Packet length */
  952.     pd = -1;            /* Percent done. */
  953.     if (c == NUL) {            /* Still going, figure % done */
  954.         if (fsize == 0L) return;    /* Empty file, don't bother */
  955.         pd = (fsize > 99L) ? (ffc / (fsize / 100L)) : 0L;
  956.         if (pd > 100) pd = 100;    /* Expansion */
  957.     } else pd = 100;        /* File complete, so 100%. */
  958.  
  959. #ifndef CK_CPS
  960. /*
  961.   fsecs = time (from gtimer) that this file started (set in sfile()).
  962.   Rate so far is ffc / (et - fsecs),  estimated time for remaining bytes
  963.   is (fsize - ffc) / ( ffc / (et - fsecs )).
  964. */
  965.     tp = (ffc > 0L) ? (fsize - ffc) * (et - fsecs) / ffc : 0L;
  966. #endif /* CK_CPS */
  967.  
  968.     myffc = (ffc > 0) ? ffc - 1L : ffc; /* No, I don't know why... */
  969.     if (myffc < 0L) myffc = 0L;
  970. #ifdef CK_CPS
  971.     mytfc = (pd < 100) ? tfc + myffc : tfc;
  972.     tp = (et > 0) ? mytfc / et : 0; /* Transfer rate */
  973.     if (c && (tp == 0))        /* Watch out for subsecond times */
  974.       tp = myffc;
  975. #endif /* CK_CPS */
  976.     if (pd > -1L)
  977.       sprintf(buffer, "%c%9ld%5ld%%%8ld%8ld ", CR, myffc, pd, tp, ps);
  978.     else
  979.       sprintf(buffer, "%c%9ld      %8ld%8ld ", CR, myffc, tp, ps);
  980.     conol(buffer);
  981.     hpos = 31;
  982.     } else {                /* SERIAL display */
  983.     long i, k;
  984.     if (ffc - oldffc < 1024)    /* Update display every 1K */
  985.       return;
  986.     oldffc = ffc;            /* Time for new display */
  987.     k = (ffc / 1024L) - dots;    /* How many K so far */
  988.     for (i = 0L; i < k; i++) {
  989.         if (hpos++ > 77) {        /* Time to wrap? */
  990.         conoll("");
  991.         hpos = 0;
  992.         }
  993.         conoc('.');            /* Print a dot for this K */
  994.         dots++;            /* Count it */
  995.     }
  996.     }
  997. }
  998.  
  999. /*  S C R E E N  --  Screen display function  */
  1000.  
  1001. /*
  1002.   screen(f,c,n,s)
  1003.     f - argument descriptor
  1004.     c - a character or small integer
  1005.     n - a long integer
  1006.     s - a string.
  1007.   Fill in this routine with the appropriate display update for the system.
  1008.     FILE DISPLAY SERIAL:     Default, works on any terminal, even hardcopy.
  1009.     FILE DISPLAY CRT:        Works on any CRT, writes over current line.
  1010.     FILE DISPLAY FULLSCREEN: Requires terminal-dependent screen control.
  1011. */
  1012. VOID
  1013. #ifdef CK_ANSIC
  1014. screen(int f, char c,long n,char *s)
  1015. #else
  1016. screen(f,c,n,s) int f; char c; long n; char *s;
  1017. #endif /* CK_ANSIC */
  1018. /* screen */ {
  1019.     char buf[80];
  1020.     int len;                /* Length of string */
  1021. #ifdef UNIX
  1022. #ifndef NOJC
  1023.     int obg;
  1024. _PROTOTYP( VOID conbgt, (int) );
  1025.  
  1026.     if (local) {
  1027.     obg = backgrd;            /* Previous background status */
  1028.     conbgt(1);            /* See if running in background */
  1029.     if (!backgrd && obg) {        /* Just came into foreground? */
  1030.         concb((char)escape);    /* Put console back in CBREAK mode */
  1031.         conint(trap,stptrap);    /* Turn interrupts back on. */
  1032.     }
  1033.     }
  1034. #endif /* NOJC */
  1035. #endif /* UNIX */
  1036.  
  1037.     if ((f != SCR_WM) && (f != SCR_EM)) /* Always update warnings & errors */
  1038.       if (!displa || quiet || backgrd || fdispla == XYFD_N ||
  1039.       (server && !srvdis))
  1040.     return;
  1041.  
  1042. #ifdef CK_CURSES
  1043.     if (fdispla == XYFD_C) {        /* If fullscreen display selected */
  1044.     screenc(f,c,n,s);        /* call the fullscreen version */
  1045.     return;
  1046.     }
  1047. #endif /* CK_CURSES */
  1048.  
  1049.     len = (int)strlen(s);        /* Length of string */
  1050.  
  1051.     switch (f) {            /* Handle our function code */
  1052.  
  1053. case SCR_FN:                /* Filename */
  1054. #ifdef MAC
  1055.     conoll(""); conol(s); conoc(SP); hpos = len + 1;
  1056. #else
  1057.     strncpy(fbuf,s,80);
  1058.     newdpy = 1;                /* New file so refresh display */
  1059. #endif /* MAC */
  1060.     return;
  1061.  
  1062. case SCR_AN:                /* As-name */
  1063. #ifdef MAC
  1064.     if (hpos + len > 75) { conoll(""); hpos = 0; }
  1065.     conol("=> "); conol(s);
  1066.     if ((hpos += (len + 3)) > 78) { conoll(""); hpos = 0; }
  1067. #else
  1068.     strncpy(abuf,s,80);
  1069. #endif /* MAC */
  1070.     return;
  1071.  
  1072. case SCR_FS:                 /* File-size */
  1073. #ifdef MAC
  1074.     sprintf(buf,", Size: %ld",n);  conoll(buf);  hpos = 0;
  1075. #endif /* MAC */
  1076.     return;
  1077.  
  1078. case SCR_XD:                /* X-packet data */
  1079. #ifdef MAC
  1080.     conoll(""); conoll(s); hpos = 0;
  1081. #else
  1082.     strncpy(fbuf,s,80);
  1083. #endif /* MAC */
  1084.     return;
  1085.  
  1086. case SCR_ST:                  /* File status */
  1087.     switch (c) {
  1088.       case ST_OK:                  /* Transferred OK */
  1089.     showpkt('Z');            /* Update numbers one last time */
  1090.     if ((hpos += 5) > 78) conoll(""); /* Wrap screen line if necessary. */
  1091.     conoll(" [OK]"); hpos = 0;    /* Print OK message. */
  1092.     if (fdispla == XYFD_S) {    /* We didn't show Z packet when */
  1093.         conoc('Z');            /* it came, so show it now. */
  1094.         hpos = 1;
  1095.     }
  1096.     return;          
  1097.  
  1098.       case ST_DISC:             /*  Discarded */
  1099.     if ((hpos += 12) > 78) conoll("");
  1100.     conoll(" [discarded]"); hpos = 0;
  1101.     return;
  1102.  
  1103.       case ST_INT:               /*  Interrupted */
  1104.     if ((hpos += 14) > 78) conoll("");
  1105.     conoll(" [interrupted]"); hpos = 0;
  1106.     return;
  1107.  
  1108.       case ST_SKIP:             /*  Skipped */
  1109.     if ((hpos += 10) > 78) conoll("");
  1110.     conol(" [skipped]"); hpos = 0;
  1111.     return;
  1112.  
  1113.       case ST_ERR:            /* Error */
  1114.     conoll("");
  1115.     conol("Error: "); conoll(s); hpos = 0;
  1116.     return;
  1117.  
  1118.       case ST_REFU:            /* Refused */
  1119.     conoll("");
  1120.     conol("Refused: "); conoll(s); hpos = 0;
  1121.     return;
  1122.  
  1123.       case ST_INC:               /* Incomplete */
  1124.     if ((hpos += 12) > 78) conoll("");
  1125.     conoll(" [incomplete]"); hpos = 0;
  1126.     return;
  1127.  
  1128.       default:
  1129.     conoll("*** screen() called with bad status ***");
  1130.     hpos = 0;
  1131.     return;
  1132.     }
  1133.  
  1134. #ifdef MAC
  1135. case SCR_PN:                /* Packet number */
  1136.     sprintf(buf,"%s: %ld",s,n); conol(buf); hpos += (int)strlen(buf); return;
  1137. #endif /* MAC */
  1138.  
  1139. case SCR_PT:                /* Packet type or pseudotype */
  1140.     if (c == 'Y') return;        /* Don't bother with ACKs */
  1141.     if (c == 'D') {            /* In data transfer phase, */
  1142.     showpkt(NUL);            /* show progress. */
  1143.     return;
  1144.     }
  1145. #ifndef AMIGA
  1146.     if (hpos++ > 77) {            /* If near right margin, */
  1147.     conoll("");            /* Start new line */
  1148.     hpos = 0;            /* and reset counter. */
  1149.     }
  1150. #endif /* AMIGA */
  1151.     if (c == 'Z' && fdispla == XYFD_S)
  1152.       return;
  1153.     else
  1154.       conoc(c);                /* Display the packet type. */
  1155. #ifdef AMIGA
  1156.     if (c == 'G') conoll("");           /* New line after G packets */
  1157. #endif /* AMIGA */
  1158.     return;
  1159.  
  1160. case SCR_TC:                /* Transaction complete */
  1161.     conoc(BEL); conoll(""); return;
  1162.  
  1163. case SCR_EM:                /* Error message */
  1164.     conoll(""); conoc('?'); conoll(s); hpos = 0; return;
  1165.  
  1166. case SCR_WM:                /* Warning message */
  1167.     conoll(""); conoll(s); hpos = 0; return;
  1168.  
  1169. case SCR_TU:                /* Undelimited text */
  1170.     if ((hpos += len) > 77) { conoll(""); hpos = len; }
  1171.     conol(s); return;
  1172.  
  1173. case SCR_TN:                /* Text delimited at beginning */
  1174.     conoll(""); conol(s); hpos = len; return;
  1175.  
  1176. case SCR_TZ:                /* Text delimited at end */
  1177.     if ((hpos += len) > 77) { conoll(""); hpos = len; }
  1178.     conoll(s); return;
  1179.  
  1180. case SCR_QE:                /* Quantity equals */
  1181.     sprintf(buf,"%s: %ld",s,n);
  1182.     conoll(buf); hpos = 0; return;
  1183.  
  1184. case SCR_CW:                /* Close fullscreen window */
  1185.     return;                /* No window to close */
  1186.  
  1187. default:
  1188.     conoll("*** screen() called with bad object ***");
  1189.     hpos = 0;
  1190.     return;
  1191.     }
  1192. }
  1193.  
  1194. /*  E R M S G  --  Nonfatal error message  */
  1195.  
  1196. /* Should be used only for printing the message text from an Error packet. */
  1197.  
  1198. VOID
  1199. ermsg(msg) char *msg; {            /* Print error message */
  1200.     if (local)
  1201.       screen(SCR_EM,0,0L,msg);
  1202.     tlog(F110,"Protocol Error:",msg,0L);
  1203. }
  1204.  
  1205. VOID
  1206. doclean() {                /* General cleanup upon exit */
  1207. #ifndef NOICP
  1208. #ifndef NOSPL
  1209.     extern struct mtab *mactab;        /* For ON_EXIT macro. */
  1210.     extern int nmac;
  1211. #endif /* NOSPL */
  1212. #endif /* NOICP */
  1213.  
  1214. #ifdef DEBUG
  1215.     if (deblog) {            /* Close any open logs. */
  1216.     debug(F100,"Debug Log Closed","",0);
  1217.     *debfil = '\0';
  1218.     deblog = 0;
  1219.     zclose(ZDFILE);
  1220.     }
  1221. #endif /* DEBUG */
  1222.     if (pktlog) {
  1223.     *pktfil = '\0';
  1224.     pktlog = 0;
  1225.     zclose(ZPFILE);
  1226.     }
  1227.     if (seslog) {
  1228.         *sesfil = '\0';
  1229.     seslog = 0;
  1230.     zclose(ZSFILE);
  1231.     }
  1232. #ifdef TLOG
  1233.     if (tralog) {
  1234.     tlog(F100,"Transaction Log Closed","",0L);
  1235.     *trafil = '\0';
  1236.     tralog = 0;
  1237.     zclose(ZTFILE);
  1238.     }
  1239. #endif /* TLOG */
  1240.  
  1241. #ifndef NOICP
  1242. #ifndef NOSPL
  1243.     zclose(ZRFILE);            /* READ and WRITE files, if any. */
  1244.     zclose(ZWFILE);
  1245. #ifndef NODIAL
  1246.     if (dialfd) fclose(dialfd);        /* Dial directory, if any. */
  1247. #endif /* NODIAL */
  1248. /*
  1249.   If a macro named "on_exit" is defined, execute it.  Also remove it from the
  1250.   macro table, in case its definition includes an EXIT or QUIT command, which
  1251.   would cause much recursion and would prevent the program from ever actually
  1252.   EXITing.
  1253. */
  1254.     if (nmac) {                /* Any macros defined? */
  1255.     int k;                /* Yes */
  1256.     k = mlook(mactab,"on_exit",nmac); /* Look up "on_exit" */
  1257.     if (k >= 0) {            /* If found, */
  1258.         *(mactab[k].kwd) = NUL;    /* poke its name from the table, */
  1259.         if (dodo(k,"") > -1)    /* set it up, */
  1260.           parser(1);        /* and execute it */
  1261.         }
  1262.     }
  1263. #endif /* NOSPL */
  1264. #endif /* NOICP */
  1265.  
  1266. /*
  1267.   Put console terminal back to normal.  This is done here because the
  1268.   ON_EXIT macro calls the parser, which meddles with console terminal modes.
  1269. */
  1270.     ttclos(0);                /* Close external line, if any */
  1271.     if (local) {
  1272.     strcpy(ttname,dftty);        /* Restore default tty */
  1273.     local = dfloc;            /* And default remote/local status */
  1274.     }
  1275.     conres();                /* Restore console terminal. */
  1276.  
  1277. #ifdef COMMENT
  1278. /* Should be no need for this, and maybe it's screwing things up? */
  1279.     connoi();                /* Turn off console interrupt traps */
  1280. #endif /* COMMENT */
  1281.  
  1282.     syscleanup();            /* System-dependent cleanup, last */
  1283. }
  1284.  
  1285. /*  D O E X I T  --  Exit from the program.  */
  1286.  
  1287. /*
  1288.   First arg is general, system-independent symbol: GOOD_EXIT or BAD_EXIT.
  1289.   If second arg is -1, take 1st arg literally.
  1290.   If second arg is not -1, work it into the exit code.
  1291. */
  1292. VOID
  1293. doexit(exitstat,what) int exitstat, what; {
  1294. #ifdef VMS
  1295.     char envstr[64];
  1296.     static $DESCRIPTOR(symnam,"CKERMIT_STATUS");
  1297.     static struct dsc$descriptor_s symval;
  1298.     int i;
  1299. #endif /* VMS */
  1300.  
  1301.     debug(F101,"doexit exitstat","",exitstat);
  1302.     debug(F101,"doexit what","",what);
  1303.  
  1304.     doclean();                /* First, clean up everything */
  1305.  
  1306. #ifdef VMS
  1307.     if (what == -1)
  1308.     what = 0;            /* Since we set two different items */
  1309.     sprintf(envstr,"%d", exitstat | what);
  1310.     symval.dsc$w_length = (int)strlen(envstr);
  1311.     symval.dsc$a_pointer = envstr;
  1312.     symval.dsc$b_class = DSC$K_CLASS_S;
  1313.     symval.dsc$b_dtype = DSC$K_DTYPE_T;
  1314.     i = 2;                /* Store in global table */
  1315.     LIB$SET_SYMBOL(&symnam, &symval, &i);
  1316.     if (exitstat == BAD_EXIT)
  1317.     exitstat = SS$_ABORT | STS$M_INHIB_MSG;
  1318.     if (exitstat == GOOD_EXIT)
  1319.     exitstat = SS$_NORMAL | STS$M_INHIB_MSG;
  1320.     exit(exitstat);
  1321. #else /* Not VMS */
  1322.     if (what == -1)            /* Take 1st arg literally */
  1323.       exit(exitstat);            /* e.g. user-supplied exit code */
  1324.     else                /* otherwise */
  1325.       exit(exitstat | what);        /* OR in the bits */
  1326. #endif /* VMS */
  1327. }
  1328.  
  1329. /* Set up interrupts */
  1330.  
  1331. VOID
  1332. setint() {
  1333.     conint(trap,stptrap);       /* Turn on console terminal interrupts. */
  1334.     bgchk();                    /* Check background status */
  1335. }
  1336.  
  1337. VOID
  1338. bgchk() {                /* Check background status */
  1339.     if (bgset < 0)
  1340.       pflag = !backgrd;            /* Set prompt flag */
  1341.     else                /* based on foreground/background */
  1342.       pflag = (bgset == 0 ? 1 : 0);
  1343.  
  1344.     /* Message flag on only if at top level, pflag is on, and QUIET is OFF */
  1345.  
  1346.     if (
  1347. #ifndef NOSPL
  1348.     cmdlvl == 0
  1349. #else
  1350.     tlevel < 0
  1351. #endif /* NOSPL */
  1352.     )
  1353.       msgflg = (pflag == 0) ? 0 : !quiet;
  1354.     else msgflg = 0;
  1355. }
  1356.  
  1357. #ifdef DEBUG
  1358. /*  D E B U G  --  Enter a record in the debugging log  */
  1359.  
  1360. /*
  1361.  Call with a format, two strings, and a number:
  1362.    f  - Format, a bit string in range 0-7.
  1363.         If bit x is on, then argument number x is printed.
  1364.    s1 - String, argument number 1.  If selected, printed as is.
  1365.    s2 - String, argument number 2.  If selected, printed in brackets.
  1366.    n  - Int, argument 3.  If selected, printed preceded by equals sign.
  1367.  
  1368.    f=0 is special: print s1,s2, and interpret n as a char.
  1369. */
  1370. #define DBUFL 2300
  1371. static char *dbptr = (char *)0;
  1372.  
  1373. int
  1374. dodebug(f,s1,s2,n) int f; char *s1, *s2; long n; {
  1375.     char *sp;
  1376.  
  1377.     if (!deblog) return(0);    /* If no debug log, don't. */
  1378.     if (!dbptr) {
  1379.     dbptr = malloc(DBUFL+1);
  1380.     if (!dbptr)
  1381.       return(0);
  1382.     }
  1383.     sp = dbptr;
  1384.     if (!s1) s1="(NULL)";
  1385.     if (!s2) s2="(NULL)";
  1386.     switch (f) {
  1387.         case F000:        /* 0, print both strings, and n as a char */
  1388.         if ((int)strlen(s1) + (int)strlen(s2) + 5 > DBUFL) {
  1389.         sprintf(sp,"DEBUG string too long\n");
  1390.         } else {
  1391.         if (n > 31 && n < 127)
  1392.           sprintf(sp,"%s%s:%c\n",s1,s2,(CHAR) n);
  1393.         else if (n < 32 || n == 127)
  1394.           sprintf(sp,"%s%s:^%c\n",s1,s2,(CHAR) ((n+64) & 0x7F));
  1395.         else if (n > 127 && n < 160)
  1396.           sprintf(sp,"%s%s:~^%c\n",s1,s2,(CHAR)((n-64) & 0x7F));
  1397.         else if (n > 159 && n < 256)
  1398.           sprintf(sp,"%s%s:~%c\n",s1,s2,(CHAR) (n & 0x7F));
  1399.         else sprintf(sp,"%s%s:%ld\n",s1,s2,n);
  1400.         }
  1401.         if (zsout(ZDFILE,dbptr) < 0) deblog = 0;
  1402.         break;
  1403.         case F001:            /* 1, "=n" */
  1404.         sprintf(sp,"=%ld\n",n);
  1405.         if (zsout(ZDFILE,dbptr) < 0) deblog = 0;
  1406.         break;
  1407.         case F010:            /* 2, "[s2]" */
  1408.         if ((int)strlen(s2) + 4 > DBUFL)
  1409.           sprintf(sp,"DEBUG string too long\n");
  1410.         else sprintf(sp,"[%s]\n",s2);
  1411.         if (zsout(ZDFILE,"") < 0) deblog = 0;
  1412.         break;
  1413.         case F011:            /* 3, "[s2]=n" */
  1414.         if ((int)strlen(s2) + 15 > DBUFL)
  1415.           sprintf(sp,"DEBUG string too long\n");
  1416.         else sprintf(sp,"[%s]=%ld\n",s2,n);
  1417.         if (zsout(ZDFILE,dbptr) < 0) deblog = 0;
  1418.         break;
  1419.         case F100:            /* 4, "s1" */
  1420.         if (zsoutl(ZDFILE,s1) < 0) deblog = 0;
  1421.         break;
  1422.         case F101:            /* 5, "s1=n" */
  1423.         if ((int)strlen(s1) + 15 > DBUFL)
  1424.           sprintf(sp,"DEBUG string too long\n");
  1425.         else sprintf(sp,"%s=%ld\n",s1,n);
  1426.         if (zsout(ZDFILE,dbptr) < 0) deblog = 0;
  1427.         break;
  1428.         case F110:            /* 6, "s1[s2]" */
  1429.         if ((int)strlen(s1) + (int)strlen(s2) + 4 > DBUFL)
  1430.           sprintf(sp,"DEBUG string too long\n");
  1431.         else sprintf(sp,"%s[%s]\n",s1,s2);
  1432.         if (zsout(ZDFILE,dbptr) < 0) deblog = 0;
  1433.         break;
  1434.         case F111:            /* 7, "s1[s2]=n" */
  1435.         if ((int)strlen(s1) + (int)strlen(s2) + 15 > DBUFL)
  1436.           sprintf(sp,"DEBUG string too long\n");
  1437.         else sprintf(sp,"%s[%s]=%ld\n",s1,s2,n);
  1438.         if (zsout(ZDFILE,dbptr) < 0) deblog = 0;
  1439.         break;
  1440.     default:
  1441.         sprintf(sp,"\n?Invalid format for debug() - %d\n",f);
  1442.         if (zsout(ZDFILE,dbptr) < 0) deblog = 0;
  1443.     }
  1444.     return(0);
  1445. }
  1446. #endif /* DEBUG */
  1447.  
  1448. #ifdef TLOG
  1449. #define TBUFL 300
  1450. /*  T L O G  --  Log a record in the transaction file  */
  1451. /*
  1452.  Call with a format and 3 arguments: two strings and a number:
  1453.    f  - Format, a bit string in range 0-7, bit x is on, arg #x is printed.
  1454.    s1,s2 - String arguments 1 and 2.
  1455.    n  - Int, argument 3.
  1456. */
  1457. VOID
  1458. tlog(f,s1,s2,n) int f; long n; char *s1, *s2; {
  1459.     static char s[TBUFL];
  1460.     char *sp = s; int x;
  1461.  
  1462.     if (!tralog) return;        /* If no transaction log, don't */
  1463.     switch (f) {
  1464.         case F000:            /* 0 (special) "s1 n s2"  */
  1465.         if ((int)strlen(s1) + (int)strlen(s2) + 15 > TBUFL)
  1466.           sprintf(sp,"?T-Log string too long\n");
  1467.         else sprintf(sp,"%s %ld %s\n",s1,n,s2);
  1468.         if (zsout(ZTFILE,s) < 0) tralog = 0;
  1469.         break;
  1470.         case F001:            /* 1, " n" */
  1471.         sprintf(sp," %ld\n",n);
  1472.         if (zsout(ZTFILE,s) < 0) tralog = 0;
  1473.         break;
  1474.         case F010:            /* 2, "[s2]" */
  1475.         x = (int)strlen(s2);
  1476.         if (s2[x] == '\n') s2[x] = '\0';
  1477.         if (x + 6 > TBUFL)
  1478.           sprintf(sp,"?T-Log string too long\n");
  1479.         else sprintf(sp,"[%s]\n",s2);
  1480.         if (zsout(ZTFILE,"") < 0) tralog = 0;
  1481.         break;
  1482.         case F011:            /* 3, "[s2] n" */
  1483.         x = (int)strlen(s2);
  1484.         if (s2[x] == '\n') s2[x] = '\0';
  1485.         if (x + 6 > TBUFL)
  1486.           sprintf(sp,"?T-Log string too long\n");
  1487.         else sprintf(sp,"[%s] %ld\n",s2,n);
  1488.         if (zsout(ZTFILE,s) < 0) tralog = 0;
  1489.         break;
  1490.         case F100:            /* 4, "s1" */
  1491.         if (zsoutl(ZTFILE,s1) < 0) tralog = 0;
  1492.         break;
  1493.         case F101:            /* 5, "s1: n" */
  1494.         if ((int)strlen(s1) + 15 > TBUFL)
  1495.           sprintf(sp,"?T-Log string too long\n");
  1496.         else sprintf(sp,"%s: %ld\n",s1,n);
  1497.         if (zsout(ZTFILE,s) < 0) tralog = 0;
  1498.         break;
  1499.         case F110:            /* 6, "s1 s2" */
  1500.         x = (int)strlen(s2);
  1501.         if (s2[x] == '\n') s2[x] = '\0';
  1502.         if ((int)strlen(s1) + x + 4 > TBUFL)
  1503.           sprintf(sp,"?T-Log string too long\n");
  1504.         else sprintf(sp,"%s %s\n",s1,s2);
  1505.         if (zsout(ZTFILE,s) < 0) tralog = 0;
  1506.         break;
  1507.         case F111:            /* 7, "s1 s2: n" */
  1508.         x = (int)strlen(s2);
  1509.         if (s2[x] == '\n') s2[x] = '\0';
  1510.         if ((int)strlen(s1) + x + 15 > TBUFL)
  1511.           sprintf(sp,"?T-Log string too long\n");
  1512.         else sprintf(sp,"%s %s: %ld\n",s1,s2,n);
  1513.         if (zsout(ZTFILE,s) < 0) tralog = 0;
  1514.         break;
  1515.     default:
  1516.         sprintf(sp,"\n?Invalid format for tlog() - %ld\n",n);
  1517.         if (zsout(ZTFILE,s) < 0) tralog = 0;
  1518.     }
  1519. }
  1520. #endif /* TLOG */
  1521.  
  1522. #ifdef CK_CURSES
  1523.  
  1524. /*
  1525.   There are three different ways to do fullscreen on VMS.
  1526.   1. Use the real curses library, VAXCCURSE.
  1527.   2. Use do-it-yourself code.
  1528.   3. Use the Screen Manager, SMG$.
  1529.  
  1530.   Method 1 doesn't work quite right; you can't call endwin(), so once you've
  1531.   started curses mode, you can never leave.
  1532.  
  1533.   Method 2 doesn't optimize the screen, and so much more time is spent in
  1534.   screen writes.  This actually causes file transfers to fail because the
  1535.   tty device input buffer can be overrun while the screen is being updated,
  1536.   especially on a slow MicroVAX that has small typeahead buffers.
  1537.  
  1538.   In the following #ifdef block, #define one of them and #undef the other 2.
  1539.  
  1540.   So now let's try method 3...
  1541. */
  1542. #ifdef VMS
  1543. #define CK_SMG                /* Screen Manager */
  1544. #undef MYCURSES                /* Do-it-yourself */
  1545. #undef VMSCURSE                /* VAXCCURSE library */
  1546. #endif /* VMS */
  1547.  
  1548. /*  S C R E E N C  --  Screen display function, uses curses  */
  1549.  
  1550. /* Idea for curses display contributed by Chris Pratt of APV Baker, UK */
  1551.  
  1552. /* Avoid conficts with curses.h */
  1553.  
  1554. #ifndef MYCURSES
  1555. #undef VOID                /* This was defined in ckcdeb.h */
  1556. #endif /* MYCURSES */
  1557.  
  1558. #undef BS                /* These were defined in ckcasc.h */
  1559. #undef CR
  1560. #undef NL
  1561. #undef SO
  1562. #undef US
  1563.  
  1564. #ifdef VMS                /* VMS fullscreen display */
  1565. #ifdef MYCURSES                /* Do-it-yourself method */
  1566. extern int isvt52;            /* From CKVTIO.C */
  1567. #define printw printf
  1568. #else
  1569. #ifdef VMSCURSE                /* VMS curses library VAXCCURSE */
  1570. #include <curses.h> 
  1571. /* Note: Screen manager doesn't need a header file */
  1572. #endif /* VMSCURSE */
  1573. #endif /* MYCURSES */
  1574. #else                    /* Not VMS */
  1575. #ifdef MYCURSES                /* Do-it-yourself method */
  1576. #define isvt52 0            /* Used by OS/2, VT-100/ANSI always */
  1577. #define printw printf
  1578. #else
  1579. #include <curses.h>            /* So use real curses */
  1580. #endif /* MYCURSES */
  1581. #endif /* VMS */
  1582.  
  1583. #ifdef CK_SMG
  1584. /*
  1585.   Long section for Screen Manager starts here...
  1586.   By William Bader.
  1587. */
  1588. #include "ckvvms.h"
  1589. /* #include <smgdef.h> */
  1590. /* #include <smgmsg.h> */
  1591.  
  1592. extern unsigned int vms_status;        /* Used for system service return status */
  1593.  
  1594. static long smg_pasteboard_id = -1;    /* pasteboard identifier */
  1595. static long smg_display_id = -1;    /* display identifier */
  1596. static int smg_open = 0;        /* flag if smg current open */
  1597.  
  1598. #define    clrtoeol()    SMG$ERASE_LINE(&smg_display_id, 0, 0)
  1599.  
  1600. #define clear()        SMG$ERASE_DISPLAY(&smg_display_id, 0, 0, 0, 0)
  1601.  
  1602. #define    touchwin(scr)    SMG$REPAINT_SCREEN(&smg_pasteboard_id)
  1603.  
  1604. static void
  1605. move(row, col) int row, col; {
  1606.     /* Change from 0-based for curses to 1-based for SMG */
  1607.     ++row; ++col;
  1608.     CHECK_ERR("move: smg$set_cursor_abs",
  1609.           SMG$SET_CURSOR_ABS(&smg_display_id, &row, &col));
  1610. }
  1611.  
  1612. static void
  1613. refresh() {
  1614.     CHECK_ERR("refresh: smg$end_pasteboard_update",
  1615.           SMG$END_PASTEBOARD_UPDATE(&smg_pasteboard_id));
  1616.     CHECK_ERR("refresh: smg$begin_pasteboard_update",
  1617.           SMG$BEGIN_PASTEBOARD_UPDATE(&smg_pasteboard_id));
  1618. }
  1619.  
  1620. #ifdef VMS_V40
  1621. #define    OLD_VMS
  1622. #endif /* VMS_V40 */
  1623. #ifdef VMS_V42
  1624. #define    OLD_VMS
  1625. #endif /* VMS_V42 */
  1626. #ifdef VMS_V44
  1627. #define    OLD_VMS
  1628. #endif /* VMS_V44 */
  1629.  
  1630. static int
  1631. initscr() {
  1632.     int rows = 24, cols = 80;
  1633.     int row = 1, col = 1;
  1634.  
  1635.     if (smg_pasteboard_id == -1) {     /* Open the screen */
  1636. #ifdef OLD_VMS
  1637.     CHECK_ERR("initscr: smg$create_pasteboard",
  1638.           SMG$CREATE_PASTEBOARD(&smg_pasteboard_id, 0, 0, 0, 0));
  1639. #else
  1640.     /* For VMS V5, not tested */
  1641.     CHECK_ERR("initscr: smg$create_pasteboard",
  1642.           SMG$CREATE_PASTEBOARD(&smg_pasteboard_id, 0, 0, 0, 0, 0));
  1643. #endif /* OLD_VMS */
  1644.     }
  1645.  
  1646.     if (smg_display_id == -1) {        /* Create a display window */
  1647.  
  1648.     CHECK_ERR("initscr: smg$create_virtual_display",
  1649.           SMG$CREATE_VIRTUAL_DISPLAY(&rows, &cols, &smg_display_id,
  1650.                          0, 0, 0));
  1651.  
  1652.     /* Connect the display window to the screen */
  1653.     CHECK_ERR("initscr: smg$paste_virtual_display",
  1654.           SMG$PASTE_VIRTUAL_DISPLAY(&smg_display_id,&smg_pasteboard_id,
  1655.                         &row,&col));
  1656.     }
  1657.  
  1658.     if (!smg_open) {            /* Start a batch update */
  1659.     smg_open = 1;
  1660.     CHECK_ERR("initscr: smg$begin_pasteboard_update",
  1661.           SMG$BEGIN_PASTEBOARD_UPDATE(&smg_pasteboard_id));
  1662.     }
  1663.     return(1);
  1664. }
  1665.  
  1666. static void
  1667. endwin() {
  1668.     if (!smg_open)
  1669.       return;
  1670.  
  1671.     smg_open = 0;
  1672.  
  1673.     CHECK_ERR("endwin: smg$end_pasteboard_update",
  1674.           SMG$END_PASTEBOARD_UPDATE(&smg_pasteboard_id));
  1675.  
  1676.     move(22, 0);
  1677.  
  1678. #ifdef COMMENT
  1679. /*
  1680.   These calls clear the screen.
  1681. */
  1682.     CHECK_ERR("endwin: smg$delete_virtual_display",
  1683.           SMG$DELETE_VIRTUAL_DISPLAY(&smg_display_id));
  1684.     smg_display_id = -1;
  1685.  
  1686.     CHECK_ERR("endwin: smg$delete_pasteboard",
  1687.           SMG$DELETE_PASTEBOARD(&smg_pasteboard_id, 0));
  1688.     smg_pasteboard_id = -1;
  1689. #endif /* COMMENT */
  1690. }
  1691.  
  1692. static void printw(str, a1, a2, a3, a4, a5, a6, a7, a8)
  1693. char *str;
  1694. long a1, a2, a3, a4, a5, a6, a7, a8;
  1695. /* printw */ {
  1696.     char buf[255];
  1697.     $DESCRIPTOR(text_dsc, buf);
  1698.  
  1699.     text_dsc.dsc$w_length = sprintf(buf, str, a1, a2, a3, a4, a5, a6, a7, a8);
  1700.     CHECK_ERR("printw: smg$put_chars",
  1701.           SMG$PUT_CHARS(&smg_display_id, &text_dsc, 0, 0, 0, 0, 0));
  1702. }
  1703. #endif /* CK_SMG */
  1704.  
  1705. #ifdef MYCURSES
  1706. /*
  1707.   Do-it-yourself curses implementation for VMS, OS/2 and other ANSI/VT-100's.
  1708.   Supports only the VT52 and VT1xx (and later VT2xx/3xx/4xx) terminals.
  1709.   By Terry Kennedy, St Peters College.
  1710.  
  1711.   First, some stuff we can just ignore:
  1712. */
  1713.  
  1714. int
  1715. touchwin(x) int x; {
  1716. }
  1717. int
  1718. initscr() {
  1719. }
  1720. int
  1721. refresh() {
  1722. }
  1723. int
  1724. endwin() {
  1725. }
  1726.  
  1727. /*
  1728.  * Now, some stuff we need to do:
  1729.  */
  1730.  
  1731. _PROTOTYP( int move, (int, int) );
  1732.  
  1733. int
  1734. move(row, col) int row, col; {
  1735.     if (isvt52)
  1736.       printf("\033Y%c%c", row + 037, col + 037);
  1737.     else
  1738.       printf("\033[%d;%dH", row + 1, col + 1);
  1739. }
  1740.  
  1741. int
  1742. clear() {
  1743.     move(1,1);
  1744.     if (isvt52)
  1745.       printf("\033J");
  1746.     else
  1747.       printf("\033[J");
  1748. }
  1749.  
  1750. int
  1751. clrtoeol() {
  1752.     if (isvt52)
  1753.       printf("\033K");
  1754.     else
  1755.       printf("\033[K");
  1756. }
  1757. #endif /* MYCURSES */
  1758.  
  1759. /* Screen line numbers */
  1760.  
  1761. #define CW_BAN  0            /* Curses Window Banner */
  1762. #define CW_DIR  2            /* Current directory */
  1763. #define CW_LIN  3            /* Communication device */
  1764. #define CW_SPD  4            /* Communication speed */
  1765. #define CW_PAR  5            /* Parity */
  1766. #define CW_NAM  7            /* Filename */
  1767. #define CW_TYP  8            /* File type */
  1768. #define CW_SIZ  9            /* File size */
  1769. #define CW_PCD 10            /* Percent done */
  1770. #define CW_TR  11            /* Time remaining */
  1771. #define CW_WS  12            /* Window slots */
  1772. #define CW_PT  13            /* Packet type */
  1773. #define CW_PC  14            /* Packet count */
  1774. #define CW_PL  15            /* Packet length */
  1775. #define CW_PR  16            /* Packet retry */
  1776. #define CW_PB  17            /* Packet block check */
  1777. #define CW_ERR 19            /* Error message */
  1778. #define CW_MSG 20            /* Info message */
  1779. #define CW_INT 22            /* Instructions */
  1780.  
  1781. static int cinit = 0;            /* Flag for curses init'd */
  1782. static int cendw = 0;            /* endwin() was called */
  1783.  
  1784. static
  1785. #ifdef CK_ANSIC                /* Because VOID used by curses.h */
  1786. void
  1787. #else
  1788. #ifdef MYCURSES
  1789. VOID
  1790. #else
  1791. int
  1792. #endif /* MYCURSES */
  1793. #endif /* CK_ANSIC */
  1794. scrft() {                /* Display file type */
  1795.     move(CW_TYP,22);
  1796.     if (binary) {
  1797. #ifdef VMS
  1798.     if (binary == XYFT_I)
  1799.       printw("image");
  1800.     else if (binary == XYFT_L)
  1801.       printw("labeled");
  1802.     else printw("binary");
  1803. #else /* Not VMS */
  1804.     printw("binary");
  1805. #endif /* VMS */
  1806.     } else {
  1807.     printw("text");
  1808. #ifndef NOCSETS
  1809.     if (tcharset == TC_TRANSP) {
  1810.         printw(" (transparent)");
  1811.     } else {
  1812.         if (what == W_SEND)
  1813.           printw(" (%s => %s)",
  1814.              fcsinfo[fcharset].keyword,
  1815.              tcsinfo[tcharset].keyword);
  1816.         else printw(" (%s => %s)",
  1817.              tcsinfo[tcharset].keyword,
  1818.              fcsinfo[fcharset].keyword);
  1819.     }
  1820. #endif /* NOCSETS */
  1821.     }
  1822.     clrtoeol();
  1823.     return;
  1824. }
  1825.  
  1826. char *                    /* Convert seconds to hh:mm:ss */
  1827. #ifdef CK_ANSIC
  1828. hhmmss(long x)
  1829. #else
  1830. hhmmss(x) long x;
  1831. #endif /* CK_ANSIC */
  1832. /* hhmmss(x) */ {
  1833.     static char buf[10];
  1834.     long s, h, m;
  1835.     h = x / 3600L;            /* Hours */
  1836.     x = x % 3600L;
  1837.     m = x / 60L;            /* Minutes */
  1838.     s = x % 60L;            /* Seconds */
  1839.     if (x > -1L)
  1840.       sprintf(buf,"%02ld:%02ld:%02ld",h,m,s);
  1841.     else buf[0] = NUL;
  1842.     return((char *)buf);
  1843. }
  1844.  
  1845. #ifdef CK_NEWTERM
  1846. static FILE *ck_stdout = NULL;
  1847. static int ck_fd = -1;
  1848. #endif /* CK_NEWTERM */
  1849.  
  1850. static long pct = 100, oldpct = 0;    /* Percent done */
  1851. static int oldtyp = 0, oldwin = -1, oldtry = -1, oldlen = -1;
  1852.  
  1853. #ifdef CK_ANSIC
  1854. void
  1855. screenc(int f, char c,long n,char *s)
  1856. #else
  1857. #ifdef MYCURSES
  1858. VOID
  1859. #else
  1860. int
  1861. #endif /* MYCURSES */
  1862. screenc(f,c,n,s)
  1863. int f;        /* argument descriptor */
  1864. char c;        /* a character or small integer */
  1865. long n;        /* a long integer */
  1866. char *s;    /* a string */
  1867. #endif /* CK_ANSIC */
  1868. /* screenc() */ {
  1869.  
  1870.     static int q = 0;
  1871.     static long fsiz = -1L;        /* Copy of file size */
  1872.     static long fcnt = 0L;        /* File count */
  1873.     static long fbyt = 0L;        /* Total file bytes */
  1874.  
  1875.     int len;                /* Length of string */
  1876.     int x;                /* Worker */
  1877.  
  1878.     if (cinit == 0 || cendw > 0) {    /* Handle borderline cases... */
  1879.     if (f == SCR_CW) {        /* Close window, but it's not open */
  1880.         ft_win = 0;
  1881.         return;
  1882.     }
  1883.     if (f == SCR_EM ||
  1884.        (f == SCR_PT && c == 'E')) {    /* Fatal error before window open */
  1885.         conoll(""); conoc('?'); conoll(s); return; /* Regular display */
  1886.     }
  1887.     }
  1888.     if (cinit == 0) {            /* Only call initscr() once */
  1889.     cendw = 1;            /* New window needs repainting */
  1890. #ifdef COMMENT
  1891.     if (!initscr()) {        /* Oops, can't initialize window? */
  1892. /*
  1893.   In fact, this doesn't happen.  "man curses" says initscr() halts the
  1894.   entire program if it fails, which is true on the systems where I've
  1895.   tested it.  It will fail if your terminal type is not known to it.
  1896.   That's why SET FILE DISPLAY FULLSCREEN calls tgetent() to make sure the
  1897.   terminal type is known before allowing a curses display.
  1898. */
  1899.         fprintf(stderr,"CURSES INITSCR ERROR\r\n");
  1900.         fdispla = XYFD_R;        /* Go back to regular display */
  1901.         return;
  1902.     } else {
  1903.         cinit++;            /* Window initialized ok */
  1904.         debug(F100,"CURSES INITSCR OK","",0);
  1905.     }
  1906. #else                    /* Save some memory. */
  1907. #ifdef CK_NEWTERM
  1908.     /* (From Andy Fyfe <andy@vlsi.cs.caltech.edu>)
  1909.        System V curses seems to reserve the right to alter the buffering
  1910.        on the output FILE* without restoring it.  Fortunately System V
  1911.        curses provides newterm(), an alternative to initscr(), that
  1912.        allows us to specify explicitly the terminal type and input and
  1913.        output FILE pointers.  Thus we duplicate stdout, and let curses
  1914.        have the copy.  The original remains unaltered.  Unfortunately,
  1915.        newterm() seems to be particular to System V.
  1916.     */
  1917.     s = getenv("TERM");
  1918.     if (ck_fd < 0) {
  1919.         ck_fd = dup(fileno(stdout));
  1920.         ck_stdout = (ck_fd >= 0) ? fdopen(ck_fd, "w") : NULL;
  1921.     }
  1922.     if (ck_stdout == NULL || newterm(s, ck_stdout, stdin) == 0) {
  1923.         fprintf(stderr,
  1924.           "Fullscreen display not supported for terminal type: %s\r\n",s);
  1925.         fdispla = XYFD_R;        /* Go back to regular display */
  1926.         return;
  1927.     }
  1928. #else
  1929.     initscr();            /* Initialize curses. */
  1930. #endif /* CK_NEWTERM */
  1931.     cinit++;            /* Remember curses was initialized. */
  1932. #endif /* COMMENT */
  1933.     }
  1934.     ft_win = 1;                /* Window is open */
  1935.     if (cendw) {            /* endwin() was called previously */
  1936. #ifdef VMS
  1937.     initscr();            /* (or should have been!) */
  1938.     clear();
  1939.     touchwin(stdscr);
  1940.     refresh();
  1941. #else /* All others... */
  1942.     clear();
  1943. #endif /* VMS */
  1944.  
  1945.     move(CW_BAN,0);            /* Display the banner */
  1946.     if (*myhost) printw("%s, %s",versio,(char *)myhost);
  1947.     else printw("%s",versio);
  1948.     move(CW_DIR,3);  printw("Current Directory: %s",zgtdir());
  1949.     if (network) {
  1950.         move(CW_LIN,9); printw("Remote Host: %s",ttname);
  1951.     } else {
  1952.         move(CW_LIN,0);  printw("Communication Device: %s",ttname);
  1953.     }
  1954.     move(CW_SPD,1);  printw("Communication Speed: ");
  1955.     move(CW_SPD,22);        /* Speed */
  1956.     if (network) {
  1957.         printw("(network)");
  1958.     } else {
  1959.         if (speed < 0L) speed = ttgspd();
  1960.         if (speed > 0L) {
  1961.         if (speed == 8880) printw("75/1200");
  1962.         else printw("%ld",speed);
  1963.         } else printw("unknown");
  1964.     }
  1965.     move(CW_PAR,14); printw("Parity: %s",parnam((char)parity));
  1966.     move(CW_TYP,11); printw("File Type:");
  1967.     move(CW_SIZ,11); printw("File Size:");
  1968.     move(CW_PCD, 8); printw("Percent Done:");
  1969.     move(CW_TR,  1); printw("Estimated Time Left:");
  1970.     move(CW_WS,  8); printw("Window Slots:");
  1971.     move(CW_PT,  9); printw("Packet Type:");
  1972.     move(CW_PC,  8); printw("Packet Count:");
  1973.     move(CW_PL,  7); printw("Packet Length:");
  1974.     move(CW_PR,  2); printw("Packet Retry Count:");
  1975.     move(CW_PB,  2); printw("Packet Block Check:");
  1976.     move(CW_ERR,10); printw("Last Error:");
  1977.     move(CW_MSG, 8); printw("Last Message:");
  1978. #ifdef ATTSV
  1979. #ifndef aegis
  1980. #ifndef datageneral
  1981. #ifndef OXOS
  1982. #define CK_NEED_SIG
  1983. #endif /* OXOS */
  1984. #endif /* datageneral */
  1985. #endif /* aegis */
  1986. #endif /* ATTSV */
  1987. #ifdef POSIX
  1988. #ifndef CK_NEED_SIG
  1989. #define CK_NEED_SIG
  1990. #endif /* CK_NEED_SIG */
  1991. #endif /* POSIX */
  1992.  
  1993. #ifdef CK_NEED_SIG
  1994.     move(CW_INT, 0); printw(
  1995. "<%s>X to cancel file, <%s>Z to cancel group, <%s><CR> to resend packet",
  1996.                 dbchr(escape), dbchr(escape), dbchr(escape));
  1997.     move(CW_INT + 1, 0); printw(
  1998. "<%s>E to send Error packet, or Ctrl-C to quit immediately.", dbchr(escape));
  1999. #else
  2000.     move(CW_INT, 0);
  2001. #ifdef OS2
  2002.     printw(
  2003.       "X to cancel file, Z to cancel group, <Enter> to resend packet,");
  2004. #else
  2005.     printw("X to cancel file, Z to cancel group, <CR> to resend packet,");
  2006. #endif /* OS2 */
  2007.     move(CW_INT + 1, 0);
  2008.     printw("E to send Error packet, or Ctrl-C to quit immediately.");
  2009. #endif /* CK_NEED_SIG */
  2010.     refresh();
  2011.     cendw = 0;
  2012.     }
  2013.     len = strlen(s);            /* Length of argument string */
  2014.  
  2015.     debug(F101,"SCREENC switch","",f);    /* Handle our function code */
  2016.     switch (f) {
  2017.       case SCR_FN:                /* Filename */
  2018.     fsiz = -1L;            /* Invalidate previous file size */
  2019.     move(CW_PCD,22);        /* Erase percent done from last time */
  2020.     clrtoeol();
  2021.     move(CW_SIZ,22);        /* Erase file size from last time */
  2022.     clrtoeol();
  2023.     move(CW_ERR,22);        /* And last error message */
  2024.     clrtoeol();
  2025.     if (what == W_SEND) {        /* If we're sending... */
  2026.         move(CW_NAM,13);
  2027.         printw("Sending:");
  2028.     } else if (what == W_RECV) {    /* If we're receiving... */
  2029.         move(CW_NAM,11);
  2030.         printw("Receiving:");
  2031.     } else {            /* If we don't know... */
  2032.         move(CW_NAM,11);        /* (should never see this) */
  2033.         printw("File Name:");
  2034.     }
  2035.     move(CW_NAM,22);        /* Display the filename */
  2036.     if (len > 57) {
  2037.         printw("%.54s..",s);
  2038.         len = 57;
  2039.     } else printw("%s",s);
  2040.     q = len;            /* Remember name length for later */
  2041.     clrtoeol();
  2042.     scrft();            /* Display file type */
  2043.     refresh(); return;
  2044.  
  2045.       case SCR_AN:                /* File as-name */
  2046.     if (q + len < 58) {        /* Will fit */
  2047.         move(CW_NAM, 22 + q);
  2048.         printw(" => %s",s);
  2049.     } else {            /* Too long */
  2050.         move(CW_NAM, 22);        /* Overwrite previous name */
  2051.         q = 0;
  2052.         len = 54;
  2053.         printw(" => %.51s..", s);    /* Truncate */
  2054.     }
  2055.     q += len + 4;            /* Remember horizontal position */
  2056.     clrtoeol(); refresh(); return;
  2057.  
  2058.       case SCR_FS:             /* File size */
  2059.     fsiz = n;
  2060.     move(CW_SIZ,22);
  2061.     if (fsiz > -1L) printw("%ld",n);
  2062.     clrtoeol();
  2063.     scrft();            /* File type */
  2064.     refresh(); return;
  2065.  
  2066.       case SCR_PT:                /* Packet type or pseudotype */
  2067.     if (spackets < 5) {
  2068.         /* Things that won't change after the 4th packet */
  2069.         move(CW_PAR,22); printw("%s",parnam((char)parity)); clrtoeol();
  2070.         clrtoeol();
  2071.         move(CW_PB, 22);        /* Block check on this packet */
  2072.         if (bctu == 4) printw("B"); else printw("%d",bctu);
  2073.         clrtoeol();
  2074.     }
  2075.  
  2076.     x = (what == W_RECV) ?        /* Packet length */
  2077.       rpktl+1 :
  2078.         spktl+1;
  2079.     if (x != oldlen) {        /* But only if it changed. */
  2080.         move(CW_PL, 22);
  2081.         printw("%d",x);
  2082.         clrtoeol();
  2083.         oldlen = x;
  2084.     }
  2085.     move(CW_PC, 22);        /* Packet count (always). */
  2086.     printw("%d",spackets);        /* WARNING: this can slow us way */
  2087.     clrtoeol();            /* down with short packets. */
  2088.  
  2089.     if (wcur != oldwin) {        /* Window slots, if changed. */
  2090.         move(CW_WS, 22);
  2091.         printw("%d of %d",wcur,wslotr);
  2092.         clrtoeol();
  2093.         oldwin = wcur;
  2094.     }
  2095.     if (retrans != oldtry) {    /* Retry count, if changed */
  2096.         move(CW_PR, 22);
  2097.         printw("%d",retrans);
  2098.         clrtoeol();
  2099.         oldtry = retrans;
  2100.     }
  2101.     if (c != oldtyp && c != 'Y' && c != 'N') { /* Sender's packet type */
  2102.         move(CW_PT,22);
  2103.         printw("%c",c);
  2104.         clrtoeol();
  2105.         oldtyp = c;
  2106.     }
  2107.     switch (c) {            /* Now handle specific packet types */
  2108.       case 'S':            /* Beginning of transfer */
  2109.         fcnt = fbyt = 0L;        /* Clear counters */
  2110.         break;
  2111.       case 'D':            /* Data packet */
  2112.         if (fsiz > 0L) {        /* Show percent done if known */
  2113.         long s, x;
  2114.         oldpct = pct;        /* Remember previous percent */
  2115.         pct = (fsiz > 99L) ? (ffc / (fsiz / 100L)) : 0L; /* New one */
  2116.         if (pct > 100L ||    /* Allow expansion */
  2117.            (oldpct == 99L && pct < 0L)) /* other boundary conditions */
  2118.           pct = 100L;
  2119.         if (pct != oldpct) {    /* Only do this 100 times per file */
  2120.             move(CW_PCD,22);
  2121.             printw("%ld", pct);
  2122.             clrtoeol();
  2123.  
  2124.             /* Time remaining for this file */
  2125.  
  2126.             s = (long) ((unsigned) gtimer() - fsecs); /* Secs so far */
  2127.             if (s > 0L) {
  2128.             /*
  2129.               Time remaining must be calculated using the smallest
  2130.               possible quantities, to prevent overflow:
  2131.                 (seconds_so_far * percent_left) / percent_done.
  2132.               And avoid divide_by_zero.
  2133.             */
  2134.             x = (pct > 0L) ? ((s * (100 - pct)) / pct) : -1L;
  2135.             if (x > -1L) {
  2136.                 move(CW_TR,22);
  2137.                 printw("%s",hhmmss(x));
  2138.                 clrtoeol();
  2139.             }
  2140.             }
  2141.         }
  2142.         }
  2143.         break;
  2144.       case 'E':            /* Error packet */
  2145. #ifdef COMMENT
  2146.         move(CW_ERR,22);        /* Print its data field */
  2147.         if (*s) printw("%s",s);
  2148.         clrtoeol();
  2149. #endif /* COMMENT */
  2150.         fcnt = fbyt = 0;        /* So no bytes for this file */
  2151.         break;
  2152.       case 'Q':            /* Crunched packet */
  2153.         move(CW_ERR,22);
  2154.         printw("Damaged Packet");
  2155.         clrtoeol();
  2156.         break;
  2157.       case 'T':            /* Timeout */
  2158.         move(CW_ERR,22);
  2159.         printw("Timeout");
  2160.         clrtoeol();
  2161.         break;
  2162.       default:            /* Others, do nothing */
  2163.         break;
  2164.     }
  2165.     refresh(); return;
  2166.  
  2167.       case SCR_ST:            /* File transfer status */
  2168.     move(CW_PCD,22);        /* Update percent done */
  2169.     if (c == ST_OK) {        /* OK, print 100 % */
  2170.         pct = 100;
  2171.         printw("100");
  2172.     } else if (fsiz > 0L)        /* Not OK, update final percent */
  2173.       printw("%ld",( ffc * 100L ) / fsiz);
  2174.     clrtoeol();
  2175.     move(CW_MSG,22);        /* Remove any previous message */
  2176.     clrtoeol(); refresh();
  2177.     move(CW_TR, 22);
  2178.     clrtoeol(); refresh();
  2179.  
  2180.     switch (c) {            /* Print new status message */
  2181.       case ST_OK:            /* Transfer OK */
  2182.         fcnt++;            /* Count this file */
  2183.         if (ffc > 0L)        /* For some reason ffc is off by 1 */
  2184.           fbyt += ffc - 1L;        /* Count its bytes */
  2185.         move(CW_MSG,22);
  2186.         printw("Transfer OK");    /* Say Transfer was OK */
  2187.         clrtoeol(); refresh();
  2188.         return;
  2189.  
  2190.       case ST_DISC:            /* Discarded */
  2191.         move(CW_ERR,22); printw("File discarded");
  2192.         clrtoeol(); refresh();
  2193.         return;
  2194.  
  2195.       case ST_INT:               /* Interrupted */
  2196.         move(CW_ERR,22); printw("Transfer interrupted");
  2197.         clrtoeol(); refresh();
  2198.         return;
  2199.  
  2200.       case ST_SKIP:            /* Skipped */
  2201.         move(CW_ERR,22); printw("File skipped");
  2202.         clrtoeol(); refresh();
  2203.         return;
  2204.  
  2205.       case ST_ERR:            /* Error message */
  2206.         move(CW_ERR,22); printw("%s",s);
  2207.         clrtoeol(); refresh();
  2208.         return;
  2209.  
  2210.       case ST_REFU:            /* Refused */
  2211.         move(CW_ERR,22);
  2212.         if (*s)
  2213.           printw("Refused, %s",s);
  2214.         else printw("Refused");
  2215.         clrtoeol(); refresh();
  2216.         return;
  2217.  
  2218.       case ST_INC:
  2219.         move(CW_ERR,22); printw("Incomplete");
  2220.         clrtoeol(); refresh();
  2221.         return;
  2222.  
  2223.       default:            /* Bad call */
  2224.         move(CW_ERR,22); printw("*** screen() called with bad status ***");
  2225.         clrtoeol(); refresh(); return;
  2226.     }
  2227.  
  2228.       case SCR_TC:                /* Transaction complete */    
  2229.     move(CW_MSG,22);        /* Print statistics in message line */
  2230.     if (tsecs > 0)
  2231.       printw("Files: %ld, Total Bytes: %ld, %ld cps",
  2232.          fcnt, fbyt, ((fbyt * 10L) / (long) tsecs) / 10L);
  2233.     else printw("Files: %ld, Total Bytes: %ld",fcnt,fbyt);
  2234.     clrtoeol();
  2235.     move(CW_TR, 1);
  2236.     printw("       Elapsed Time: %s",hhmmss((long)tsecs));
  2237.     clrtoeol();
  2238.     move(23,0); clrtoeol();        /* Clear instructions lines */
  2239.     move(22,0); clrtoeol();        /* to make room for prompt. */
  2240.     refresh();
  2241. #ifndef VMSCURSE
  2242.     endwin();
  2243. #endif /* VMSCURSE */
  2244.     pct = 100; oldpct = 0;        /* Reset these for next time. */
  2245.     oldtyp = 0; oldwin = -1; oldtry = -1; oldlen = -1;
  2246.     cendw = 1; conoc(BEL);        /* Close window, then beep. */
  2247.     ft_win = 0;            /* Window closed. */
  2248.     return;
  2249.  
  2250.       case SCR_EM:            /* Error packet (fatal) */
  2251.     move (CW_ERR,22);
  2252.     printw("? %s",s);
  2253.     conoc(BEL);
  2254.     clrtoeol(); refresh(); return;
  2255.  
  2256.       case SCR_QE:            /* Quantity equals */
  2257.       case SCR_TU:            /* Undelimited text */
  2258.       case SCR_TN:            /* Text delimited at start */
  2259.       case SCR_TZ:            /* Text delimited at end */
  2260.     return;                /* (ignored in fullscreen display) */
  2261.  
  2262.       case SCR_XD:                /* X-packet data */
  2263.     move(CW_NAM,22);
  2264.     printw("%s",s);
  2265.     clrtoeol(); refresh(); return;
  2266.  
  2267.       case SCR_CW:            /* Close Window */
  2268.     clrtoeol(); move(23,0); clrtoeol(); move(22,0);    clrtoeol();
  2269.     refresh();
  2270.     pct = 100; oldpct = 0;        /* Reset these for next time. */
  2271.     oldtyp = 0; oldwin = -1; oldtry = -1; oldlen = -1;
  2272.  
  2273. #ifndef VMSCURSE
  2274.     endwin();
  2275. #endif /* VMSCURSE */
  2276.     ft_win = 0;            /* Flag that window is closed. */
  2277.     cendw = 1; return;
  2278.  
  2279.       default:                /* Bad call */
  2280.     move (CW_ERR,22);
  2281.     printw("*** screen() called with bad function code ***");
  2282.     clrtoeol(); refresh(); return;
  2283.     }
  2284. }
  2285. #endif /* CK_CURSES */
  2286.  
  2287. #endif /* MAC */
  2288.