3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
32 #include "event-loop.h"
33 #include "event-top.h"
35 #include "breakpoint.h"
36 #include "gdb-events.h"
43 #include "tui/tui-hooks.h"
44 #include "tui/tui-data.h"
45 #include "tui/tui-layout.h"
46 #include "tui/tui-io.h"
47 #include "tui/tui-regs.h"
48 #include "tui/tui-win.h"
49 #include "tui/tui-stack.h"
50 #include "tui/tui-windata.h"
51 #include "tui/tui-winsource.h"
53 #include "gdb_curses.h"
55 /* This redefines CTRL if it is not already defined, so it must come
56 after terminal state releated include files like <term.h> and
58 #include "readline/readline.h"
60 int tui_target_has_run
= 0;
62 static void (* tui_target_new_objfile_chain
) (struct objfile
*);
65 tui_new_objfile_hook (struct objfile
* objfile
)
70 if (tui_target_new_objfile_chain
)
71 tui_target_new_objfile_chain (objfile
);
74 static int ATTR_FORMAT (printf
, 1, 0)
75 tui_query_hook (const char * msg
, va_list argp
)
84 wrap_here (""); /* Flush any buffered output */
85 gdb_flush (gdb_stdout
);
87 vfprintf_filtered (gdb_stdout
, msg
, argp
);
88 printf_filtered (_("(y or n) "));
91 gdb_flush (gdb_stdout
);
93 answer
= tui_getc (stdin
);
94 clearerr (stdin
); /* in case of C-d */
95 if (answer
== EOF
) /* C-d */
100 /* Eat rest of input line, to EOF or newline */
104 ans2
= tui_getc (stdin
);
107 while (ans2
!= EOF
&& ans2
!= '\n' && ans2
!= '\r');
121 printf_filtered (_("Please answer y or n.\n"));
127 /* Prevent recursion of deprecated_registers_changed_hook(). */
128 static int tui_refreshing_registers
= 0;
131 tui_registers_changed_hook (void)
133 struct frame_info
*fi
;
135 fi
= deprecated_selected_frame
;
136 if (fi
&& tui_refreshing_registers
== 0)
138 tui_refreshing_registers
= 1;
140 tui_check_data_values (fi
);
142 tui_refreshing_registers
= 0;
147 tui_register_changed_hook (int regno
)
149 struct frame_info
*fi
;
151 fi
= deprecated_selected_frame
;
152 if (fi
&& tui_refreshing_registers
== 0)
154 tui_refreshing_registers
= 1;
155 tui_check_data_values (fi
);
156 tui_refreshing_registers
= 0;
160 /* Breakpoint creation hook.
161 Update the screen to show the new breakpoint. */
163 tui_event_create_breakpoint (int number
)
165 tui_update_all_breakpoint_info ();
168 /* Breakpoint deletion hook.
169 Refresh the screen to update the breakpoint marks. */
171 tui_event_delete_breakpoint (int number
)
173 tui_update_all_breakpoint_info ();
177 tui_event_modify_breakpoint (int number
)
179 tui_update_all_breakpoint_info ();
183 tui_event_default (int number
)
188 static struct gdb_events
*tui_old_event_hooks
;
190 static struct gdb_events tui_event_hooks
=
192 tui_event_create_breakpoint
,
193 tui_event_delete_breakpoint
,
194 tui_event_modify_breakpoint
,
200 /* Called when going to wait for the target.
201 Leave curses mode and setup program mode. */
203 tui_target_wait_hook (ptid_t pid
, struct target_waitstatus
*status
)
207 /* Leave tui mode (optional). */
211 target_terminal_ours ();
213 target_terminal_inferior ();
216 tui_target_has_run
= 1;
217 res
= target_wait (pid
, status
);
221 /* TODO: need to refresh (optional). */
226 /* The selected frame has changed. This is happens after a target
227 stop or when the user explicitly changes the frame (up/down/thread/...). */
229 tui_selected_frame_level_changed_hook (int level
)
231 struct frame_info
*fi
;
233 fi
= deprecated_selected_frame
;
234 /* Ensure that symbols for this frame are read in. Also, determine the
235 source language of this frame, and switch to it if desired. */
240 s
= find_pc_symtab (get_frame_pc (fi
));
241 /* elz: this if here fixes the problem with the pc not being displayed
242 in the tui asm layout, with no debug symbols. The value of s
243 would be 0 here, and select_source_symtab would abort the
244 command by calling the 'error' function */
246 select_source_symtab (s
);
248 /* Display the frame position (even if there is no symbols). */
249 tui_show_frame_info (fi
);
251 /* Refresh the register window if it's visible. */
252 if (tui_is_window_visible (DATA_WIN
))
254 tui_refreshing_registers
= 1;
255 tui_check_data_values (fi
);
256 tui_refreshing_registers
= 0;
261 /* Called from print_frame_info to list the line we stopped in. */
263 tui_print_frame_info_listing_hook (struct symtab
*s
, int line
,
264 int stopline
, int noerror
)
266 select_source_symtab (s
);
267 tui_show_frame_info (deprecated_selected_frame
);
270 /* Called when the target process died or is detached.
271 Update the status line. */
273 tui_detach_hook (void)
275 tui_show_frame_info (0);
279 /* Install the TUI specific hooks. */
281 tui_install_hooks (void)
283 deprecated_target_wait_hook
= tui_target_wait_hook
;
284 deprecated_selected_frame_level_changed_hook
= tui_selected_frame_level_changed_hook
;
285 deprecated_print_frame_info_listing_hook
= tui_print_frame_info_listing_hook
;
287 deprecated_query_hook
= tui_query_hook
;
289 /* Install the event hooks. */
290 tui_old_event_hooks
= deprecated_set_gdb_event_hooks (&tui_event_hooks
);
292 deprecated_registers_changed_hook
= tui_registers_changed_hook
;
293 deprecated_register_changed_hook
= tui_register_changed_hook
;
294 deprecated_detach_hook
= tui_detach_hook
;
297 /* Remove the TUI specific hooks. */
299 tui_remove_hooks (void)
301 deprecated_target_wait_hook
= 0;
302 deprecated_selected_frame_level_changed_hook
= 0;
303 deprecated_print_frame_info_listing_hook
= 0;
304 deprecated_query_hook
= 0;
305 deprecated_registers_changed_hook
= 0;
306 deprecated_register_changed_hook
= 0;
307 deprecated_detach_hook
= 0;
309 /* Restore the previous event hooks. */
310 deprecated_set_gdb_event_hooks (tui_old_event_hooks
);
313 void _initialize_tui_hooks (void);
316 _initialize_tui_hooks (void)
318 /* Install the permanent hooks. */
319 tui_target_new_objfile_chain
= deprecated_target_new_objfile_hook
;
320 deprecated_target_new_objfile_hook
= tui_new_objfile_hook
;