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
281
282
283
284
285
286
287
288
289
290
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <vcl/VectorGraphicSearch.hxx>
#include <sal/config.h>
#include <fpdf_doc.h>
#include <fpdf_text.h>
class VectorGraphicSearch::Implementation
{
public:
FPDF_DOCUMENT mpPdfDocument;
Implementation()
: mpPdfDocument(nullptr)
{
}
~Implementation()
{
if (mpPdfDocument)
FPDF_CloseDocument(mpPdfDocument);
}
};
class SearchContext
{
private:
FPDF_DOCUMENT mpPdfDocument;
FPDF_PAGE mpPage;
FPDF_TEXTPAGE mpTextPage;
FPDF_SCHHANDLE mpSearchHandle;
public:
sal_Int32 mnPageIndex;
OUString maSearchString;
SearchStartPosition meStartPosition;
SearchContext(FPDF_DOCUMENT pPdfDocument, sal_Int32 nPageIndex, OUString const& rSearchString,
SearchStartPosition eStartPosition)
: mpPdfDocument(pPdfDocument)
, mpPage(nullptr)
, mpTextPage(nullptr)
, mpSearchHandle(nullptr)
, mnPageIndex(nPageIndex)
, maSearchString(rSearchString)
, meStartPosition(eStartPosition)
{
}
~SearchContext()
{
if (mpSearchHandle)
FPDFText_FindClose(mpSearchHandle);
if (mpTextPage)
FPDFText_ClosePage(mpTextPage);
if (mpPage)
FPDF_ClosePage(mpPage);
}
basegfx::B2DSize getPageSize()
{
basegfx::B2DSize aSize;
if (!mpPdfDocument)
return aSize;
FS_SIZEF aPDFSize;
if (FPDF_GetPageSizeByIndexF(mpPdfDocument, mnPageIndex, &aPDFSize))
{
aSize = basegfx::B2DSize(convertPointToMm100(aPDFSize.width),
convertPointToMm100(aPDFSize.height));
}
return aSize;
}
bool initialize()
{
if (!mpPdfDocument)
return false;
mpPage = FPDF_LoadPage(mpPdfDocument, mnPageIndex);
if (!mpPage)
return false;
mpTextPage = FPDFText_LoadPage(mpPage);
if (!mpTextPage)
return false;
FPDF_WIDESTRING pString = reinterpret_cast<FPDF_WIDESTRING>(maSearchString.getStr());
// Index where to start to search. -1 => at the end
int nStartIndex = meStartPosition == SearchStartPosition::End ? -1 : 0;
// FPDF_MATCHCASE, FPDF_MATCHWHOLEWORD, FPDF_CONSECUTIVE
// FPDF_MATCHCASE - If not set, it will not match case by default.
// FPDF_MATCHWHOLEWORD - If not set, it will not match the whole word by default.
// FPDF_CONSECUTIVE - If not set, it will skip past the current match to look for the next match.
int nSearchFlags = 0;
mpSearchHandle = FPDFText_FindStart(mpTextPage, pString, nSearchFlags, nStartIndex);
return mpSearchHandle != nullptr;
}
bool next()
{
if (mpSearchHandle)
return FPDFText_FindNext(mpSearchHandle);
return false;
}
bool previous()
{
if (mpSearchHandle)
return FPDFText_FindPrev(mpSearchHandle);
return false;
}
int index()
{
if (mpSearchHandle)
return FPDFText_GetSchResultIndex(mpSearchHandle);
return -1;
}
int size()
{
if (mpSearchHandle)
return FPDFText_GetSchCount(mpSearchHandle);
return -1;
}
std::vector<basegfx::B2DRectangle> getTextRectangles()
{
std::vector<basegfx::B2DRectangle> aRectangles;
if (!mpTextPage || !mpSearchHandle)
return aRectangles;
int nIndex = index();
if (nIndex < 0)
return aRectangles;
int nSize = size();
if (nSize <= 0)
return aRectangles;
double fPageHeight = getPageSize().getY();
for (int nCount = 0; nCount < nSize; nCount++)
{
double left = 0.0;
double right = 0.0;
double bottom = 0.0;
double top = 0.0;
if (FPDFText_GetCharBox(mpTextPage, nIndex + nCount, &left, &right, &bottom, &top))
{
left = convertPointToMm100(left);
right = convertPointToMm100(right);
top = fPageHeight - convertPointToMm100(top);
bottom = fPageHeight - convertPointToMm100(bottom);
aRectangles.emplace_back(left, bottom, right, top);
}
}
return aRectangles;
}
};
VectorGraphicSearch::VectorGraphicSearch(Graphic const& rGraphic)
: mpImplementation(std::make_unique<VectorGraphicSearch::Implementation>())
, maGraphic(rGraphic)
{
FPDF_LIBRARY_CONFIG aConfig;
aConfig.version = 2;
aConfig.m_pUserFontPaths = nullptr;
aConfig.m_pIsolate = nullptr;
aConfig.m_v8EmbedderSlot = 0;
FPDF_InitLibraryWithConfig(&aConfig);
}
VectorGraphicSearch::~VectorGraphicSearch()
{
mpSearchContext.reset();
mpImplementation.reset();
FPDF_DestroyLibrary();
}
bool VectorGraphicSearch::search(OUString const& rSearchString, SearchStartPosition eStartPosition)
{
auto pData = maGraphic.getVectorGraphicData();
if (pData && pData->getVectorGraphicDataType() == VectorGraphicDataType::Pdf)
{
return searchPDF(pData, rSearchString, eStartPosition);
}
return false;
}
bool VectorGraphicSearch::searchPDF(std::shared_ptr<VectorGraphicData> const& rData,
OUString const& rSearchString,
SearchStartPosition eStartPosition)
{
if (rSearchString.isEmpty())
return false;
mpImplementation->mpPdfDocument
= FPDF_LoadMemDocument(rData->getVectorGraphicDataArray().getConstArray(),
rData->getVectorGraphicDataArrayLength(), /*password=*/nullptr);
if (!mpImplementation->mpPdfDocument)
{
//TODO: Handle failure to load.
switch (FPDF_GetLastError())
{
case FPDF_ERR_SUCCESS:
break;
case FPDF_ERR_UNKNOWN:
break;
case FPDF_ERR_FILE:
break;
case FPDF_ERR_FORMAT:
break;
case FPDF_ERR_PASSWORD:
break;
case FPDF_ERR_SECURITY:
break;
case FPDF_ERR_PAGE:
break;
default:
break;
}
return false;
}
sal_Int32 nPageIndex = std::max(rData->getPageIndex(), sal_Int32(0));
mpSearchContext.reset(new SearchContext(mpImplementation->mpPdfDocument, nPageIndex,
rSearchString, eStartPosition));
return mpSearchContext->initialize();
}
basegfx::B2DSize VectorGraphicSearch::pageSize()
{
basegfx::B2DSize aSize;
if (mpSearchContext)
aSize = mpSearchContext->getPageSize();
return aSize;
}
bool VectorGraphicSearch::next()
{
if (mpSearchContext)
return mpSearchContext->next();
return false;
}
bool VectorGraphicSearch::previous()
{
if (mpSearchContext)
return mpSearchContext->previous();
return false;
}
int VectorGraphicSearch::index()
{
if (mpSearchContext)
return mpSearchContext->index();
return -1;
}
std::vector<basegfx::B2DRectangle> VectorGraphicSearch::getTextRectangles()
{
if (mpSearchContext)
return mpSearchContext->getTextRectangles();
return std::vector<basegfx::B2DRectangle>();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|