* emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
[bpt/emacs.git] / src / termcap.c
CommitLineData
f02902f7 1/* Work-alike for termcap, plus extra features.
0b5538bd 2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 2000, 2001, 2002, 2003,
baad03f0 3 2004, 2005, 2006, 2007, 2008, 2011 Free Software Foundation, Inc.
f02902f7
RM
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 2, or (at your option)
8any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
fee0bd5f 16along with this program. If not, see <http://www.gnu.org/licenses/>. */
f02902f7
RM
17
18/* Emacs config.h may rename various library functions such as malloc. */
f02902f7 19#include <config.h>
8fde62c1 20#include <sys/file.h>
8fde62c1 21#include <fcntl.h>
e608805f 22#include <unistd.h>
8fde62c1 23
3e6ae1a4 24#include "lisp.h"
058e5dad
EZ
25#include "tparam.h"
26#ifdef MSDOS
27#include "msdos.h"
28#endif
3e6ae1a4 29
f02902f7
RM
30/* BUFSIZE is the initial size allocated for the buffer
31 for reading the termcap file.
32 It is not a limit.
33 Make it large normally for speed.
34 Make it variable when debugging, so can exercise
35 increasing the space dynamically. */
36
37#ifndef BUFSIZE
38#ifdef DEBUG
39#define BUFSIZE bufsize
40
41int bufsize = 128;
42#else
43#define BUFSIZE 2048
44#endif
45#endif
46
aa63d440
DM
47#ifndef TERMCAP_FILE
48#define TERMCAP_FILE "/etc/termcap"
f02902f7
RM
49#endif
50
f02902f7
RM
51\f
52/* Looking up capabilities in the entry already found. */
53
54/* The pointer to the data made by tgetent is left here
55 for tgetnum, tgetflag and tgetstr to find. */
56static char *term_entry;
57
971de7fb 58static char *tgetst1 (char *ptr, char **area);
f02902f7
RM
59
60/* Search entry BP for capability CAP.
61 Return a pointer to the capability (in BP) if found,
62 0 if not found. */
63
64static char *
058e5dad 65find_capability (register char *bp, register const char *cap)
f02902f7
RM
66{
67 for (; *bp; bp++)
68 if (bp[0] == ':'
69 && bp[1] == cap[0]
70 && bp[2] == cap[1])
71 return &bp[4];
72 return NULL;
73}
74
75int
058e5dad 76tgetnum (const char *cap)
f02902f7
RM
77{
78 register char *ptr = find_capability (term_entry, cap);
79 if (!ptr || ptr[-1] != '#')
80 return -1;
81 return atoi (ptr);
82}
83
84int
058e5dad 85tgetflag (const char *cap)
f02902f7
RM
86{
87 register char *ptr = find_capability (term_entry, cap);
88 return ptr && ptr[-1] == ':';
89}
90
91/* Look up a string-valued capability CAP.
92 If AREA is non-null, it points to a pointer to a block in which
93 to store the string. That pointer is advanced over the space used.
94 If AREA is null, space is allocated with `malloc'. */
95
96char *
058e5dad 97tgetstr (const char *cap, char **area)
f02902f7
RM
98{
99 register char *ptr = find_capability (term_entry, cap);
100 if (!ptr || (ptr[-1] != '=' && ptr[-1] != '~'))
101 return NULL;
102 return tgetst1 (ptr, area);
103}
104
1ddd1e34
RS
105#ifdef IS_EBCDIC_HOST
106/* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted,
107 gives meaning of character following \, or a space if no special meaning.
108 Sixteen characters per line within the string. */
109
91433552 110static const char esctab[]
1ddd1e34
RS
111 = " \057\026 \047\014 \
112 \025 \015 \
113 \005 \013 \
114 ";
115#else
f02902f7
RM
116/* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted,
117 gives meaning of character following \, or a space if no special meaning.
118 Eight characters per line within the string. */
119
91433552 120static const char esctab[]
f02902f7
RM
121 = " \007\010 \033\014 \
122 \012 \
123 \015 \011 \013 \
124 ";
1ddd1e34 125#endif
f02902f7
RM
126
127/* PTR points to a string value inside a termcap entry.
128 Copy that value, processing \ and ^ abbreviations,
129 into the block that *AREA points to,
130 or to newly allocated storage if AREA is NULL.
131 Return the address to which we copied the value,
132 or NULL if PTR is NULL. */
133
134static char *
971de7fb 135tgetst1 (char *ptr, char **area)
f02902f7
RM
136{
137 register char *p, *r;
138 register int c;
139 register int size;
140 char *ret;
141 register int c1;
142
143 if (!ptr)
144 return NULL;
145
146 /* `ret' gets address of where to store the string. */
147 if (!area)
148 {
149 /* Compute size of block needed (may overestimate). */
150 p = ptr;
151 while ((c = *p++) && c != ':' && c != '\n')
152 ;
23f86fce 153 ret = xmalloc (p - ptr + 1);
f02902f7
RM
154 }
155 else
156 ret = *area;
157
158 /* Copy the string value, stopping at null or colon.
159 Also process ^ and \ abbreviations. */
160 p = ptr;
161 r = ret;
162 while ((c = *p++) && c != ':' && c != '\n')
163 {
164 if (c == '^')
d80bd4a0
RS
165 {
166 c = *p++;
167 if (c == '?')
168 c = 0177;
169 else
170 c &= 037;
171 }
f02902f7
RM
172 else if (c == '\\')
173 {
174 c = *p++;
175 if (c >= '0' && c <= '7')
176 {
177 c -= '0';
178 size = 0;
179
180 while (++size < 3 && (c1 = *p) >= '0' && c1 <= '7')
181 {
182 c *= 8;
183 c += c1 - '0';
184 p++;
185 }
186 }
1ddd1e34
RS
187#ifdef IS_EBCDIC_HOST
188 else if (c >= 0200 && c < 0360)
189 {
190 c1 = esctab[(c & ~0100) - 0200];
191 if (c1 != ' ')
192 c = c1;
193 }
194#else
f02902f7
RM
195 else if (c >= 0100 && c < 0200)
196 {
197 c1 = esctab[(c & ~040) - 0100];
198 if (c1 != ' ')
199 c = c1;
200 }
1ddd1e34 201#endif
f02902f7
RM
202 }
203 *r++ = c;
204 }
56ffd194
TTN
205
206 /* Sometimes entries have "%pN" which means use parameter N in the
207 next %-substitution. If all such N are continuous in the range
208 [1,9] we can remove each "%pN" because they are redundant, thus
209 reducing bandwidth requirements. True, Emacs is well beyond the
210 days of 150baud teletypes, but some of its users aren't much so.
211
212 This pass could probably be integrated into the one above but
213 abbreviation expansion makes that effort a little more hairy than
214 its worth; this is cleaner. */
215 {
216 register int last_p_param = 0;
217 int remove_p_params = 1;
218 struct { char *beg; int len; } cut[11];
219
220 for (cut[0].beg = p = ret; p < r - 3; p++)
221 {
222 if (!remove_p_params)
223 break;
224 if (*p == '%' && *(p + 1) == 'p')
225 {
226 if (*(p + 2) - '0' == 1 + last_p_param)
227 {
228 cut[last_p_param].len = p - cut[last_p_param].beg;
229 last_p_param++;
230 p += 3;
231 cut[last_p_param].beg = p;
232 }
233 else /* not continuous: bail */
234 remove_p_params = 0;
235 if (last_p_param > 10) /* too many: bail */
236 remove_p_params = 0;
237 }
238 }
239 if (remove_p_params && last_p_param)
240 {
241 register int i;
242 char *wp;
243
244 cut[last_p_param].len = r - cut[last_p_param].beg;
245 for (i = 0, wp = ret; i <= last_p_param; wp += cut[i++].len)
72af86bd 246 memcpy (wp, cut[i].beg, cut[i].len);
56ffd194
TTN
247 r = wp;
248 }
249 }
250
f02902f7
RM
251 *r = '\0';
252 /* Update *AREA. */
253 if (area)
254 *area = r + 1;
255 return ret;
256}
257\f
258/* Outputting a string with padding. */
259
f02902f7
RM
260char PC;
261
f02902f7 262void
058e5dad 263tputs (register const char *str, int nlines, int (*outfun) (int))
f02902f7
RM
264{
265 register int padcount = 0;
266 register int speed;
267
f02902f7 268 speed = baud_rate;
0c0b6c79
RS
269 /* For quite high speeds, convert to the smaller
270 units to avoid overflow. */
271 if (speed > 10000)
272 speed = - speed / 100;
f02902f7
RM
273
274 if (!str)
275 return;
276
277 while (*str >= '0' && *str <= '9')
278 {
279 padcount += *str++ - '0';
280 padcount *= 10;
281 }
282 if (*str == '.')
283 {
284 str++;
285 padcount += *str++ - '0';
286 }
287 if (*str == '*')
288 {
289 str++;
290 padcount *= nlines;
291 }
292 while (*str)
293 (*outfun) (*str++);
294
0c0b6c79 295 /* PADCOUNT is now in units of tenths of msec.
95c74a10 296 SPEED is measured in characters per 10 seconds
0c0b6c79
RS
297 or in characters per .1 seconds (if negative).
298 We use the smaller units for larger speeds to avoid overflow. */
299 padcount *= speed;
f02902f7
RM
300 padcount += 500;
301 padcount /= 1000;
0c0b6c79 302 if (speed < 0)
f02902f7
RM
303 padcount = -padcount;
304 else
305 {
306 padcount += 50;
307 padcount /= 100;
308 }
309
310 while (padcount-- > 0)
311 (*outfun) (PC);
312}
313\f
314/* Finding the termcap entry in the termcap data base. */
315
df4cb2b7 316struct termcap_buffer
f02902f7
RM
317 {
318 char *beg;
171e2a58 319 ptrdiff_t size;
f02902f7
RM
320 char *ptr;
321 int ateof;
171e2a58 322 ptrdiff_t full;
f02902f7
RM
323 };
324
325/* Forward declarations of static functions. */
326
971de7fb
DN
327static int scan_file (char *str, int fd, register struct termcap_buffer *bufp);
328static char *gobble_line (int fd, register struct termcap_buffer *bufp, char *append_end);
329static int compare_contin (register char *str1, register char *str2);
330static int name_match (char *line, char *name);
f02902f7 331
f02902f7
RM
332#ifdef MSDOS /* MW, May 1993 */
333static int
1dae0f0a 334valid_filename_p (char *fn)
f02902f7
RM
335{
336 return *fn == '/' || fn[1] == ':';
337}
338#else
339#define valid_filename_p(fn) (*(fn) == '/')
340#endif
341
f02902f7
RM
342/* Find the termcap entry data for terminal type NAME
343 and store it in the block that BP points to.
344 Record its address for future use.
345
346 If BP is null, space is dynamically allocated.
347
348 Return -1 if there is some difficulty accessing the data base
349 of terminal types,
350 0 if the data base is accessible but the type NAME is not defined
351 in it, and some other value otherwise. */
352
353int
058e5dad 354tgetent (char *bp, const char *name)
f02902f7
RM
355{
356 register char *termcap_name;
357 register int fd;
df4cb2b7 358 struct termcap_buffer buf;
f02902f7 359 register char *bp1;
f21b7e24 360 char *tc_search_point;
f02902f7 361 char *term;
171e2a58 362 ptrdiff_t malloc_size = 0;
f02902f7 363 register int c;
20ee9f08 364 char *tcenv = NULL; /* TERMCAP value, if it contains :tc=. */
f02902f7
RM
365 char *indirect = NULL; /* Terminal type in :tc= in TERMCAP value. */
366 int filep;
367
368#ifdef INTERNAL_TERMINAL
369 /* For the internal terminal we don't want to read any termcap file,
370 so fake it. */
371 if (!strcmp (name, "internal"))
372 {
373 term = INTERNAL_TERMINAL;
374 if (!bp)
375 {
376 malloc_size = 1 + strlen (term);
23f86fce 377 bp = xmalloc (malloc_size);
f02902f7
RM
378 }
379 strcpy (bp, term);
380 goto ret;
381 }
382#endif /* INTERNAL_TERMINAL */
383
3e19e687
DM
384 /* For compatibility with programs like `less' that want to
385 put data in the termcap buffer themselves as a fallback. */
386 if (bp)
387 term_entry = bp;
388
f02902f7
RM
389 termcap_name = getenv ("TERMCAP");
390 if (termcap_name && *termcap_name == '\0')
391 termcap_name = NULL;
392#if defined (MSDOS) && !defined (TEST)
393 if (termcap_name && (*termcap_name == '\\'
394 || *termcap_name == '/'
395 || termcap_name[1] == ':'))
5e617bc2 396 dostounix_filename (termcap_name);
f02902f7
RM
397#endif
398
399 filep = termcap_name && valid_filename_p (termcap_name);
400
401 /* If termcap_name is non-null and starts with / (in the un*x case, that is),
402 it is a file name to use instead of /etc/termcap.
403 If it is non-null and does not start with /,
404 it is the entry itself, but only if
405 the name the caller requested matches the TERM variable. */
406
407 if (termcap_name && !filep && !strcmp (name, getenv ("TERM")))
408 {
409 indirect = tgetst1 (find_capability (termcap_name, "tc"), (char **) 0);
410 if (!indirect)
411 {
412 if (!bp)
413 bp = termcap_name;
414 else
415 strcpy (bp, termcap_name);
416 goto ret;
417 }
418 else
419 { /* It has tc=. Need to read /etc/termcap. */
420 tcenv = termcap_name;
421 termcap_name = NULL;
422 }
423 }
424
425 if (!termcap_name || !filep)
aa63d440 426 termcap_name = TERMCAP_FILE;
f02902f7
RM
427
428 /* Here we know we must search a file and termcap_name has its name. */
429
430#ifdef MSDOS
983d99b5 431 fd = open (termcap_name, O_RDONLY|O_TEXT, 0);
f02902f7 432#else
983d99b5 433 fd = open (termcap_name, O_RDONLY, 0);
f02902f7
RM
434#endif
435 if (fd < 0)
436 return -1;
437
438 buf.size = BUFSIZE;
439 /* Add 1 to size to ensure room for terminating null. */
23f86fce 440 buf.beg = xmalloc (buf.size + 1);
058e5dad 441 term = indirect ? indirect : (char *)name;
f02902f7
RM
442
443 if (!bp)
444 {
445 malloc_size = indirect ? strlen (tcenv) + 1 : buf.size;
23f86fce 446 bp = xmalloc (malloc_size);
f02902f7 447 }
f21b7e24 448 tc_search_point = bp1 = bp;
f02902f7
RM
449
450 if (indirect)
451 /* Copy the data from the environment variable. */
452 {
453 strcpy (bp, tcenv);
454 bp1 += strlen (tcenv);
455 }
456
457 while (term)
458 {
459 /* Scan the file, reading it via buf, till find start of main entry. */
460 if (scan_file (term, fd, &buf) == 0)
461 {
462 close (fd);
baad03f0 463 xfree (buf.beg);
f02902f7 464 if (malloc_size)
baad03f0 465 xfree (bp);
f02902f7
RM
466 return 0;
467 }
468
469 /* Free old `term' if appropriate. */
470 if (term != name)
baad03f0 471 xfree (term);
f02902f7
RM
472
473 /* If BP is malloc'd by us, make sure it is big enough. */
474 if (malloc_size)
475 {
0d8f2df7 476 ptrdiff_t offset1 = bp1 - bp, offset2 = tc_search_point - bp;
49484b28 477 malloc_size = offset1 + buf.size;
38182d90 478 bp = termcap_name = xrealloc (bp, malloc_size);
49484b28
GM
479 bp1 = termcap_name + offset1;
480 tc_search_point = termcap_name + offset2;
f02902f7
RM
481 }
482
f02902f7
RM
483 /* Copy the line of the entry from buf into bp. */
484 termcap_name = buf.ptr;
485 while ((*bp1++ = c = *termcap_name++) && c != '\n')
486 /* Drop out any \ newline sequence. */
487 if (c == '\\' && *termcap_name == '\n')
488 {
489 bp1--;
490 termcap_name++;
491 }
492 *bp1 = '\0';
493
494 /* Does this entry refer to another terminal type's entry?
495 If something is found, copy it into heap and null-terminate it. */
f21b7e24
KH
496 tc_search_point = find_capability (tc_search_point, "tc");
497 term = tgetst1 (tc_search_point, (char **) 0);
f02902f7
RM
498 }
499
500 close (fd);
baad03f0 501 xfree (buf.beg);
f02902f7
RM
502
503 if (malloc_size)
38182d90 504 bp = xrealloc (bp, bp1 - bp + 1);
f02902f7
RM
505
506 ret:
507 term_entry = bp;
f02902f7
RM
508 return 1;
509}
510
511/* Given file open on FD and buffer BUFP,
512 scan the file from the beginning until a line is found
513 that starts the entry for terminal type STR.
514 Return 1 if successful, with that line in BUFP,
515 or 0 if no entry is found in the file. */
516
517static int
971de7fb 518scan_file (char *str, int fd, register struct termcap_buffer *bufp)
f02902f7
RM
519{
520 register char *end;
521
522 bufp->ptr = bufp->beg;
523 bufp->full = 0;
524 bufp->ateof = 0;
525 *bufp->ptr = '\0';
526
527 lseek (fd, 0L, 0);
528
529 while (!bufp->ateof)
530 {
531 /* Read a line into the buffer. */
532 end = NULL;
533 do
534 {
535 /* if it is continued, append another line to it,
536 until a non-continued line ends. */
537 end = gobble_line (fd, bufp, end);
538 }
539 while (!bufp->ateof && end[-2] == '\\');
540
541 if (*bufp->ptr != '#'
542 && name_match (bufp->ptr, str))
543 return 1;
544
545 /* Discard the line just processed. */
546 bufp->ptr = end;
547 }
548 return 0;
549}
550
551/* Return nonzero if NAME is one of the names specified
552 by termcap entry LINE. */
553
554static int
971de7fb 555name_match (char *line, char *name)
f02902f7
RM
556{
557 register char *tem;
558
559 if (!compare_contin (line, name))
560 return 1;
561 /* This line starts an entry. Is it the right one? */
562 for (tem = line; *tem && *tem != '\n' && *tem != ':'; tem++)
563 if (*tem == '|' && !compare_contin (tem + 1, name))
564 return 1;
565
566 return 0;
567}
568
569static int
971de7fb 570compare_contin (register char *str1, register char *str2)
f02902f7
RM
571{
572 register int c1, c2;
573 while (1)
574 {
575 c1 = *str1++;
576 c2 = *str2++;
577 while (c1 == '\\' && *str1 == '\n')
578 {
579 str1++;
580 while ((c1 = *str1++) == ' ' || c1 == '\t');
581 }
582 if (c2 == '\0')
583 {
584 /* End of type being looked up. */
585 if (c1 == '|' || c1 == ':')
586 /* If end of name in data base, we win. */
587 return 0;
588 else
589 return 1;
590 }
591 else if (c1 != c2)
592 return 1;
593 }
594}
595
596/* Make sure that the buffer <- BUFP contains a full line
597 of the file open on FD, starting at the place BUFP->ptr
598 points to. Can read more of the file, discard stuff before
599 BUFP->ptr, or make the buffer bigger.
600
601 Return the pointer to after the newline ending the line,
602 or to the end of the file, if there is no newline to end it.
603
604 Can also merge on continuation lines. If APPEND_END is
605 non-null, it points past the newline of a line that is
606 continued; we add another line onto it and regard the whole
607 thing as one line. The caller decides when a line is continued. */
608
609static char *
971de7fb 610gobble_line (int fd, register struct termcap_buffer *bufp, char *append_end)
f02902f7
RM
611{
612 register char *end;
613 register int nread;
614 register char *buf = bufp->beg;
f02902f7
RM
615
616 if (!append_end)
617 append_end = bufp->ptr;
618
619 while (1)
620 {
621 end = append_end;
622 while (*end && *end != '\n') end++;
623 if (*end)
624 break;
625 if (bufp->ateof)
626 return buf + bufp->full;
627 if (bufp->ptr == buf)
628 {
629 if (bufp->full == bufp->size)
630 {
0d8f2df7
PE
631 ptrdiff_t ptr_offset = bufp->ptr - buf;
632 ptrdiff_t append_end_offset = append_end - buf;
f02902f7 633 /* Add 1 to size to ensure room for terminating null. */
0065d054
PE
634 ptrdiff_t size = bufp->size + 1;
635 bufp->beg = buf = xpalloc (buf, &size, 1, -1, 1);
636 bufp->size = size - 1;
0d8f2df7
PE
637 bufp->ptr = buf + ptr_offset;
638 append_end = buf + append_end_offset;
f02902f7
RM
639 }
640 }
641 else
642 {
643 append_end -= bufp->ptr - buf;
72af86bd 644 memcpy (buf, bufp->ptr, bufp->full -= bufp->ptr - buf);
f02902f7
RM
645 bufp->ptr = buf;
646 }
647 if (!(nread = read (fd, buf + bufp->full, bufp->size - bufp->full)))
648 bufp->ateof = 1;
649 bufp->full += nread;
650 buf[bufp->full] = '\0';
651 }
652 return end + 1;
653}
654\f
655#ifdef TEST
656
f02902f7
RM
657#include <stdio.h>
658
1dae0f0a
AS
659static void
660tprint (char *cap)
661{
662 char *x = tgetstr (cap, 0);
663 register char *y;
664
665 printf ("%s: ", cap);
666 if (x)
667 {
668 for (y = x; *y; y++)
669 if (*y <= ' ' || *y == 0177)
670 printf ("\\%0o", *y);
671 else
672 putchar (*y);
673 free (x);
674 }
675 else
676 printf ("none");
677 putchar ('\n');
678}
679
680int
681main (int argc, char **argv)
f02902f7
RM
682{
683 char *term;
684 char *buf;
685
686 term = argv[1];
687 printf ("TERM: %s\n", term);
688
689 buf = (char *) tgetent (0, term);
690 if ((int) buf <= 0)
691 {
692 printf ("No entry.\n");
693 return 0;
694 }
695
696 printf ("Entry: %s\n", buf);
697
698 tprint ("cm");
699 tprint ("AL");
700
701 printf ("co: %d\n", tgetnum ("co"));
702 printf ("am: %d\n", tgetflag ("am"));
f02902f7 703
1dae0f0a 704 return 0;
f02902f7
RM
705}
706
707#endif /* TEST */