File: GenericUtility.cpp

package info (click to toggle)
herculesstudio 1.5.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,376 kB
  • sloc: cpp: 17,077; xml: 21; makefile: 13
file content (137 lines) | stat: -rwxr-xr-x 3,835 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
 *  File:       GenericUtility.h
 *
 *  Author:     Jacob Dekel
 *  Created on: Aug 26, 2010
 *
 *  Copyright (c) 2010 Jacob Dekel
 *  $Id$
 *
 *  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/>.
 *
 */

#include "GenericUtility.h"
#include "UtilityExecutor.h"

#include <QMessageBox>
#include <QTimer>

GenericUtility::GenericUtility(QString name, QWidget *parent) :
QDialog(parent),
mName(name),
mExecutor(NULL), 
mRunner(NULL),
mErrorRunner(NULL)
{
	
}

GenericUtility::~GenericUtility()
{
	delete mRunner;
	delete mErrorRunner;
	delete mExecutor;
}

bool GenericUtility::runOrStopClicked()
{
    if (mExecutor != NULL)
    {
		mExecutor->terminate();
		mExecutor = NULL;
        QMessageBox::warning(this, mName,
                                            mName +" operation was aborted at user's request",
                                            QMessageBox::Ok,
                                            QMessageBox::NoButton);
        return false;
    }
    else
    {
    	return true;
    }
}

int GenericUtility::execute(const std::string & command, const std::string& path, std::vector<std::string>& parameters, const QString &workingDirectory)
{
	mStarted = true;
	mFinished = false;
    parameters.push_back("EXTERNALGUI");

    mExecutor = new UtilityExecutor(this);
    mRunner = new UtilityRunner(mExecutor);
    mErrorRunner = new UtilityRunner(mExecutor);
    emit output(getFlatCommand(command,path,parameters).c_str());
    int ret = mExecutor->run(command, path, parameters, mRunner, mErrorRunner, workingDirectory);

    // do not wait forever
    //QTimer::singleShot(2000, this, SLOT(timeout()));

    // we should know if finished
    connect(mExecutor->getQProcess(),SIGNAL(finished(int,QProcess::ExitStatus)),this,SLOT(finished(int, QProcess::ExitStatus)));

    // connect to default handlers (superclass can override these slots)
    connect(mRunner, SIGNAL(error(QByteArray)), this, SLOT(runnerError(QByteArray)));
    connect(mErrorRunner, SIGNAL(error(QByteArray)), this, SLOT(runnerError(QByteArray)));

    // general error status handler
    connect(this, SIGNAL(error()), this, SLOT(errorSlot()));

    return ret;
}

void GenericUtility::timeout()
{
}

void GenericUtility::finished(int result, QProcess::ExitStatus status)
{
	mFinished = true;
	mRc = result;
	mFinishedOK = ( (status==QProcess::NormalExit) && (mRc == 0) );
	QByteArray rcLine = mName.toUtf8() + " ended; rc=";
	rcLine += QString::number(result);
	emit output(rcLine);
	finishedSlot();
}

void GenericUtility::errorSlot()
{
    QMessageBox::warning(this, mName,
                                mName + " failed. Please check the log for details",
                                QMessageBox::Ok,
                                QMessageBox::NoButton);
    deleteLater();
}

void GenericUtility::runnerError(const QByteArray& line)
{
    emit output(line);
}

std::string GenericUtility::getFlatCommand(const std::string & command, const std::string& path, std::vector<std::string>& parameters)
{
	std::string result;
	result = path;
	if (path.size() > 0 ) result += "/";
	result+=command;
	for (unsigned int i = 0;
			i < parameters.size()-1;
			i++)
	{
		result += " ";
		result+=parameters[i];
	}
	return result;
}