blob: 75bbe77e34093be4c4efa70b4a40f18da2abaac1 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2018-2020,2021 Thomas E. Dickey *
3 * Copyright 1998-2016,2017 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Thomas E. Dickey 1996-on *
32 ****************************************************************************/
33
34#include <curses.priv.h>
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053035#include <tic.h>
36
37#if HAVE_NC_FREEALL
38
39#if HAVE_LIBDBMALLOC
40extern int malloc_errfd; /* FIXME */
41#endif
42
micky3879b9f5e72025-07-08 18:04:53 -040043MODULE_ID("$Id: lib_freeall.c,v 1.76 2021/11/06 21:52:49 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053044
45/*
46 * Free all ncurses data. This is used for testing only (there's no practical
47 * use for it as an extension).
48 */
49NCURSES_EXPORT(void)
Steve Kondikae271bc2015-11-15 02:50:53 +010050NCURSES_SP_NAME(_nc_freeall) (NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053051{
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053052 static va_list empty_va;
53
54 T((T_CALLED("_nc_freeall()")));
55#if NO_LEAKS
micky3879b9f5e72025-07-08 18:04:53 -040056 _nc_globals.leak_checking = TRUE;
Steve Kondikae271bc2015-11-15 02:50:53 +010057 if (SP_PARM != 0) {
58 if (SP_PARM->_oldnum_list != 0) {
59 FreeAndNull(SP_PARM->_oldnum_list);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053060 }
Steve Kondikae271bc2015-11-15 02:50:53 +010061 if (SP_PARM->_panelHook.destroy != 0) {
62 SP_PARM->_panelHook.destroy(SP_PARM->_panelHook.stdscr_pseudo_panel);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053063 }
micky3879b9f5e72025-07-08 18:04:53 -040064#if NCURSES_EXT_COLORS
65 _nc_new_pair_leaks(SP_PARM);
66#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053067 }
68#endif
Steve Kondikae271bc2015-11-15 02:50:53 +010069 if (SP_PARM != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053070 _nc_lock_global(curses);
71
Steve Kondikae271bc2015-11-15 02:50:53 +010072 while (WindowList(SP_PARM) != 0) {
micky3879b9f5e72025-07-08 18:04:53 -040073 WINDOWLIST *p, *q;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053074 bool deleted = FALSE;
75
76 /* Delete only windows that're not a parent */
Steve Kondikae271bc2015-11-15 02:50:53 +010077 for (each_window(SP_PARM, p)) {
78 WINDOW *p_win = &(p->win);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053079 bool found = FALSE;
80
micky3879b9f5e72025-07-08 18:04:53 -040081 if (IS_PAD(p_win))
82 continue;
83
84#ifndef USE_SP_WINDOWLIST
85 if (p->screen != SP_PARM)
86 continue;
87#endif
88
Steve Kondikae271bc2015-11-15 02:50:53 +010089 for (each_window(SP_PARM, q)) {
90 WINDOW *q_win = &(q->win);
micky3879b9f5e72025-07-08 18:04:53 -040091
92#ifndef USE_SP_WINDOWLIST
93 if (q->screen != SP_PARM)
94 continue;
95#endif
96
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053097 if ((p != q)
micky3879b9f5e72025-07-08 18:04:53 -040098 && IS_SUBWIN(q_win)
Steve Kondikae271bc2015-11-15 02:50:53 +010099 && (p_win == q_win->_parent)) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530100 found = TRUE;
101 break;
102 }
103 }
104
105 if (!found) {
Steve Kondikae271bc2015-11-15 02:50:53 +0100106 if (delwin(p_win) != ERR)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530107 deleted = TRUE;
108 break;
109 }
110 }
111
112 /*
113 * Don't continue to loop if the list is trashed.
114 */
115 if (!deleted)
116 break;
117 }
Steve Kondikae271bc2015-11-15 02:50:53 +0100118 delscreen(SP_PARM);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530119 _nc_unlock_global(curses);
120 }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530121
122 (void) _nc_printf_string(0, empty_va);
123#ifdef TRACE
Steve Kondikae271bc2015-11-15 02:50:53 +0100124 (void) _nc_trace_buf(-1, (size_t) 0);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530125#endif
126#if USE_WIDEC_SUPPORT
127 FreeIfNeeded(_nc_wacs);
128#endif
129 _nc_leaks_tinfo();
130
131#if HAVE_LIBDBMALLOC
132 malloc_dump(malloc_errfd);
133#elif HAVE_LIBDMALLOC
134#elif HAVE_LIBMPATROL
135 __mp_summary();
136#elif HAVE_PURIFY
137 purify_all_inuse();
138#endif
139 returnVoid;
140}
141
Steve Kondikae271bc2015-11-15 02:50:53 +0100142#if NCURSES_SP_FUNCS
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530143NCURSES_EXPORT(void)
Steve Kondikae271bc2015-11-15 02:50:53 +0100144_nc_freeall(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530145{
Steve Kondikae271bc2015-11-15 02:50:53 +0100146 NCURSES_SP_NAME(_nc_freeall) (CURRENT_SCREEN);
147}
148#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530149
Steve Kondikae271bc2015-11-15 02:50:53 +0100150NCURSES_EXPORT(void)
151NCURSES_SP_NAME(_nc_free_and_exit) (NCURSES_SP_DCLx int code)
152{
micky3879b9f5e72025-07-08 18:04:53 -0400153 T((T_CALLED("_nc_free_and_exit(%d)"), code));
Steve Kondikae271bc2015-11-15 02:50:53 +0100154 NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_ARG);
155 NCURSES_SP_NAME(_nc_freeall) (NCURSES_SP_ARG);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530156#ifdef TRACE
micky3879b9f5e72025-07-08 18:04:53 -0400157 curses_trace(0); /* close trace file, freeing its setbuf */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530158 {
159 static va_list fake;
160 free(_nc_varargs("?", fake));
161 }
162#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530163 exit(code);
164}
165
micky3879b9f5e72025-07-08 18:04:53 -0400166#else /* !HAVE_NC_FREEALL */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530167NCURSES_EXPORT(void)
168_nc_freeall(void)
169{
170}
171
172NCURSES_EXPORT(void)
Steve Kondikae271bc2015-11-15 02:50:53 +0100173NCURSES_SP_NAME(_nc_free_and_exit) (NCURSES_SP_DCLx int code)
174{
175 if (SP_PARM) {
176 delscreen(SP_PARM);
Steve Kondikae271bc2015-11-15 02:50:53 +0100177 }
178 exit(code);
179}
micky3879b9f5e72025-07-08 18:04:53 -0400180#endif /* HAVE_NC_FREEALL */
Steve Kondikae271bc2015-11-15 02:50:53 +0100181
182#if NCURSES_SP_FUNCS
183NCURSES_EXPORT(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530184_nc_free_and_exit(int code)
185{
Steve Kondikae271bc2015-11-15 02:50:53 +0100186 NCURSES_SP_NAME(_nc_free_and_exit) (CURRENT_SCREEN, code);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530187}
188#endif
micky3879b9f5e72025-07-08 18:04:53 -0400189
190NCURSES_EXPORT(void)
191exit_curses(int code)
192{
193#if NO_LEAKS
194#if NCURSES_SP_FUNCS
195 NCURSES_SP_NAME(_nc_free_and_exit) (CURRENT_SCREEN, code);
196#else
197 _nc_free_and_exit(code); /* deprecated... */
198#endif
199#endif
200 exit(code);
201}