Remove union tui_which_element
[deliverable/binutils-gdb.git] / gdb / tui / tui-data.c
index b962eee22e5ee86387551dc5136ee9fd772bfb0f..a018a4bf6abf84eef5438a24cce28cf75edae081 100644 (file)
@@ -1,7 +1,6 @@
 /* TUI data manipulation routines.
 
-   Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation,
-   Inc.
+   Copyright (C) 1998-2019 Free Software Foundation, Inc.
 
    Contributed by Hewlett-Packard Company.
 
@@ -9,7 +8,7 @@
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "defs.h"
 #include "symtab.h"
 #include "tui/tui.h"
 #include "tui/tui-data.h"
 #include "tui/tui-wingeneral.h"
-
-#ifdef HAVE_NCURSES_H       
-#include <ncurses.h>
-#else
-#ifdef HAVE_CURSES_H
-#include <curses.h>
-#endif
-#endif
+#include "gdb_curses.h"
 
 /****************************
 ** GLOBAL DECLARATIONS
 ****************************/
-struct tui_win_info *(winList[MAX_MAJOR_WINDOWS]);
+struct tui_win_info *tui_win_list[MAX_MAJOR_WINDOWS];
 
 /***************************
 ** Private data
 ****************************/
-static enum tui_layout_type _currentLayout = UNDEFINED_LAYOUT;
-static int _termHeight, _termWidth;
-static struct tui_gen_win_info _locator;
-static struct tui_gen_win_info _execInfo[2];
-static struct tui_win_info * _srcWinList[2];
-static struct tui_list _sourceWindows =
-{(OpaqueList) _srcWinList, 0};
-static int _defaultTabLen = DEFAULT_TAB_LEN;
-static struct tui_win_info * _winWithFocus = (struct tui_win_info *) NULL;
-static struct tui_layout_def _layoutDef =
-{SRC_WIN,                      /* displayMode */
- FALSE,                                /* split */
- TUI_UNDEFINED_REGS,           /* regsDisplayType */
- TUI_SFLOAT_REGS};             /* floatRegsDisplayType */
-static int _winResized = FALSE;
-
-
-/*********************************
-** Static function forward decls
-**********************************/
-static void freeContent (tui_win_content, int, TuiWinType);
-static void freeContentElements (tui_win_content, int, TuiWinType);
+static enum tui_layout_type current_layout = UNDEFINED_LAYOUT;
+static int term_height, term_width;
+static struct tui_locator_window _locator;
+static std::vector<tui_source_window_base *> source_windows;
+static struct tui_win_info *win_with_focus = NULL;
+static struct tui_layout_def layout_def = {
+  SRC_WIN,                     /* DISPLAY_MODE */
+};
 
+static int win_resized = FALSE;
 
 
 /*********************************
 ** PUBLIC FUNCTIONS
 **********************************/
 
+int
+tui_win_is_auxiliary (enum tui_win_type win_type)
+{
+  return (win_type > MAX_MAJOR_WINDOWS);
+}
+
 /******************************************
 ** ACCESSORS & MUTATORS FOR PRIVATE DATA
 ******************************************/
 
-/* Answer a whether the terminal window has been resized or not.   */
+/* Answer a whether the terminal window has been resized or not.  */
 int
 tui_win_resized (void)
 {
-  return _winResized;
+  return win_resized;
 }
 
 
-/* Set a whether the terminal window has been resized or not.   */
+/* Set a whether the terminal window has been resized or not.  */
 void
 tui_set_win_resized_to (int resized)
 {
-  _winResized = resized;
+  win_resized = resized;
 }
 
 
-/* Answer a pointer to the current layout definition.   */
+/* Answer a pointer to the current layout definition.  */
 struct tui_layout_def *
 tui_layout_def (void)
 {
-  return &_layoutDef;
+  return &layout_def;
 }
 
 
-/* Answer the window with the logical focus.    */
+/* Answer the window with the logical focus.  */
 struct tui_win_info *
 tui_win_with_focus (void)
 {
-  return _winWithFocus;
-}
-
-
-/* Set the window that has the logical focus.   */
-void
-tui_set_win_with_focus (struct tui_win_info * winInfo)
-{
-  _winWithFocus = winInfo;
+  return win_with_focus;
 }
 
 
