]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_freeall.c
ncurses 5.7 - patch 20090510
[ncurses.git] / ncurses / base / lib_freeall.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                    1996-on                     *
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.58 2009/05/09 18:34:30 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 NCURSES_SP_NAME(_nc_freeall) (NCURSES_SP_DCL0)
51 {
52     WINDOWLIST *p, *q;
53     static va_list empty_va;
54
55     T((T_CALLED("_nc_freeall()")));
56 #if NO_LEAKS
57     if (SP_PARM != 0) {
58         if (SP_PARM->_oldnum_list != 0) {
59             FreeAndNull(SP_PARM->_oldnum_list);
60         }
61         if (SP_PARM->_panelHook.destroy != 0) {
62             SP_PARM->_panelHook.destroy(SP_PARM->_panelHook.stdscr_pseudo_panel);
63         }
64     }
65 #endif
66     if (SP_PARM != 0) {
67         _nc_lock_global(curses);
68
69         while (WindowList(SP_PARM) != 0) {
70             bool deleted = FALSE;
71
72             /* Delete only windows that're not a parent */
73             for (each_window(SP_PARM, p)) {
74                 bool found = FALSE;
75
76                 for (each_window(SP_PARM, q)) {
77                     if ((p != q)
78                         && (q->win._flags & _SUBWIN)
79                         && (&(p->win) == q->win._parent)) {
80                         found = TRUE;
81                         break;
82                     }
83                 }
84
85                 if (!found) {
86                     if (delwin(&(p->win)) != ERR)
87                         deleted = TRUE;
88                     break;
89                 }
90             }
91
92             /*
93              * Don't continue to loop if the list is trashed.
94              */
95             if (!deleted)
96                 break;
97         }
98         delscreen(SP_PARM);
99         _nc_unlock_global(curses);
100     }
101
102     (void) _nc_printf_string(0, empty_va);
103 #ifdef TRACE
104     (void) _nc_trace_buf(-1, 0);
105 #endif
106 #if USE_WIDEC_SUPPORT
107     FreeIfNeeded(_nc_wacs);
108 #endif
109     _nc_leaks_tinfo();
110
111 #if HAVE_LIBDBMALLOC
112     malloc_dump(malloc_errfd);
113 #elif HAVE_LIBDMALLOC
114 #elif HAVE_LIBMPATROL
115     __mp_summary();
116 #elif HAVE_PURIFY
117     purify_all_inuse();
118 #endif
119     returnVoid;
120 }
121
122 #if NCURSES_SP_FUNCS
123 NCURSES_EXPORT(void)
124 _nc_freeall(void)
125 {
126     NCURSES_SP_NAME(_nc_freeall) (CURRENT_SCREEN);
127 }
128 #endif
129
130 NCURSES_EXPORT(void)
131 NCURSES_SP_NAME(_nc_free_and_exit) (NCURSES_SP_DCLx int code)
132 {
133     char *last_setbuf = (SP_PARM != 0) ? SP_PARM->_setbuf : 0;
134
135     NCURSES_SP_NAME(_nc_freeall) (NCURSES_SP_ARG);
136 #ifdef TRACE
137     trace(0);                   /* close trace file, freeing its setbuf */
138     {
139         static va_list fake;
140         free(_nc_varargs("?", fake));
141     }
142 #endif
143     fclose(stdout);
144     FreeIfNeeded(last_setbuf);
145     exit(code);
146 }
147
148 #else
149 NCURSES_EXPORT(void)
150 _nc_freeall(void)
151 {
152 }
153
154 NCURSES_EXPORT(void)
155 NCURSES_SP_NAME(_nc_free_and_exit) (NCURSES_SP_DCLx int code)
156 {
157     if (SP_PARM) {
158         delscreen(SP_PARM);
159         if (SP_PARM->_term)
160             NCURSES_SP_NAME(del_curterm) (NCURSES_SP_ARGx SP_PARM->_term);
161     }
162     exit(code);
163 }
164 #endif
165
166 #if NCURSES_SP_FUNCS
167 NCURSES_EXPORT(void)
168 _nc_free_and_exit(int code)
169 {
170     NCURSES_SP_NAME(_nc_free_and_exit) (CURRENT_SCREEN, code);
171 }
172 #endif