home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / termcap-1.2-src.lha / termcap-1.2 / termcap.c < prev    next >
C/C++ Source or Header  |  1993-04-15  |  15KB  |  717 lines

  1. /* Work-alike for termcap, plus extra features.
  2.    Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc.
  3.  
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with this program; see the file COPYING.  If not, write to
  16. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Emacs config.h may rename various library functions such as malloc.  */
  19. #ifdef HAVE_CONFIG_H
  20. #include "config.h"
  21. #else /* not HAVE_CONFIG_H */
  22.  
  23. #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
  24. #define bcopy(s, d, n) memcpy ((d), (s), (n))
  25. #endif
  26.  
  27. #ifdef STDC_HEADERS
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #else
  31. char *getenv ();
  32. char *malloc ();
  33. char *realloc ();
  34. #endif
  35.  
  36. #ifdef HAVE_UNISTD_H
  37. #include <unistd.h>
  38. #endif
  39. #ifdef _POSIX_VERSION
  40. #include <fcntl.h>
  41. #endif
  42.  
  43. #endif /* not HAVE_CONFIG_H */
  44.  
  45. #ifndef NULL
  46. #define NULL (char *) 0
  47. #endif
  48.  
  49. /* BUFSIZE is the initial size allocated for the buffer
  50.    for reading the termcap file.
  51.    It is not a limit.
  52.    Make it large normally for speed.
  53.    Make it variable when debugging, so can exercise
  54.    increasing the space dynamically.  */
  55.  
  56. #ifndef BUFSIZE
  57. #ifdef DEBUG
  58. #define BUFSIZE bufsize
  59.  
  60. int bufsize = 128;
  61. #else
  62. #define BUFSIZE 2048
  63. #endif
  64. #endif
  65.  
  66. #ifndef emacs
  67. static void
  68. memory_out ()
  69. {
  70.   write (2, "virtual memory exhausted\n", 25);
  71.   exit (1);
  72. }
  73.  
  74. static char *
  75. xmalloc (size)
  76.      unsigned size;
  77. {
  78.   register char *tem = malloc (size);
  79.  
  80.   if (!tem)
  81.     memory_out ();
  82.   return tem;
  83. }
  84.  
  85. static char *
  86. xrealloc (ptr, size)
  87.      char *ptr;
  88.      unsigned size;
  89. {
  90.   register char *tem = realloc (ptr, size);
  91.  
  92.   if (!tem)
  93.     memory_out ();
  94.   return tem;
  95. }
  96. #endif /* not emacs */
  97.  
  98. /* Looking up capabilities in the entry already found.  */
  99.  
  100. /* The pointer to the data made by tgetent is left here
  101.    for tgetnum, tgetflag and tgetstr to find.  */
  102. static char *term_entry;
  103.  
  104. static char *tgetst1 ();
  105.  
  106. /* Search entry BP for capability CAP.
  107.    Return a pointer to the capability (in BP) if found,
  108.    0 if not found.  */
  109.  
  110. static char *
  111. find_capability (bp, cap)
  112.      register char *bp, *cap;
  113. {
  114.   for (; *bp; bp++)
  115.     if (bp[0] == ':'
  116.     && bp[1] == cap[0]
  117.     && bp[2] == cap[1])
  118.       return &bp[4];
  119.   return NULL;
  120. }
  121.  
  122. int
  123. tgetnum (cap)
  124.      char *cap;
  125. {
  126.   register char *ptr = find_capability (term_entry, cap);
  127.   if (!ptr || ptr[-1] != '#')
  128.     return -1;
  129.   return atoi (ptr);
  130. }
  131.  
  132. int
  133. tgetflag (cap)
  134.      char *cap;
  135. {
  136.   register char *ptr = find_capability (term_entry, cap);
  137.   return ptr && ptr[-1] == ':';
  138. }
  139.  
  140. /* Look up a string-valued capability CAP.
  141.    If AREA is non-null, it points to a pointer to a block in which
  142.    to store the string.  That pointer is advanced over the space used.
  143.    If AREA is null, space is allocated with `malloc'.  */
  144.  
  145. char *
  146. tgetstr (cap, area)
  147.      char *cap;
  148.      char **area;
  149. {
  150.   register char *ptr = find_capability (term_entry, cap);
  151.   if (!ptr || (ptr[-1] != '=' && ptr[-1] != '~'))
  152.     return NULL;
  153.   return tgetst1 (ptr, area);
  154. }
  155.  
  156. /* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted,
  157.    gives meaning of character following \, or a space if no special meaning.
  158.    Eight characters per line within the string.  */
  159.  
  160. static char esctab[]
  161.   = " \007\010  \033\014 \
  162.       \012 \
  163.   \015 \011 \013 \
  164.         ";
  165.  
  166. /* PTR points to a string value inside a termcap entry.
  167.    Copy that value, processing \ and ^ abbreviations,
  168.    into the block that *AREA points to,
  169.    or to newly allocated storage if AREA is NULL.
  170.    Return the address to which we copied the value,
  171.    or NULL if PTR is NULL.  */
  172.  
  173. static char *
  174. tgetst1 (ptr, area)
  175.      char *ptr;
  176.      char **area;
  177. {
  178.   register char *p, *r;
  179.   register int c;
  180.   register int size;
  181.   char *ret;
  182.   register int c1;
  183.  
  184.   if (!ptr)
  185.     return NULL;
  186.  
  187.   /* `ret' gets address of where to store the string.  */
  188.   if (!area)
  189.     {
  190.       /* Compute size of block needed (may overestimate).  */
  191.       p = ptr;
  192.       while ((c = *p++) && c != ':' && c != '\n')
  193.     ;
  194.       ret = (char *) xmalloc (p - ptr + 1);
  195.     }
  196.   else
  197.     ret = *area;
  198.  
  199.   /* Copy the string value, stopping at null or colon.
  200.      Also process ^ and \ abbreviations.  */
  201.   p = ptr;
  202.   r = ret;
  203.   while ((c = *p++) && c != ':' && c != '\n')
  204.     {
  205.       if (c == '^')
  206.     c = *p++ & 037;
  207.       else if (c == '\\')
  208.     {
  209.       c = *p++;
  210.       if (c >= '0' && c <= '7')
  211.         {
  212.           c -= '0';
  213.           size = 0;
  214.  
  215.           while (++size < 3 && (c1 = *p) >= '0' && c1 <= '7')
  216.         {
  217.           c *= 8;
  218.           c += c1 - '0';
  219.           p++;
  220.         }
  221.         }
  222.       else if (c >= 0100 && c < 0200)
  223.         {
  224.           c1 = esctab[(c & ~040) - 0100];
  225.           if (c1 != ' ')
  226.         c = c1;
  227.         }
  228.     }
  229.       *r++ = c;
  230.     }
  231.   *r = '\0';
  232.   /* Update *AREA.  */
  233.   if (area)
  234.     *area = r + 1;
  235.   return ret;
  236. }
  237.  
  238. /* Outputting a string with padding.  */
  239.  
  240. short ospeed;
  241. /* If OSPEED is 0, we use this as the actual baud rate.  */
  242. int tputs_baud_rate;
  243. char PC;
  244.  
  245. /* Actual baud rate if positive;
  246.    - baud rate / 100 if negative.  */
  247.  
  248. static short speeds[] =
  249.   {
  250. #ifdef VMS
  251.     0, 50, 75, 110, 134, 150, -3, -6, -12, -18,
  252.     -20, -24, -36, -48, -72, -96, -192
  253. #else /* not VMS */
  254.     0, 50, 75, 110, 135, 150, -2, -3, -6, -12,
  255.     -18, -24, -48, -96, -192, -384
  256. #endif /* not VMS */
  257.   };
  258.  
  259. void
  260. tputs (str, nlines, outfun)
  261.      register char *str;
  262.      int nlines;
  263.      register int (*outfun) ();
  264. {
  265.   register int padcount = 0;
  266.   register int speed;
  267.  
  268. #ifdef emacs
  269.   extern baud_rate;
  270.   speed = baud_rate;
  271. #else
  272.   if (ospeed == 0)
  273.     speed = tputs_baud_rate;
  274.   else
  275.     speed = speeds[ospeed];
  276. #endif
  277.  
  278.   if (!str)
  279.     return;
  280.  
  281.   while (*str >= '0' && *str <= '9')
  282.     {
  283.       padcount += *str++ - '0';
  284.       padcount *= 10;
  285.     }
  286.   if (*str == '.')
  287.     {
  288.       str++;
  289.       padcount += *str++ - '0';
  290.     }
  291.   if (*str == '*')
  292.     {
  293.       str++;
  294.       padcount *= nlines;
  295.     }
  296.   while (*str)
  297.     (*outfun) (*str++);
  298.  
  299.   /* padcount is now in units of tenths of msec.  */
  300.   padcount *= speeds[ospeed];
  301.   padcount += 500;
  302.   padcount /= 1000;
  303.   if (speeds[ospeed] < 0)
  304.     padcount = -padcount;
  305.   else
  306.     {
  307.       padcount += 50;
  308.       padcount /= 100;
  309.     }
  310.  
  311.   while (padcount-- > 0)
  312.     (*outfun) (PC);
  313. }
  314.  
  315. /* Finding the termcap entry in the termcap data base.  */
  316.  
  317. struct buffer
  318.   {
  319.     char *beg;
  320.     int size;
  321.     char *ptr;
  322.     int ateof;
  323.     int full;
  324.   };
  325.  
  326. /* Forward declarations of static functions.  */
  327.  
  328. static int scan_file ();
  329. static char *gobble_line ();
  330. static int compare_contin ();
  331. static int name_match ();
  332.  
  333. #ifdef VMS
  334.  
  335. #include <rmsdef.h>
  336. #include <fab.h>
  337. #include <nam.h>
  338.  
  339. static int
  340. valid_filename_p (fn)
  341.      char *fn;
  342. {
  343.   struct FAB fab = cc$rms_fab;
  344.   struct NAM nam = cc$rms_nam;
  345.   char esa[NAM$C_MAXRSS];
  346.  
  347.   fab.fab$l_fna = fn;
  348.   fab.fab$b_fns = strlen(fn);
  349.   fab.fab$l_nam = &nam;
  350.   fab.fab$l_fop = FAB$M_NAM;
  351.  
  352.   nam.nam$l_esa = esa;
  353.   nam.nam$b_ess = sizeof esa;
  354.  
  355.   return SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL;
  356. }
  357.  
  358. #else /* !VMS */
  359.  
  360. #define valid_filename_p(fn) (*(fn) == '/')
  361.  
  362. #endif /* !VMS */
  363.  
  364. /* Find the termcap entry data for terminal type NAME
  365.    and store it in the block that BP points to.
  366.    Record its address for future use.
  367.  
  368.    If BP is null, space is dynamically allocated.
  369.  
  370.    Return -1 if there is some difficulty accessing the data base
  371.    of terminal types,
  372.    0 if the data base is accessible but the type NAME is not defined
  373.    in it, and some other value otherwise.  */
  374.  
  375. int
  376. tgetent (bp, name)
  377.      char *bp, *name;
  378. {
  379.   register char *termcap_name;
  380.   register int fd;
  381.   struct buffer buf;
  382.   register char *bp1;
  383.   char *bp2;
  384.   char *term;
  385.   int malloc_size = 0;
  386.   register int c;
  387.   char *tcenv;            /* TERMCAP value, if it contains :tc=.  */
  388.   char *indirect = NULL;    /* Terminal type in :tc= in TERMCAP value.  */
  389.   int filep;
  390.  
  391.   termcap_name = getenv ("TERMCAP");
  392.   if (termcap_name && *termcap_name == '\0')
  393.     termcap_name = NU