]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
perf scripts python: exported-sql-viewer.py: Factor out TreeWindowBase
authorAdrian Hunter <adrian.hunter@intel.com>
Thu, 28 Feb 2019 13:00:28 +0000 (15:00 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 1 Mar 2019 17:54:39 +0000 (14:54 -0300)
Factor out a base class TreeWindowBase from CallGraphWindow, so that
TreeWindowBase can be reused.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: https://lkml.kernel.org/n/tip-ifirw0c0mhkwxg6l12lk6k4p@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/scripts/python/exported-sql-viewer.py

index 09ce73b07d358a2dfe9fa76a55e471b09ab7eaad..df854f0a69f08183c4e8e4efa2d46d10695748e6 100755 (executable)
@@ -693,28 +693,16 @@ class VBox():
        def Widget(self):
                return self.vbox
 
-# Context-sensitive call graph window
-
-class CallGraphWindow(QMdiSubWindow):
-
-       def __init__(self, glb, parent=None):
-               super(CallGraphWindow, self).__init__(parent)
+# Tree window base
 
-               self.model = LookupCreateModel("Context-Sensitive Call Graph", lambda x=glb: CallGraphModel(x))
+class TreeWindowBase(QMdiSubWindow):
 
-               self.view = QTreeView()
-               self.view.setModel(self.model)
-
-               for c, w in ((0, 250), (1, 100), (2, 60), (3, 70), (4, 70), (5, 100)):
-                       self.view.setColumnWidth(c, w)
-
-               self.find_bar = FindBar(self, self)
-
-               self.vbox = VBox(self.view, self.find_bar.Widget())
-
-               self.setWidget(self.vbox.Widget())
+       def __init__(self, parent=None):
+               super(TreeWindowBase, self).__init__(parent)
 
-               AddSubWindow(glb.mainwindow.mdi_area, self, "Context-Sensitive Call Graph")
+               self.model = None
+               self.view = None
+               self.find_bar = None
 
        def DisplayFound(self, ids):
                if not len(ids):
@@ -747,6 +735,30 @@ class CallGraphWindow(QMdiSubWindow):
                if not found:
                        self.find_bar.NotFound()
 
+
+# Context-sensitive call graph window
+
+class CallGraphWindow(TreeWindowBase):
+
+       def __init__(self, glb, parent=None):
+               super(CallGraphWindow, self).__init__(parent)
+
+               self.model = LookupCreateModel("Context-Sensitive Call Graph", lambda x=glb: CallGraphModel(x))
+
+               self.view = QTreeView()
+               self.view.setModel(self.model)
+
+               for c, w in ((0, 250), (1, 100), (2, 60), (3, 70), (4, 70), (5, 100)):
+                       self.view.setColumnWidth(c, w)
+
+               self.find_bar = FindBar(self, self)
+
+               self.vbox = VBox(self.view, self.find_bar.Widget())
+
+               self.setWidget(self.vbox.Widget())
+
+               AddSubWindow(glb.mainwindow.mdi_area, self, "Context-Sensitive Call Graph")
+
 # Child data item  finder
 
 class ChildDataItemFinder():