-/* Answer the length in chars, of tabs.    */
-int
-tui_default_tab_len (void)
-{
-  return _defaultTabLen;
-}
-
-
-/* Set the length in chars, of tabs.   */
+/* Set the window that has the logical focus.  */
 void
-tui_set_default_tab_len (int len)
+tui_set_win_with_focus (struct tui_win_info *win_info)
 {
-  _defaultTabLen = len;
+  win_with_focus = win_info;
 }
 
 
-/*
-   ** currentSourceWin()
-   **        Accessor for the current source window.  Usually there is only
-   **        one source window (either source or disassembly), but both can
-   **        be displayed at the same time.
- */
-struct tui_list *
-tui_source_windows (void)
+/* Accessor for the current source window.  Usually there is only one
+   source window (either source or disassembly), but both can be
+   displayed at the same time.  */
+std::vector<tui_source_window_base *> &
+tui_source_windows ()
 {
-  return &_sourceWindows;
+  return source_windows;
 }
 
 
@@ -150,22 +114,18 @@ tui_source_windows (void)
    window (either source or disassembly), but both can be displayed at
    the same time.  */
 void
-tui_clear_source_windows (void)
+tui_clear_source_windows ()
 {
-  _sourceWindows.list[0] = (Opaque) NULL;
-  _sourceWindows.list[1] = (Opaque) NULL;
-  _sourceWindows.count = 0;
+  source_windows.clear ();
 }
 
 
-/* Clear the pertinant detail in the source windows.   */
+/* Clear the pertinant detail in the source windows.  */
 void
-tui_clear_source_windows_detail (void)
+tui_clear_source_windows_detail ()
 {
-  int i;
-
-  for (i = 0; i < (tui_source_windows ())->count; i++)
-    tui_clear_win_detail ((struct tui_win_info *) (tui_source_windows ())->list[i]);
+  for (tui_source_window_base *win : tui_source_windows ())
+    win->clear_detail ();
 }
 
 
@@ -173,144 +133,98 @@ tui_clear_source_windows_detail (void)
    one source window (either source or disassembly), but both can be
    displayed at the same time.  */
 void
-tui_add_to_source_windows (struct tui_win_info * winInfo)
+tui_add_to_source_windows (struct tui_source_window_base *win_info)
 {
-  if (_sourceWindows.count < 2)
-    _sourceWindows.list[_sourceWindows.count++] = (Opaque) winInfo;
+  if (source_windows.size () < 2)
+    source_windows.push_back (win_info);
 }
 
+/* See tui-data.h.  */
 
-/* Clear the pertinant detail in the windows.   */
 void
-tui_clear_win_detail (struct tui_win_info * winInfo)
+tui_source_window_base::clear_detail ()
 {
-  if (m_winPtrNotNull (winInfo))
-    {
-      switch (winInfo->generic.type)
-       {
-       case SRC_WIN:
-       case DISASSEM_WIN:
-         winInfo->detail.sourceInfo.startLineOrAddr.addr = 0;
-         winInfo->detail.sourceInfo.horizontalOffset = 0;
-         break;
-       case CMD_WIN:
-         winInfo->detail.commandInfo.curLine =
-           winInfo->detail.commandInfo.curch = 0;
-         break;
-       case DATA_WIN:
-         winInfo->detail.dataDisplayInfo.dataContent =
-           (tui_win_content) NULL;
-         winInfo->detail.dataDisplayInfo.dataContentCount = 0;
-         winInfo->detail.dataDisplayInfo.regsContent =
-           (tui_win_content) NULL;
-         winInfo->detail.dataDisplayInfo.regsContentCount = 0;
-         winInfo->detail.dataDisplayInfo.regsDisplayType =
-           TUI_UNDEFINED_REGS;
-         winInfo->detail.dataDisplayInfo.regsColumnCount = 1;
-         winInfo->detail.dataDisplayInfo.displayRegs = FALSE;
-         break;
-       default:
-         break;
-       }
-    }
-
-  return;
-}                              /* clearWinDetail */
+  gdbarch = NULL;
+  start_line_or_addr.loa = LOA_ADDRESS;
+  start_line_or_addr.u.addr = 0;
+  horizontal_offset = 0;
+}
 
+/* See tui-data.h.  */
 
