mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Rename ApplicationCode to ApplicationLibCode
This commit is contained in:
216
ApplicationLibCode/UserInterface/RiuProcessMonitor.cpp
Normal file
216
ApplicationLibCode/UserInterface/RiuProcessMonitor.cpp
Normal file
@@ -0,0 +1,216 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
||||
//
|
||||
// ResInsight 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.
|
||||
//
|
||||
// ResInsight 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 at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "RiaApplication.h"
|
||||
#include "RiaGuiApplication.h"
|
||||
|
||||
#include "RiuMessagePanel.h"
|
||||
#include "RiuPlotMainWindow.h"
|
||||
#include "RiuProcessMonitor.h"
|
||||
|
||||
#include "cafUiProcess.h"
|
||||
|
||||
#include <QDockWidget>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QPlainTextEdit>
|
||||
#include <QPushButton>
|
||||
#include <QWidget>
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RiuProcessMonitor::RiuProcessMonitor( QDockWidget* pParent )
|
||||
: QWidget( pParent )
|
||||
{
|
||||
m_monitoredProcess = nullptr;
|
||||
|
||||
QLabel* pLabel = new QLabel( "Status:", this );
|
||||
pLabel->setSizePolicy( QSizePolicy::Fixed, QSizePolicy::Minimum );
|
||||
m_labelStatus = new QLabel( this );
|
||||
|
||||
QHBoxLayout* pTopLayout = new QHBoxLayout;
|
||||
pTopLayout->addWidget( pLabel );
|
||||
pTopLayout->addWidget( m_labelStatus );
|
||||
|
||||
pTopLayout->addStretch();
|
||||
QPushButton* clearPushButton = new QPushButton( "Clear", this );
|
||||
pTopLayout->addWidget( clearPushButton );
|
||||
connect( clearPushButton, SIGNAL( clicked() ), this, SLOT( slotClearTextEdit() ) );
|
||||
|
||||
m_terminatePushButton = new QPushButton( "Stop", this );
|
||||
pTopLayout->addWidget( m_terminatePushButton );
|
||||
connect( m_terminatePushButton, SIGNAL( clicked() ), this, SLOT( slotTerminateProcess() ) );
|
||||
m_terminatePushButton->setEnabled( false );
|
||||
|
||||
m_textEdit = new QPlainTextEdit( this );
|
||||
m_textEdit->setReadOnly( true );
|
||||
m_textEdit->setLineWrapMode( QPlainTextEdit::NoWrap );
|
||||
|
||||
QVBoxLayout* pLayout = new QVBoxLayout();
|
||||
pLayout->addLayout( pTopLayout );
|
||||
pLayout->addWidget( m_textEdit );
|
||||
|
||||
pLayout->setContentsMargins( 0, 0, 0, 0 );
|
||||
|
||||
setLayout( pLayout );
|
||||
|
||||
setStatusMsg( "N/A", caf::PROCESS_STATE_NORMAL );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RiuProcessMonitor::~RiuProcessMonitor()
|
||||
{
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::startMonitorWorkProcess( caf::UiProcess* pProcess )
|
||||
{
|
||||
setStatusMsg( "N/A", caf::PROCESS_STATE_NORMAL );
|
||||
|
||||
if ( m_monitoredProcess == pProcess ) return;
|
||||
|
||||
m_monitoredProcess = pProcess;
|
||||
if ( !m_monitoredProcess ) return;
|
||||
|
||||
connect( m_monitoredProcess,
|
||||
SIGNAL( signalStatusMsg( const QString&, int ) ),
|
||||
SLOT( slotShowProcStatusMsg( const QString&, int ) ) );
|
||||
connect( m_monitoredProcess, SIGNAL( readyReadStandardError() ), SLOT( slotProcReadyReadStdErr() ) );
|
||||
connect( m_monitoredProcess, SIGNAL( readyReadStandardOutput() ), SLOT( slotProcReadyReadStdOut() ) );
|
||||
|
||||
m_terminatePushButton->setEnabled( true );
|
||||
|
||||
QString timeStamp = QTime::currentTime().toString( "hh:mm:ss" );
|
||||
addStringToLog( timeStamp + " Process starting\n" );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::stopMonitorWorkProcess()
|
||||
{
|
||||
m_monitoredProcess = nullptr;
|
||||
|
||||
m_terminatePushButton->setEnabled( false );
|
||||
|
||||
setStatusMsg( "N/A", caf::PROCESS_STATE_NORMAL );
|
||||
|
||||
QString timeStamp = QTime::currentTime().toString( "hh:mm:ss" );
|
||||
addStringToLog( timeStamp + " Process finished\n\n" );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::setStatusMsg( const QString& sStatusMsg, int iStatusMsgType )
|
||||
{
|
||||
if ( !m_labelStatus ) return;
|
||||
|
||||
QString sMsg;
|
||||
|
||||
switch ( iStatusMsgType )
|
||||
{
|
||||
case caf::PROCESS_STATE_RUNNING:
|
||||
sMsg = "<font color='green'>" + sStatusMsg + "</font>";
|
||||
break;
|
||||
case caf::PROCESS_STATE_ERROR:
|
||||
sMsg = "<font color='red'>" + sStatusMsg + "</font>";
|
||||
break;
|
||||
default:
|
||||
sMsg = sStatusMsg;
|
||||
}
|
||||
|
||||
m_labelStatus->setText( sMsg );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::addStringToLog( const QString& sTxt )
|
||||
{
|
||||
m_textEdit->moveCursor( QTextCursor::End );
|
||||
m_textEdit->insertPlainText( sTxt );
|
||||
|
||||
m_textEdit->ensureCursorVisible();
|
||||
|
||||
RiuPlotMainWindow* mainPlotWindow = RiaGuiApplication::instance()->mainPlotWindow();
|
||||
if ( mainPlotWindow && mainPlotWindow->messagePanel() )
|
||||
{
|
||||
mainPlotWindow->messagePanel()->addMessage( RILogLevel::RI_LL_INFO, sTxt );
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::slotShowProcStatusMsg( const QString& sMsg, int iStatusMsgType )
|
||||
{
|
||||
setStatusMsg( sMsg, iStatusMsgType );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::slotProcReadyReadStdOut()
|
||||
{
|
||||
if ( !m_monitoredProcess ) return;
|
||||
|
||||
QByteArray dataArray = m_monitoredProcess->readAllStandardOutput();
|
||||
|
||||
dataArray.replace( "\r", "" );
|
||||
|
||||
addStringToLog( dataArray.data() );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::slotProcReadyReadStdErr()
|
||||
{
|
||||
if ( !m_monitoredProcess ) return;
|
||||
|
||||
QByteArray dataArray = m_monitoredProcess->readAllStandardError();
|
||||
|
||||
dataArray.replace( "\r", "" );
|
||||
|
||||
addStringToLog( dataArray.data() );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::slotTerminateProcess()
|
||||
{
|
||||
addStringToLog( "Process terminated by user\n" );
|
||||
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
app->terminateProcess();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuProcessMonitor::slotClearTextEdit()
|
||||
{
|
||||
m_textEdit->clear();
|
||||
}
|
||||
Reference in New Issue
Block a user