mirror of
https://github.com/tromey/gdb-gui.git
synced 2025-12-15 23:00:05 +01:00
beginnings of a source window
does not yet really work
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
import gdb
|
||||
import gui.startup
|
||||
import gui.source
|
||||
import gui.stack
|
||||
import gui.logwindow
|
||||
import gui.toplevel
|
||||
import gui.dprintf
|
||||
@@ -45,6 +46,24 @@ windows can be created."""
|
||||
self.dont_repeat()
|
||||
gui.source.lru_handler.new_source_window()
|
||||
|
||||
class GuiStackCommand(gdb.Command):
|
||||
"""Create a new stack window.
|
||||
Usage: gui stack
|
||||
This creates a stack window in the GUI if it does not already exist."""
|
||||
|
||||
def __init__(self):
|
||||
super(GuiStackCommand, self).__init__('gui stack',
|
||||
gdb.COMMAND_SUPPORT)
|
||||
|
||||
def invoke(self, arg, from_tty):
|
||||
self.dont_repeat()
|
||||
# FIXME does it make sense to have more than one? Maybe if
|
||||
# we have thread-locking.
|
||||
# FIXME could have arguments to set various stack flags,
|
||||
# like whether to show child frames, or just show raw,
|
||||
# or maybe even whatever 'bt' takes?
|
||||
gui.stack.show_stack()
|
||||
|
||||
class GuiListCommand(gdb.Command):
|
||||
"""List some source code in a source window.
|
||||
Usage: gui list LINESPEC
|
||||
@@ -265,6 +284,7 @@ found using "info windows"."""
|
||||
|
||||
GuiCommand()
|
||||
GuiSourceCommand()
|
||||
GuiStackCommand()
|
||||
GuiLogWindowCommand()
|
||||
GuiPrintCommand()
|
||||
GuiOutputCommand()
|
||||
|
||||
@@ -272,6 +272,7 @@ font_manager = _Font()
|
||||
_Title('source', '\\W{basename} [GDB Source @\\W{number}]')
|
||||
_Title('display', '\\W{command} [GDB Display @\\W{number}]')
|
||||
_Title('log', '[GDB Log @\\W{number}]\\W{default}')
|
||||
_Title('stack', '[GDB Stack @\\W{number}]')
|
||||
|
||||
warn_missing = _Missing()
|
||||
line_numbers = _Lines()
|
||||
|
||||
104
gui/stack.py
Normal file
104
gui/stack.py
Normal file
@@ -0,0 +1,104 @@
|
||||
# Copyright (C) 2015 Tom Tromey <tom@tromey.com>
|
||||
|
||||
# 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 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# 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, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Stack view.
|
||||
|
||||
import gdb
|
||||
import gdb.frames
|
||||
import gdb.FrameDecorator
|
||||
import gdb.FrameIterator
|
||||
import gui.updatewindow
|
||||
import gui.startup
|
||||
import gui.markup
|
||||
import gui.params
|
||||
|
||||
from gui.invoker import Invoker
|
||||
from gui.startup import in_gdb_thread, in_gtk_thread
|
||||
from gi.repository import Gtk
|
||||
|
||||
def format_frame(frame):
|
||||
result = {}
|
||||
result["name"] = frame.function()
|
||||
result["filename"] = frame.filename()
|
||||
result["pc"] = frame.address()
|
||||
result["line"] = frame.line()
|
||||
elided = frame.elided()
|
||||
if elided is not None:
|
||||
elided = list(map(format_frame, elided))
|
||||
result["elided"] = elided
|
||||
# Not quite what we want...
|
||||
result["solib"] = gdb.solib_name(frame.address())
|
||||
return result
|
||||
# FIXME args
|
||||
|
||||
class StackWindow(gui.updatewindow.UpdateWindow):
|
||||
def __init__(self):
|
||||
self.raw = False
|
||||
super(StackWindow, self).__init__('stack')
|
||||
# Connect events.
|
||||
# Update buttons.
|
||||
|
||||
@in_gtk_thread
|
||||
def gtk_initialize(self):
|
||||
self.do_up = Invoker("up")
|
||||
self.do_down = Invoker("down")
|
||||
builder = gui.startup.create_builder('stackwindow.xml')
|
||||
builder.connect_signals(self)
|
||||
|
||||
self.window = builder.get_object('stackwindow')
|
||||
self.view = builder.get_object('view')
|
||||
self.text = Gtk.TextBuffer()
|
||||
self.view.set_buffer(self.text)
|
||||
self.view.modify_font(gui.params.font_manager.get_font())
|
||||
|
||||
@in_gtk_thread
|
||||
def _update(self, data):
|
||||
self.text.delete(self.text.get_start_iter(), self.text.get_end_iter())
|
||||
for frame in data:
|
||||
# Goofball API.
|
||||
if isinstance(frame["name"], str):
|
||||
self.text.insert_at_cursor(frame["name"])
|
||||
else:
|
||||
# This is lame but we have no access to minimal
|
||||
# symbols.
|
||||
self.text.insert_at_cursor("???")
|
||||
self.text.insert_at_cursor(" ")
|
||||
# FIXME args
|
||||
self.text.insert_at_cursor("\n")
|
||||
if frame["line"] is not None:
|
||||
self.text.insert_at_cursor(" at %s:%d\n" % (frame["filename"],
|
||||
frame["line"]))
|
||||
if frame["solib"] is not None:
|
||||
self.text.insert_at_cursor(" [%s]\n" % frame["solib"])
|
||||
|
||||
@in_gdb_thread
|
||||
def on_event(self):
|
||||
frame_iter = None
|
||||
start_frame = gdb.newest_frame()
|
||||
if not self.raw:
|
||||
frame_iter = gdb.frames.execute_frame_filters(start_frame, 0, -1)
|
||||
if frame_iter is None:
|
||||
frame_iter = map(gdb.FrameDecorator.FrameDecorator,
|
||||
gdb.FrameIterator.FrameIterator(start_frame))
|
||||
data = list(map(format_frame, frame_iter))
|
||||
gui.startup.send_to_gtk(lambda: self._update(data))
|
||||
|
||||
@in_gtk_thread
|
||||
def set_font(self, pango_font):
|
||||
self.view.modify_font(pango_font)
|
||||
|
||||
def show_stack():
|
||||
# for now
|
||||
StackWindow()
|
||||
81
gui/stackwindow.xml
Normal file
81
gui/stackwindow.xml
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generated with glade 3.18.3 -->
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.12"/>
|
||||
<object class="GtkWindow" id="stackwindow">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="default_width">200</property>
|
||||
<property name="default_height">400</property>
|
||||
<child>
|
||||
<object class="GtkBox" id="box1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<child>
|
||||
<object class="GtkToolbar" id="toolbar1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<object class="GtkToolButton" id="up">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="tooltip_text" translatable="yes">Up one frame</property>
|
||||
<property name="label" translatable="yes">Up</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="icon_name">go-down</property>
|
||||
<accelerator key="u" signal="clicked"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="homogeneous">True</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkToolButton" id="down">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="tooltip_text" translatable="yes">Down one frame</property>
|
||||
<property name="label" translatable="yes">Down</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="icon_name">go-up</property>
|
||||
<accelerator key="d" signal="clicked"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="homogeneous">True</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkScrolledWindow" id="scrolledwindow1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="shadow_type">in</property>
|
||||
<child>
|
||||
<object class="GtkTextView" id="view">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="editable">False</property>
|
||||
<property name="left_margin">2</property>
|
||||
<property name="right_margin">2</property>
|
||||
<property name="indent">-1</property>
|
||||
<property name="cursor_visible">False</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
||||
Reference in New Issue
Block a user