-/*
-   ** sourceExecInfoPtr().
-   **        Accessor for the source execution info ptr.
- */
-struct tui_gen_win_info *
-tui_source_exec_info_win_ptr (void)
+void
+tui_cmd_window::clear_detail ()
 {
-  return &_execInfo[0];
-}                              /* sourceExecInfoWinPtr */
+  wmove (handle, 0, 0);
+}
 
+/* See tui-data.h.  */
 
-/*
-   ** disassemExecInfoPtr().
-   **        Accessor for the disassem execution info ptr.
- */
-struct tui_gen_win_info *
-tui_disassem_exec_info_win_ptr (void)
+void
+tui_data_window::clear_detail ()
 {
-  return &_execInfo[1];
-}                              /* disassemExecInfoWinPtr */
-
+  regs_content.clear ();
+  regs_column_count = 1;
+  display_regs = false;
+}
 
 /* Accessor for the locator win info.  Answers a pointer to the static
    locator win info struct.  */
-struct tui_gen_win_info *
+struct tui_locator_window *
 tui_locator_win_info_ptr (void)
 {
   return &_locator;
 }
 
 
-/* Accessor for the termHeight.  */
+/* Accessor for the term_height.  */
 int
 tui_term_height (void)
 {
-  return _termHeight;
+  return term_height;
 }
 
 
-/* Mutator for the term height.   */
+/* Mutator for the term height.  */
 void
 tui_set_term_height_to (int h)
 {
-  _termHeight = h;
+  term_height = h;
 }
 
 
-/* Accessor for the termWidth.   */
+/* Accessor for the term_width.  */
 int
 tui_term_width (void)
 {
-  return _termWidth;
+  return term_width;
 }
 
 
-/* Mutator for the termWidth.  */
+/* Mutator for the term_width.  */
 void
 tui_set_term_width_to (int w)
 {
-  _termWidth = w;
+  term_width = w;
 }
 
 
-/* Accessor for the current layout.   */
+/* Accessor for the current layout.  */
 enum tui_layout_type
 tui_current_layout (void)
 {
-  return _currentLayout;
+  return current_layout;
 }
 
 
 /* Mutator for the current layout.  */
 void
-tui_set_current_layout_to (enum tui_layout_type newLayout)
+tui_set_current_layout_to (enum tui_layout_type new_layout)
 {
-  _currentLayout = newLayout;
+  current_layout = new_layout;
 }
 
 
-/*
-   ** setGenWinOrigin().
-   **        Set the origin of the window
- */
-void
-setGenWinOrigin (struct tui_gen_win_info * winInfo, int x, int y)
-{
-  winInfo->origin.x = x;
-  winInfo->origin.y = y;
-
-  return;
-}                              /* setGenWinOrigin */
-
-
 /*****************************
 ** OTHER PUBLIC FUNCTIONS
 *****************************/
@@ -319,19 +233,20 @@ setGenWinOrigin (struct tui_gen_win_info * winInfo, int x, int y)
 /* Answer the next window in the list, cycling back to the top if
    necessary.  */
 struct tui_win_info *
-tui_next_win (struct tui_win_info * curWin)
+tui_next_win (struct tui_win_info *cur_win)
 {
-  TuiWinType type = curWin->generic.type;
-  struct tui_win_info * nextWin = (struct tui_win_info *) NULL;
+  int type = cur_win->type;
+  struct tui_win_info *next_win = NULL;
 
-  if (curWin->generic.type == CMD_WIN)
+  if (cur_win->type == CMD_WIN)
     type = SRC_WIN;
   else
-    type = curWin->generic.type + 1;
-  while (type != curWin->generic.type && m_winPtrIsNull (nextWin))
+    type = cur_win->type + 1;
+  while (type != cur_win->type && (next_win == NULL))
     {
-      if (winList[type] && winList[type]->generic.isVisible)
-       nextWin = winList[type];
+      if (tui_win_list[type]
+         && tui_win_list[type]->is_visible)
+       next_win = tui_win_list[type];
       else
        {
          if (type == CMD_WIN)
@@ -341,26 +256,27 @@ tui_next_win (struct tui_win_info * curWin)
        }
     }
 
-  return nextWin;
-}                              /* tuiNextWin */
+  return next_win;
+}
 
 
 /* Answer the prev window in the list, cycling back to the bottom if
    necessary.  */
 struct tui_win_info *
