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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#include "docim.h"
#include "gtwriter.h"
#include "scpaths.h"
#include "scribusstructs.h"
#include <QObject>
#include <QByteArray>
#include <QMessageBox>
#include <QProcess>
#include <QString>
#include <QStringList>
#include <QTextCodec>
#if defined(_WIN32) && !defined(usleep)
#include <windows.h>
#define usleep(t) Sleep((t > 1000) ? (t / 1000) : 1)
#endif
bool hasAntiword()
{
static bool searched = false, found = false;
if (searched) // searched already in this run
return found;
QProcess *test = new QProcess();
QString exename("antiword");
#if defined(_WIN32)
exename = ScPaths::instance().libDir() + "tools/antiword/antiword.exe";
#endif
test->start(exename, QStringList());
if (test->waitForStarted())
{
found = true;
test->terminate();
usleep(5000);
test->kill();
}
delete test;
searched = true;
return found;
}
QString FileFormatName()
{
if (hasAntiword())
return QObject::tr("Word Documents");
else
return QString::null;
}
QStringList FileExtensions()
{
if (hasAntiword())
return QStringList("doc");
else
return QStringList();
}
void GetText(QString filename, QString encoding, bool textOnly, gtWriter *writer)
{
if (!hasAntiword())
return;
DocIm *dim = new DocIm(filename, encoding, textOnly, writer);
while (dim->isRunning())
{
usleep(5000);
}
delete dim;
}
DocIm::DocIm(const QString& fname, const QString& enc, bool textO, gtWriter *w) : QObject(), textBuffer(this), errorBuffer(this)
{
filename = fname;
encoding = enc;
writer = w;
textOnly = textO;
failed = false;
textBuffer.open(QIODevice::WriteOnly);
errorBuffer.open(QIODevice::WriteOnly);
proc = new QProcess();
QString exename("antiword");
#if defined(Q_OS_WIN32)
exename = ScPaths::instance().libDir() + "tools/antiword/antiword.exe";
QString homeDir = QDir::toNativeSeparators(ScPaths::instance().libDir() + "tools");
proc->setWorkingDirectory( ScPaths::instance().libDir() + "tools/antiword/" );
proc->setEnvironment( QStringList() << QString("HOME=%1").arg(homeDir));
#endif
QStringList args;
args << "-t" << "-w 0";
#if defined(Q_OS_WIN32)
// #10258 : use UTF-8 whenever possible
if (QFile::exists(ScPaths::instance().libDir() + "tools/antiword/UTF-8.txt"))
args << "-m" << "UTF-8.txt";
#endif
args << QDir::toNativeSeparators(filename);
//connect(proc, SIGNAL(readyReadStdout()), this, SLOT(slotReadOutput()));
//connect(proc, SIGNAL(readyReadStderr()), this, SLOT(slotReadErr()));
proc->start(exename, args);
if (!proc->waitForStarted())
{
failed = true;
return;
}
while (proc->waitForReadyRead())
{
usleep(5000);
}
while(!proc->atEnd() || proc->state()==QProcess::Running)
{
proc->setReadChannel(QProcess::StandardOutput);
if ( proc->canReadLine() )
{
QByteArray bo = proc->readAllStandardOutput();
if (bo.size() > 0)
textBuffer.write(bo);
}
else
{
proc->setReadChannel(QProcess::StandardError);
if ( proc->canReadLine() )
{
QByteArray be = proc->readAllStandardError();
if (be.size() > 0)
errorBuffer.write(be);
}
else
{
usleep(5000);
}
}
}
errorBuffer.close();
textBuffer.close();
if (proc->exitStatus() != QProcess::NormalExit)
{
failed = true;
return;
}
write();
}
bool DocIm::isRunning()
{
return proc->state() == QProcess::Running;
}
void DocIm::write()
{
QTextCodec *codec = 0;
#if defined(Q_OS_WIN32)
// #10258 : use UTF-8 whenever possible
if (QFile::exists(ScPaths::instance().libDir() + "tools/antiword/UTF-8.txt"))
codec = QTextCodec::codecForName("UTF-8");
#endif
if (encoding.isEmpty() && !codec)
codec = QTextCodec::codecForLocale();
else if (!codec)
codec = QTextCodec::codecForName(encoding.toLocal8Bit());
if (failed)
{
QString error = codec->toUnicode( errorBuffer.data() );
QMessageBox::information(0, tr("Importing failed"),
tr("Importing Word document failed \n%1").arg(error),
QMessageBox::Ok);
return;
}
QString text = codec->toUnicode( textBuffer.data() );
writer->appendUnstyled(text);
}
DocIm::~DocIm()
{
delete proc;
}
|