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
|
/* This file is part of the KDE libraries
Copyright (C) 2001 Malte Starostik <malte@kde.org>
Copyright (C) 2001 Leon Bottou <leon@bottou.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "djvucreator.h"
#include <config-runtime.h>
#include <assert.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <sys/time.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <errno.h>
#include <QFile>
#include <QImage>
extern "C"
{
Q_DECL_EXPORT ThumbCreator *new_creator()
{
return new DjVuCreator;
}
}
bool DjVuCreator::create(const QString &path, int width, int height, QImage &img)
{
int output[2];
QByteArray data(1024, 'k');
bool ok = false;
if (pipe(output) == -1)
return false;
const char* argv[8];
QByteArray sizearg, fnamearg;
sizearg = QByteArray::number(width) + 'x' + QByteArray::number(height);
fnamearg = QFile::encodeName( path );
argv[0] = "ddjvu";
argv[1] = "-page";
argv[2] = "1"; // krazy:exclude=doublequote_chars
argv[3] = "-size";
argv[4] = sizearg.data();
argv[5] = fnamearg.data();
argv[6] = nullptr;
pid_t pid = fork();
if (pid == 0)
{
close(output[0]);
dup2(output[1], STDOUT_FILENO);
execvp(argv[0], const_cast<char *const *>(argv));
exit(1);
}
else if (pid >= 0)
{
close(output[1]);
int offset = 0;
while (!ok) {
fd_set fds;
FD_ZERO(&fds);
FD_SET(output[0], &fds);
struct timeval tv;
tv.tv_sec = 20;
tv.tv_usec = 0;
if (select(output[0] + 1, &fds, nullptr, nullptr, &tv) <= 0) {
if (errno == EINTR || errno == EAGAIN)
continue;
break; // error or timeout
}
if (FD_ISSET(output[0], &fds)) {
int count = read(output[0], data.data() + offset, 1024);
if (count == -1)
break;
if (count) // prepare for next block
{
offset += count;
data.resize(offset + 1024);
}
else // got all data
{
data.resize(offset);
ok = true;
}
}
}
if (!ok)
kill(pid, SIGTERM);
int status = 0;
if (waitpid(pid, &status, 0) != pid || (status != 0 && status != 256) )
ok = false;
}
else
{
close(output[1]);
}
close(output[0]);
int l = img.loadFromData( data );
return ok && l;
}
ThumbCreator::Flags DjVuCreator::flags() const
{
return static_cast<Flags>(None);
}
|