-tui_prev_win (struct tui_win_info * curWin)
+tui_prev_win (struct tui_win_info *cur_win)
 {
-  TuiWinType type = curWin->generic.type;
-  struct tui_win_info * prev = (struct tui_win_info *) NULL;
+  int type = cur_win->type;
+  struct tui_win_info *prev = NULL;
 
-  if (curWin->generic.type == SRC_WIN)
+  if (cur_win->type == SRC_WIN)
     type = CMD_WIN;
   else
-    type = curWin->generic.type - 1;
-  while (type != curWin->generic.type && m_winPtrIsNull (prev))
+    type = cur_win->type - 1;
+  while (type != cur_win->type && (prev == NULL))
     {
-      if (winList[type]->generic.isVisible)
-       prev = winList[type];
+      if (tui_win_list[type]
+         && tui_win_list[type]->is_visible)
+       prev = tui_win_list[type];
       else
        {
          if (type == SRC_WIN)
@@ -374,572 +290,87 @@ tui_prev_win (struct tui_win_info * curWin)
 }
 
 
-/* Answer the window represented by name.    */
+/* Answer the window represented by name.  */
 struct tui_win_info *
-tui_partial_win_by_name (char *name)
+tui_partial_win_by_name (const char *name)
 {
-  struct tui_win_info * winInfo = (struct tui_win_info *) NULL;
+  struct tui_win_info *win_info = NULL;
 
-  if (name != (char *) NULL)
+  if (name != NULL)
     {
       int i = 0;
 
-      while (i < MAX_MAJOR_WINDOWS && m_winPtrIsNull (winInfo))
+      while (i < MAX_MAJOR_WINDOWS && win_info == NULL)
        {
-          if (winList[i] != 0)
+          if (tui_win_list[i] != 0)
             {
-              char *curName = tui_win_name (&winList[i]->generic);
-              if (strlen (name) <= strlen (curName) &&
-                  strncmp (name, curName, strlen (name)) == 0)
-                winInfo = winList[i];
+              const char *cur_name = tui_win_list[i]->name ();
+
+              if (strlen (name) <= strlen (cur_name)
+                 && startswith (cur_name, name))
+                win_info = tui_win_list[i];
             }
          i++;
        }
     }
 
-  return winInfo;
-}                              /* partialWinByName */
-
-
-/*
-   ** winName().
-   **      Answer the name of the window
- */
-char *
-tui_win_name (struct tui_gen_win_info * winInfo)
-{
-  char *name = (char *) NULL;
-
-  switch (winInfo->type)
-    {
-    case SRC_WIN:
-      name = SRC_NAME;
-      break;
-    case CMD_WIN:
-      name = CMD_NAME;
-      break;
-    case DISASSEM_WIN:
-      name = DISASSEM_NAME;
-      break;
-    case DATA_WIN:
-      name = DATA_NAME;
-      break;
-    default:
-      name = "";
-      break;
-    }
-
-  return name;
-}                              /* winName */
-
-
-void
-tui_initialize_static_data (void)
-{
-  tui_init_generic_part (tui_source_exec_info_win_ptr ());
-  tui_init_generic_part (tui_disassem_exec_info_win_ptr ());
-  tui_init_generic_part (tui_locator_win_info_ptr ());
+  return win_info;
 }
 
 
-struct tui_gen_win_info *
-tui_alloc_generic_win_info (void)
-{
-  struct tui_gen_win_info * win;
-
-  if ((win = (struct tui_gen_win_info *) xmalloc (
-                    sizeof (struct tui_gen_win_info *))) != (struct tui_gen_win_info *) NULL)
-    tui_init_generic_part (win);
-
-  return win;
-}                              /* allocGenericWinInfo */
-
-
-/*
-   ** initGenericPart().
- */
 void
-tui_init_generic_part (struct tui_gen_win_info * win)
+tui_initialize_static_data ()
 {
+  tui_gen_win_info *win = tui_locator_win_info_ptr ();
   win->width =
     win->height =
     win->origin.x =
     win->origin.y =
-    win->viewportHeight =
-    win->contentSize =
-    win->lastVisibleLine = 0;
-  win->handle = (WINDOW *) NULL;
-  win->content = (OpaquePtr) NULL;
-  win->contentInUse =
-    win->isVisible = FALSE;
+    win->viewport_height =
+    win->last_visible_line = 0;
+  win->handle = NULL;
+  win->content_in_use = FALSE;
+  win->is_visible = false;
   win->title = 0;
 }
 
 
-/*
-   ** initContentElement().
- */
-void
-initContentElement (struct tui_win_element * element, TuiWinType type)
+tui_win_info::tui_win_info (enum tui_win_type type)
+  : tui_gen_win_info (type)
 {
-  element->highlight = FALSE;
-  switch (type)
-    {
-    case SRC_WIN:
-    case DISASSEM_WIN:
-      element->whichElement.source.line = (char *) NULL;
-      element->whichElement.source.lineOrAddr.lineNo = 0;
-      element->whichElement.source.isExecPoint = FALSE;
-      element->whichElement.source.hasBreak = FALSE;
-      break;
-    case DATA_WIN:
-      tui_init_generic_part (&element->whichElement.dataWindow);
-      element->whichElement.dataWindow.type = DATA_ITEM_WIN;
-      ((struct tui_gen_win_info *) & element->whichElement.dataWindow)->content =
-       (OpaquePtr) tui_alloc_content (1, DATA_ITEM_WIN);
-      ((struct tui_gen_win_info *)
-       & element->whichElement.dataWindow)->contentSize = 1;
-      break;
-    case CMD_WIN:
-      element->whichElement.command.line = (char *) NULL;
-      break;
-    case DATA_ITEM_WIN:
-      element->whichElement.data.name = (char *) NULL;
-      element->whichElement.data.type = TUI_REGISTER;
-      element->whichElement.data.itemNo = UNDEFINED_ITEM;
-      element->whichElement.data.value = (Opaque) NULL;
-      element->whichElement.data.highlight = FALSE;
-      break;
-    case LOCATOR_WIN:
-      element->whichElement.locator.fileName[0] =
-       element->whichElement.locator.procName[0] = (char) 0;
-      element->whichElement.locator.lineNo = 0;
-      element->whichElement.locator.addr = 0;
-      break;
-    case EXEC_INFO_WIN:
-      memset(element->whichElement.simpleString, ' ',
-             sizeof(element->whichElement.simpleString));
-      break;
-    default:
-      break;
-    }
-  return;
-}                              /* initContentElement */
-
-/*
-   ** initWinInfo().
- */
-void
-initWinInfo (struct tui_win_info * winInfo)
-{
-  tui_init_generic_part (&winInfo->generic);
-  winInfo->canHighlight =
-    winInfo->isHighlighted = FALSE;
-  switch (winInfo->generic.type)
-    {
-    case SRC_WIN:
-    case DISASSEM_WIN:
-      winInfo->detail.sourceInfo.executionInfo = (struct tui_gen_win_info *) NULL;
-      winInfo->detail.sourceInfo.hasLocator = FALSE;
-      winInfo->detail.sourceInfo.horizontalOffset = 0;
-      winInfo->detail.sourceInfo.startLineOrAddr.addr = 0;
-      winInfo->detail.sourceInfo.filename = 0;
-      break;
-    case DATA_WIN:
-      winInfo->detail.dataDisplayInfo.dataContent = (tui_win_content) NULL;
-      winInfo->detail.dataDisplayInfo.dataContentCount = 0;
-      winInfo->detail.dataDisplayInfo.regsContent = (tui_win_content) NULL;
-      winInfo->detail.dataDisplayInfo.regsContentCount = 0;
-      winInfo->detail.dataDisplayInfo.regsDisplayType =
-       TUI_UNDEFINED_REGS;
-      winInfo->detail.dataDisplayInfo.regsColumnCount = 1;
-      winInfo->detail.dataDisplayInfo.displayRegs = FALSE;
-      break;
-    case CMD_WIN:
-      winInfo->detail.commandInfo.curLine = 0;
-      winInfo->detail.commandInfo.curch = 0;
-      break;
-    default:
-      winInfo->detail.opaque = (Opaque) NULL;
-      break;
-    }
-
-  return;
-}                              /* initWinInfo */
-
-
-struct tui_win_info *
-tui_alloc_win_info (TuiWinType type)
-{
-  struct tui_win_info * winInfo = (struct tui_win_info *) NULL;
-
-  winInfo = (struct tui_win_info *) xmalloc (sizeof (struct tui_win_info));
-  if (m_winPtrNotNull (winInfo))
-    {
-      winInfo->generic.type = type;
-      initWinInfo (winInfo);
-    }
-
-  return winInfo;
-}                              /* allocWinInfo */
-
-
-/*
-   ** allocContent().
-   **        Allocates the content and elements in a block.
- */
-tui_win_content
-tui_alloc_content (int numElements, TuiWinType type)
-{
-  tui_win_content content = (tui_win_content) NULL;
-  char *elementBlockPtr = (char *) NULL;
-  int i;
-
-  if ((content = (tui_win_content)
-  xmalloc (sizeof (struct tui_win_element *) * numElements)) != (tui_win_content) NULL)
-    {                          /*
-                                  ** All windows, except the data window, can allocate the elements
-                                  ** in a chunk.  The data window cannot because items can be
-                                  ** added/removed from the data display by the user at any time.
-                                */
-      if (type != DATA_WIN)
-       {
-         if ((elementBlockPtr = (char *)
-          xmalloc (sizeof (struct tui_win_element) * numElements)) != (char *) NULL)
-           {
-             for (i = 0; i < numElements; i++)
-               {
-                 content[i] = (struct tui_win_element *) elementBlockPtr;
-                 initContentElement (content[i], type);
-                 elementBlockPtr += sizeof (struct tui_win_element);
-               }
-           }
-         else
-           {
-             tuiFree ((char *) content);
-             content = (tui_win_content) NULL;
-           }
-       }
-    }
-
-  return content;
-}                              /* allocContent */
-
-
-/* Adds the input number of elements to the windows's content.  If no
-   content has been allocated yet, allocContent() is called to do
-   this.  The index of the first element added is returned, unless
-   there is a memory allocation error, in which case, (-1) is
-   returned.  */
-int
-tui_add_content_elements (struct tui_gen_win_info * winInfo, int numElements)
-{
-  struct tui_win_element * elementPtr;
-  int i, indexStart;
-
-  if (winInfo->content == (OpaquePtr) NULL)
-    {
-      winInfo->content = (OpaquePtr) tui_alloc_content (numElements, winInfo->type);
-      indexStart = 0;
-    }
-  else
-    indexStart = winInfo->contentSize;
-  if (winInfo->content != (OpaquePtr) NULL)
-    {
-      for (i = indexStart; (i < numElements + indexStart); i++)
-       {
-         if ((elementPtr = (struct tui_win_element *)
-              xmalloc (sizeof (struct tui_win_element))) != (struct tui_win_element *) NULL)
-           {
-             winInfo->content[i] = (Opaque) elementPtr;
-             initContentElement (elementPtr, winInfo->type);
-             winInfo->contentSize++;
-           }
-         else                  /* things must be really hosed now! We ran out of memory!? */
-           return (-1);
-       }
-    }
-
-  return indexStart;
-}                              /* addContentElements */
-
-
-/* Delete all curses windows associated with winInfo, leaving everything
-   else intact.  */
-void
-tuiDelWindow (struct tui_win_info * winInfo)
-{
-  struct tui_gen_win_info * genericWin;
-
-  switch (winInfo->generic.type)
-    {
-    case SRC_WIN:
-    case DISASSEM_WIN:
-      genericWin = tui_locator_win_info_ptr ();
-      if (genericWin != (struct tui_gen_win_info *) NULL)
-       {
-         tui_delete_win (genericWin->handle);
-         genericWin->handle = (WINDOW *) NULL;
-         genericWin->isVisible = FALSE;
-       }
-      if (winInfo->detail.sourceInfo.filename)
-        {
-          xfree (winInfo->detail.sourceInfo.filename);
-          winInfo->detail.sourceInfo.filename = 0;
-        }
-      genericWin = winInfo->detail.sourceInfo.executionInfo;
-      if (genericWin != (struct tui_gen_win_info *) NULL)
-       {
-         tui_delete_win (genericWin->handle);
-         genericWin->handle = (WINDOW *) NULL;
-         genericWin->isVisible = FALSE;
-       }
-      break;
-    case DATA_WIN:
-      if (winInfo->generic.content != (OpaquePtr) NULL)
-       {
-         tui_del_data_windows (winInfo->detail.dataDisplayInfo.regsContent,
-                               winInfo->detail.dataDisplayInfo.regsContentCount);
-         tui_del_data_windows (winInfo->detail.dataDisplayInfo.dataContent,
-                               winInfo->detail.dataDisplayInfo.dataContentCount);
-       }
-      break;
-    default:
-      break;
-    }
-  if (winInfo->generic.handle != (WINDOW *) NULL)
-    {
-      tui_delete_win (winInfo->generic.handle);
-      winInfo->generic.handle = (WINDOW *) NULL;
-      winInfo->generic.isVisible = FALSE;
-    }
 }
 
-
-void
-tui_free_window (struct tui_win_info * winInfo)
+tui_source_window_base::tui_source_window_base (enum tui_win_type type)
+  : tui_win_info (type)
 {
-  struct tui_gen_win_info * genericWin;
-
-  switch (winInfo->generic.type)
-    {
-    case SRC_WIN:
-    case DISASSEM_WIN:
-      genericWin = tui_locator_win_info_ptr ();
-      if (genericWin != (struct tui_gen_win_info *) NULL)
-       {
-         tui_delete_win (genericWin->handle);
-         genericWin->handle = (WINDOW *) NULL;
-       }
-      tui_free_win_content (genericWin);
-      if (winInfo->detail.sourceInfo.filename)
-        {
-          xfree (winInfo->detail.sourceInfo.filename);
-          winInfo->detail.sourceInfo.filename = 0;
-        }
-      genericWin = winInfo->detail.sourceInfo.executionInfo;
-      if (genericWin != (struct tui_gen_win_info *) NULL)
-       {
-         tui_delete_win (genericWin->handle);
-         genericWin->handle = (WINDOW *) NULL;
-         tui_free_win_content (genericWin);
-       }
-      break;
-    case DATA_WIN:
-      if (winInfo->generic.content != (OpaquePtr) NULL)
-       {
-         tui_free_data_content (winInfo->detail.dataDisplayInfo.regsContent,
-                                winInfo->detail.dataDisplayInfo.regsContentCount);
-         winInfo->detail.dataDisplayInfo.regsContent =
-           (tui_win_content) NULL;
-         winInfo->detail.dataDisplayInfo.regsContentCount = 0;
-         tui_free_data_content (winInfo->detail.dataDisplayInfo.dataContent,
-                                winInfo->detail.dataDisplayInfo.dataContentCount);
-         winInfo->detail.dataDisplayInfo.dataContent =
-           (tui_win_content) NULL;
-         winInfo->detail.dataDisplayInfo.dataContentCount = 0;
-         winInfo->detail.dataDisplayInfo.regsDisplayType =
-           TUI_UNDEFINED_REGS;
-         winInfo->detail.dataDisplayInfo.regsColumnCount = 1;
-         winInfo->detail.dataDisplayInfo.displayRegs = FALSE;
-         winInfo->generic.content = (OpaquePtr) NULL;
-         winInfo->generic.contentSize = 0;
-       }
-      break;
-    default:
-      break;
-    }
-  if (winInfo->generic.handle != (WINDOW *) NULL)
-    {
-      tui_delete_win (winInfo->generic.handle);
-      winInfo->generic.handle = (WINDOW *) NULL;
-      tui_free_win_content (&winInfo->generic);
-    }
-  if (winInfo->generic.title)
-    xfree (winInfo->generic.title);
-  xfree (winInfo);
+  gdb_assert (type == SRC_WIN || type == DISASSEM_WIN);
+  start_line_or_addr.loa = LOA_ADDRESS;
+  start_line_or_addr.u.addr = 0;
 }
 
-
-void
-tui_free_all_source_wins_content (void)
+tui_gen_win_info::~tui_gen_win_info ()
 {
-  int i;
-
-  for (i = 0; i < (tui_source_windows ())->count; i++)
+  if (handle != NULL)
     {
-      struct tui_win_info * winInfo = (struct tui_win_info *) (tui_source_windows ())->list[i];
-
-      if (m_winPtrNotNull (winInfo))
-       {
-         tui_free_win_content (&(winInfo->generic));
-         tui_free_win_content (winInfo->detail.sourceInfo.executionInfo);
-       }
+      tui_delete_win (handle);
+      handle = NULL;
     }
+  xfree (title);
 }
 
-
-void
-tui_free_win_content (struct tui_gen_win_info * winInfo)
+tui_source_window_base::~tui_source_window_base ()
 {
-  if (winInfo->content != (OpaquePtr) NULL)
-    {
-      freeContent ((tui_win_content) winInfo->content,
-                  winInfo->contentSize,
-                  winInfo->type);
-      winInfo->content = (OpaquePtr) NULL;
-    }
-  winInfo->contentSize = 0;
-
-  return;
-}                              /* freeWinContent */
-
-
-void
-tui_del_data_windows (tui_win_content content, int contentSize)
-{
-  int i;
-
-  /*
-     ** Remember that data window content elements are of type struct tui_gen_win_info *,
-     ** each of which whose single element is a data element.
-   */
-  for (i = 0; i < contentSize; i++)
-    {
-      struct tui_gen_win_info * genericWin = &content[i]->whichElement.dataWindow;
-
-      if (genericWin != (struct tui_gen_win_info *) NULL)
-       {
-         tui_delete_win (genericWin->handle);
-         genericWin->handle = (WINDOW *) NULL;
-         genericWin->isVisible = FALSE;
-       }
-    }
-}
-
-
-void
-tui_free_data_content (tui_win_content content, int contentSize)
-{
-  int i;
-
-  /*
-     ** Remember that data window content elements are of type struct tui_gen_win_info *,
-     ** each of which whose single element is a data element.
-   */
-  for (i = 0; i < contentSize; i++)
-    {
-      struct tui_gen_win_info * genericWin = &content[i]->whichElement.dataWindow;
-
-      if (genericWin != (struct tui_gen_win_info *) NULL)
-       {
-         tui_delete_win (genericWin->handle);
-         genericWin->handle = (WINDOW *) NULL;
-         tui_free_win_content (genericWin);
-       }
-    }
-  freeContent (content,
-              contentSize,
-              DATA_WIN);
-
-  return;
-}                              /* freeDataContent */
-
+  xfree (fullname);
+  delete execution_info;
+}  
 
 /**********************************
 ** LOCAL STATIC FUNCTIONS        **
 **********************************/
 
 
-/*
-   ** freeContent().
- */
-static void
-freeContent (tui_win_content content, int contentSize, TuiWinType winType)
-{
-  if (content != (tui_win_content) NULL)
-    {
-      freeContentElements (content, contentSize, winType);
-      tuiFree ((char *) content);
-    }
-
-  return;
-}                              /* freeContent */
-
-
-/*
-   ** freeContentElements().
- */
-static void
-freeContentElements (tui_win_content content, int contentSize, TuiWinType type)
+tui_data_item_window::~tui_data_item_window ()
 {
-  if (content != (tui_win_content) NULL)
-    {
-      int i;
-
-      if (type == SRC_WIN || type == DISASSEM_WIN)
-       {
-         /* free whole source block */
-         if (content[0]->whichElement.source.line != (char *) NULL)
-           tuiFree (content[0]->whichElement.source.line);
-       }
-      else
-       {
-         for (i = 0; i < contentSize; i++)
-           {
-             struct tui_win_element * element;
-
-             element = content[i];
-             if (element != (struct tui_win_element *) NULL)
-               {
-                 switch (type)
-                   {
-                   case DATA_WIN:
-                     tuiFree ((char *) element);
-                     break;
-                   case DATA_ITEM_WIN:
-                     /*
-                        ** Note that data elements are not allocated
-                        ** in a single block, but individually, as needed.
-                      */
-                     if (element->whichElement.data.type != TUI_REGISTER)
-                       tuiFree ((char *)
-                                element->whichElement.data.name);
-                     tuiFree ((char *) element->whichElement.data.value);
-                     tuiFree ((char *) element);
-                     break;
-                   case CMD_WIN:
-                     tuiFree ((char *) element->whichElement.command.line);
-                     break;
-                   default:
-                     break;
-                   }
-               }
-           }
-       }
-      if (type != DATA_WIN && type != DATA_ITEM_WIN)
-       tuiFree ((char *) content[0]);  /* free the element block */
-    }
-
-  return;
-}                              /* freeContentElements */
+  xfree (value);
+  xfree (content);
+}
This page took 0.036741 seconds and 4 git commands to generate.