]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_cur_term.c
ncurses 5.7 - patch 20090822
[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.24 2009/08/22 22:37:13 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     return NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_ARG);
70 }
71
72 #else
73 NCURSES_EXPORT_VAR(TERMINAL *) cur_term = 0;
74 #endif
75
76 NCURSES_EXPORT(TERMINAL *)
77 NCURSES_SP_NAME(set_curterm) (NCURSES_SP_DCLx TERMINAL * termp)
78 {
79     TERMINAL *oldterm;
80
81     T((T_CALLED("set_curterm(%p)"), termp));
82
83     _nc_lock_global(curses);
84     oldterm = cur_term;
85     if (SP_PARM)
86         SP_PARM->_term = termp;
87 #if BROKEN_LINKER && !USE_REENTRANT
88     cur_term = termp;
89 #else
90     CurTerm = termp;
91 #endif
92     if (termp != 0) {
93 #ifdef USE_TERM_DRIVER
94         TERMINAL_CONTROL_BLOCK *TCB = (TERMINAL_CONTROL_BLOCK *) termp;
95         ospeed = _nc_ospeed(termp->_baudrate);
96         if (TCB->drv->isTerminfo && termp->type.Strings) {
97             PC = (char) ((pad_char != NULL) ? pad_char[0] : 0);
98         }
99         TCB->csp = SP_PARM;
100 #else
101         ospeed = _nc_ospeed(termp->_baudrate);
102         if (termp->type.Strings) {
103             PC = (char) ((pad_char != NULL) ? pad_char[0] : 0);
104         }
105 #endif
106     }
107     _nc_unlock_global(curses);
108
109     T((T_RETURN("%p"), oldterm));
110     return (oldterm);
111 }
112
113 #if NCURSES_SP_FUNCS
114 NCURSES_EXPORT(TERMINAL *)
115 set_curterm(TERMINAL * termp)
116 {
117     return NCURSES_SP_NAME(set_curterm) (CURRENT_SCREEN, termp);
118 }
119 #endif
120
121 NCURSES_EXPORT(int)
122 NCURSES_SP_NAME(del_curterm) (NCURSES_SP_DCLx TERMINAL * termp)
123 {
124     int rc = ERR;
125
126     T((T_CALLED("del_curterm(%p, %p)"), SP_PARM, termp));
127
128     if (termp != 0) {
129 #ifdef USE_TERM_DRIVER
130         TERMINAL_CONTROL_BLOCK *TCB = (TERMINAL_CONTROL_BLOCK *) termp;
131 #endif
132         TERMINAL *cur = (
133 #if BROKEN_LINKER && !USE_REENTRANT
134                             cur_term
135 #elif BROKEN_LINKER || USE_REENTRANT
136                             NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_ARG)
137 #else
138                             cur_term
139 #endif
140         );
141
142         _nc_free_termtype(&(termp->type));
143         if (termp == cur)
144             NCURSES_SP_NAME(set_curterm) (NCURSES_SP_ARGx 0);
145
146         FreeIfNeeded(termp->_termname);
147 #if USE_HOME_TERMINFO
148         if (_nc_globals.home_terminfo != 0)
149             FreeAndNull(_nc_globals.home_terminfo);
150 #endif
151 #ifdef USE_TERM_DRIVER
152         if (TCB->drv)
153             TCB->drv->release(TCB);
154 #endif
155         free(termp);
156
157         rc = OK;
158     }
159     returnCode(rc);
160 }
161
162 #if NCURSES_SP_FUNCS
163 NCURSES_EXPORT(int)
164 del_curterm(TERMINAL * termp)
165 {
166     int rc = ERR;
167
168     _nc_lock_global(curses);
169     rc = NCURSES_SP_NAME(del_curterm) (CURRENT_SCREEN, termp);
170     _nc_unlock_global(curses);
171
172     return (rc);
173 }
174 #endif