Truncate long TUI window titles
[deliverable/binutils-gdb.git] / gdb / tui / tui-source.c
index 39abe81a870c6b4a7b8033b516ef07ca83ca42fd..906006a4225ab4240a803ad82ee1212c791f459c 100644 (file)
@@ -123,10 +123,13 @@ copy_source_line (const char **ptr, int line_no, int first_col,
 
 /* Function to display source in the source window.  */
 enum tui_status
-tui_set_source_content (struct symtab *s, 
-                       int line_no,
-                       int noerror)
+tui_source_window::set_contents (struct gdbarch *arch,
+                                struct symtab *s, 
+                                struct tui_line_or_address line_or_addr)
 {
+  gdb_assert (line_or_addr.loa == LOA_LINE);
+  int line_no = line_or_addr.u.line_no;
+
   enum tui_status ret = TUI_FAILURE;
 
   if (s != NULL)
@@ -134,83 +137,60 @@ tui_set_source_content (struct symtab *s,
       int line_width, nlines;
 
       ret = TUI_SUCCESS;
-      tui_alloc_source_buffer (TUI_SRC_WIN);
-      line_width = TUI_SRC_WIN->width - 1;
+      line_width = width - TUI_EXECINFO_SIZE - 1;
       /* Take hilite (window border) into account, when
         calculating the number of lines.  */
-      nlines = (line_no + (TUI_SRC_WIN->height - 2)) - line_no;
+      nlines = (line_no + (height - 2)) - line_no;
 
       std::string srclines;
       if (!g_source_cache.get_source_lines (s, line_no, line_no + nlines,
                                            &srclines))
-       {
-         if (!noerror)
-           {
-             const char *filename = symtab_to_filename_for_display (s);
-             char *name = (char *) alloca (strlen (filename) + 100);
-
-             sprintf (name, "%s:%d", filename, line_no);
-             print_sys_errmsg (name, errno);
-           }
-         ret = TUI_FAILURE;
-       }
+       ret = TUI_FAILURE;
       else
        {
          int cur_line_no, cur_line;
-         struct tui_gen_win_info *locator
+         struct tui_locator_window *locator
            = tui_locator_win_info_ptr ();
-         struct tui_source_window_base *src
-           = (struct tui_source_window_base *) TUI_SRC_WIN;
          const char *s_filename = symtab_to_filename_for_display (s);
 
-         if (TUI_SRC_WIN->title)
-           xfree (TUI_SRC_WIN->title);
-         TUI_SRC_WIN->title = xstrdup (s_filename);
+         title = s_filename;
 
-         xfree (src->fullname);
-         src->fullname = xstrdup (symtab_to_fullname (s));
+         xfree (fullname);
+         fullname = xstrdup (symtab_to_fullname (s));
 
          cur_line = 0;
-         src->gdbarch = get_objfile_arch (SYMTAB_OBJFILE (s));
-         src->start_line_or_addr.loa = LOA_LINE;
-         cur_line_no = src->start_line_or_addr.u.line_no = line_no;
+         gdbarch = get_objfile_arch (SYMTAB_OBJFILE (s));
+         start_line_or_addr.loa = LOA_LINE;
+         cur_line_no = start_line_or_addr.u.line_no = line_no;
 
          const char *iter = srclines.c_str ();
+         content.resize (nlines);
          while (cur_line < nlines)
            {
-             struct tui_win_element *element
-               = TUI_SRC_WIN->content[cur_line];
+             struct tui_source_element *element
+               = &content[cur_line];
 
              std::string text;
              if (*iter != '\0')
-               text = copy_source_line (&iter, cur_line_no,
-                                        src->horizontal_offset,
+               text = copy_source_line (&iter, cur_line_no, horizontal_offset,
                                         line_width);
 
              /* Set whether element is the execution point
                 and whether there is a break point on it.  */
-             element->which_element.source.line_or_addr.loa =
-               LOA_LINE;
-             element->which_element.source.line_or_addr.u.line_no =
-               cur_line_no;
-             element->which_element.source.is_exec_point =
-               (filename_cmp (locator->content[0]
-                              ->which_element.locator.full_name,
-                              symtab_to_fullname (s)) == 0
-                && cur_line_no
-                == locator->content[0]
-                ->which_element.locator.line_no);
-
-             xfree (TUI_SRC_WIN->content[cur_line]
-                    ->which_element.source.line);
-             TUI_SRC_WIN->content[cur_line]
-               ->which_element.source.line
+             element->line_or_addr.loa = LOA_LINE;
+             element->line_or_addr.u.line_no = cur_line_no;
+             element->is_exec_point
+               = (filename_cmp (locator->full_name,
+                                symtab_to_fullname (s)) == 0
+                  && cur_line_no == locator->line_no);
+
+             xfree (content[cur_line].line);
+             content[cur_line].line
                = xstrdup (text.c_str ());
 
              cur_line++;
              cur_line_no++;
            }
-         TUI_SRC_WIN->content_size = nlines;
          ret = TUI_SUCCESS;
        }
     }
@@ -218,100 +198,34 @@ tui_set_source_content (struct symtab *s,
 }
 
 
-/* elz: This function sets the contents of the source window to empty
-   except for a line in the middle with a warning message about the
-   source not being available.  This function is called by
-   tui_erase_source_contents(), which in turn is invoked when the
-   source files cannot be accessed.  */
-
-void
-tui_set_source_content_nil (struct tui_win_info *win_info, 
-                           const char *warning_string)
-{
-  int line_width;
-  int n_lines;
-  int curr_line = 0;
-
-  line_width = win_info->width - 1;
-  n_lines = win_info->height - 2;
-
-  /* Set to empty each line in the window, except for the one which
-     contains the message.  */
-  while (curr_line < win_info->content_size)
-    {
-      /* Set the information related to each displayed line to null:
-         i.e. the line number is 0, there is no bp, it is not where
-         the program is stopped.  */
-
-      struct tui_win_element *element = win_info->content[curr_line];
-
-      element->which_element.source.line_or_addr.loa = LOA_LINE;
-      element->which_element.source.line_or_addr.u.line_no = 0;
-      element->which_element.source.is_exec_point = FALSE;
-      element->which_element.source.has_break = FALSE;
-
-      /* Set the contents of the line to blank.  */
-      element->which_element.source.line[0] = (char) 0;
-
-      /* If the current line is in the middle of the screen, then we
-         want to display the 'no source available' message in it.
-         Note: the 'weird' arithmetic with the line width and height
-         comes from the function tui_erase_source_content().  We need
-         to keep the screen and the window's actual contents in
-         synch.  */
-
-      if (curr_line == (n_lines / 2 + 1))
-       {
-         int xpos;
-         int warning_length = strlen (warning_string);
-         char *src_line;
-
-         if (warning_length >= ((line_width - 1) / 2))
-           xpos = 1;
-         else
-           xpos = (line_width - 1) / 2 - warning_length;
-
-         src_line = xstrprintf ("%s%s", n_spaces (xpos), warning_string);
-         xfree (element->which_element.source.line);
-         element->which_element.source.line = src_line;
-       }
-
-      curr_line++;
-    }
-}
-
-
 /* Function to display source in the source window.  This function
    initializes the horizontal scroll to 0.  */
 void
-tui_show_symtab_source (struct gdbarch *gdbarch, struct symtab *s,
-                       struct tui_line_or_address line, 
-                       int noerror)
+tui_source_window::show_symtab_source (struct gdbarch *gdbarch,
+                                      struct symtab *s,
+                                      struct tui_line_or_address line)
 {
-  TUI_SRC_WIN->horizontal_offset = 0;
-  tui_update_source_window_as_is (TUI_SRC_WIN, gdbarch, s, line, noerror);
+  horizontal_offset = 0;
+  update_source_window_as_is (gdbarch, s, line);
 }
 
 
 /* Answer whether the source is currently displayed in the source
    window.  */
-int
-tui_source_is_displayed (const char *fullname)
+bool
+tui_source_window::showing_source_p (const char *fullname) const
 {
-  return (TUI_SRC_WIN != NULL
-         && TUI_SRC_WIN->content_in_use 
-         && (filename_cmp (tui_locator_win_info_ptr ()->content[0]
-                             ->which_element.locator.full_name,
+  return (!content.empty ()
+         && (filename_cmp (tui_locator_win_info_ptr ()->full_name,
                            fullname) == 0));
 }
 
 
 /* Scroll the source forward or backward vertically.  */
 void
-tui_source_window::do_scroll_vertical
-  (enum tui_scroll_direction scroll_direction, int num_to_scroll)
+tui_source_window::do_scroll_vertical (int num_to_scroll)
 {
-  if (content != NULL)
+  if (!content.empty ())
     {
       struct tui_line_or_address l;
       struct symtab *s;
@@ -323,24 +237,91 @@ tui_source_window::do_scroll_vertical
        s = cursal.symtab;
 
       l.loa = LOA_LINE;
-      if (scroll_direction == FORWARD_SCROLL)
-       {
-         l.u.line_no = content[0]->which_element.source.line_or_addr.u.line_no
-           + num_to_scroll;
-         if (l.u.line_no > s->nlines)
-           /* line = s->nlines - win_info->content_size + 1; */
-           /* elz: fix for dts 23398.  */
-           l.u.line_no
-             = content[0]->which_element.source.line_or_addr.u.line_no;
-       }
-      else
-       {
-         l.u.line_no = content[0]->which_element.source.line_or_addr.u.line_no
-           - num_to_scroll;
-         if (l.u.line_no <= 0)
-           l.u.line_no = 1;
-       }
+      l.u.line_no = content[0].line_or_addr.u.line_no
+       + num_to_scroll;
+      const std::vector<off_t> *offsets;
+      if (g_source_cache.get_line_charpos (s, &offsets)
+         && l.u.line_no > offsets->size ())
+       /* line = s->nlines - win_info->content_size + 1; */
+       /* elz: fix for dts 23398.  */
+       l.u.line_no = content[0].line_or_addr.u.line_no;
+      if (l.u.line_no <= 0)
+       l.u.line_no = 1;
 
       print_source_lines (s, l.u.line_no, l.u.line_no + 1, 0);
     }
 }
+
+tui_source_window::tui_source_window ()
+  : tui_source_window_base (SRC_WIN)
+{
+  gdb::observers::source_styling_changed.attach
+    (std::bind (&tui_source_window::style_changed, this),
+     m_observable);
+}
+
+tui_source_window::~tui_source_window ()
+{
+  gdb::observers::source_styling_changed.detach (m_observable);
+}
+
+void
+tui_source_window::style_changed ()
+{
+  if (tui_active && is_visible ())
+    refill ();
+}
+
+bool
+tui_source_window::location_matches_p (struct bp_location *loc, int line_no)
+{
+  return (content[line_no].line_or_addr.loa == LOA_LINE
+         && content[line_no].line_or_addr.u.line_no == loc->line_number
+         && loc->symtab != NULL
+         && filename_cmp (fullname,
+                          symtab_to_fullname (loc->symtab)) == 0);
+}
+
+/* See tui-source.h.  */
+
+bool
+tui_source_window::line_is_displayed (int line) const
+{
+  bool is_displayed = false;
+  int threshold = SCROLL_THRESHOLD;
+  int i = 0;
+  while (i < content.size () - threshold && !is_displayed)
+    {
+      is_displayed
+       = (content[i].line_or_addr.loa == LOA_LINE
+          && content[i].line_or_addr.u.line_no == line);
+      i++;
+    }
+
+  return is_displayed;
+}
+
+void
+tui_source_window::maybe_update (struct frame_info *fi, symtab_and_line sal,
+                                int line_no, CORE_ADDR addr)
+{
+  int start_line = (line_no - (viewport_height / 2)) + 1;
+  if (start_line <= 0)
+    start_line = 1;
+
+  bool source_already_displayed = (sal.symtab != 0
+                                  && showing_source_p (fullname));
+
+  struct tui_line_or_address l;
+
+  l.loa = LOA_LINE;
+  l.u.line_no = start_line;
+  if (!(source_already_displayed
+       && line_is_displayed (line_no)))
+    update_source_window (get_frame_arch (fi), sal.symtab, l);
+  else
+    {
+      l.u.line_no = line_no;
+      set_is_exec_point_at (l);
+    }
+}
This page took 0.027742 seconds and 4 git commands to generate.