]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_data.c
21b854b92b6f840cc56df61c9d7df4cacca7ad68
[ncurses.git] / ncurses / tinfo / lib_data.c
1 /****************************************************************************
2  * Copyright (c) 1998-2007,2008 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: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  ****************************************************************************/
34
35 /*
36 **      lib_data.c
37 **
38 **      Common data that may/may not be allocated, but is referenced globally
39 **
40 */
41
42 #include <curses.priv.h>
43
44 MODULE_ID("$Id: lib_data.c,v 1.39 2008/01/13 01:21:59 tom Exp $")
45
46 /*
47  * OS/2's native linker complains if we don't initialize public data when
48  * constructing a dll (reported by J.J.G.Ripoll).
49  */
50 #if USE_REENTRANT
51 NCURSES_EXPORT(WINDOW *)
52 NCURSES_PUBLIC_VAR(stdscr) (void)
53 {
54     return SP ? SP->_stdscr : 0;
55 }
56 NCURSES_EXPORT(WINDOW *)
57 NCURSES_PUBLIC_VAR(curscr) (void)
58 {
59     return SP ? SP->_curscr : 0;
60 }
61 NCURSES_EXPORT(WINDOW *)
62 NCURSES_PUBLIC_VAR(newscr) (void)
63 {
64     return SP ? SP->_newscr : 0;
65 }
66 #else
67 NCURSES_EXPORT_VAR(WINDOW *) stdscr = 0;
68 NCURSES_EXPORT_VAR(WINDOW *) curscr = 0;
69 NCURSES_EXPORT_VAR(WINDOW *) newscr = 0;
70 #endif
71
72 NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain = 0;
73
74 /*
75  * The variable 'SP' will be defined as a function on systems that cannot link
76  * data-only modules, since it is used in a lot of places within ncurses and we
77  * cannot guarantee that any application will use any particular function.  We
78  * put the WINDOW variables in this module, because it appears that any
79  * application that uses them will also use 'SP'.
80  *
81  * This module intentionally does not reference other ncurses modules, to avoid
82  * module coupling that increases the size of the executable.
83  */
84 #if BROKEN_LINKER
85 static SCREEN *my_screen;
86
87 NCURSES_EXPORT(SCREEN *)
88 _nc_screen(void)
89 {
90     return my_screen;
91 }
92
93 NCURSES_EXPORT(int)
94 _nc_alloc_screen(void)
95 {
96     return ((my_screen = typeCalloc(SCREEN, 1)) != 0);
97 }
98
99 NCURSES_EXPORT(void)
100 _nc_set_screen(SCREEN *sp)
101 {
102     my_screen = sp;
103 }
104
105 #else
106 NCURSES_EXPORT_VAR(SCREEN *) SP = NULL; /* Some linkers require initialized data... */
107 #endif
108 /* *INDENT-OFF* */
109 #define CHARS_0s { '\0' }
110
111 #define TGETENT_0 { 0L, FALSE, NULL, NULL, NULL }
112 #define TGETENT_0s { TGETENT_0, TGETENT_0, TGETENT_0, TGETENT_0 } 
113
114 NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals = {
115     0,                          /* have_sigwinch */
116     0,                          /* cleanup_nested */
117
118     FALSE,                      /* init_signals */
119     FALSE,                      /* init_screen */
120
121     NULL,                       /* comp_sourcename */
122     NULL,                       /* comp_termtype */
123
124     FALSE,                      /* have_tic_directory */
125     FALSE,                      /* keep_tic_directory */
126     TERMINFO,                   /* tic_directory */
127
128     NULL,                       /* dbi_list */
129     0,                          /* dbi_size */
130
131     NULL,                       /* first_name */
132     NULL,                       /* keyname_table */
133
134     0,                          /* slk_format */
135
136     NULL,                       /* safeprint_buf */
137     0,                          /* safeprint_used */
138
139     TGETENT_0s,                 /* tgetent_cache */
140     0,                          /* tgetent_index */
141     0,                          /* tgetent_sequence */
142
143 #if USE_HOME_TERMINFO
144     NULL,                       /* home_terminfo */
145 #endif
146
147 #if !USE_SAFE_SPRINTF
148     0,                          /* safeprint_cols */
149     0,                          /* safeprint_rows */
150 #endif
151
152 #ifdef TRACE
153     FALSE,                      /* init_trace */
154     CHARS_0s,                   /* trace_fname */
155     0,                          /* trace_level */
156     NULL,                       /* trace_fp */
157
158     NULL,                       /* tracearg_buf */
159     0,                          /* tracearg_used */
160
161     NULL,                       /* tracebuf_ptr */
162     0,                          /* tracebuf_used */
163
164     CHARS_0s,                   /* tracechr_buf */
165
166     NULL,                       /* tracedmp_buf */
167     0,                          /* tracedmp_used */
168
169     CHARS_0s,                   /* tracemse_buf */
170
171     NULL,                       /* tracetry_buf */
172     0,                          /* tracetry_used */
173
174 #ifndef USE_TERMLIB
175     { CHARS_0s, CHARS_0s },     /* traceatr_color_buf */
176     0,                          /* traceatr_color_sel */
177     -1,                         /* traceatr_color_last */
178 #endif /* USE_TERMLIB */
179
180 #endif /* TRACE */
181 #ifdef USE_PTHREADS
182     PTHREAD_MUTEX_INITIALIZER,  /* mutex_set_SP */
183     PTHREAD_MUTEX_INITIALIZER,  /* mutex_use_screen */
184     PTHREAD_MUTEX_INITIALIZER,  /* mutex_use_window */
185     PTHREAD_MUTEX_INITIALIZER,  /* mutex_windowlist */
186     PTHREAD_MUTEX_INITIALIZER,  /* mutex_tst_tracef */
187     PTHREAD_MUTEX_INITIALIZER,  /* mutex_tracef */
188     0,                          /* nested_tracef */
189 #endif
190 };
191
192 #define STACK_FRAME_0   { { 0 }, 0 }
193 #define STACK_FRAME_0s  { STACK_FRAME_0 }
194 #define NUM_VARS_0s     { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }
195
196 #define RIPOFF_0        { 0,0,0 }
197 #define RIPOFF_0s       { RIPOFF_0 }
198
199 NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen = {
200     TRUE,                       /* use_env */
201     FALSE,                      /* filter_mode */
202     A_NORMAL,                   /* previous_attr */
203     RIPOFF_0s,                  /* ripoff */
204     NULL,                       /* rsp */
205     {                           /* tparm_state */
206 #ifdef TRACE
207         NULL,                   /* tname */
208 #endif
209         NULL,                   /* tparam_base */
210
211         STACK_FRAME_0s,         /* stack */
212         0,                      /* stack_ptr */
213
214         NULL,                   /* out_buff */
215         0,                      /* out_size */
216         0,                      /* out_used */
217
218         NULL,                   /* fmt_buff */
219         0,                      /* fmt_size */
220
221         NUM_VARS_0s,            /* dynamic_var */
222         NUM_VARS_0s,            /* static_vars */
223     },
224     NULL,                       /* saved_tty */
225 #if BROKEN_LINKER || USE_REENTRANT
226     NULL,                       /* real_acs_map */
227     0,                          /* LINES */
228     0,                          /* COLS */
229 #ifdef TRACE
230     0L,                         /* _outchars */
231     NULL,                       /* _tputs_trace */
232 #endif
233 #endif
234 };
235 /* *INDENT-ON* */
236
237 /******************************************************************************/
238 #ifdef USE_PTHREADS
239 NCURSES_EXPORT(int)
240 _nc_mutex_lock(pthread_mutex_t *obj)
241 {
242     return pthread_mutex_lock(obj);
243 }
244
245 NCURSES_EXPORT(int)
246 _nc_mutex_trylock(pthread_mutex_t *obj)
247 {
248     return pthread_mutex_trylock(obj);
249 }
250
251 NCURSES_EXPORT(int)
252 _nc_mutex_unlock(pthread_mutex_t *obj)
253 {
254     return pthread_mutex_unlock(obj);
255 }
256 #endif /* USE_PTHREADS */