]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_cur_term.c
ncurses 6.0 - patch 20170415
[ncurses.git] / ncurses / tinfo / lib_cur_term.c
1 /****************************************************************************
2  * Copyright (c) 1998-2016,2017 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Thomas E. Dickey <dickey@clark.net> 1997                        *
31  ****************************************************************************/
32 /*
33  * Module that "owns" the 'cur_term' variable:
34  *
35  *      TERMINAL *set_curterm(TERMINAL *)
36  *      int del_curterm(TERMINAL *)
37  */
38
39 #include <curses.priv.h>
40 #include <termcap.h>            /* ospeed */
41
42 MODULE_ID("$Id: lib_cur_term.c,v 1.40 2017/04/15 21:35:08 tom Exp $")
43
44 #undef CUR
45 #define CUR TerminalType(termp).
46
47 #if USE_REENTRANT
48
49 NCURSES_EXPORT(TERMINAL *)
50 NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_DCL0)
51 {
52     return ((0 != TerminalOf(SP_PARM)) ? TerminalOf(SP_PARM) : CurTerm);
53 }
54
55 #if NCURSES_SP_FUNCS
56
57 NCURSES_EXPORT(TERMINAL *)
58 _nc_get_cur_term(void)
59 {
60     return NCURSES_SP_NAME(_nc_get_cur_term) (CURRENT_SCREEN);
61 }
62 #endif
63
64 NCURSES_EXPORT(TERMINAL *)
65 NCURSES_PUBLIC_VAR(cur_term) (void)
66 {
67 #if NCURSES_SP_FUNCS
68     return NCURSES_SP_NAME(_nc_get_cur_term) (CURRENT_SCREEN);
69 #else
70     return NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_ARG);
71 #endif
72 }
73
74 #else
75 NCURSES_EXPORT_VAR(TERMINAL *) cur_term = 0;
76 #endif
77
78 NCURSES_EXPORT(TERMINAL *)
79 NCURSES_SP_NAME(set_curterm) (NCURSES_SP_DCLx TERMINAL *termp)
80 {
81     TERMINAL *oldterm;
82
83     T((T_CALLED("set_curterm(%p)"), (void *) termp));
84
85     _nc_lock_global(curses);
86     oldterm = cur_term;
87     if (SP_PARM)
88         SP_PARM->_term = termp;
89 #if USE_REENTRANT
90     CurTerm = termp;
91 #else
92     cur_term = termp;
93 #endif
94     if (termp != 0) {
95 #ifdef USE_TERM_DRIVER
96         TERMINAL_CONTROL_BLOCK *TCB = (TERMINAL_CONTROL_BLOCK *) termp;
97         ospeed = (NCURSES_OSPEED) _nc_ospeed(termp->_baudrate);
98         if (TCB->drv &&
99             TCB->drv->isTerminfo &&
100             TerminalType(termp).Strings) {
101             PC = (char) ((pad_char != NULL) ? pad_char[0] : 0);
102         }
103         TCB->csp = SP_PARM;
104 #else
105         ospeed = (NCURSES_OSPEED) _nc_ospeed(termp->_baudrate);
106         if (TerminalType(termp).Strings) {
107             PC = (char) ((pad_char != NULL) ? pad_char[0] : 0);
108         }
109 #endif
110 #if !USE_REENTRANT
111 #define MY_SIZE (size_t) (NAMESIZE - 1)
112         _nc_STRNCPY(ttytype, TerminalType(termp).term_names, MY_SIZE);
113         ttytype[MY_SIZE] = '\0';
114 #endif
115     }
116     _nc_unlock_global(curses);
117
118     T((T_RETURN("%p"), (void *) oldterm));
119     return (oldterm);
120 }
121
122 #if NCURSES_SP_FUNCS
123 NCURSES_EXPORT(TERMINAL *)
124 set_curterm(TERMINAL *termp)
125 {
126     return NCURSES_SP_NAME(set_curterm) (CURRENT_SCREEN, termp);
127 }
128 #endif
129
130 NCURSES_EXPORT(int)
131 NCURSES_SP_NAME(del_curterm) (NCURSES_SP_DCLx TERMINAL *termp)
132 {
133     int rc = ERR;
134
135     T((T_CALLED("del_curterm(%p, %p)"), (void *) SP_PARM, (void *) termp));
136
137     if (termp != 0) {
138 #ifdef USE_TERM_DRIVER
139         TERMINAL_CONTROL_BLOCK *TCB = (TERMINAL_CONTROL_BLOCK *) termp;
140 #endif
141         TERMINAL *cur = (
142 #if USE_REENTRANT
143                             NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_ARG)
144 #else
145                             cur_term
146 #endif
147         );
148
149 #if NCURSES_EXT_NUMBERS
150         _nc_free_termtype(&termp->type);
151 #endif
152         _nc_free_termtype2(&TerminalType(termp));
153         if (termp == cur)
154             NCURSES_SP_NAME(set_curterm) (NCURSES_SP_ARGx 0);
155
156         FreeIfNeeded(termp->_termname);
157 #if USE_HOME_TERMINFO
158         if (_nc_globals.home_terminfo != 0) {
159             FreeAndNull(_nc_globals.home_terminfo);
160         }
161 #endif
162 #ifdef USE_TERM_DRIVER
163         if (TCB->drv)
164             TCB->drv->td_release(TCB);
165 #endif
166 #if NO_LEAKS
167         /* discard memory used in tgetent's cache for this terminal */
168         _nc_tgetent_leak(termp);
169 #endif
170         free(termp);
171
172         rc = OK;
173     }
174     returnCode(rc);
175 }
176
177 #if NCURSES_SP_FUNCS
178 NCURSES_EXPORT(int)
179 del_curterm(TERMINAL *termp)
180 {
181     int rc;
182
183     _nc_lock_global(curses);
184     rc = NCURSES_SP_NAME(del_curterm) (CURRENT_SCREEN, termp);
185     _nc_unlock_global(curses);
186
187     return (rc);
188 }
189 #endif