home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume22 / queuer / part02 / com.c next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  2.9 KB  |  149 lines

  1. /* Copyright 1990  The President and Fellows of Harvard University
  2.  
  3. Permission to use, copy, modify, and distribute this program for any
  4. purpose and without fee is hereby granted, provided that this
  5. copyright and permission notice appear on all copies and supporting
  6. documentation, the name of Harvard University not be used in advertising
  7. or publicity pertaining to distribution of the program, or to results
  8. derived from its use, without specific prior written permission, and notice
  9. be given in supporting documentation that copying and distribution is by
  10. permission of Harvard University.  Harvard University makes no
  11. representations about the suitability of this software for any purpose.
  12. It is provided "as is" without express or implied warranty.    */
  13.  
  14. /* com.c - Dan Lanciani '85 */
  15.  
  16. #include <sgtty.h>
  17. #include <stdio.h>
  18. #include <signal.h>
  19.  
  20. #include "queue.h"
  21.  
  22. int tolduser;
  23.  
  24. com(s, se)
  25. {
  26.     char buf[BUFSIZ];
  27.     register int cnt;
  28.  
  29.     switch(mode) {
  30.  
  31.         case QM_BATCH:
  32.             if(!tolduser)
  33.                 fprintf(stderr, "Job queued.\n");
  34.             break;
  35.  
  36.         case QM_BACKGROUND:
  37.             if(se < 0)
  38.                 while((cnt = read(s, buf, BUFSIZ)) > 0)
  39.                     write(1, buf, cnt);
  40.             else
  41.                 modem(s, se, -1, 1, 2);
  42.             break;
  43.  
  44.         case QM_INTERACTIVE:
  45.             modem(s, se, 0, 1, 2);
  46.             break;
  47.  
  48.         default:
  49.             fprintf(stderr, "Bad mode (%d)\n", mode);
  50.             break;
  51.     }
  52. }
  53.  
  54. static long tmask, emask;
  55.  
  56. modem(s, se, i, o, e)
  57. {
  58.     long isample, osample;
  59.     register int scnt, secnt, tcnt;
  60.     int t, on = 1;
  61.     char sbuf[BUFSIZ], sebuf[BUFSIZ], tbuf[BUFSIZ];
  62.     register char *sp, *sep, *tp;
  63.  
  64.     ioctl(s, FIONBIO, &on);
  65.     scnt = secnt = tcnt = 0;
  66.     sp = sbuf;
  67.     sep = sebuf;
  68.     tp = tbuf;
  69.     if(i < 0)
  70.         tmask = 0;
  71.     else
  72.         tmask = (1L<<i);
  73.     emask = (1L<<se);
  74.     while(1) {
  75.         isample = osample = 0;
  76.         if(scnt)
  77.             osample |= (1L<<o);
  78.         else
  79.             isample |= (1L<<s);
  80.         if(secnt)
  81.             osample |= (1L<<e);
  82.         else
  83.             isample |= emask;
  84.         if(tcnt)
  85.             osample |= (1L<<s);
  86.         else
  87.             isample |= tmask;
  88.         if(select(32, &isample, &osample, 0, 0) <= 0)
  89.             continue;
  90.         if(isample & (1L<<s))
  91.             if((scnt = read(s, sbuf, BUFSIZ)) <= 0) {
  92.                 if(scnt < 0)
  93.                     break;
  94.                 close(o);
  95.                 break;
  96.             }
  97.             else
  98.                 sp = sbuf;
  99.         if(isample & (1L<<se))
  100.             if((secnt = read(se, sebuf, BUFSIZ)) <= 0) {
  101.                 if(secnt < 0)
  102.                     break;
  103.                 close(e);
  104.                 emask = 0;
  105.             }
  106.             else
  107.                 sep = sebuf;
  108.         if(isample & tmask) {
  109.             if(isatty(i)) {
  110.                 ioctl(i, TIOCGPGRP, &t);
  111.                 if(t != getpgrp(getpid())) {
  112.                     shutdown(s, 1);
  113.                     tmask = 0;
  114.                     continue;
  115.                 }
  116.             }
  117.             if((tcnt = read(i, tbuf, BUFSIZ)) <= 0) {
  118.                 if(tcnt < 0)
  119.                     break;
  120.                 shutdown(s, 1);
  121.                 tmask = 0;
  122.             }
  123.             else
  124.                 tp = tbuf;
  125.         }
  126.         if(osample & (1L<<s)) {
  127.             t = write(s, tp, tcnt);
  128.                 if(t < 0)
  129.                     break;
  130.             tcnt -= t;
  131.             tp += t;
  132.         }
  133.         if(osample & (1L<<e)) {
  134.             t = write(e, sep, secnt);
  135.                 if(t < 0)
  136.                     break;
  137.             secnt -= t;
  138.             sep += t;
  139.         }
  140.         if(osample & (1L<<o)) {
  141.             t = write(o, sp, scnt);
  142.                 if(t < 0)
  143.                     break;
  144.             scnt -= t;
  145.             sp += t;
  146.         }
  147.     }
  148. }
  149.