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