forked from goldendict/goldendict
-
Notifications
You must be signed in to change notification settings - Fork 1
/
externalviewer.cc
50 lines (41 loc) · 1.62 KB
/
externalviewer.cc
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
/* This file is (c) 2008-2012 Konstantin Isakov <[email protected]>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include <QDir>
#include "externalviewer.hh"
#include "parsecmdline.hh"
#include "dprintf.hh"
using std::vector;
ExternalViewer::ExternalViewer( QObject * parent, vector< char > const & data,
QString const & extension,
QString const & viewerCmdLine_ )
throw( exCantCreateTempFile ):
QObject( parent ),
tempFile( QDir::temp().filePath( QString( "gd-XXXXXXXX." ) + extension ) ),
viewer( this ),
viewerCmdLine( viewerCmdLine_ )
{
if ( !tempFile.open() || tempFile.write( &data.front(), data.size() ) != data.size() )
throw exCantCreateTempFile();
tempFileName = tempFile.fileName(); // For some reason it loses it after it was closed()
tempFile.close();
DPRINTF( "%s\n", tempFile.fileName().toLocal8Bit().data() );
}
void ExternalViewer::start() throw( exCantRunViewer )
{
connect( &viewer, SIGNAL( finished( int, QProcess::ExitStatus ) ),
this, SLOT( deleteLater() ) );
connect( &viewer, SIGNAL( error( QProcess::ProcessError ) ),
this, SLOT( deleteLater() ) );
QStringList args = parseCommandLine( viewerCmdLine );
if ( !args.isEmpty() )
{
QString program = args.first();
args.pop_front();
args.push_back( tempFileName );
viewer.start( program, args, QIODevice::NotOpen );
if ( !viewer.waitForStarted() )
throw exCantRunViewer( viewerCmdLine.toUtf8().data() );
}
else
throw exCantRunViewer( tr( "the viewer program name is empty" ).toUtf8().data() );
}