annotate src/termcap.c @ 23323:0800a4f84757

(underlying_strftime): Set the buffer to a nonzero value before calling strftime, and check to see whether strftime has set the buffer to zero. This lets us distinguish between an empty buffer and an error. I'm installing this patch by hand now; it will be superseded whenever the glibc sources are propagated back to fsf.org.
author Paul Eggert <eggert@twinsun.com>
date Fri, 25 Sep 1998 21:40:23 +0000
parents 3790e185acc0
children d8776351a540
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1 /* Work-alike for termcap, plus extra features.
12675
8c9369149a9d Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents: 11264
diff changeset
2 Copyright (C) 1985, 86, 93, 94, 95 Free Software Foundation, Inc.
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
6 the Free Software Foundation; either version 2, or (at your option)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
7 any later version.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
8
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
12 GNU General Public License for more details.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
13
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
15 along with this program; see the file COPYING. If not, write to
14414
6e7bb4bd5010 Update FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 14132
diff changeset
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
6e7bb4bd5010 Update FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 14132
diff changeset
17 Boston, MA 02111-1307, USA. */
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
18
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
19 /* Emacs config.h may rename various library functions such as malloc. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
20 #ifdef HAVE_CONFIG_H
12994
bd38619285f7 Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents: 12907
diff changeset
21 #include <config.h>
bd38619285f7 Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents: 12907
diff changeset
22 #endif
7785
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
23
12994
bd38619285f7 Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents: 12907
diff changeset
24 #ifdef emacs
7785
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
25
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
26 /* Get the O_* definitions for open et al. */
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
27 #include <sys/file.h>
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
28 #ifdef USG5
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
29 #include <fcntl.h>
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
30 #endif
8a5a170b8646 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 7685
diff changeset
31
12994
bd38619285f7 Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents: 12907
diff changeset
32 #else /* not emacs */
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
33
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
34 #ifdef STDC_HEADERS
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
35 #include <stdlib.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
36 #include <string.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
37 #else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
38 char *getenv ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
39 char *malloc ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
40 char *realloc ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
41 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
42
12675
8c9369149a9d Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents: 11264
diff changeset
43 /* Do this after the include, in case string.h prototypes bcopy. */
8c9369149a9d Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents: 11264
diff changeset
44 #if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy)
8c9369149a9d Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents: 11264
diff changeset
45 #define bcopy(s, d, n) memcpy ((d), (s), (n))
8c9369149a9d Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents: 11264
diff changeset
46 #endif
8c9369149a9d Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents: 11264
diff changeset
47
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
48 #ifdef HAVE_UNISTD_H
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
49 #include <unistd.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
50 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
51 #ifdef _POSIX_VERSION
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
52 #include <fcntl.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
53 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
54
12994
bd38619285f7 Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents: 12907
diff changeset
55 #endif /* not emacs */
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
56
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
57 #ifndef NULL
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
58 #define NULL (char *) 0
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
59 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
60
7685
5fbc009f3dc3 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 7306
diff changeset
61 #ifndef O_RDONLY
5fbc009f3dc3 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 7306
diff changeset
62 #define O_RDONLY 0
5fbc009f3dc3 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 7306
diff changeset
63 #endif
5fbc009f3dc3 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 7306
diff changeset
64
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
65 /* BUFSIZE is the initial size allocated for the buffer
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
66 for reading the termcap file.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
67 It is not a limit.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
68 Make it large normally for speed.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
69 Make it variable when debugging, so can exercise
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
70 increasing the space dynamically. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
71
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
72 #ifndef BUFSIZE
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
73 #ifdef DEBUG
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
74 #define BUFSIZE bufsize
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
75
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
76 int bufsize = 128;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
77 #else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
78 #define BUFSIZE 2048
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
79 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
80 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
81
12679
a14b26e55f25 TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents: 12675
diff changeset
82 #ifndef TERMCAP_FILE
a14b26e55f25 TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents: 12675
diff changeset
83 #define TERMCAP_FILE "/etc/termcap"
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
84 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
85
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
86 #ifndef emacs
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
87 static void
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
88 memory_out ()
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
89 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
90 write (2, "virtual memory exhausted\n", 25);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
91 exit (1);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
92 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
93
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
94 static char *
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
95 xmalloc (size)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
96 unsigned size;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
97 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
98 register char *tem = malloc (size);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
99
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
100 if (!tem)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
101 memory_out ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
102 return tem;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
103 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
104
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
105 static char *
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
106 xrealloc (ptr, size)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
107 char *ptr;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
108 unsigned size;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
109 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
110 register char *tem = realloc (ptr, size);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
111
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
112 if (!tem)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
113 memory_out ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
114 return tem;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
115 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
116 #endif /* not emacs */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
117
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
118 /* Looking up capabilities in the entry already found. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
119
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
120 /* The pointer to the data made by tgetent is left here
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
121 for tgetnum, tgetflag and tgetstr to find. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
122 static char *term_entry;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
123
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
124 static char *tgetst1 ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
125
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
126 /* Search entry BP for capability CAP.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
127 Return a pointer to the capability (in BP) if found,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
128 0 if not found. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
129
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
130 static char *
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
131 find_capability (bp, cap)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
132 register char *bp, *cap;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
133 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
134 for (; *bp; bp++)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
135 if (bp[0] == ':'
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
136 && bp[1] == cap[0]
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
137 && bp[2] == cap[1])
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
138 return &bp[4];
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
139 return NULL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
140 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
141
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
142 int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
143 tgetnum (cap)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
144 char *cap;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
145 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
146 register char *ptr = find_capability (term_entry, cap);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
147 if (!ptr || ptr[-1] != '#')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
148 return -1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
149 return atoi (ptr);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
150 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
151
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
152 int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
153 tgetflag (cap)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
154 char *cap;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
155 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
156 register char *ptr = find_capability (term_entry, cap);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
157 return ptr && ptr[-1] == ':';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
158 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
159
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
160 /* Look up a string-valued capability CAP.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
161 If AREA is non-null, it points to a pointer to a block in which
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
162 to store the string. That pointer is advanced over the space used.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
163 If AREA is null, space is allocated with `malloc'. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
164
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
165 char *
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
166 tgetstr (cap, area)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
167 char *cap;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
168 char **area;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
169 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
170 register char *ptr = find_capability (term_entry, cap);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
171 if (!ptr || (ptr[-1] != '=' && ptr[-1] != '~'))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
172 return NULL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
173 return tgetst1 (ptr, area);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
174 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
175
23071
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
176 #ifdef IS_EBCDIC_HOST
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
177 /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted,
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
178 gives meaning of character following \, or a space if no special meaning.
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
179 Sixteen characters per line within the string. */
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
180
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
181 static char esctab[]
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
182 = " \057\026 \047\014 \
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
183 \025 \015 \
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
184 \005 \013 \
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
185 ";
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
186 #else
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
187 /* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
188 gives meaning of character following \, or a space if no special meaning.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
189 Eight characters per line within the string. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
190
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
191 static char esctab[]
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
192 = " \007\010 \033\014 \
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
193 \012 \
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
194 \015 \011 \013 \
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
195 ";
23071
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
196 #endif
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
197
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
198 /* PTR points to a string value inside a termcap entry.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
199 Copy that value, processing \ and ^ abbreviations,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
200 into the block that *AREA points to,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
201 or to newly allocated storage if AREA is NULL.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
202 Return the address to which we copied the value,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
203 or NULL if PTR is NULL. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
204
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
205 static char *
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
206 tgetst1 (ptr, area)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
207 char *ptr;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
208 char **area;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
209 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
210 register char *p, *r;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
211 register int c;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
212 register int size;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
213 char *ret;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
214 register int c1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
215
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
216 if (!ptr)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
217 return NULL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
218
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
219 /* `ret' gets address of where to store the string. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
220 if (!area)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
221 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
222 /* Compute size of block needed (may overestimate). */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
223 p = ptr;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
224 while ((c = *p++) && c != ':' && c != '\n')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
225 ;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
226 ret = (char *) xmalloc (p - ptr + 1);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
227 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
228 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
229 ret = *area;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
230
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
231 /* Copy the string value, stopping at null or colon.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
232 Also process ^ and \ abbreviations. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
233 p = ptr;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
234 r = ret;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
235 while ((c = *p++) && c != ':' && c != '\n')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
236 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
237 if (c == '^')
10186
af0b61d21a8f (tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents: 7785
diff changeset
238 {
af0b61d21a8f (tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents: 7785
diff changeset
239 c = *p++;
af0b61d21a8f (tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents: 7785
diff changeset
240 if (c == '?')
af0b61d21a8f (tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents: 7785
diff changeset
241 c = 0177;
af0b61d21a8f (tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents: 7785
diff changeset
242 else
af0b61d21a8f (tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents: 7785
diff changeset
243 c &= 037;
af0b61d21a8f (tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents: 7785
diff changeset
244 }
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
245 else if (c == '\\')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
246 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
247 c = *p++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
248 if (c >= '0' && c <= '7')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
249 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
250 c -= '0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
251 size = 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
252
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
253 while (++size < 3 && (c1 = *p) >= '0' && c1 <= '7')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
254 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
255 c *= 8;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
256 c += c1 - '0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
257 p++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
258 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
259 }
23071
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
260 #ifdef IS_EBCDIC_HOST
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
261 else if (c >= 0200 && c < 0360)
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
262 {
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
263 c1 = esctab[(c & ~0100) - 0200];
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
264 if (c1 != ' ')
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
265 c = c1;
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
266 }
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
267 #else
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
268 else if (c >= 0100 && c < 0200)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
269 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
270 c1 = esctab[(c & ~040) - 0100];
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
271 if (c1 != ' ')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
272 c = c1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
273 }
23071
3790e185acc0 (tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents: 22066
diff changeset
274 #endif
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
275 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
276 *r++ = c;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
277 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
278 *r = '\0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
279 /* Update *AREA. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
280 if (area)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
281 *area = r + 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
282 return ret;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
283 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
284
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
285 /* Outputting a string with padding. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
286
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
287 short ospeed;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
288 /* If OSPEED is 0, we use this as the actual baud rate. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
289 int tputs_baud_rate;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
290 char PC;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
291
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
292 /* Actual baud rate if positive;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
293 - baud rate / 100 if negative. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
294
10739
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
295 static int speeds[] =
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
296 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
297 #ifdef VMS
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
298 0, 50, 75, 110, 134, 150, -3, -6, -12, -18,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
299 -20, -24, -36, -48, -72, -96, -192
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
300 #else /* not VMS */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
301 0, 50, 75, 110, 135, 150, -2, -3, -6, -12,
10739
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
302 -18, -24, -48, -96, -192, -288, -384, -576, -1152
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
303 #endif /* not VMS */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
304 };
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
305
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
306 void
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
307 tputs (str, nlines, outfun)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
308 register char *str;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
309 int nlines;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
310 register int (*outfun) ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
311 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
312 register int padcount = 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
313 register int speed;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
314
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
315 #ifdef emacs
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
316 extern baud_rate;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
317 speed = baud_rate;
10739
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
318 /* For quite high speeds, convert to the smaller
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
319 units to avoid overflow. */
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
320 if (speed > 10000)
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
321 speed = - speed / 100;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
322 #else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
323 if (ospeed == 0)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
324 speed = tputs_baud_rate;
13677
ad4eada50462 (tputs): Don't let ospeed overrun the speeds array.
David J. MacKenzie <djm@gnu.org>
parents: 12994
diff changeset
325 else if (ospeed > 0 && ospeed < (sizeof speeds / sizeof speeds[0]))
ad4eada50462 (tputs): Don't let ospeed overrun the speeds array.
David J. MacKenzie <djm@gnu.org>
parents: 12994
diff changeset
326 speed = speeds[ospeed];
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
327 else
13677
ad4eada50462 (tputs): Don't let ospeed overrun the speeds array.
David J. MacKenzie <djm@gnu.org>
parents: 12994
diff changeset
328 speed = 0;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
329 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
330
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
331 if (!str)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
332 return;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
333
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
334 while (*str >= '0' && *str <= '9')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
335 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
336 padcount += *str++ - '0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
337 padcount *= 10;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
338 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
339 if (*str == '.')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
340 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
341 str++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
342 padcount += *str++ - '0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
343 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
344 if (*str == '*')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
345 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
346 str++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
347 padcount *= nlines;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
348 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
349 while (*str)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
350 (*outfun) (*str++);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
351
10739
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
352 /* PADCOUNT is now in units of tenths of msec.
10753
e0de204ec865 Comment changed.
Richard M. Stallman <rms@gnu.org>
parents: 10739
diff changeset
353 SPEED is measured in characters per 10 seconds
10739
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
354 or in characters per .1 seconds (if negative).
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
355 We use the smaller units for larger speeds to avoid overflow. */
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
356 padcount *= speed;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
357 padcount += 500;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
358 padcount /= 1000;
10739
97096cdf6e55 (speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents: 10186
diff changeset
359 if (speed < 0)
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
360 padcount = -padcount;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
361 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
362 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
363 padcount += 50;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
364 padcount /= 100;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
365 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
366
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
367 while (padcount-- > 0)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
368 (*outfun) (PC);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
369 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
370
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
371 /* Finding the termcap entry in the termcap data base. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
372
22066
a09f2b697d0a Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents: 14414
diff changeset
373 struct termcap_buffer
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
374 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
375 char *beg;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
376 int size;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
377 char *ptr;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
378 int ateof;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
379 int full;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
380 };
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
381
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
382 /* Forward declarations of static functions. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
383
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
384 static int scan_file ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
385 static char *gobble_line ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
386 static int compare_contin ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
387 static int name_match ();
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
388
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
389 #ifdef VMS
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
390
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
391 #include <rmsdef.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
392 #include <fab.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
393 #include <nam.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
394
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
395 static int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
396 valid_filename_p (fn)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
397 char *fn;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
398 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
399 struct FAB fab = cc$rms_fab;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
400 struct NAM nam = cc$rms_nam;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
401 char esa[NAM$C_MAXRSS];
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
402
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
403 fab.fab$l_fna = fn;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
404 fab.fab$b_fns = strlen(fn);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
405 fab.fab$l_nam = &nam;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
406 fab.fab$l_fop = FAB$M_NAM;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
407
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
408 nam.nam$l_esa = esa;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
409 nam.nam$b_ess = sizeof esa;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
410
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
411 return SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
412 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
413
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
414 #else /* !VMS */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
415
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
416 #ifdef MSDOS /* MW, May 1993 */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
417 static int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
418 valid_filename_p (fn)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
419 char *fn;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
420 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
421 return *fn == '/' || fn[1] == ':';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
422 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
423 #else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
424 #define valid_filename_p(fn) (*(fn) == '/')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
425 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
426
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
427 #endif /* !VMS */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
428
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
429 /* Find the termcap entry data for terminal type NAME
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
430 and store it in the block that BP points to.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
431 Record its address for future use.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
432
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
433 If BP is null, space is dynamically allocated.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
434
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
435 Return -1 if there is some difficulty accessing the data base
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
436 of terminal types,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
437 0 if the data base is accessible but the type NAME is not defined
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
438 in it, and some other value otherwise. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
439
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
440 int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
441 tgetent (bp, name)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
442 char *bp, *name;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
443 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
444 register char *termcap_name;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
445 register int fd;
22066
a09f2b697d0a Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents: 14414
diff changeset
446 struct termcap_buffer buf;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
447 register char *bp1;
14132
85063feb159b (tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents: 13677
diff changeset
448 char *tc_search_point;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
449 char *term;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
450 int malloc_size = 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
451 register int c;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
452 char *tcenv; /* TERMCAP value, if it contains :tc=. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
453 char *indirect = NULL; /* Terminal type in :tc= in TERMCAP value. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
454 int filep;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
455
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
456 #ifdef INTERNAL_TERMINAL
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
457 /* For the internal terminal we don't want to read any termcap file,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
458 so fake it. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
459 if (!strcmp (name, "internal"))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
460 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
461 term = INTERNAL_TERMINAL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
462 if (!bp)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
463 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
464 malloc_size = 1 + strlen (term);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
465 bp = (char *) xmalloc (malloc_size);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
466 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
467 strcpy (bp, term);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
468 goto ret;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
469 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
470 #endif /* INTERNAL_TERMINAL */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
471
12907
6cae53a06172 default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents: 12679
diff changeset
472 /* For compatibility with programs like `less' that want to
6cae53a06172 default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents: 12679
diff changeset
473 put data in the termcap buffer themselves as a fallback. */
6cae53a06172 default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents: 12679
diff changeset
474 if (bp)
6cae53a06172 default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents: 12679
diff changeset
475 term_entry = bp;
6cae53a06172 default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents: 12679
diff changeset
476
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
477 termcap_name = getenv ("TERMCAP");
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
478 if (termcap_name && *termcap_name == '\0')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
479 termcap_name = NULL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
480 #if defined (MSDOS) && !defined (TEST)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
481 if (termcap_name && (*termcap_name == '\\'
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
482 || *termcap_name == '/'
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
483 || termcap_name[1] == ':'))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
484 dostounix_filename(termcap_name);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
485 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
486
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
487 filep = termcap_name && valid_filename_p (termcap_name);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
488
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
489 /* If termcap_name is non-null and starts with / (in the un*x case, that is),
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
490 it is a file name to use instead of /etc/termcap.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
491 If it is non-null and does not start with /,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
492 it is the entry itself, but only if
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
493 the name the caller requested matches the TERM variable. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
494
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
495 if (termcap_name && !filep && !strcmp (name, getenv ("TERM")))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
496 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
497 indirect = tgetst1 (find_capability (termcap_name, "tc"), (char **) 0);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
498 if (!indirect)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
499 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
500 if (!bp)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
501 bp = termcap_name;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
502 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
503 strcpy (bp, termcap_name);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
504 goto ret;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
505 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
506 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
507 { /* It has tc=. Need to read /etc/termcap. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
508 tcenv = termcap_name;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
509 termcap_name = NULL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
510 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
511 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
512
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
513 if (!termcap_name || !filep)
12679
a14b26e55f25 TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents: 12675
diff changeset
514 termcap_name = TERMCAP_FILE;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
515
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
516 /* Here we know we must search a file and termcap_name has its name. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
517
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
518 #ifdef MSDOS
7685
5fbc009f3dc3 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 7306
diff changeset
519 fd = open (termcap_name, O_RDONLY|O_TEXT, 0);
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
520 #else
7685
5fbc009f3dc3 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 7306
diff changeset
521 fd = open (termcap_name, O_RDONLY, 0);
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
522 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
523 if (fd < 0)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
524 return -1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
525
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
526 buf.size = BUFSIZE;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
527 /* Add 1 to size to ensure room for terminating null. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
528 buf.beg = (char *) xmalloc (buf.size + 1);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
529 term = indirect ? indirect : name;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
530
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
531 if (!bp)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
532 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
533 malloc_size = indirect ? strlen (tcenv) + 1 : buf.size;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
534 bp = (char *) xmalloc (malloc_size);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
535 }
14132
85063feb159b (tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents: 13677
diff changeset
536 tc_search_point = bp1 = bp;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
537
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
538 if (indirect)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
539 /* Copy the data from the environment variable. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
540 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
541 strcpy (bp, tcenv);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
542 bp1 += strlen (tcenv);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
543 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
544
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
545 while (term)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
546 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
547 /* Scan the file, reading it via buf, till find start of main entry. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
548 if (scan_file (term, fd, &buf) == 0)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
549 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
550 close (fd);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
551 free (buf.beg);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
552 if (malloc_size)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
553 free (bp);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
554 return 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
555 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
556
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
557 /* Free old `term' if appropriate. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
558 if (term != name)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
559 free (term);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
560
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
561 /* If BP is malloc'd by us, make sure it is big enough. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
562 if (malloc_size)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
563 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
564 malloc_size = bp1 - bp + buf.size;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
565 termcap_name = (char *) xrealloc (bp, malloc_size);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
566 bp1 += termcap_name - bp;
14132
85063feb159b (tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents: 13677
diff changeset
567 tc_search_point += termcap_name - bp;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
568 bp = termcap_name;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
569 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
570
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
571 /* Copy the line of the entry from buf into bp. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
572 termcap_name = buf.ptr;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
573 while ((*bp1++ = c = *termcap_name++) && c != '\n')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
574 /* Drop out any \ newline sequence. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
575 if (c == '\\' && *termcap_name == '\n')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
576 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
577 bp1--;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
578 termcap_name++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
579 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
580 *bp1 = '\0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
581
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
582 /* Does this entry refer to another terminal type's entry?
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
583 If something is found, copy it into heap and null-terminate it. */
14132
85063feb159b (tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents: 13677
diff changeset
584 tc_search_point = find_capability (tc_search_point, "tc");
85063feb159b (tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents: 13677
diff changeset
585 term = tgetst1 (tc_search_point, (char **) 0);
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
586 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
587
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
588 close (fd);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
589 free (buf.beg);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
590
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
591 if (malloc_size)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
592 bp = (char *) xrealloc (bp, bp1 - bp + 1);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
593
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
594 ret:
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
595 term_entry = bp;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
596 return 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
597 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
598
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
599 /* Given file open on FD and buffer BUFP,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
600 scan the file from the beginning until a line is found
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
601 that starts the entry for terminal type STR.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
602 Return 1 if successful, with that line in BUFP,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
603 or 0 if no entry is found in the file. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
604
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
605 static int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
606 scan_file (str, fd, bufp)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
607 char *str;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
608 int fd;
22066
a09f2b697d0a Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents: 14414
diff changeset
609 register struct termcap_buffer *bufp;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
610 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
611 register char *end;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
612
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
613 bufp->ptr = bufp->beg;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
614 bufp->full = 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
615 bufp->ateof = 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
616 *bufp->ptr = '\0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
617
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
618 lseek (fd, 0L, 0);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
619
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
620 while (!bufp->ateof)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
621 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
622 /* Read a line into the buffer. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
623 end = NULL;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
624 do
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
625 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
626 /* if it is continued, append another line to it,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
627 until a non-continued line ends. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
628 end = gobble_line (fd, bufp, end);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
629 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
630 while (!bufp->ateof && end[-2] == '\\');
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
631
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
632 if (*bufp->ptr != '#'
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
633 && name_match (bufp->ptr, str))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
634 return 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
635
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
636 /* Discard the line just processed. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
637 bufp->ptr = end;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
638 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
639 return 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
640 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
641
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
642 /* Return nonzero if NAME is one of the names specified
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
643 by termcap entry LINE. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
644
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
645 static int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
646 name_match (line, name)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
647 char *line, *name;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
648 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
649 register char *tem;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
650
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
651 if (!compare_contin (line, name))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
652 return 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
653 /* This line starts an entry. Is it the right one? */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
654 for (tem = line; *tem && *tem != '\n' && *tem != ':'; tem++)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
655 if (*tem == '|' && !compare_contin (tem + 1, name))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
656 return 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
657
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
658 return 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
659 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
660
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
661 static int
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
662 compare_contin (str1, str2)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
663 register char *str1, *str2;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
664 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
665 register int c1, c2;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
666 while (1)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
667 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
668 c1 = *str1++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
669 c2 = *str2++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
670 while (c1 == '\\' && *str1 == '\n')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
671 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
672 str1++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
673 while ((c1 = *str1++) == ' ' || c1 == '\t');
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
674 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
675 if (c2 == '\0')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
676 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
677 /* End of type being looked up. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
678 if (c1 == '|' || c1 == ':')
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
679 /* If end of name in data base, we win. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
680 return 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
681 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
682 return 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
683 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
684 else if (c1 != c2)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
685 return 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
686 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
687 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
688
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
689 /* Make sure that the buffer <- BUFP contains a full line
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
690 of the file open on FD, starting at the place BUFP->ptr
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
691 points to. Can read more of the file, discard stuff before
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
692 BUFP->ptr, or make the buffer bigger.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
693
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
694 Return the pointer to after the newline ending the line,
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
695 or to the end of the file, if there is no newline to end it.
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
696
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
697 Can also merge on continuation lines. If APPEND_END is
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
698 non-null, it points past the newline of a line that is
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
699 continued; we add another line onto it and regard the whole
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
700 thing as one line. The caller decides when a line is continued. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
701
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
702 static char *
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
703 gobble_line (fd, bufp, append_end)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
704 int fd;
22066
a09f2b697d0a Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents: 14414
diff changeset
705 register struct termcap_buffer *bufp;
7306
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
706 char *append_end;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
707 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
708 register char *end;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
709 register int nread;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
710 register char *buf = bufp->beg;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
711 register char *tem;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
712
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
713 if (!append_end)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
714 append_end = bufp->ptr;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
715
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
716 while (1)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
717 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
718 end = append_end;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
719 while (*end && *end != '\n') end++;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
720 if (*end)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
721 break;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
722 if (bufp->ateof)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
723 return buf + bufp->full;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
724 if (bufp->ptr == buf)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
725 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
726 if (bufp->full == bufp->size)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
727 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
728 bufp->size *= 2;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
729 /* Add 1 to size to ensure room for terminating null. */
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
730 tem = (char *) xrealloc (buf, bufp->size + 1);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
731 bufp->ptr = (bufp->ptr - buf) + tem;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
732 append_end = (append_end - buf) + tem;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
733 bufp->beg = buf = tem;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
734 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
735 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
736 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
737 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
738 append_end -= bufp->ptr - buf;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
739 bcopy (bufp->ptr, buf, bufp->full -= bufp->ptr - buf);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
740 bufp->ptr = buf;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
741 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
742 if (!(nread = read (fd, buf + bufp->full, bufp->size - bufp->full)))
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
743 bufp->ateof = 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
744 bufp->full += nread;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
745 buf[bufp->full] = '\0';
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
746 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
747 return end + 1;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
748 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
749
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
750 #ifdef TEST
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
751
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
752 #ifdef NULL
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
753 #undef NULL
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
754 #endif
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
755
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
756 #include <stdio.h>
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
757
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
758 main (argc, argv)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
759 int argc;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
760 char **argv;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
761 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
762 char *term;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
763 char *buf;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
764
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
765 term = argv[1];
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
766 printf ("TERM: %s\n", term);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
767
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
768 buf = (char *) tgetent (0, term);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
769 if ((int) buf <= 0)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
770 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
771 printf ("No entry.\n");
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
772 return 0;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
773 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
774
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
775 printf ("Entry: %s\n", buf);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
776
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
777 tprint ("cm");
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
778 tprint ("AL");
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
779
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
780 printf ("co: %d\n", tgetnum ("co"));
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
781 printf ("am: %d\n", tgetflag ("am"));
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
782 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
783
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
784 tprint (cap)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
785 char *cap;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
786 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
787 char *x = tgetstr (cap, 0);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
788 register char *y;
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
789
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
790 printf ("%s: ", cap);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
791 if (x)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
792 {
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
793 for (y = x; *y; y++)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
794 if (*y <= ' ' || *y == 0177)
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
795 printf ("\\%0o", *y);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
796 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
797 putchar (*y);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
798 free (x);
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
799 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
800 else
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
801 printf ("none");
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
802 putchar ('\n');
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
803 }
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
804
1f2f6bb3690f Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
805 #endif /* TEST */