]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_tputs.c
ncurses 6.2 - patch 20210508
[ncurses.git] / ncurses / tinfo / lib_tputs.c
1 /****************************************************************************
2  * Copyright 2018-2020,2021 Thomas E. Dickey                                *
3  * Copyright 1998-2016,2017 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  *     and: Thomas E. Dickey                        1996-on                 *
34  *     and: Juergen Pfeifer                         2009                    *
35  ****************************************************************************/
36
37 /*
38  *      tputs.c
39  *              delay_output()
40  *              _nc_outch()
41  *              tputs()
42  *
43  */
44
45 #include <curses.priv.h>
46
47 #ifndef CUR
48 #define CUR SP_TERMTYPE
49 #endif
50
51 #include <ctype.h>
52 #include <termcap.h>            /* ospeed */
53 #include <tic.h>
54
55 MODULE_ID("$Id: lib_tputs.c,v 1.108 2021/05/08 23:27:40 tom Exp $")
56
57 NCURSES_EXPORT_VAR(char) PC = 0;              /* used by termcap library */
58 NCURSES_EXPORT_VAR(NCURSES_OSPEED) ospeed = 0;        /* used by termcap library */
59
60 NCURSES_EXPORT_VAR(int) _nc_nulls_sent = 0;   /* used by 'tack' program */
61
62 #if NCURSES_NO_PADDING
63 NCURSES_EXPORT(void)
64 _nc_set_no_padding(SCREEN *sp)
65 {
66     bool no_padding = (getenv("NCURSES_NO_PADDING") != 0);
67
68     if (sp)
69         sp->_no_padding = no_padding;
70     else
71         _nc_prescreen._no_padding = no_padding;
72
73     TR(TRACE_CHARPUT | TRACE_MOVE, ("padding will%s be used",
74                                     GetNoPadding(sp) ? " not" : ""));
75 }
76 #endif
77
78 #if NCURSES_SP_FUNCS
79 #define SetOutCh(func) if (SP_PARM) SP_PARM->_outch = func; else _nc_prescreen._outch = func
80 #define GetOutCh()     (SP_PARM ? SP_PARM->_outch : _nc_prescreen._outch)
81 #else
82 #define SetOutCh(func) static_outch = func
83 #define GetOutCh()     static_outch
84 static NCURSES_SP_OUTC static_outch = NCURSES_SP_NAME(_nc_outch);
85 #endif
86
87 NCURSES_EXPORT(int)
88 NCURSES_SP_NAME(delay_output) (NCURSES_SP_DCLx int ms)
89 {
90     T((T_CALLED("delay_output(%p,%d)"), (void *) SP_PARM, ms));
91
92     if (!HasTInfoTerminal(SP_PARM))
93         returnCode(ERR);
94
95     if (no_pad_char) {
96         NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_ARG);
97         napms(ms);
98     } else {
99         NCURSES_SP_OUTC my_outch = GetOutCh();
100         register int nullcount;
101
102         nullcount = (ms * _nc_baudrate(ospeed)) / (BAUDBYTE * 1000);
103         for (_nc_nulls_sent += nullcount; nullcount > 0; nullcount--)
104             my_outch(NCURSES_SP_ARGx PC);
105         if (my_outch == NCURSES_SP_NAME(_nc_outch))
106             NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_ARG);
107     }
108
109     returnCode(OK);
110 }
111
112 #if NCURSES_SP_FUNCS
113 NCURSES_EXPORT(int)
114 delay_output(int ms)
115 {
116     return NCURSES_SP_NAME(delay_output) (CURRENT_SCREEN, ms);
117 }
118 #endif
119
120 NCURSES_EXPORT(void)
121 NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_DCL0)
122 {
123     T((T_CALLED("_nc_flush(%p)"), (void *) SP_PARM));
124     if (SP_PARM != 0 && SP_PARM->_ofd >= 0) {
125         TR(TRACE_CHARPUT, ("ofd:%d inuse:%lu buffer:%p",
126                            SP_PARM->_ofd,
127                            (unsigned long) SP_PARM->out_inuse,
128                            SP_PARM->out_buffer));
129         if (SP_PARM->out_inuse) {
130             char *buf = SP_PARM->out_buffer;
131             size_t amount = SP->out_inuse;
132
133             SP->out_inuse = 0;
134             TR(TRACE_CHARPUT, ("flushing %ld/%ld bytes",
135                                (unsigned long) amount, _nc_outchars));
136             while (amount) {
137                 ssize_t res = write(SP_PARM->_ofd, buf, amount);
138                 if (res > 0) {
139                     /* if the write was incomplete, try again */
140                     amount -= (size_t) res;
141                     buf += res;
142                 } else if (errno == EAGAIN) {
143                     continue;
144                 } else if (errno == EINTR) {
145                     continue;
146                 } else {
147                     break;      /* an error we can not recover from */
148                 }
149             }
150         } else if (SP_PARM->out_buffer == 0) {
151             TR(TRACE_CHARPUT, ("flushing stdout"));
152             fflush(stdout);
153         }
154     } else {
155         TR(TRACE_CHARPUT, ("flushing stdout"));
156         fflush(stdout);
157     }
158     returnVoid;
159 }
160
161 #if NCURSES_SP_FUNCS
162 NCURSES_EXPORT(void)
163 _nc_flush(void)
164 {
165     NCURSES_SP_NAME(_nc_flush) (CURRENT_SCREEN);
166 }
167 #endif
168
169 NCURSES_EXPORT(int)
170 NCURSES_SP_NAME(_nc_outch) (NCURSES_SP_DCLx int ch)
171 {
172     int rc = OK;
173
174     COUNT_OUTCHARS(1);
175
176     if (HasTInfoTerminal(SP_PARM)
177         && SP_PARM != 0) {
178         if (SP_PARM->out_buffer != 0) {
179             if (SP_PARM->out_inuse + 1 >= SP_PARM->out_limit)
180                 NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_ARG);
181             SP_PARM->out_buffer[SP_PARM->out_inuse++] = (char) ch;
182         } else {
183             char tmp = (char) ch;
184             /*
185              * POSIX says write() is safe in a signal handler, but the
186              * buffered I/O is not.
187              */
188             if (write(fileno(NC_OUTPUT(SP_PARM)), &tmp, (size_t) 1) == -1)
189                 rc = ERR;
190         }
191     } else {
192         char tmp = (char) ch;
193         if (write(fileno(stdout), &tmp, (size_t) 1) == -1)
194             rc = ERR;
195     }
196     return rc;
197 }
198
199 #if NCURSES_SP_FUNCS
200 NCURSES_EXPORT(int)
201 _nc_outch(int ch)
202 {
203     return NCURSES_SP_NAME(_nc_outch) (CURRENT_SCREEN, ch);
204 }
205 #endif
206
207 /*
208  * This is used for the putp special case.
209  */
210 NCURSES_EXPORT(int)
211 NCURSES_SP_NAME(_nc_putchar) (NCURSES_SP_DCLx int ch)
212 {
213     (void) SP_PARM;
214     return putchar(ch);
215 }
216
217 #if NCURSES_SP_FUNCS
218 NCURSES_EXPORT(int)
219 _nc_putchar(int ch)
220 {
221     return putchar(ch);
222 }
223 #endif
224
225 /*
226  * putp is special - per documentation it calls tputs with putchar as the
227  * parameter for outputting characters.  This means that it uses stdio, which
228  * is not signal-safe.  Applications call this entrypoint; we do not call it
229  * from within the library.
230  */
231 NCURSES_EXPORT(int)
232 NCURSES_SP_NAME(putp) (NCURSES_SP_DCLx const char *string)
233 {
234     return NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
235                                    string, 1, NCURSES_SP_NAME(_nc_putchar));
236 }
237
238 #if NCURSES_SP_FUNCS
239 NCURSES_EXPORT(int)
240 putp(const char *string)
241 {
242     return NCURSES_SP_NAME(putp) (CURRENT_SCREEN, string);
243 }
244 #endif
245
246 /*
247  * Use these entrypoints rather than "putp" within the library.
248  */
249 NCURSES_EXPORT(int)
250 NCURSES_SP_NAME(_nc_putp) (NCURSES_SP_DCLx
251                            const char *name GCC_UNUSED,
252                            const char *string)
253 {
254     int rc = ERR;
255
256     if (string != 0) {
257         TPUTS_TRACE(name);
258         rc = NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx
259                                      string, 1, NCURSES_SP_NAME(_nc_outch));
260     }
261     return rc;
262 }
263
264 #if NCURSES_SP_FUNCS
265 NCURSES_EXPORT(int)
266 _nc_putp(const char *name, const char *string)
267 {
268     return NCURSES_SP_NAME(_nc_putp) (CURRENT_SCREEN, name, string);
269 }
270 #endif
271
272 NCURSES_EXPORT(int)
273 NCURSES_SP_NAME(tputs) (NCURSES_SP_DCLx
274                         const char *string,
275                         int affcnt,
276                         NCURSES_SP_OUTC outc)
277 {
278     NCURSES_SP_OUTC my_outch = GetOutCh();
279     bool always_delay = FALSE;
280     bool normal_delay = FALSE;
281     int number;
282 #if BSD_TPUTS
283     int trailpad;
284 #endif /* BSD_TPUTS */
285
286 #ifdef TRACE
287     if (USE_TRACEF(TRACE_TPUTS)) {
288         char addrbuf[32];
289         TR_FUNC_BFR(1);
290
291         if (outc == NCURSES_SP_NAME(_nc_outch)) {
292             _nc_STRCPY(addrbuf, "_nc_outch", sizeof(addrbuf));
293         } else {
294             _nc_SPRINTF(addrbuf, _nc_SLIMIT(sizeof(addrbuf)) "%s",
295                         TR_FUNC_ARG(0, outc));
296         }
297         if (_nc_tputs_trace) {
298             _tracef("tputs(%s = %s, %d, %s) called", _nc_tputs_trace,
299                     _nc_visbuf(string), affcnt, addrbuf);
300         } else {
301             _tracef("tputs(%s, %d, %s) called", _nc_visbuf(string), affcnt, addrbuf);
302         }
303         TPUTS_TRACE(NULL);
304         _nc_unlock_global(tracef);
305     }
306 #endif /* TRACE */
307
308     if (!VALID_STRING(string))
309         return ERR;
310
311     if (SP_PARM != 0 && HasTInfoTerminal(SP_PARM)) {
312         if (
313 #if NCURSES_SP_FUNCS
314                (SP_PARM != 0 && SP_PARM->_term == 0)
315 #else
316                cur_term == 0
317 #endif
318             ) {
319             always_delay = FALSE;
320             normal_delay = TRUE;
321         } else {
322             always_delay = (string == bell) || (string == flash_screen);
323             normal_delay =
324                 !xon_xoff
325                 && padding_baud_rate
326 #if NCURSES_NO_PADDING
327                 && !GetNoPadding(SP_PARM)
328 #endif
329                 && (_nc_baudrate(ospeed) >= padding_baud_rate);
330         }
331     }
332 #if BSD_TPUTS
333     /*
334      * This ugly kluge deals with the fact that some ancient BSD programs
335      * (like nethack) actually do the likes of tputs("50") to get delays.
336      */
337     trailpad = 0;
338     if (isdigit(UChar(*string))) {
339         while (isdigit(UChar(*string))) {
340             trailpad = trailpad * 10 + (*string - '0');
341             string++;
342         }
343         trailpad *= 10;
344         if (*string == '.') {
345             string++;
346             if (isdigit(UChar(*string))) {
347                 trailpad += (*string - '0');
348                 string++;
349             }
350             while (isdigit(UChar(*string)))
351                 string++;
352         }
353
354         if (*string == '*') {
355             trailpad *= affcnt;
356             string++;
357         }
358     }
359 #endif /* BSD_TPUTS */
360
361     SetOutCh(outc);             /* redirect delay_output() */
362     while (*string) {
363         if (*string != '$')
364             (*outc) (NCURSES_SP_ARGx *string);
365         else {
366             string++;
367             if (*string != '<') {
368                 (*outc) (NCURSES_SP_ARGx '$');
369                 if (*string)
370                     (*outc) (NCURSES_SP_ARGx *string);
371             } else {
372                 bool mandatory;
373
374                 string++;
375                 if ((!isdigit(UChar(*string)) && *string != '.')
376                     || !strchr(string, '>')) {
377                     (*outc) (NCURSES_SP_ARGx '$');
378                     (*outc) (NCURSES_SP_ARGx '<');
379                     continue;
380                 }
381
382                 number = 0;
383                 while (isdigit(UChar(*string))) {
384                     number = number * 10 + (*string - '0');
385                     string++;
386                 }
387                 number *= 10;
388                 if (*string == '.') {
389                     string++;
390                     if (isdigit(UChar(*string))) {
391                         number += (*string - '0');
392                         string++;
393                     }
394                     while (isdigit(UChar(*string)))
395                         string++;
396                 }
397
398                 mandatory = FALSE;
399                 while (*string == '*' || *string == '/') {
400                     if (*string == '*') {
401                         number *= affcnt;
402                         string++;
403                     } else {    /* if (*string == '/') */
404                         mandatory = TRUE;
405                         string++;
406                     }
407                 }
408
409                 if (number > 0
410                     && (always_delay
411                         || normal_delay
412                         || mandatory))
413                     NCURSES_SP_NAME(delay_output) (NCURSES_SP_ARGx number / 10);
414
415             }                   /* endelse (*string == '<') */
416         }                       /* endelse (*string == '$') */
417
418         if (*string == '\0')
419             break;
420
421         string++;
422     }
423
424 #if BSD_TPUTS
425     /*
426      * Emit any BSD-style prefix padding that we've accumulated now.
427      */
428     if (trailpad > 0
429         && (always_delay || normal_delay))
430         NCURSES_SP_NAME(delay_output) (NCURSES_SP_ARGx trailpad / 10);
431 #endif /* BSD_TPUTS */
432
433     SetOutCh(my_outch);
434     return OK;
435 }
436
437 #if NCURSES_SP_FUNCS
438 NCURSES_EXPORT(int)
439 _nc_outc_wrapper(SCREEN *sp, int c)
440 {
441     if (0 == sp) {
442         return fputc(c, stdout);
443     } else {
444         return sp->jump(c);
445     }
446 }
447
448 NCURSES_EXPORT(int)
449 tputs(const char *string, int affcnt, int (*outc) (int))
450 {
451     SetSafeOutcWrapper(outc);
452     return NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx string, affcnt, _nc_outc_wrapper);
453 }
454 #endif