2004-02-07 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / tui / tui-stack.c
... / ...
CommitLineData
1/* TUI display locator.
2
3 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
4 Foundation, Inc.
5
6 Contributed by Hewlett-Packard Company.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
24
25#include "defs.h"
26#include "symtab.h"
27#include "breakpoint.h"
28#include "frame.h"
29#include "command.h"
30#include "inferior.h"
31#include "target.h"
32#include "top.h"
33
34#include "tui/tui.h"
35#include "tui/tui-data.h"
36#include "tui/tui-stack.h"
37#include "tui/tui-wingeneral.h"
38#include "tui/tui-source.h"
39#include "tui/tui-winsource.h"
40#include "tui/tui-file.h"
41
42#ifdef HAVE_NCURSES_H
43#include <ncurses.h>
44#else
45#ifdef HAVE_CURSES_H
46#include <curses.h>
47#endif
48#endif
49
50/* Get a printable name for the function at the address.
51 The symbol name is demangled if demangling is turned on.
52 Returns a pointer to a static area holding the result. */
53static char* tui_get_function_from_frame (struct frame_info *fi);
54
55/* Set the filename portion of the locator. */
56static void tui_set_locator_filename (const char *filename);
57
58/* Update the locator, with the provided arguments. */
59static void tui_set_locator_info (const char *filename, const char *procname,
60 int lineno, CORE_ADDR addr);
61
62static void tui_update_command (char *, int);
63\f
64
65/* Create the status line to display as much information as we
66 can on this single line: target name, process number, current
67 function, current line, current PC, SingleKey mode. */
68static char*
69tui_make_status_line (struct tui_locator_element* loc)
70{
71 char* string;
72 char line_buf[50], *pname;
73 char* buf;
74 int status_size;
75 int i, proc_width;
76 const char* pid_name;
77 const char* pc_buf;
78 int target_width;
79 int pid_width;
80 int line_width;
81 int pc_width;
82 struct ui_file *pc_out;
83
84 if (ptid_equal (inferior_ptid, null_ptid))
85 pid_name = "No process";
86 else
87 pid_name = target_pid_to_str (inferior_ptid);
88
89 target_width = strlen (target_shortname);
90 if (target_width > MAX_TARGET_WIDTH)
91 target_width = MAX_TARGET_WIDTH;
92
93 pid_width = strlen (pid_name);
94 if (pid_width > MAX_PID_WIDTH)
95 pid_width = MAX_PID_WIDTH;
96
97 status_size = tui_term_width ();
98 string = (char *) xmalloc (status_size + 1);
99 buf = (char*) alloca (status_size + 1);
100
101 /* Translate line number and obtain its size. */
102 if (loc->lineNo > 0)
103 sprintf (line_buf, "%d", loc->lineNo);
104 else
105 strcpy (line_buf, "??");
106 line_width = strlen (line_buf);
107 if (line_width < MIN_LINE_WIDTH)
108 line_width = MIN_LINE_WIDTH;
109
110 /* Translate PC address. */
111 pc_out = tui_sfileopen (128);
112 print_address_numeric (loc->addr, 1, pc_out);
113 pc_buf = tui_file_get_strbuf (pc_out);
114 pc_width = strlen (pc_buf);
115
116 /* First determine the amount of proc name width we have available.
117 The +1 are for a space separator between fields.
118 The -1 are to take into account the \0 counted by sizeof. */
119 proc_width = (status_size
120 - (target_width + 1)
121 - (pid_width + 1)
122 - (sizeof (PROC_PREFIX) - 1 + 1)
123 - (sizeof (LINE_PREFIX) - 1 + line_width + 1)
124 - (sizeof (PC_PREFIX) - 1 + pc_width + 1)
125 - (tui_current_key_mode == tui_single_key_mode
126 ? (sizeof (SINGLE_KEY) - 1 + 1)
127 : 0));
128
129 /* If there is no room to print the function name, try by removing
130 some fields. */
131 if (proc_width < MIN_PROC_WIDTH)
132 {
133 proc_width += target_width + 1;
134 target_width = 0;
135 if (proc_width < MIN_PROC_WIDTH)
136 {
137 proc_width += pid_width + 1;
138 pid_width = 0;
139 if (proc_width <= MIN_PROC_WIDTH)
140 {
141 proc_width += pc_width + sizeof (PC_PREFIX) - 1 + 1;
142 pc_width = 0;
143 if (proc_width < 0)
144 {
145 proc_width += line_width + sizeof (LINE_PREFIX) - 1 + 1;
146 line_width = 0;
147 if (proc_width < 0)
148 proc_width = 0;
149 }
150 }
151 }
152 }
153
154 /* Now convert elements to string form */
155 pname = loc->procName;
156
157 /* Now create the locator line from the string version
158 of the elements. We could use sprintf() here but
159 that wouldn't ensure that we don't overrun the size
160 of the allocated buffer. strcat_to_buf() will. */
161 *string = (char) 0;
162
163 if (target_width > 0)
164 {
165 sprintf (buf, "%*.*s ",
166 -target_width, target_width, target_shortname);
167 strcat_to_buf (string, status_size, buf);
168 }
169 if (pid_width > 0)
170 {
171 sprintf (buf, "%*.*s ",
172 -pid_width, pid_width, pid_name);
173 strcat_to_buf (string, status_size, buf);
174 }
175
176 /* Show whether we are in SingleKey mode. */
177 if (tui_current_key_mode == tui_single_key_mode)
178 {
179 strcat_to_buf (string, status_size, SINGLE_KEY);
180 strcat_to_buf (string, status_size, " ");
181 }
182
183 /* procedure/class name */
184 if (proc_width > 0)
185 {
186 if (strlen (pname) > proc_width)
187 sprintf (buf, "%s%*.*s* ", PROC_PREFIX,
188 1 - proc_width, proc_width - 1, pname);
189 else
190 sprintf (buf, "%s%*.*s ", PROC_PREFIX,
191 -proc_width, proc_width, pname);
192 strcat_to_buf (string, status_size, buf);
193 }
194
195 if (line_width > 0)
196 {
197 sprintf (buf, "%s%*.*s ", LINE_PREFIX,
198 -line_width, line_width, line_buf);
199 strcat_to_buf (string, status_size, buf);
200 }
201 if (pc_width > 0)
202 {
203 strcat_to_buf (string, status_size, PC_PREFIX);
204 strcat_to_buf (string, status_size, pc_buf);
205 }
206
207
208 for (i = strlen (string); i < status_size; i++)
209 string[i] = ' ';
210 string[status_size] = (char) 0;
211
212 ui_file_delete (pc_out);
213 return string;
214}
215
216/* Get a printable name for the function at the address.
217 The symbol name is demangled if demangling is turned on.
218 Returns a pointer to a static area holding the result. */
219static char*
220tui_get_function_from_frame (struct frame_info *fi)
221{
222 static char name[256];
223 struct ui_file *stream = tui_sfileopen (256);
224 char *p;
225
226 print_address_symbolic (get_frame_pc (fi), stream, demangle, "");
227 p = tui_file_get_strbuf (stream);
228
229 /* Use simple heuristics to isolate the function name. The symbol can
230 be demangled and we can have function parameters. Remove them because
231 the status line is too short to display them. */
232 if (*p == '<')
233 p++;
234 strncpy (name, p, sizeof (name));
235 p = strchr (name, '(');
236 if (!p)
237 p = strchr (name, '>');
238 if (p)
239 *p = 0;
240 p = strchr (name, '+');
241 if (p)
242 *p = 0;
243 ui_file_delete (stream);
244 return name;
245}
246
247/* tuiShowLocatorContent(). */
248void
249tui_show_locator_content (void)
250{
251 char *string;
252 struct tui_gen_win_info * locator;
253
254 locator = tui_locator_win_info_ptr ();
255
256 if (m_genWinPtrNotNull (locator) && locator->handle != (WINDOW *) NULL)
257 {
258 struct tui_win_element * element;
259
260 element = (struct tui_win_element *) locator->content[0];
261
262 string = tui_make_status_line (&element->whichElement.locator);
263 wmove (locator->handle, 0, 0);
264 wstandout (locator->handle);
265 waddstr (locator->handle, string);
266 wclrtoeol (locator->handle);
267 wstandend (locator->handle);
268 tui_refresh_win (locator);
269 wmove (locator->handle, 0, 0);
270 xfree (string);
271 locator->contentInUse = TRUE;
272 }
273}
274
275
276/* Set the filename portion of the locator. */
277static void
278tui_set_locator_filename (const char *filename)
279{
280 struct tui_gen_win_info * locator = tui_locator_win_info_ptr ();
281 struct tui_locator_element * element;
282
283 if (locator->content[0] == (Opaque) NULL)
284 {
285 tui_set_locator_info (filename, NULL, 0, 0);
286 return;
287 }
288
289 element = &((struct tui_win_element *) locator->content[0])->whichElement.locator;
290 element->fileName[0] = 0;
291 strcat_to_buf (element->fileName, MAX_LOCATOR_ELEMENT_LEN, filename);
292}
293
294/* Update the locator, with the provided arguments. */
295static void
296tui_set_locator_info (const char *filename, const char *procname, int lineno,
297 CORE_ADDR addr)
298{
299 struct tui_gen_win_info * locator = tui_locator_win_info_ptr ();
300 struct tui_locator_element * element;
301
302 /* Allocate the locator content if necessary. */
303 if (locator->contentSize <= 0)
304 {
305 locator->content = (OpaquePtr) tui_alloc_content (1, locator->type);
306 locator->contentSize = 1;
307 }
308
309 element = &((struct tui_win_element *) locator->content[0])->whichElement.locator;
310 element->procName[0] = (char) 0;
311 strcat_to_buf (element->procName, MAX_LOCATOR_ELEMENT_LEN, procname);
312 element->lineNo = lineno;
313 element->addr = addr;
314 tui_set_locator_filename (filename);
315}
316
317/* Update only the filename portion of the locator. */
318void
319tui_update_locator_filename (const char *filename)
320{
321 tui_set_locator_filename (filename);
322 tui_show_locator_content ();
323}
324
325/* Function to print the frame information for the TUI. */
326void
327tui_show_frame_info (struct frame_info *fi)
328{
329 struct tui_win_info * winInfo;
330 register int i;
331
332 if (fi)
333 {
334 register int startLine, i;
335 CORE_ADDR low;
336 struct tui_gen_win_info * locator = tui_locator_win_info_ptr ();
337 int sourceAlreadyDisplayed;
338 struct symtab_and_line sal;
339
340 find_frame_sal (fi, &sal);
341
342 sourceAlreadyDisplayed = sal.symtab != 0
343 && tui_source_is_displayed (sal.symtab->filename);
344 tui_set_locator_info (sal.symtab == 0 ? "??" : sal.symtab->filename,
345 tui_get_function_from_frame (fi),
346 sal.line,
347 get_frame_pc (fi));
348 tui_show_locator_content ();
349 startLine = 0;
350 for (i = 0; i < (tui_source_windows ())->count; i++)
351 {
352 union tui_which_element *item;
353 winInfo = (struct tui_win_info *) (tui_source_windows ())->list[i];
354
355 item = &((struct tui_win_element *) locator->content[0])->whichElement;
356 if (winInfo == srcWin)
357 {
358 startLine = (item->locator.lineNo -
359 (winInfo->generic.viewportHeight / 2)) + 1;
360 if (startLine <= 0)
361 startLine = 1;
362 }
363 else
364 {
365 if (find_pc_partial_function (get_frame_pc (fi), (char **) NULL,
366 &low, (CORE_ADDR) NULL) == 0)
367 error ("No function contains program counter for selected frame.\n");
368 else
369 low = tuiGetLowDisassemblyAddress (low, get_frame_pc (fi));
370 }
371
372 if (winInfo == srcWin)
373 {
374 union tui_line_or_address l;
375 l.lineNo = startLine;
376 if (!(sourceAlreadyDisplayed
377 && tui_line_is_displayed (item->locator.lineNo, winInfo, TRUE)))
378 tui_update_source_window (winInfo, sal.symtab, l, TRUE);
379 else
380 {
381 l.lineNo = item->locator.lineNo;
382 tui_set_is_exec_point_at (l, winInfo);
383 }
384 }
385 else
386 {
387 if (winInfo == disassemWin)
388 {
389 union tui_line_or_address a;
390 a.addr = low;
391 if (!tui_addr_is_displayed (item->locator.addr, winInfo, TRUE))
392 tui_update_source_window (winInfo, sal.symtab, a, TRUE);
393 else
394 {
395 a.addr = item->locator.addr;
396 tui_set_is_exec_point_at (a, winInfo);
397 }
398 }
399 }
400 tui_update_exec_info (winInfo);
401 }
402 }
403 else
404 {
405 tui_set_locator_info (NULL, NULL, 0, (CORE_ADDR) 0);
406 tui_show_locator_content ();
407 for (i = 0; i < (tui_source_windows ())->count; i++)
408 {
409 winInfo = (struct tui_win_info *) (tui_source_windows ())->list[i];
410 tui_clear_source_content (winInfo, EMPTY_SOURCE_PROMPT);
411 tui_update_exec_info (winInfo);
412 }
413 }
414}
415
416/* Function to initialize gdb commands, for tui window stack manipulation. */
417void
418_initialize_tuiStack (void)
419{
420 add_com ("update", class_tui, tui_update_command,
421 "Update the source window and locator to display the current "
422 "execution point.\n");
423}
424
425/* Command to update the display with the current execution point. */
426static void
427tui_update_command (char *arg, int from_tty)
428{
429 char cmd[sizeof("frame 0")];
430
431 strcpy (cmd, "frame 0");
432 execute_command (cmd, from_tty);
433}
This page took 0.074704 seconds and 4 git commands to generate.