]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_cur_term.c
ncurses 5.7 - patch 20091107
[ncurses.git] / ncurses / tinfo / lib_cur_term.c
1 /****************************************************************************
2  * Copyright (c) 1998-2008,2009 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 <term_entry.h>         /* TTY, cur_term */
41 #include <termcap.h>            /* ospeed */
42
43 MODULE_ID("$Id: lib_cur_term.c,v 1.28 2009/10/24 22:15:00 tom Exp $")
44
45 #undef CUR
46 #define CUR termp->type.
47
48 #if BROKEN_LINKER && !USE_REENTRANT
49 NCURSES_EXPORT_VAR(TERMINAL *) cur_term = 0;
50 #elif BROKEN_LINKER || USE_REENTRANT
51
52 NCURSES_EXPORT(TERMINAL *)
53 NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_DCL0)
54 {
55     return ((0 != TerminalOf(SP_PARM)) ? TerminalOf(SP_PARM) : CurTerm);
56 }
57
58 #if NCURSES_SP_FUNCS
59 NCURSES_EXPORT(TERMINAL *)
60 _nc_get_cur_term(void)
61 {
62     return NCURSES_SP_NAME(_nc_get_cur_term) (CURRENT_SCREEN);
63 }
64 #endif
65
66 NCURSES_EXPORT(TERMINAL *)
67 NCURSES_PUBLIC_VAR(cur_term) (void)
68 {
69 #if NCURSES_SP_FUNCS
70     return NCURSES_SP_NAME(_nc_get_cur_term) (CURRENT_SCREEN);
71 #else
72     return NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_ARG);
73 #endif
74 }
75
76 #else
77 NCURSES_EXPORT_VAR(TERMINAL *) cur_term = 0;
78 #endif
79
80 NCURSES_EXPORT(TERMINAL *)
81 NCURSES_SP_NAME(set_curterm) (NCURSES_SP_DCLx TERMINAL * termp)
82 {
83     TERMINAL *oldterm;
84
85     T((T_CALLED("set_curterm(%p)"), (void *) termp));
86
87     _nc_lock_global(curses);
88     oldterm = cur_term;
89     if (SP_PARM)
90         SP_PARM->_term = termp;
91 #if BROKEN_LINKER && !USE_REENTRANT
92     cur_term = termp;
93 #else
94     CurTerm = termp;
95 #endif
96     if (termp != 0) {
97 #ifdef USE_TERM_DRIVER
98         TERMINAL_CONTROL_BLOCK *TCB = (TERMINAL_CONTROL_BLOCK *) termp;
99         ospeed = _nc_ospeed(termp->_baudrate);
100         if (TCB->drv->isTerminfo && termp->type.Strings) {
101             PC = (char) ((pad_char != NULL) ? pad_char[0] : 0);
102         }
103         TCB->csp = SP_PARM;
104 #else
105         ospeed = _nc_ospeed(termp->_baudrate);
106         if (termp->type.Strings) {
107             PC = (char) ((pad_char != NULL) ? pad_char[0] : 0);
108         }
109 #endif
110     }
111     _nc_unlock_global(curses);
112
113     T((T_RETURN("%p"), (void *) oldterm));
114     return (oldterm);
115 }
116
117 #if NCURSES_SP_FUNCS
118 NCURSES_EXPORT(TERMINAL *)
119 set_curterm(TERMINAL * termp)
120 {
121     return NCURSES_SP_NAME(set_curterm) (CURRENT_SCREEN, termp);
122 }
123 #endif
124
125 NCURSES_EXPORT(int)
126 NCURSES_SP_NAME(del_curterm) (NCURSES_SP_DCLx TERMINAL * termp)
127 {
128     int rc = ERR;
129
130     T((T_CALLED("del_curterm(%p, %p)"), (void *) SP_PARM, (void *) termp));
131
132     if (termp != 0) {
133 #ifdef USE_TERM_DRIVER
134         TERMINAL_CONTROL_BLOCK *TCB = (TERMINAL_CONTROL_BLOCK *) termp;
135 #endif
136         TERMINAL *cur = (
137 #if BROKEN_LINKER && !USE_REENTRANT
138                             cur_term
139 #elif BROKEN_LINKER || USE_REENTRANT
140                             NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_ARG)
141 #else
142                             cur_term
143 #endif
144         );
145
146         _nc_free_termtype(&(termp->type));
147         if (termp == cur)
148             NCURSES_SP_NAME(set_curterm) (NCURSES_SP_ARGx 0);
149
150         FreeIfNeeded(termp->_termname);
151 #if USE_HOME_TERMINFO
152         if (_nc_globals.home_terminfo != 0)
153             FreeAndNull(_nc_globals.home_terminfo);
154 #endif
155 #ifdef USE_TERM_DRIVER
156         if (TCB->drv)
157             TCB->drv->release(TCB);
158 #endif
159         free(termp);
160
161         rc = OK;
162     }
163     returnCode(rc);
164 }
165
166 #if NCURSES_SP_FUNCS
167 NCURSES_EXPORT(int)
168 del_curterm(TERMINAL * termp)
169 {
170     int rc = ERR;
171
172     _nc_lock_global(curses);
173     rc = NCURSES_SP_NAME(del_curterm) (CURRENT_SCREEN, termp);
174     _nc_unlock_global(curses);
175
176     return (rc);
177 }
178 #endif