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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
#include "Renderer.h"
#include "drawablepage.h"
#include "link.h"
//#include "lrucache.h"
#include <QThread>
#include <atomic>
#include <poppler/qt5/poppler-qt5.h>
static std::unique_ptr<Poppler::Document> DOC;
QHash<int, QImage> loadingHash;
//static std::vector<LuminaPDF::drawablePage> pages;
static std::vector<QList<LuminaPDF::Link *>> links;
static std::atomic<int> pagesStillLoading;
// static QHash<int, QList<LuminaPDF::Link *>> linkHash;
//static LuminaPDF::LRUCache<QImage> imageCache;
QSize DPI;
int ROTATE = 0;
Renderer::Renderer() : pnum(0), needpass(false), degrees(0) {
DOC.reset(nullptr);
pagesStillLoading = 1;
//imageCache.setCacheSize(5);
}
Renderer::~Renderer() {
// qDeleteAll(loadingHash);
//pages.clear();
for (auto &linkList : links) {
qDeleteAll(linkList);
}
loadingHash.clear();
}
bool Renderer::loadMultiThread() { return true; }
/*QJsonObject Renderer::properties(){
return QJsonObject(); //TO-DO
}*/
bool Renderer::loadDocument(QString path, QString password) {
// qDebug() << "Load Document:" << path;
if (DOC != nullptr && path != docpath) {
// Clear out the old document first
DOC.reset(nullptr);
//pages.clear();
links.clear();
needpass = false;
pnum = 0;
docpath = path;
}
// Load the Document (if needed);
if (DOC == nullptr) {
// qDebug() << "Loading Document";
DOC.reset(Poppler::Document::load(path));
docpath = path;
}
if (DOC == nullptr) {
qDebug() << "Could not open file:" << path;
return false;
}
if (DOC->isLocked()) {
// qDebug() << "Document Locked";
needpass = true;
if (password.isEmpty() or
!DOC->unlock(QByteArray(), password.toLocal8Bit())) {
return false;
} // invalid password
}
// qDebug() << "Opening File:" << path;
doctitle = DOC->title();
if (doctitle.isEmpty()) {
doctitle = path.section("/", -1);
}
pnum = DOC->numPages();
// Setup the Document
Poppler::Page *PAGE = DOC->page(0);
if (PAGE != 0) {
/*switch(PAGE->orientation()){
case Poppler::Page::Landscape:
WIDGET->setOrientation(QPageLayout::Landscape); break;
default:
WIDGET->setOrientation(QPageLayout::Portrait);
}*/
delete PAGE;
//pages.reserve(pnum + 1);
/*for (int i = 0; i < pnum + 1; ++i) {
LuminaPDF::drawablePage temp;
pages.emplace_back(std::move(temp));
}
for (int i = 0; i < pnum + 1; ++i) {
QList<LuminaPDF::Link *> temp;
links.push_back(temp);
}
*/
//pagesStillLoading = pnum;
return true; // could load the first page
}
return false; // nothing to load
}
void Renderer::renderPage(int pagenum, QSize DPI, int degrees) {
if(loadingHash.contains(pagenum)){ return; } //nothing to do
qDebug() << "Render Page:" << pagenum << DPI << degrees;
//emit SetProgress(pnum - pagesStillLoading);
if (DOC != nullptr) {
Poppler::Page *PAGE = DOC->page(pagenum - 1);
QImage img;
if (PAGE != nullptr) {
Poppler::Page::Rotation rotation;
switch (degrees) {
case 90:
rotation = Poppler::Page::Rotation::Rotate90;
break;
case 180:
rotation = Poppler::Page::Rotation::Rotate180;
break;
case 270:
rotation = Poppler::Page::Rotation::Rotate270;
break;
default:
rotation = Poppler::Page::Rotation::Rotate0;
}
LuminaPDF::drawablePage temp(PAGE, DPI, rotation);
//pages[pagenum] = std::move(temp);
img = PAGE->renderToImage(DPI.width(), DPI.height(), -1, -1, -1, -1,
rotation);
loadingHash.insert(pagenum, img);
/*QList<LuminaPDF::Link *> linkArray;
foreach (Poppler::Link *link, PAGE->links()) {
QString location;
if (link->linkType() == Poppler::Link::LinkType::Goto)
location = dynamic_cast<Poppler::LinkGoto *>(link)->fileName();
else if (link->linkType() == Poppler::Link::LinkType::Goto)
location = dynamic_cast<Poppler::LinkBrowse *>(link)->url();
LuminaPDF::Link *newLink = new LuminaPDF::Link(
new TextData(link->linkArea(), pagenum, location), link);
linkArray.append(newLink);
}
links[pagenum] = linkArray;
// linkHash.insert(pagenum, linkArray);
*/
}
//qDebug() << "Done Render Page:" << pagenum << img.size();
} else {
//pages[pagenum] = LuminaPDF::drawablePage();
loadingHash.insert(pagenum, QImage());
}
//if (pagesStillLoading > 0) {
emit PageLoaded(pagenum);
//}
//--pagesStillLoading;
}
bool Renderer::isDoneLoading(int page) { return loadingHash.contains(page); }
QList<TextData *> Renderer::searchDocument(QString text, bool matchCase) {
QList<TextData *> results;
for (int i = 0; i < pnum; i++) {
QList<Poppler::TextBox *> textList = DOC->page(i)->textList();
for (int j = 0; j < textList.size(); j++) {
if (textList[j]->text().contains(
text, (matchCase) ? Qt::CaseSensitive : Qt::CaseInsensitive)) {
TextData *t = new TextData(textList[j]->boundingBox(), i + 1, text);
results.append(t);
}
}
}
return results;
}
QSize Renderer::imageSize(int pagenum) {
if(!loadingHash.contains(pagenum)){ return QSize(); }
return loadingHash[pagenum].size();
}
QImage Renderer::imageHash(int pagenum) {
if(loadingHash.contains(pagenum)){
return loadingHash[pagenum];
}else{
return QImage();
}
//if(!imageCache.contains(pagenum)){ return QImage(); }
// while(pagesStillLoading > 0) { qDebug() << "pagesStillLoading!\n";}
//std::optional<QImage> cachedImage = imageCache.get(pagenum);
/*if (cachedImage.has_value())
return *cachedImage;*/
//imageCache.push(pagenum, pages[pagenum].render());
//return *imageCache.get(pagenum);
}
int Renderer::hashSize() {
//qDebug() << "pages contains " << pages.size() << " elements.\n";
return loadingHash.size();
}
void Renderer::clearHash( int pagenum) {
if(pagenum<0){ loadingHash.clear(); }
else if(loadingHash.contains(pagenum)){ loadingHash.remove(pagenum); }
//pages.clear();
}
// Highlighting found text, bookmarks, and page properties disabled for Poppler
bool Renderer::supportsExtraFeatures() { return false; }
void Renderer::traverseOutline(void *, int) {}
void Renderer::handleLink(QWidget *obj, QString linkDest) {
Poppler::Link *trueLink;
for (std::vector<QList<LuminaPDF::Link *>>::iterator link_itr = links.begin();
link_itr != links.end(); ++link_itr) {
auto linkArray = *link_itr;
for (int i = 0; i < linkArray.size(); i++) {
Poppler::Link *link = linkArray[i]->getLink();
if (link->linkType() == Poppler::Link::LinkType::Browse) {
if (linkDest == dynamic_cast<Poppler::LinkBrowse *>(link)->url())
trueLink = link;
} else if (link->linkType() == Poppler::Link::LinkType::Goto) {
if (linkDest == dynamic_cast<Poppler::LinkGoto *>(link)->fileName())
trueLink = link;
}
}
}
if (trueLink) {
if (trueLink->linkType() == Poppler::Link::LinkType::Goto)
emit goToPosition(dynamic_cast<Poppler::LinkGoto *>(trueLink)
->destination()
.pageNumber(),
0, 0);
else if (trueLink->linkType() == Poppler::Link::LinkType::Browse) {
if (QMessageBox::Yes ==
QMessageBox::question(
obj, tr("Open External Link?"),
QString(tr("Do you want to open %1 in the default browser"))
.arg(linkDest),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No)) {
QProcess::startDetached("firefox \"" + linkDest + "\"");
}
}
}
}
TextData *Renderer::linkList(int pageNum, int entry) {
if (links[pageNum].size() > 0)
return links[pageNum][entry]->getData();
else
return 0;
}
int Renderer::linkSize(int pageNum) {
Q_UNUSED(pageNum) return links[pageNum].size();
}
int Renderer::annotSize(int pageNum) { Q_UNUSED(pageNum) return 0; }
Annotation *Renderer::annotList(int pageNum, int entry) {
Q_UNUSED(pageNum) Q_UNUSED(entry) return NULL;
}
int Renderer::widgetSize(int pageNum) { Q_UNUSED(pageNum) return 0; }
Widget *Renderer::widgetList(int pageNum, int entry) {
Q_UNUSED(pageNum) Q_UNUSED(entry) return NULL;
}
|