]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_freeall.c
23728f39e2de6c1a44741fb8be37d8c36f51c85d
[ncurses.git] / ncurses / base / lib_freeall.c
1 /****************************************************************************
2  * Copyright (c) 1998-2005,2006 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                    1996,1997                   *
31  ****************************************************************************/
32
33 #include <curses.priv.h>
34 #include <term_entry.h>
35 #include <tic.h>
36
37 #if HAVE_NC_FREEALL
38
39 #if HAVE_LIBDBMALLOC
40 extern int malloc_errfd;        /* FIXME */
41 #endif
42
43 MODULE_ID("$Id: lib_freeall.c,v 1.40 2006/12/31 00:32:34 tom Exp $")
44
45 /*
46  * Free all ncurses data.  This is used for testing only (there's no practical
47  * use for it as an extension).
48  */
49 NCURSES_EXPORT(void)
50 _nc_freeall(void)
51 {
52     WINDOWLIST *p, *q;
53     char *s;
54     static va_list empty_va;
55
56     T((T_CALLED("_nc_freeall()")));
57 #if NO_LEAKS
58     _nc_free_tparm();
59     if (SP != 0) {
60         if (SP->_oldnum_list != 0) {
61             FreeAndNull(SP->_oldnum_list);
62         }
63     }
64 #endif
65     if (SP != 0) {
66         while (_nc_windows != 0) {
67             /* Delete only windows that're not a parent */
68             for (p = _nc_windows; p != 0; p = p->next) {
69                 bool found = FALSE;
70
71                 for (q = _nc_windows; q != 0; q = q->next) {
72                     if ((p != q)
73                         && (q->win._flags & _SUBWIN)
74                         && (&(p->win) == q->win._parent)) {
75                         found = TRUE;
76                         break;
77                     }
78                 }
79
80                 if (!found) {
81                     delwin(&(p->win));
82                     break;
83                 }
84             }
85         }
86         delscreen(SP);
87     }
88 #if NO_LEAKS
89     _nc_tgetent_leaks();
90 #endif
91     del_curterm(cur_term);
92     _nc_free_entries(_nc_head);
93     _nc_get_type(0);
94     _nc_first_name(0);
95 #if USE_WIDEC_SUPPORT
96     FreeIfNeeded(_nc_wacs);
97 #endif
98 #if NO_LEAKS
99     _nc_alloc_entry_leaks();
100     _nc_captoinfo_leaks();
101     _nc_comp_scan_leaks();
102     _nc_keyname_leaks();
103     _nc_tic_expand(0, FALSE, 0);
104 #endif
105
106     if ((s = _nc_home_terminfo()) != 0)
107         free(s);
108
109     (void) _nc_printf_string(0, empty_va);
110 #ifdef TRACE
111     (void) _nc_trace_buf(-1, 0);
112 #endif
113
114 #if HAVE_LIBDBMALLOC
115     malloc_dump(malloc_errfd);
116 #elif HAVE_LIBDMALLOC
117 #elif HAVE_LIBMPATROL
118     __mp_summary();
119 #elif HAVE_PURIFY
120     purify_all_inuse();
121 #endif
122     returnVoid;
123 }
124
125 NCURSES_EXPORT(void)
126 _nc_free_and_exit(int code)
127 {
128     char *last_setbuf = (SP != 0) ? SP->_setbuf : 0;
129
130     _nc_freeall();
131 #ifdef TRACE
132     trace(0);                   /* close trace file, freeing its setbuf */
133     free(_nc_varargs("?", 0));
134 #endif
135     fclose(stdout);
136     FreeIfNeeded(last_setbuf);
137     exit(code);
138 }
139
140 #else
141 NCURSES_EXPORT(void)
142 _nc_freeall(void)
143 {
144 }
145 #endif