diff -r 012c492a9bd6 -r e691c51ab655 ProjectPyramid/PyramidDialog.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectPyramid/PyramidDialog.py Tue Aug 28 17:15:21 2012 +0200 @@ -0,0 +1,290 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2012 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a dialog starting a process and showing its output. +""" + +import os + +from PyQt4.QtCore import QProcess, QTimer, pyqtSlot, Qt, QCoreApplication +from PyQt4.QtGui import QDialog, QDialogButtonBox, QLineEdit, QTextEdit + +from E5Gui import E5MessageBox + +from .Ui_PyramidDialog import Ui_PyramidDialog + +import Preferences +from Globals import isWindowsPlatform + + +class PyramidDialog(QDialog, Ui_PyramidDialog): + """ + Class implementing a dialog starting a process and showing its output. + + It starts a QProcess and displays a dialog that + shows the output of the process. The dialog is modal, + which causes a synchronized execution of the process. + """ + def __init__(self, text, fixed = False, linewrap = True, + msgSuccess = None, msgError = None, + parent = None): + """ + Constructor + + @param text text to be shown by the label (string or QString) + @keyparam fixed flag indicating a fixed font should be used (boolean) + @keyparam linewrap flag indicating to wrap long lines (boolean) + @keyparam msgSuccess optional string to show upon successful execution + (string or QString) + @keyparam msgError optional string to show upon unsuccessful execution + (string or QString) + @keyparam parent parent widget (QWidget) + """ + super().__init__(parent) + self.setupUi(self) + + self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) + self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) + + self.proc = None + self.argsLists = [] + self.workingDir = None + self.msgSuccess = msgSuccess + self.msgError = msgError + + self.outputGroup.setTitle(text) + + if fixed: + if isWindowsPlatform(): + self.resultbox.setFontFamily("Lucida Console") + else: + self.resultbox.setFontFamily("Monospace") + + if not linewrap: + self.resultbox.setLineWrapMode(QTextEdit.NoWrap) + + self.show() + QCoreApplication.processEvents() + + def finish(self): + """ + Public slot called when the process finished or the user pressed the button. + """ + if self.proc is not None and \ + self.proc.state() != QProcess.NotRunning: + self.proc.terminate() + QTimer.singleShot(2000, self.proc.kill) + self.proc.waitForFinished(3000) + + self.inputGroup.setEnabled(False) + self.inputGroup.hide() + + self.proc = None + + self.buttonBox.button(QDialogButtonBox.Close).setEnabled(True) + self.buttonBox.button(QDialogButtonBox.Cancel).setEnabled(False) + self.buttonBox.button(QDialogButtonBox.Close).setDefault(True) + self.buttonBox.button(QDialogButtonBox.Close).setFocus(Qt.OtherFocusReason) + + if self.argsLists: + args = self.argsLists[0][:] + del self.argsLists[0] + self.startProcess(args, self.workingDir) + + def on_buttonBox_clicked(self, button): + """ + Private slot called by a button of the button box clicked. + + @param button button that was clicked (QAbstractButton) + """ + if button == self.buttonBox.button(QDialogButtonBox.Close): + self.close() + elif button == self.buttonBox.button(QDialogButtonBox.Cancel): + self.finish() + + def __procFinished(self, exitCode, exitStatus): + """ + Private slot connected to the finished signal. + + @param exitCode exit code of the process (integer) + @param exitStatus exit status of the process (QProcess.ExitStatus) + """ + self.normal = (exitStatus == QProcess.NormalExit) and (exitCode == 0) + self.finish() + + if self.normal and self.msgSuccess: + self.resultbox.insertPlainText(self.msgSuccess) + elif not self.normal and self.msgError: + self.resultbox.insertPlainText(self.msgError) + self.resultbox.ensureCursorVisible() + + def startProcess(self, command, args, workingDir=None, showArgs=True): + """ + Public slot used to start the process. + + @param command command to start (string) + @param args list of arguments for the process (list of strings) + @keyparam workingDir working directory for the process (string) + @keyparam showArgs flag indicating to show the arguments (boolean) + @return flag indicating a successful start of the process + """ + self.errorGroup.hide() + self.normal = False + self.intercept = False + + self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) + self.buttonBox.button(QDialogButtonBox.Cancel).setEnabled(True) + self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) + self.buttonBox.button(QDialogButtonBox.Cancel).setFocus(Qt.OtherFocusReason) + + if showArgs: + self.resultbox.append(command + ' ' + ' '.join(args)) + self.resultbox.append('') + + self.proc = QProcess() + + self.proc.finished.connect(self.__procFinished) + self.proc.readyReadStandardOutput.connect(self.__readStdout) + self.proc.readyReadStandardError.connect(self.__readStderr) + + if workingDir: + self.proc.setWorkingDirectory(workingDir) + self.proc.start(command, args) + procStarted = self.proc.waitForStarted() + if not procStarted: + self.buttonBox.setFocus() + self.inputGroup.setEnabled(False) + E5MessageBox.critical(self, + self.trUtf8('Process Generation Error'), + self.trUtf8( + 'The process {0} could not be started. ' + 'Ensure, that it is in the search path.' + ).format(command)) + else: + self.inputGroup.setEnabled(True) + self.inputGroup.show() + return procStarted + + def startBatchProcesses(self, argsLists, workingDir = None): + """ + Public slot used to start a batch of processes. + + @param argsLists list of lists of arguments for the processes + (list of list of string) + @param workingDir working directory for the process (string) + @return flag indicating a successful start of the first process (boolean) + """ + self.argsLists = argsLists[:] + self.workingDir = workingDir + + # start the first process + args = self.argsLists[0][:] + del self.argsLists[0] + res = self.startProcess(args, self.workingDir) + if not res: + self.argsLists = [] + + return res + + def normalExit(self): + """ + Public method to check for a normal process termination. + + @return flag indicating normal process termination (boolean) + """ + return self.normal + + def normalExitWithoutErrors(self): + """ + Public method to check for a normal process termination without + error messages. + + @return flag indicating normal process termination (boolean) + """ + return self.normal and self.errors.toPlainText() == "" + + def __readStdout(self): + """ + Private slot to handle the readyReadStandardOutput signal. + + It reads the output of the process, formats it and inserts it into + the contents pane. + """ + if self.proc is not None: + out = str(self.proc.readAllStandardOutput(), + Preferences.getSystem("IOEncoding"), + 'replace') + self.resultbox.insertPlainText(out) + self.resultbox.ensureCursorVisible() + + QCoreApplication.processEvents() + + def __readStderr(self): + """ + Private slot to handle the readyReadStandardError signal. + + It reads the error output of the process and inserts it into the + error pane. + """ + if self.proc is not None: + err = str(self.proc.readAllStandardError(), + Preferences.getSystem("IOEncoding"), + 'replace') + self.errorGroup.show() + self.errors.insertPlainText(err) + self.errors.ensureCursorVisible() + + QCoreApplication.processEvents() + + def on_passwordCheckBox_toggled(self, isOn): + """ + Private slot to handle the password checkbox toggled. + + @param isOn flag indicating the status of the check box (boolean) + """ + if isOn: + self.input.setEchoMode(QLineEdit.Password) + else: + self.input.setEchoMode(QLineEdit.Normal) + + @pyqtSlot() + def on_sendButton_clicked(self): + """ + Private slot to send the input to the subversion process. + """ + input = self.input.text() + input += os.linesep + + if self.passwordCheckBox.isChecked(): + self.errors.insertPlainText(os.linesep) + self.errors.ensureCursorVisible() + else: + self.resultbox.insertPlainText(input) + self.resultbox.ensureCursorVisible() + + self.proc.write(input) + + self.passwordCheckBox.setChecked(False) + self.input.clear() + + def on_input_returnPressed(self): + """ + Private slot to handle the press of the return key in the input field. + """ + self.intercept = True + self.on_sendButton_clicked() + + def keyPressEvent(self, evt): + """ + Protected slot to handle a key press event. + + @param evt the key press event (QKeyEvent) + """ + if self.intercept: + self.intercept = False + evt.accept() + return + super().keyPressEvent(evt)