1 /* TUI windows implemented in Python
3 Copyright (C) 2020-2021 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "arch-utils.h"
23 #include "python-internal.h"
27 /* Note that Python's public headers may define HAVE_NCURSES_H, so if
28 we unconditionally include this (outside the #ifdef above), then we
29 can get a compile error when ncurses is not in fact installed. See
30 PR tui/25597; or the upstream Python bug
31 https://bugs.python.org/issue20768. */
32 #include "gdb_curses.h"
34 #include "tui/tui-data.h"
35 #include "tui/tui-io.h"
36 #include "tui/tui-layout.h"
37 #include "tui/tui-wingeneral.h"
38 #include "tui/tui-winsource.h"
42 /* A PyObject representing a TUI window. */
44 struct gdbpy_tui_window
48 /* The TUI window, or nullptr if the window has been deleted. */
49 tui_py_window *window;
51 /* Return true if this object is valid. */
52 bool is_valid () const;
55 extern PyTypeObject gdbpy_tui_window_object_type
56 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("gdbpy_tui_window");
58 /* A TUI window written in Python. */
60 class tui_py_window : public tui_win_info
64 tui_py_window (const char *name, gdbpy_ref<gdbpy_tui_window> wrapper)
66 m_wrapper (std::move (wrapper))
68 m_wrapper->window = this;
73 DISABLE_COPY_AND_ASSIGN (tui_py_window);
75 /* Set the "user window" to the indicated reference. The user
76 window is the object returned the by user-defined window
78 void set_user_window (gdbpy_ref<> &&user_window)
80 m_window = std::move (user_window);
83 const char *name () const override
85 return m_name.c_str ();
88 void rerender () override;
89 void do_scroll_vertical (int num_to_scroll) override;
90 void do_scroll_horizontal (int num_to_scroll) override;
92 void refresh_window () override
94 if (m_inner_window != nullptr)
96 wnoutrefresh (handle.get ());
97 touchwin (m_inner_window.get ());
98 tui_wrefresh (m_inner_window.get ());
101 tui_win_info::refresh_window ();
104 /* Erase and re-box the window. */
107 if (is_visible () && m_inner_window != nullptr)
109 werase (m_inner_window.get ());
110 check_and_display_highlight_if_needed ();
114 /* Write STR to the window. */
115 void output (const char *str);
117 /* A helper function to compute the viewport width. */
118 int viewport_width () const
120 return std::max (0, width - 2);
123 /* A helper function to compute the viewport height. */
124 int viewport_height () const
126 return std::max (0, height - 2);
131 /* The name of this window. */
134 /* We make our own inner window, so that it is easy to print without
135 overwriting the border. */
136 std::unique_ptr<WINDOW, curses_deleter> m_inner_window;
138 /* The underlying Python window object. */
139 gdbpy_ref<> m_window;
141 /* The Python wrapper for this object. */
142 gdbpy_ref<gdbpy_tui_window> m_wrapper;
145 /* See gdbpy_tui_window declaration above. */
148 gdbpy_tui_window::is_valid () const
150 return window != nullptr && tui_active;
153 tui_py_window::~tui_py_window ()
155 gdbpy_enter enter_py (get_current_arch (), current_language);
157 /* This can be null if the user-provided Python construction
159 if (m_window != nullptr
160 && PyObject_HasAttrString (m_window.get (), "close"))
162 gdbpy_ref<> result (PyObject_CallMethod (m_window.get (), "close",
164 if (result == nullptr)
165 gdbpy_print_stack ();
169 m_wrapper->window = nullptr;
170 /* Explicitly free the Python references. We have to do this
171 manually because we need to hold the GIL while doing so. */
172 m_wrapper.reset (nullptr);
173 m_window.reset (nullptr);
177 tui_py_window::rerender ()
179 tui_win_info::rerender ();
181 gdbpy_enter enter_py (get_current_arch (), current_language);
183 int h = viewport_height ();
184 int w = viewport_width ();
185 if (h == 0 || w == 0)
187 /* The window would be too small, so just remove the
189 m_inner_window.reset (nullptr);
192 m_inner_window.reset (newwin (h, w, y + 1, x + 1));
194 if (PyObject_HasAttrString (m_window.get (), "render"))
196 gdbpy_ref<> result (PyObject_CallMethod (m_window.get (), "render",
198 if (result == nullptr)
199 gdbpy_print_stack ();
204 tui_py_window::do_scroll_horizontal (int num_to_scroll)
206 gdbpy_enter enter_py (get_current_arch (), current_language);
208 if (PyObject_HasAttrString (m_window.get (), "hscroll"))
210 gdbpy_ref<> result (PyObject_CallMethod (m_window.get(), "hscroll",
211 "i", num_to_scroll, nullptr));
212 if (result == nullptr)
213 gdbpy_print_stack ();
218 tui_py_window::do_scroll_vertical (int num_to_scroll)
220 gdbpy_enter enter_py (get_current_arch (), current_language);
222 if (PyObject_HasAttrString (m_window.get (), "vscroll"))
224 gdbpy_ref<> result (PyObject_CallMethod (m_window.get (), "vscroll",
225 "i", num_to_scroll, nullptr));
226 if (result == nullptr)
227 gdbpy_print_stack ();
232 tui_py_window::output (const char *text)
234 if (m_inner_window != nullptr)
236 tui_puts (text, m_inner_window.get ());
237 tui_wrefresh (m_inner_window.get ());
243 /* A callable that is used to create a TUI window. It wraps the
244 user-supplied window constructor. */
246 class gdbpy_tui_window_maker
250 explicit gdbpy_tui_window_maker (gdbpy_ref<> &&constr)
251 : m_constr (std::move (constr))
255 ~gdbpy_tui_window_maker ();
257 gdbpy_tui_window_maker (gdbpy_tui_window_maker &&other) noexcept
258 : m_constr (std::move (other.m_constr))
262 gdbpy_tui_window_maker (const gdbpy_tui_window_maker &other)
264 gdbpy_enter enter_py (get_current_arch (), current_language);
265 m_constr = other.m_constr;
268 gdbpy_tui_window_maker &operator= (gdbpy_tui_window_maker &&other)
270 m_constr = std::move (other.m_constr);
274 gdbpy_tui_window_maker &operator= (const gdbpy_tui_window_maker &other)
276 gdbpy_enter enter_py (get_current_arch (), current_language);
277 m_constr = other.m_constr;
281 tui_win_info *operator() (const char *name);
285 /* A constructor that is called to make a TUI window. */
286 gdbpy_ref<> m_constr;
289 gdbpy_tui_window_maker::~gdbpy_tui_window_maker ()
291 gdbpy_enter enter_py (get_current_arch (), current_language);
292 m_constr.reset (nullptr);
296 gdbpy_tui_window_maker::operator() (const char *win_name)
298 gdbpy_enter enter_py (get_current_arch (), current_language);
300 gdbpy_ref<gdbpy_tui_window> wrapper
301 (PyObject_New (gdbpy_tui_window, &gdbpy_tui_window_object_type));
302 if (wrapper == nullptr)
304 gdbpy_print_stack ();
308 std::unique_ptr<tui_py_window> window
309 (new tui_py_window (win_name, wrapper));
311 gdbpy_ref<> user_window
312 (PyObject_CallFunctionObjArgs (m_constr.get (),
313 (PyObject *) wrapper.get (),
315 if (user_window == nullptr)
317 gdbpy_print_stack ();
321 window->set_user_window (std::move (user_window));
322 /* Window is now owned by the TUI. */
323 return window.release ();
326 /* Implement "gdb.register_window_type". */
329 gdbpy_register_tui_window (PyObject *self, PyObject *args, PyObject *kw)
331 static const char *keywords[] = { "name", "constructor", nullptr };
336 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "sO", keywords,
342 gdbpy_tui_window_maker constr (gdbpy_ref<>::new_reference (cons_obj));
343 tui_register_window (name, constr);
345 catch (const gdb_exception &except)
347 gdbpy_convert_exception (except);
356 /* Require that "Window" be a valid window. */
358 #define REQUIRE_WINDOW(Window) \
360 if (!(Window)->is_valid ()) \
361 return PyErr_Format (PyExc_RuntimeError, \
362 _("TUI window is invalid.")); \
365 /* Require that "Window" be a valid window. */
367 #define REQUIRE_WINDOW_FOR_SETTER(Window) \
369 if (!(Window)->is_valid ()) \
371 PyErr_Format (PyExc_RuntimeError, \
372 _("TUI window is invalid.")); \
377 /* Python function which checks the validity of a TUI window
380 gdbpy_tui_is_valid (PyObject *self, PyObject *args)
382 gdbpy_tui_window *win = (gdbpy_tui_window *) self;
384 if (win->is_valid ())
389 /* Python function that erases the TUI window. */
391 gdbpy_tui_erase (PyObject *self, PyObject *args)
393 gdbpy_tui_window *win = (gdbpy_tui_window *) self;
395 REQUIRE_WINDOW (win);
397 win->window->erase ();
402 /* Python function that writes some text to a TUI window. */
404 gdbpy_tui_write (PyObject *self, PyObject *args)
406 gdbpy_tui_window *win = (gdbpy_tui_window *) self;
409 if (!PyArg_ParseTuple (args, "s", &text))
412 REQUIRE_WINDOW (win);
414 win->window->output (text);
419 /* Return the width of the TUI window. */
421 gdbpy_tui_width (PyObject *self, void *closure)
423 gdbpy_tui_window *win = (gdbpy_tui_window *) self;
424 REQUIRE_WINDOW (win);
426 = gdb_py_object_from_longest (win->window->viewport_width ());
427 return result.release ();
430 /* Return the height of the TUI window. */
432 gdbpy_tui_height (PyObject *self, void *closure)
434 gdbpy_tui_window *win = (gdbpy_tui_window *) self;
435 REQUIRE_WINDOW (win);
437 = gdb_py_object_from_longest (win->window->viewport_height ());
438 return result.release ();
441 /* Return the title of the TUI window. */
443 gdbpy_tui_title (PyObject *self, void *closure)
445 gdbpy_tui_window *win = (gdbpy_tui_window *) self;
446 REQUIRE_WINDOW (win);
447 return host_string_to_python_string (win->window->title.c_str ()).release ();
450 /* Set the title of the TUI window. */
452 gdbpy_tui_set_title (PyObject *self, PyObject *newvalue, void *closure)
454 gdbpy_tui_window *win = (gdbpy_tui_window *) self;
456 REQUIRE_WINDOW_FOR_SETTER (win);
458 if (newvalue == nullptr)
460 PyErr_Format (PyExc_TypeError, _("Cannot delete \"title\" attribute."));
464 gdb::unique_xmalloc_ptr<char> value
465 = python_string_to_host_string (newvalue);
466 if (value == nullptr)
469 win->window->title = value.get ();
473 static gdb_PyGetSetDef tui_object_getset[] =
475 { "width", gdbpy_tui_width, NULL, "Width of the window.", NULL },
476 { "height", gdbpy_tui_height, NULL, "Height of the window.", NULL },
477 { "title", gdbpy_tui_title, gdbpy_tui_set_title, "Title of the window.",
479 { NULL } /* Sentinel */
482 static PyMethodDef tui_object_methods[] =
484 { "is_valid", gdbpy_tui_is_valid, METH_NOARGS,
485 "is_valid () -> Boolean\n\
486 Return true if this TUI window is valid, false if not." },
487 { "erase", gdbpy_tui_erase, METH_NOARGS,
488 "Erase the TUI window." },
489 { "write", (PyCFunction) gdbpy_tui_write, METH_VARARGS,
490 "Append a string to the TUI window." },
491 { NULL } /* Sentinel. */
494 PyTypeObject gdbpy_tui_window_object_type =
496 PyVarObject_HEAD_INIT (NULL, 0)
497 "gdb.TuiWindow", /*tp_name*/
498 sizeof (gdbpy_tui_window), /*tp_basicsize*/
507 0, /*tp_as_sequence*/
515 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
516 "GDB TUI window object", /* tp_doc */
519 0, /* tp_richcompare */
520 0, /* tp_weaklistoffset */
523 tui_object_methods, /* tp_methods */
525 tui_object_getset, /* tp_getset */
528 0, /* tp_descr_get */
529 0, /* tp_descr_set */
530 0, /* tp_dictoffset */
537 /* Initialize this module. */
540 gdbpy_initialize_tui ()
543 gdbpy_tui_window_object_type.tp_new = PyType_GenericNew;
544 if (PyType_Ready (&gdbpy_tui_window_object_type) < 0)