1 /* Work-alike for termcap, plus extra features.
2 Copyright (C) 1985, 86, 93, 94, 95, 2000 Free Software Foundation, Inc.
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)
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.
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, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 /* Emacs config.h may rename various library functions such as malloc. */
26 #include <lisp.h> /* xmalloc is here */
27 /* Get the O_* definitions for open et al. */
47 /* Do this after the include, in case string.h prototypes bcopy. */
48 #if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy)
49 #define bcopy(s, d, n) memcpy ((d), (s), (n))
59 #endif /* not emacs */
62 #define NULL (char *) 0
69 /* BUFSIZE is the initial size allocated for the buffer
70 for reading the termcap file.
72 Make it large normally for speed.
73 Make it variable when debugging, so can exercise
74 increasing the space dynamically. */
78 #define BUFSIZE bufsize
87 #define TERMCAP_FILE "/etc/termcap"
94 write (2, "virtual memory exhausted\n", 25);
102 register char *tem
= malloc (size
);
114 register char *tem
= realloc (ptr
, size
);
120 #endif /* not emacs */
122 /* Looking up capabilities in the entry already found. */
124 /* The pointer to the data made by tgetent is left here
125 for tgetnum, tgetflag and tgetstr to find. */
126 static char *term_entry
;
128 static char *tgetst1 ();
130 /* Search entry BP for capability CAP.
131 Return a pointer to the capability (in BP) if found,
135 find_capability (bp
, cap
)
136 register char *bp
, *cap
;
150 register char *ptr
= find_capability (term_entry
, cap
);
151 if (!ptr
|| ptr
[-1] != '#')
160 register char *ptr
= find_capability (term_entry
, cap
);
161 return ptr
&& ptr
[-1] == ':';
164 /* Look up a string-valued capability CAP.
165 If AREA is non-null, it points to a pointer to a block in which
166 to store the string. That pointer is advanced over the space used.
167 If AREA is null, space is allocated with `malloc'. */
174 register char *ptr
= find_capability (term_entry
, cap
);
175 if (!ptr
|| (ptr
[-1] != '=' && ptr
[-1] != '~'))
177 return tgetst1 (ptr
, area
);
180 #ifdef IS_EBCDIC_HOST
181 /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted,
182 gives meaning of character following \, or a space if no special meaning.
183 Sixteen characters per line within the string. */
186 = " \057\026 \047\014 \
191 /* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted,
192 gives meaning of character following \, or a space if no special meaning.
193 Eight characters per line within the string. */
196 = " \007\010 \033\014 \
202 /* PTR points to a string value inside a termcap entry.
203 Copy that value, processing \ and ^ abbreviations,
204 into the block that *AREA points to,
205 or to newly allocated storage if AREA is NULL.
206 Return the address to which we copied the value,
207 or NULL if PTR is NULL. */
214 register char *p
, *r
;
223 /* `ret' gets address of where to store the string. */
226 /* Compute size of block needed (may overestimate). */
228 while ((c
= *p
++) && c
!= ':' && c
!= '\n')
230 ret
= (char *) xmalloc (p
- ptr
+ 1);
235 /* Copy the string value, stopping at null or colon.
236 Also process ^ and \ abbreviations. */
239 while ((c
= *p
++) && c
!= ':' && c
!= '\n')
252 if (c
>= '0' && c
<= '7')
257 while (++size
< 3 && (c1
= *p
) >= '0' && c1
<= '7')
264 #ifdef IS_EBCDIC_HOST
265 else if (c
>= 0200 && c
< 0360)
267 c1
= esctab
[(c
& ~0100) - 0200];
272 else if (c
>= 0100 && c
< 0200)
274 c1
= esctab
[(c
& ~040) - 0100];
289 /* Outputting a string with padding. */
291 /* If OSPEED is 0, we use this as the actual baud rate. */
295 /* Actual baud rate if positive;
296 - baud rate / 100 if negative. */
298 static int speeds
[] =
301 0, 50, 75, 110, 134, 150, -3, -6, -12, -18,
302 -20, -24, -36, -48, -72, -96, -192
304 0, 50, 75, 110, 135, 150, -2, -3, -6, -12,
305 -18, -24, -48, -96, -192, -288, -384, -576, -1152
310 tputs (str
, nlines
, outfun
)
313 register int (*outfun
) ();
315 register int padcount
= 0;
318 extern int baud_rate
;
320 /* For quite high speeds, convert to the smaller
321 units to avoid overflow. */
323 speed
= - speed
/ 100;
328 while (*str
>= '0' && *str
<= '9')
330 padcount
+= *str
++ - '0';
336 padcount
+= *str
++ - '0';
346 /* PADCOUNT is now in units of tenths of msec.
347 SPEED is measured in characters per 10 seconds
348 or in characters per .1 seconds (if negative).
349 We use the smaller units for larger speeds to avoid overflow. */
354 padcount
= -padcount
;
361 while (padcount
-- > 0)
365 /* Finding the termcap entry in the termcap data base. */
367 struct termcap_buffer
376 /* Forward declarations of static functions. */
378 static int scan_file ();
379 static char *gobble_line ();
380 static int compare_contin ();
381 static int name_match ();
390 valid_filename_p (fn
)
393 struct FAB fab
= cc$rms_fab
;
394 struct NAM nam
= cc$rms_nam
;
395 char esa
[NAM$C_MAXRSS
];
398 fab
.fab$b_fns
= strlen(fn
);
399 fab
.fab$l_nam
= &nam
;
400 fab
.fab$l_fop
= FAB$M_NAM
;
403 nam
.nam$b_ess
= sizeof esa
;
405 return SYS$
PARSE(&fab
, 0, 0) == RMS$_NORMAL
;
410 #ifdef MSDOS /* MW, May 1993 */
412 valid_filename_p (fn
)
415 return *fn
== '/' || fn
[1] == ':';
418 #define valid_filename_p(fn) (*(fn) == '/')
423 /* Find the termcap entry data for terminal type NAME
424 and store it in the block that BP points to.
425 Record its address for future use.
427 If BP is null, space is dynamically allocated.
429 Return -1 if there is some difficulty accessing the data base
431 0 if the data base is accessible but the type NAME is not defined
432 in it, and some other value otherwise. */
438 register char *termcap_name
;
440 struct termcap_buffer buf
;
442 char *tc_search_point
;
446 char *tcenv
= NULL
; /* TERMCAP value, if it contains :tc=. */
447 char *indirect
= NULL
; /* Terminal type in :tc= in TERMCAP value. */
450 #ifdef INTERNAL_TERMINAL
451 /* For the internal terminal we don't want to read any termcap file,
453 if (!strcmp (name
, "internal"))
455 term
= INTERNAL_TERMINAL
;
458 malloc_size
= 1 + strlen (term
);
459 bp
= (char *) xmalloc (malloc_size
);
464 #endif /* INTERNAL_TERMINAL */
466 /* For compatibility with programs like `less' that want to
467 put data in the termcap buffer themselves as a fallback. */
471 termcap_name
= getenv ("TERMCAP");
472 if (termcap_name
&& *termcap_name
== '\0')
474 #if defined (MSDOS) && !defined (TEST)
475 if (termcap_name
&& (*termcap_name
== '\\'
476 || *termcap_name
== '/'
477 || termcap_name
[1] == ':'))
478 dostounix_filename(termcap_name
);
481 filep
= termcap_name
&& valid_filename_p (termcap_name
);
483 /* If termcap_name is non-null and starts with / (in the un*x case, that is),
484 it is a file name to use instead of /etc/termcap.
485 If it is non-null and does not start with /,
486 it is the entry itself, but only if
487 the name the caller requested matches the TERM variable. */
489 if (termcap_name
&& !filep
&& !strcmp (name
, getenv ("TERM")))
491 indirect
= tgetst1 (find_capability (termcap_name
, "tc"), (char **) 0);
497 strcpy (bp
, termcap_name
);
501 { /* It has tc=. Need to read /etc/termcap. */
502 tcenv
= termcap_name
;
507 if (!termcap_name
|| !filep
)
508 termcap_name
= TERMCAP_FILE
;
510 /* Here we know we must search a file and termcap_name has its name. */
513 fd
= open (termcap_name
, O_RDONLY
|O_TEXT
, 0);
515 fd
= open (termcap_name
, O_RDONLY
, 0);
521 /* Add 1 to size to ensure room for terminating null. */
522 buf
.beg
= (char *) xmalloc (buf
.size
+ 1);
523 term
= indirect
? indirect
: name
;
527 malloc_size
= indirect
? strlen (tcenv
) + 1 : buf
.size
;
528 bp
= (char *) xmalloc (malloc_size
);
530 tc_search_point
= bp1
= bp
;
533 /* Copy the data from the environment variable. */
536 bp1
+= strlen (tcenv
);
541 /* Scan the file, reading it via buf, till find start of main entry. */
542 if (scan_file (term
, fd
, &buf
) == 0)
551 /* Free old `term' if appropriate. */
555 /* If BP is malloc'd by us, make sure it is big enough. */
558 int offset1
= bp1
- bp
, offset2
= tc_search_point
- bp
;
559 malloc_size
= offset1
+ buf
.size
;
560 bp
= termcap_name
= (char *) xrealloc (bp
, malloc_size
);
561 bp1
= termcap_name
+ offset1
;
562 tc_search_point
= termcap_name
+ offset2
;
565 /* Copy the line of the entry from buf into bp. */
566 termcap_name
= buf
.ptr
;
567 while ((*bp1
++ = c
= *termcap_name
++) && c
!= '\n')
568 /* Drop out any \ newline sequence. */
569 if (c
== '\\' && *termcap_name
== '\n')
576 /* Does this entry refer to another terminal type's entry?
577 If something is found, copy it into heap and null-terminate it. */
578 tc_search_point
= find_capability (tc_search_point
, "tc");
579 term
= tgetst1 (tc_search_point
, (char **) 0);
586 bp
= (char *) xrealloc (bp
, bp1
- bp
+ 1);
593 /* Given file open on FD and buffer BUFP,
594 scan the file from the beginning until a line is found
595 that starts the entry for terminal type STR.
596 Return 1 if successful, with that line in BUFP,
597 or 0 if no entry is found in the file. */
600 scan_file (str
, fd
, bufp
)
603 register struct termcap_buffer
*bufp
;
607 bufp
->ptr
= bufp
->beg
;
616 /* Read a line into the buffer. */
620 /* if it is continued, append another line to it,
621 until a non-continued line ends. */
622 end
= gobble_line (fd
, bufp
, end
);
624 while (!bufp
->ateof
&& end
[-2] == '\\');
626 if (*bufp
->ptr
!= '#'
627 && name_match (bufp
->ptr
, str
))
630 /* Discard the line just processed. */
636 /* Return nonzero if NAME is one of the names specified
637 by termcap entry LINE. */
640 name_match (line
, name
)
645 if (!compare_contin (line
, name
))
647 /* This line starts an entry. Is it the right one? */
648 for (tem
= line
; *tem
&& *tem
!= '\n' && *tem
!= ':'; tem
++)
649 if (*tem
== '|' && !compare_contin (tem
+ 1, name
))
656 compare_contin (str1
, str2
)
657 register char *str1
, *str2
;
664 while (c1
== '\\' && *str1
== '\n')
667 while ((c1
= *str1
++) == ' ' || c1
== '\t');
671 /* End of type being looked up. */
672 if (c1
== '|' || c1
== ':')
673 /* If end of name in data base, we win. */
683 /* Make sure that the buffer <- BUFP contains a full line
684 of the file open on FD, starting at the place BUFP->ptr
685 points to. Can read more of the file, discard stuff before
686 BUFP->ptr, or make the buffer bigger.
688 Return the pointer to after the newline ending the line,
689 or to the end of the file, if there is no newline to end it.
691 Can also merge on continuation lines. If APPEND_END is
692 non-null, it points past the newline of a line that is
693 continued; we add another line onto it and regard the whole
694 thing as one line. The caller decides when a line is continued. */
697 gobble_line (fd
, bufp
, append_end
)
699 register struct termcap_buffer
*bufp
;
704 register char *buf
= bufp
->beg
;
708 append_end
= bufp
->ptr
;
713 while (*end
&& *end
!= '\n') end
++;
717 return buf
+ bufp
->full
;
718 if (bufp
->ptr
== buf
)
720 if (bufp
->full
== bufp
->size
)
723 /* Add 1 to size to ensure room for terminating null. */
724 tem
= (char *) xrealloc (buf
, bufp
->size
+ 1);
725 bufp
->ptr
= (bufp
->ptr
- buf
) + tem
;
726 append_end
= (append_end
- buf
) + tem
;
727 bufp
->beg
= buf
= tem
;
732 append_end
-= bufp
->ptr
- buf
;
733 bcopy (bufp
->ptr
, buf
, bufp
->full
-= bufp
->ptr
- buf
);
736 if (!(nread
= read (fd
, buf
+ bufp
->full
, bufp
->size
- bufp
->full
)))
739 buf
[bufp
->full
] = '\0';
760 printf ("TERM: %s\n", term
);
762 buf
= (char *) tgetent (0, term
);
765 printf ("No entry.\n");
769 printf ("Entry: %s\n", buf
);
774 printf ("co: %d\n", tgetnum ("co"));
775 printf ("am: %d\n", tgetflag ("am"));
781 char *x
= tgetstr (cap
, 0);
784 printf ("%s: ", cap
);
788 if (*y
<= ' ' || *y
== 0177)
789 printf ("\\%0o", *y
);