home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume25 / tcsh-6.01 / part03 / sh.print.c < prev    next >
C/C++ Source or Header  |  1991-12-19  |  5KB  |  224 lines

  1. /* $Header: /home/hyperion/mu/christos/src/sys/tcsh-6.01/RCS/sh.print.c,v 3.2 1991/10/12 04:23:51 christos Exp $ */
  2. /*
  3.  * sh.print.c: Primitive Output routines.
  4.  */
  5. /*-
  6.  * Copyright (c) 1980, 1991 The Regents of the University of California.
  7.  * All rights reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  * 3. All advertising materials mentioning features or use of this software
  18.  *    must display the following acknowledgement:
  19.  *    This product includes software developed by the University of
  20.  *    California, Berkeley and its contributors.
  21.  * 4. Neither the name of the University nor the names of its contributors
  22.  *    may be used to endorse or promote products derived from this software
  23.  *    without specific prior written permission.
  24.  *
  25.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  26.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  31.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  33.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  34.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  35.  * SUCH DAMAGE.
  36.  */
  37. #include "sh.h"
  38.  
  39. RCSID("$Id: sh.print.c,v 3.2 1991/10/12 04:23:51 christos Exp $")
  40.  
  41. #include "ed.h"
  42.  
  43. extern int Tty_eight_bit;
  44. extern int Tty_raw_mode;
  45. extern Char GettingInput;
  46.  
  47. int     lbuffed = 1;        /* true if line buffered */
  48.  
  49. static    void    p2dig    __P((int));
  50.  
  51. /*
  52.  * C Shell
  53.  */
  54.  
  55. #ifdef RLIMIT_CPU
  56. void
  57. psecs(l)
  58.     long    l;
  59. {
  60.     register int i;
  61.  
  62.     i = l / 3600;
  63.     if (i) {
  64.     xprintf("%d:", i);
  65.     i = l % 3600;
  66.     p2dig(i / 60);
  67.     goto minsec;
  68.     }
  69.     i = l;
  70.     xprintf("%d", i / 60);
  71. minsec:
  72.     i %= 60;
  73.     xprintf(":");
  74.     p2dig(i);
  75. }
  76.  
  77. #endif
  78.  
  79. void
  80. pcsecs(l)            /* PWP: print mm:ss.dd, l is in sec*100 */
  81. #ifdef BSDTIMES
  82.     long    l;
  83.  
  84. #else                /* BSDTIMES */
  85. #ifndef POSIX
  86.     time_t  l;
  87.  
  88. #else                /* POSIX */
  89.     clock_t l;
  90.  
  91. #endif                /* POSIX */
  92. #endif                /* BSDTIMES */
  93. {
  94.     register int i;
  95.  
  96.     i = l / 360000;
  97.     if (i) {
  98.     xprintf("%d:", i);
  99.     i = (l % 360000) / 100;
  100.     p2dig(i / 60);
  101.     goto minsec;
  102.     }
  103.     i = l / 100;
  104.     xprintf("%d", i / 60);
  105. minsec:
  106.     i %= 60;
  107.     xprintf(":");
  108.     p2dig(i);
  109.     xprintf(".");
  110.     p2dig((int) (l % 100));
  111. }
  112.  
  113. static void 
  114. p2dig(i)
  115.     register int i;
  116. {
  117.  
  118.     xprintf("%d%d", i / 10, i % 10);
  119. }
  120.  
  121. char    linbuf[2048];        /* was 128 */
  122. char   *linp = linbuf;
  123. bool    output_raw = 0;        /* PWP */
  124.  
  125. void
  126. xputchar(c)
  127.     register int c;
  128. {
  129.     int     atr = 0;
  130.  
  131.     atr |= c & ATTRIBUTES & TRIM;
  132.     c &= CHAR | QUOTE;
  133.     if (!output_raw && (c & QUOTE) == 0) {
  134.     if (Iscntrl(c)) {
  135.         if (c != '\t' && c != '\n' && c != '\r') {
  136.         xputchar('^' | atr);
  137.         if (c == ASCII)
  138.             c = '?';
  139.         else
  140.             c |= 0100;
  141.         }
  142.     }
  143.     else if (!Isprint(c)) {
  144.         xputchar('\\' | atr);
  145.         xputchar((((c >> 6) & 7) + '0') | atr);
  146.         xputchar((((c >> 3) & 7) + '0') | atr);
  147.         c = (c & 7) + '0';
  148.     }
  149.     (void) putraw(c | atr);
  150.     }
  151.     else {
  152.     c &= TRIM;
  153.     if (haderr ? (didfds ? is2atty : isdiagatty) :
  154.         (didfds ? is1atty : isoutatty))
  155.         SetAttributes(c | atr);
  156.     (void) putpure(c);
  157.     }
  158.     if (lbuffed && (c & CHAR) == '\n')
  159.     flush();
  160. }
  161.  
  162. int
  163. putraw(c)
  164.     register int c;
  165. {
  166.     if (haderr ? (didfds ? is2atty : isdiagatty) :
  167.     (didfds ? is1atty : isoutatty)) {
  168.     if (Tty_eight_bit == -1)
  169.         ed_set_tty_eight_bit();
  170.     if (!Tty_eight_bit && (c & META)) {
  171.         c = (c & ~META) | STANDOUT;
  172.     }
  173.     SetAttributes(c);
  174.     }
  175.     return putpure(c);
  176. }
  177.  
  178. int
  179. putpure(c)
  180.     register int c;
  181. {
  182.     c &= CHAR;
  183.  
  184.     *linp++ = c;
  185.     if (linp >= &linbuf[sizeof linbuf - 10])
  186.     flush();
  187.     return (1);
  188. }
  189.  
  190. void
  191. draino()
  192. {
  193.     linp = linbuf;
  194. }
  195.  
  196. void
  197. flush()
  198. {
  199.     register int unit;
  200.  
  201.     /* int lmode; */
  202.  
  203.     if (linp == linbuf)
  204.     return;
  205.     if (GettingInput && !Tty_raw_mode && linp < &linbuf[sizeof linbuf - 10])
  206.     return;
  207.     if (haderr)
  208.     unit = didfds ? 2 : SHDIAG;
  209.     else
  210.     unit = didfds ? 1 : SHOUT;
  211. #ifdef COMMENT
  212. #ifdef TIOCLGET
  213.     if (didfds == 0 && ioctl(unit, TIOCLGET, (ioctl_t) & lmode) == 0 &&
  214.     lmode & LFLUSHO) {
  215.     lmode = LFLUSHO;
  216.     (void) ioctl(unit, TIOCLBIC, (ioclt_t) & lmode);
  217.     (void) write(unit, "\n", 1);
  218.     }
  219. #endif
  220. #endif
  221.     (void) write(unit, linbuf, (size_t) (linp - linbuf));
  222.     linp = linbuf;
  223. }
  224.