mirror of
https://github.com/SELinuxProject/setools
synced 2025-05-16 23:29:16 +00:00
https://doc.qt.io/qtforpython-6/considerations.html#the-new-python-enums In PyQt5, it's possible to use members of enums in the same scope as enums, e.g. Qt.red. This is not possible in PyQt6, but both PyQt5 and PyQt6 support the new python enums - Qt.GlobalColor.red This change prepares the code for the future transition to PyQt6. Signed-off-by: Petr Lautrbach <lautrbach@redhat.com>
195 lines
6.9 KiB
Python
195 lines
6.9 KiB
Python
# Copyright 2016, Tresys Technology, LLC
|
|
#
|
|
# SPDX-License-Identifier: LGPL-2.1-only
|
|
#
|
|
#
|
|
|
|
import logging
|
|
from contextlib import suppress
|
|
|
|
from PyQt5.QtCore import Qt, QSortFilterProxyModel, QStringListModel, QThread
|
|
from PyQt5.QtGui import QPalette, QTextCursor
|
|
from PyQt5.QtWidgets import QCompleter, QHeaderView, QMessageBox, QProgressDialog
|
|
from setools import BoundsQuery
|
|
|
|
from ..logtosignal import LogHandlerToSignal
|
|
from ..models import SEToolsListModel, invert_list_selection
|
|
from ..boundsmodel import BoundsTableModel
|
|
from .analysistab import AnalysisSection, AnalysisTab
|
|
from .exception import TabFieldError
|
|
from .queryupdater import QueryResultsUpdater
|
|
from .workspace import load_checkboxes, load_lineedits, load_textedits, \
|
|
save_checkboxes, save_lineedits, save_textedits
|
|
|
|
|
|
class BoundsQueryTab(AnalysisTab):
|
|
|
|
"""Bounds browser and query tab."""
|
|
|
|
section = AnalysisSection.Other
|
|
tab_title = "Bounds"
|
|
mlsonly = False
|
|
|
|
def __init__(self, parent, policy, perm_map):
|
|
super(BoundsQueryTab, self).__init__(parent)
|
|
self.log = logging.getLogger(__name__)
|
|
self.policy = policy
|
|
self.query = BoundsQuery(policy)
|
|
self.setupUi()
|
|
|
|
def __del__(self):
|
|
with suppress(RuntimeError):
|
|
self.thread.quit()
|
|
self.thread.wait(5000)
|
|
|
|
logging.getLogger("setools.boundsquery").removeHandler(self.handler)
|
|
|
|
def setupUi(self):
|
|
self.load_ui("apol/boundsquery.ui")
|
|
|
|
# set up results
|
|
self.table_results_model = BoundsTableModel(self)
|
|
self.sort_proxy = QSortFilterProxyModel(self)
|
|
self.sort_proxy.setSourceModel(self.table_results_model)
|
|
self.table_results.setModel(self.sort_proxy)
|
|
self.table_results.sortByColumn(1, Qt.SortOrder.AscendingOrder)
|
|
|
|
# setup indications of errors on level/range
|
|
self.errors = set()
|
|
self.orig_palette = self.parent.palette()
|
|
self.error_palette = self.parent.palette()
|
|
self.error_palette.setColor(QPalette.ColorRole.Base, Qt.GlobalColor.red)
|
|
self.clear_parent_error()
|
|
self.clear_child_error()
|
|
|
|
# set up processing thread
|
|
self.thread = QThread()
|
|
self.worker = QueryResultsUpdater(self.query, self.table_results_model)
|
|
self.worker.moveToThread(self.thread)
|
|
self.worker.raw_line.connect(self.raw_results.appendPlainText)
|
|
self.worker.finished.connect(self.update_complete)
|
|
self.worker.finished.connect(self.thread.quit)
|
|
self.thread.started.connect(self.worker.update)
|
|
|
|
# create a "busy, please wait" dialog
|
|
self.busy = QProgressDialog(self)
|
|
self.busy.setModal(True)
|
|
self.busy.setRange(0, 0)
|
|
self.busy.setMinimumDuration(0)
|
|
self.busy.canceled.connect(self.thread.requestInterruption)
|
|
self.busy.reset()
|
|
|
|
# update busy dialog from query INFO logs
|
|
self.handler = LogHandlerToSignal()
|
|
self.handler.message.connect(self.busy.setLabelText)
|
|
logging.getLogger("setools.boundsquery").addHandler(self.handler)
|
|
|
|
# Ensure settings are consistent with the initial .ui state
|
|
self.notes.setHidden(not self.notes_expander.isChecked())
|
|
|
|
# connect signals
|
|
self.parent.textEdited.connect(self.clear_parent_error)
|
|
self.parent.editingFinished.connect(self.set_parent)
|
|
self.parent_regex.toggled.connect(self.set_parent_regex)
|
|
self.child.textEdited.connect(self.clear_child_error)
|
|
self.child.editingFinished.connect(self.set_child)
|
|
self.child_regex.toggled.connect(self.set_child_regex)
|
|
self.buttonBox.clicked.connect(self.run)
|
|
|
|
#
|
|
# Parent criteria
|
|
#
|
|
def clear_parent_error(self):
|
|
self.clear_criteria_error(self.parent, "Match the parent type.")
|
|
|
|
def set_parent(self):
|
|
try:
|
|
self.query.parent = self.parent.text()
|
|
except Exception as ex:
|
|
self.log.error("Type parent error: {0}".format(ex))
|
|
self.set_criteria_error(self.parent, ex)
|
|
|
|
def set_parent_regex(self, state):
|
|
self.log.debug("Setting parent_regex {0}".format(state))
|
|
self.query.parent_regex = state
|
|
self.clear_parent_error()
|
|
self.set_parent()
|
|
|
|
#
|
|
# Child criteria
|
|
#
|
|
def clear_child_error(self):
|
|
self.clear_criteria_error(self.child, "Match the child type.")
|
|
|
|
def set_child(self):
|
|
try:
|
|
self.query.child = self.child.text()
|
|
except Exception as ex:
|
|
self.log.error("Type child error: {0}".format(ex))
|
|
self.set_criteria_error(self.child, ex)
|
|
|
|
def set_child_regex(self, state):
|
|
self.log.debug("Setting child_regex {0}".format(state))
|
|
self.query.child_regex = state
|
|
self.clear_child_error()
|
|
self.set_child()
|
|
|
|
#
|
|
# Save/Load tab
|
|
#
|
|
def save(self):
|
|
"""Return a dictionary of settings."""
|
|
if self.errors:
|
|
raise TabFieldError("Field(s) are in error: {0}".
|
|
format(" ".join(o.objectName() for o in self.errors)))
|
|
|
|
settings = {}
|
|
save_checkboxes(self, settings, ["criteria_expander", "notes_expander",
|
|
"typebounds",
|
|
"parent_regex", "child_regex"])
|
|
save_lineedits(self, settings, ["parent", "child"])
|
|
save_textedits(self, settings, ["notes"])
|
|
return settings
|
|
|
|
def load(self, settings):
|
|
load_checkboxes(self, settings, ["criteria_expander", "notes_expander",
|
|
"typebounds",
|
|
"parent_regex", "child_regex"])
|
|
load_lineedits(self, settings, ["parent", "child"])
|
|
load_textedits(self, settings, ["notes"])
|
|
|
|
#
|
|
# Results runner
|
|
#
|
|
def run(self, button):
|
|
# right now there is only one button.
|
|
self.query.parent_regex = self.parent_regex.isChecked()
|
|
self.query.child_regex = self.child_regex.isChecked()
|
|
|
|
# start processing
|
|
self.busy.setLabelText("Processing query...")
|
|
self.busy.show()
|
|
self.raw_results.clear()
|
|
self.thread.start()
|
|
|
|
def update_complete(self, count):
|
|
self.log.info("{0} bound(s) found.".format(count))
|
|
|
|
# update sizes/location of result displays
|
|
if not self.busy.wasCanceled():
|
|
self.busy.setLabelText("Resizing the result table's columns; GUI may be unresponsive")
|
|
self.busy.repaint()
|
|
self.table_results.resizeColumnsToContents()
|
|
|
|
if not self.busy.wasCanceled():
|
|
self.busy.setLabelText("Resizing the result table's rows; GUI may be unresponsive")
|
|
self.busy.repaint()
|
|
self.table_results.resizeRowsToContents()
|
|
|
|
if not self.busy.wasCanceled():
|
|
self.busy.setLabelText("Moving the raw result to top; GUI may be unresponsive")
|
|
self.busy.repaint()
|
|
self.raw_results.moveCursor(QTextCursor.MoveOperation.Start)
|
|
|
|
self.busy.reset()
|