1 /* Work-alike for termcap, plus extra features.
2 Copyright (C) 1985, 86, 93, 94, 95, 2000, 2001
3 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 /* Emacs config.h may rename various library functions such as malloc. */
27 #include <lisp.h> /* xmalloc is here */
28 /* Get the O_* definitions for open et al. */
48 /* Do this after the include, in case string.h prototypes bcopy. */
49 #if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy)
50 #define bcopy(s, d, n) memcpy ((d), (s), (n))
60 #endif /* not emacs */
63 #define NULL (char *) 0
70 /* BUFSIZE is the initial size allocated for the buffer
71 for reading the termcap file.
73 Make it large normally for speed.
74 Make it variable when debugging, so can exercise
75 increasing the space dynamically. */
79 #define BUFSIZE bufsize
88 #define TERMCAP_FILE "/etc/termcap"
95 write (2, "virtual memory exhausted\n", 25);
103 register char *tem
= malloc (size
);
115 register char *tem
= realloc (ptr
, size
);
121 #endif /* not emacs */
123 /* Looking up capabilities in the entry already found. */
125 /* The pointer to the data made by tgetent is left here
126 for tgetnum, tgetflag and tgetstr to find. */
127 static char *term_entry
;
129 static char *tgetst1 ();
131 /* Search entry BP for capability CAP.
132 Return a pointer to the capability (in BP) if found,
136 find_capability (bp
, cap
)
137 register char *bp
, *cap
;
151 register char *ptr
= find_capability (term_entry
, cap
);
152 if (!ptr
|| ptr
[-1] != '#')
161 register char *ptr
= find_capability (term_entry
, cap
);
162 return ptr
&& ptr
[-1] == ':';
165 /* Look up a string-valued capability CAP.
166 If AREA is non-null, it points to a pointer to a block in which
167 to store the string. That pointer is advanced over the space used.
168 If AREA is null, space is allocated with `malloc'. */
175 register char *ptr
= find_capability (term_entry
, cap
);
176 if (!ptr
|| (ptr
[-1] != '=' && ptr
[-1] != '~'))
178 return tgetst1 (ptr
, area
);
181 #ifdef IS_EBCDIC_HOST
182 /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted,
183 gives meaning of character following \, or a space if no special meaning.
184 Sixteen characters per line within the string. */
187 = " \057\026 \047\014 \
192 /* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted,
193 gives meaning of character following \, or a space if no special meaning.
194 Eight characters per line within the string. */
197 = " \007\010 \033\014 \
203 /* PTR points to a string value inside a termcap entry.
204 Copy that value, processing \ and ^ abbreviations,
205 into the block that *AREA points to,
206 or to newly allocated storage if AREA is NULL.
207 Return the address to which we copied the value,
208 or NULL if PTR is NULL. */
215 register char *p
, *r
;
224 /* `ret' gets address of where to store the string. */
227 /* Compute size of block needed (may overestimate). */
229 while ((c
= *p
++) && c
!= ':' && c
!= '\n')
231 ret
= (char *) xmalloc (p
- ptr
+ 1);
236 /* Copy the string value, stopping at null or colon.
237 Also process ^ and \ abbreviations. */
240 while ((c
= *p
++) && c
!= ':' && c
!= '\n')
253 if (c
>= '0' && c
<= '7')
258 while (++size
< 3 && (c1
= *p
) >= '0' && c1
<= '7')
265 #ifdef IS_EBCDIC_HOST
266 else if (c
>= 0200 && c
< 0360)
268 c1
= esctab
[(c
& ~0100) - 0200];
273 else if (c
>= 0100 && c
< 0200)
275 c1
= esctab
[(c
& ~040) - 0100];
290 /* Outputting a string with padding. */
294 /* If OSPEED is 0, we use this as the actual baud rate. */
300 /* Actual baud rate if positive;
301 - baud rate / 100 if negative. */
303 static int speeds
[] =
306 0, 50, 75, 110, 134, 150, -3, -6, -12, -18,
307 -20, -24, -36, -48, -72, -96, -192
309 0, 50, 75, 110, 135, 150, -2, -3, -6, -12,
310 -18, -24, -48, -96, -192, -288, -384, -576, -1152
314 #endif /* not emacs */
317 tputs (str
, nlines
, outfun
)
320 register int (*outfun
) ();
322 register int padcount
= 0;
326 extern EMACS_INT baud_rate
;
328 /* For quite high speeds, convert to the smaller
329 units to avoid overflow. */
331 speed
= - speed
/ 100;
334 speed
= tputs_baud_rate
;
336 speed
= speeds
[ospeed
];
342 while (*str
>= '0' && *str
<= '9')
344 padcount
+= *str
++ - '0';
350 padcount
+= *str
++ - '0';
360 /* PADCOUNT is now in units of tenths of msec.
361 SPEED is measured in characters per 10 seconds
362 or in characters per .1 seconds (if negative).
363 We use the smaller units for larger speeds to avoid overflow. */
368 padcount
= -padcount
;
375 while (padcount
-- > 0)
379 /* Finding the termcap entry in the termcap data base. */
381 struct termcap_buffer
390 /* Forward declarations of static functions. */
392 static int scan_file ();
393 static char *gobble_line ();
394 static int compare_contin ();
395 static int name_match ();
404 valid_filename_p (fn
)
407 struct FAB fab
= cc$rms_fab
;
408 struct NAM nam
= cc$rms_nam
;
409 char esa
[NAM$C_MAXRSS
];
412 fab
.fab$b_fns
= strlen(fn
);
413 fab
.fab$l_nam
= &nam
;
414 fab
.fab$l_fop
= FAB$M_NAM
;
417 nam
.nam$b_ess
= sizeof esa
;
419 return SYS$
PARSE(&fab
, 0, 0) == RMS$_NORMAL
;
424 #ifdef MSDOS /* MW, May 1993 */
426 valid_filename_p (fn
)
429 return *fn
== '/' || fn
[1] == ':';
432 #define valid_filename_p(fn) (*(fn) == '/')
437 /* Find the termcap entry data for terminal type NAME
438 and store it in the block that BP points to.
439 Record its address for future use.
441 If BP is null, space is dynamically allocated.
443 Return -1 if there is some difficulty accessing the data base
445 0 if the data base is accessible but the type NAME is not defined
446 in it, and some other value otherwise. */
452 register char *termcap_name
;
454 struct termcap_buffer buf
;
456 char *tc_search_point
;
460 char *tcenv
= NULL
; /* TERMCAP value, if it contains :tc=. */
461 char *indirect
= NULL
; /* Terminal type in :tc= in TERMCAP value. */
464 #ifdef INTERNAL_TERMINAL
465 /* For the internal terminal we don't want to read any termcap file,
467 if (!strcmp (name
, "internal"))
469 term
= INTERNAL_TERMINAL
;
472 malloc_size
= 1 + strlen (term
);
473 bp
= (char *) xmalloc (malloc_size
);
478 #endif /* INTERNAL_TERMINAL */
480 /* For compatibility with programs like `less' that want to
481 put data in the termcap buffer themselves as a fallback. */
485 termcap_name
= getenv ("TERMCAP");
486 if (termcap_name
&& *termcap_name
== '\0')
488 #if defined (MSDOS) && !defined (TEST)
489 if (termcap_name
&& (*termcap_name
== '\\'
490 || *termcap_name
== '/'
491 || termcap_name
[1] == ':'))
492 dostounix_filename(termcap_name
);
495 filep
= termcap_name
&& valid_filename_p (termcap_name
);
497 /* If termcap_name is non-null and starts with / (in the un*x case, that is),
498 it is a file name to use instead of /etc/termcap.
499 If it is non-null and does not start with /,
500 it is the entry itself, but only if
501 the name the caller requested matches the TERM variable. */
503 if (termcap_name
&& !filep
&& !strcmp (name
, getenv ("TERM")))
505 indirect
= tgetst1 (find_capability (termcap_name
, "tc"), (char **) 0);
511 strcpy (bp
, termcap_name
);
515 { /* It has tc=. Need to read /etc/termcap. */
516 tcenv
= termcap_name
;
521 if (!termcap_name
|| !filep
)
522 termcap_name
= TERMCAP_FILE
;
524 /* Here we know we must search a file and termcap_name has its name. */
527 fd
= open (termcap_name
, O_RDONLY
|O_TEXT
, 0);
529 fd
= open (termcap_name
, O_RDONLY
, 0);
535 /* Add 1 to size to ensure room for terminating null. */
536 buf
.beg
= (char *) xmalloc (buf
.size
+ 1);
537 term
= indirect
? indirect
: name
;
541 malloc_size
= indirect
? strlen (tcenv
) + 1 : buf
.size
;
542 bp
= (char *) xmalloc (malloc_size
);
544 tc_search_point
= bp1
= bp
;
547 /* Copy the data from the environment variable. */
550 bp1
+= strlen (tcenv
);
555 /* Scan the file, reading it via buf, till find start of main entry. */
556 if (scan_file (term
, fd
, &buf
) == 0)
565 /* Free old `term' if appropriate. */
569 /* If BP is malloc'd by us, make sure it is big enough. */
572 int offset1
= bp1
- bp
, offset2
= tc_search_point
- bp
;
573 malloc_size
= offset1
+ buf
.size
;
574 bp
= termcap_name
= (char *) xrealloc (bp
, malloc_size
);
575 bp1
= termcap_name
+ offset1
;
576 tc_search_point
= termcap_name
+ offset2
;
579 /* Copy the line of the entry from buf into bp. */
580 termcap_name
= buf
.ptr
;
581 while ((*bp1
++ = c
= *termcap_name
++) && c
!= '\n')
582 /* Drop out any \ newline sequence. */
583 if (c
== '\\' && *termcap_name
== '\n')
590 /* Does this entry refer to another terminal type's entry?
591 If something is found, copy it into heap and null-terminate it. */
592 tc_search_point
= find_capability (tc_search_point
, "tc");
593 term
= tgetst1 (tc_search_point
, (char **) 0);
600 bp
= (char *) xrealloc (bp
, bp1
- bp
+ 1);
607 /* Given file open on FD and buffer BUFP,
608 scan the file from the beginning until a line is found
609 that starts the entry for terminal type STR.
610 Return 1 if successful, with that line in BUFP,
611 or 0 if no entry is found in the file. */
614 scan_file (str
, fd
, bufp
)
617 register struct termcap_buffer
*bufp
;
621 bufp
->ptr
= bufp
->beg
;
630 /* Read a line into the buffer. */
634 /* if it is continued, append another line to it,
635 until a non-continued line ends. */
636 end
= gobble_line (fd
, bufp
, end
);
638 while (!bufp
->ateof
&& end
[-2] == '\\');
640 if (*bufp
->ptr
!= '#'
641 && name_match (bufp
->ptr
, str
))
644 /* Discard the line just processed. */
650 /* Return nonzero if NAME is one of the names specified
651 by termcap entry LINE. */
654 name_match (line
, name
)
659 if (!compare_contin (line
, name
))
661 /* This line starts an entry. Is it the right one? */
662 for (tem
= line
; *tem
&& *tem
!= '\n' && *tem
!= ':'; tem
++)
663 if (*tem
== '|' && !compare_contin (tem
+ 1, name
))
670 compare_contin (str1
, str2
)
671 register char *str1
, *str2
;
678 while (c1
== '\\' && *str1
== '\n')
681 while ((c1
= *str1
++) == ' ' || c1
== '\t');
685 /* End of type being looked up. */
686 if (c1
== '|' || c1
== ':')
687 /* If end of name in data base, we win. */
697 /* Make sure that the buffer <- BUFP contains a full line
698 of the file open on FD, starting at the place BUFP->ptr
699 points to. Can read more of the file, discard stuff before
700 BUFP->ptr, or make the buffer bigger.
702 Return the pointer to after the newline ending the line,
703 or to the end of the file, if there is no newline to end it.
705 Can also merge on continuation lines. If APPEND_END is
706 non-null, it points past the newline of a line that is
707 continued; we add another line onto it and regard the whole
708 thing as one line. The caller decides when a line is continued. */
711 gobble_line (fd
, bufp
, append_end
)
713 register struct termcap_buffer
*bufp
;
718 register char *buf
= bufp
->beg
;
722 append_end
= bufp
->ptr
;
727 while (*end
&& *end
!= '\n') end
++;
731 return buf
+ bufp
->full
;
732 if (bufp
->ptr
== buf
)
734 if (bufp
->full
== bufp
->size
)
737 /* Add 1 to size to ensure room for terminating null. */
738 tem
= (char *) xrealloc (buf
, bufp
->size
+ 1);
739 bufp
->ptr
= (bufp
->ptr
- buf
) + tem
;
740 append_end
= (append_end
- buf
) + tem
;
741 bufp
->beg
= buf
= tem
;
746 append_end
-= bufp
->ptr
- buf
;
747 bcopy (bufp
->ptr
, buf
, bufp
->full
-= bufp
->ptr
- buf
);
750 if (!(nread
= read (fd
, buf
+ bufp
->full
, bufp
->size
- bufp
->full
)))
753 buf
[bufp
->full
] = '\0';
774 printf ("TERM: %s\n", term
);
776 buf
= (char *) tgetent (0, term
);
779 printf ("No entry.\n");
783 printf ("Entry: %s\n", buf
);
788 printf ("co: %d\n", tgetnum ("co"));
789 printf ("am: %d\n", tgetflag ("am"));
795 char *x
= tgetstr (cap
, 0);
798 printf ("%s: ", cap
);
802 if (*y
<= ' ' || *y
== 0177)
803 printf ("\\%0o", *y
);