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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
|
/*
* Copyright (C) 2003 Stefan Kleine Stegemann
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <PDFKit/PDFDocument.h>
#include <PDFKit/PDFImageRep.h>
#include "XPDFBridge.h"
#include "CountingRef.h"
#include <Foundation/NSException.h>
#include <Foundation/NSLock.h>
@class PDFDocRefDelegate;
/*
* Non-Public methods of PDFDocument.
*/
@interface PDFDocument (Private)
- (id) _initWithBridgeDocument: (XPDFObject)aPdfDoc;
- (void) _translateRectToPageCoords: (int)pageNum
rect: (NSRect)rect
xMin: (double*)xMin
yMin: (double*)yMin
xMax: (double*)xMax
yMax: (double*)yMax;
@end
/*
* Non-Public methods of PDFSearchContext.
*/
@interface PDFSearchContext (Private)
- (SearchContext*) _xpdfSearchContext;
@end
@implementation PDFDocument
- (id) init
{
return [self _initWithBridgeDocument: NULL];
}
- (void) dealloc
{
NSLog(@"dealloc PDFDocument, retain count is %d", [self retainCount]);
RELEASE(outline);
RELEASE(pdfDocRef);
[super dealloc];
}
+ (void) initialize
{
[super initialize];
// Initialize XPDF backend
XPDF_Initialize(PDFBaseResolution); // base resolution is
NSLog(@"xpdf backend initialized");
}
+ (PDFDocument*)documentFromFile: (NSString*)fileName
{
return [PDFDocument documentFromFile: fileName
ownerPassword: nil
userPassword: nil];
}
+ (PDFDocument*)documentFromFile: (NSString*)fileName
ownerPassword: (NSString*)ownerPassword
userPassword: (NSString*)userPassword
{
XPDFObject newPdfDoc;
const char* cFileName;
const char* cOwnerPassword;
const char* cUserPassword;
NSAssert(fileName != nil, @"no filename");
cFileName = [fileName cString];
cOwnerPassword = (ownerPassword != nil ? [ownerPassword cString] : NULL);
cUserPassword = (userPassword != nil ? [userPassword cString] : NULL);
newPdfDoc = PDFDoc_create(cFileName,
cOwnerPassword,
cUserPassword);
return AUTORELEASE([[PDFDocument alloc] _initWithBridgeDocument: newPdfDoc]);
}
- (BOOL) isOk
{
NSAssert(![pdfDocRef isNULL], @"no document");
return PDFDoc_isOk([pdfDocRef pointer]);
}
- (int) errorCode
{
NSAssert(![pdfDocRef isNULL], @"no document");
return PDFDoc_getErrorCode([pdfDocRef pointer]);
}
- (double) pageWidth: (int)pageNum
{
NSAssert(![pdfDocRef isNULL], @"no document");
return PDFDoc_getPageWidth([pdfDocRef pointer], pageNum);
}
- (double) pageHeight: (int)pageNum
{
NSAssert(![pdfDocRef isNULL], @"no document");
return PDFDoc_getPageHeight([pdfDocRef pointer], pageNum);
}
- (NSSize) pageSize: (int)pageNum considerRotation: (BOOL)rotation
{
NSSize size;
size = NSMakeSize([self pageWidth: pageNum], [self pageHeight: pageNum]);
if (rotation)
{
if (([self pageRotate: pageNum] == 90) || ([self pageRotate: pageNum] == 180))
{
float height = size.height;
size.height = size.width;
size.width = height;
}
}
return size;
}
- (int) pageRotate: (int)pageNum
{
NSAssert(![pdfDocRef isNULL], @"no document");
return PDFDoc_getPageRotate([pdfDocRef pointer], pageNum);
}
- (int) countPages
{
NSAssert(![pdfDocRef isNULL], @"no document");
return PDFDoc_getNumPages([pdfDocRef pointer]);
}
- (NSString*)metaData
{
NSAssert(![pdfDocRef isNULL], @"no document");
const char* data = PDFDoc_getMetaData([pdfDocRef pointer]);
return (data != NULL ?
[[[NSString alloc] initWithCString: data] autorelease]
:
nil);
}
- (BOOL) hasOutline
{
NSAssert(![pdfDocRef isNULL], @"no document");
return PDFOutline_HasOutline([pdfDocRef pointer]);
}
- (PDFOutline*) outline
{
NSAssert(![pdfDocRef isNULL], @"no document");
if ((!outline) && [self hasOutline])
{
outline =
[[PDFOutline alloc] initWithOutlineItems:
PDFOutline_GetOutlineItems([pdfDocRef pointer])
ofDocument: pdfDocRef];
}
return outline;
}
- (BOOL) findText: (NSString*)text
page: (int*)pageNum
toPage: (int)maxPage
position: (NSRect*)pos
context: (NSString**)context
{
BOOL result;
PDFSearchContext* searchContext = [[PDFSearchContext alloc] initWithDocument: self];
result = [self findText: text
usingSearchContext: searchContext
page: pageNum
toPage: maxPage
position: pos
textContext: context];
RELEASE(searchContext);
return result;
}
- (PDFSearchContext*) createSearchContext
{
return AUTORELEASE([[PDFSearchContext alloc] initWithDocument: self]);
}
- (BOOL) findText: (NSString*)aText
usingSearchContext: (PDFSearchContext*)aSearchContext
page: (int*)pageNum
toPage: (int)maxPage
position: (NSRect*)pos
textContext: (NSString**)aTextContext
{
double xMin, yMin, xMax, yMax;
char* textCtxBuffer;
int textCtxBufferLength;
NSAssert(aSearchContext, @"search context is nil");
// Note that PDFUtil_FindText uses upside down coords
// (0,0 is upper left corner)
if (pos->size.height == -1)
{
pos->size.height = [self pageHeight: *pageNum];
}
[self _translateRectToPageCoords: *pageNum rect: *pos
xMin: &xMin yMin: &yMin xMax: &xMax yMax: &yMax];
if (!PDFSearch_FindText([aSearchContext _xpdfSearchContext],
[aText cString],
pageNum,
maxPage,
&xMin,
&yMin,
&xMax,
&yMax,
&textCtxBuffer,
&textCtxBufferLength))
{
//NSLog(@"%@ not found", text);
return NO;
}
// translate resulting coords
yMin = [self pageHeight: *pageNum] - yMin;
yMax = [self pageHeight: *pageNum] - yMax;
//NSLog(@"found %@ at %f, %f, %f, %f", text, xMin, yMin, xMax, yMax);
pos->origin.x = (xMin < xMax ? xMin : xMax);
pos->origin.y = (yMin < yMax ? yMin : yMax);
pos->size.width = (xMax > xMin ? xMax - xMin : xMin - xMax);
pos->size.height = (yMax > yMin ? yMax - yMin : yMin - yMax);
if (textCtxBuffer != NULL)
{
if (aTextContext != NULL)
{
*aTextContext = [NSString stringWithCString: textCtxBuffer
length: textCtxBufferLength];
}
// we copy the buffer here instead of using initWithCStringNoCopy
// because it has not been allocated with NSZoneMalloc
free(textCtxBuffer);
}
else
{
if (aTextContext != NULL)
{
*aTextContext = @"??";
}
}
return YES;
}
- (NSString*) getTextAtPage: (int)pageNum inRect: (NSRect)pos
{
NSString* text = nil;
char* buffer;
int buffLen;
double xMin, yMin, xMax, yMax;
[self _translateRectToPageCoords: pageNum rect: pos
xMin: &xMin yMin: &yMin xMax: &xMax yMax: &yMax];
PDFUtil_GetText([pdfDocRef pointer],
pageNum,
xMin,
yMin,
xMax,
yMax,
&buffer,
&buffLen);
if (buffer != NULL)
{
text = [NSString stringWithCString: buffer length: buffLen];
// we copy the buffer here instead of using initWithCStringNoCopy
// because it has not been allocated with NSZoneMalloc
free(buffer);
}
return text;
}
@end
/* ----------------------------------------------------- */
/* Category Private */
/* ----------------------------------------------------- */
@implementation PDFDocument (Private)
/** Designated initializer. */
- (id) _initWithBridgeDocument: (XPDFObject)aPdfDoc
{
if ((self = [super init]))
{
id refDelegate = [[PDFDocRefDelegate alloc] init];
pdfDocRef = [[CountingRef alloc] initWithPointer: aPdfDoc
delegate: refDelegate];
RELEASE(refDelegate);
outline = nil;
}
return self;
}
/** Translate a rectangular area to coordinates on a page.
* The coordinate system is upside down. */
- (void) _translateRectToPageCoords: (int)pageNum
rect: (NSRect)rect
xMin: (double*)xMin
yMin: (double*)yMin
xMax: (double*)xMax
yMax: (double*)yMax
{
*xMin = rect.origin.x;
*yMin = [self pageHeight: pageNum] - (rect.origin.y + rect.size.height);
*xMax = rect.origin.x + rect.size.width;
*yMax = [self pageHeight: pageNum] - rect.origin.y;
}
@end
/* ----------------------------------------------------- */
/* Category Wrapper */
/* ----------------------------------------------------- */
@implementation PDFDocument (Wrapper)
- (void*) xpdfobject
{
return [pdfDocRef pointer];
}
@end
/* ----------------------------------------------------- */
/* Class PDFDocRefDelegate */
/* ----------------------------------------------------- */
@interface PDFDocRefDelegate : NSObject <CountingRefDelegate>
{
}
@end
@implementation PDFDocRefDelegate
- (id) init
{
if ((self = [super init]))
{
// ....
}
return self;
}
- (void) dealloc
{
[super dealloc];
}
- (void) freePointerForReference: (CountingRef*)aReference
{
if (![aReference isNULL])
{
PDFDoc_delete([aReference pointer]);
}
}
@end
/* ----------------------------------------------------- */
/* Implemenation of PDFSearchContext */
/* ----------------------------------------------------- */
@implementation PDFSearchContext
- (id) initWithDocument: (PDFDocument*)aDocument
{
NSAssert(aDocument, @"no document");
if ((self = [super init]))
{
theDocument = aDocument;
theSearchContext = PDFSearch_CreateSearchContext([aDocument xpdfobject]);
NSAssert(theSearchContext, @"failed to create the internal search context");
}
return self;
}
- (void) dealloc
{
NSLog(@"dealloc PDFSearchContext");
PDFSearch_DestroySearchContext(theSearchContext);
[super dealloc];
}
- (PDFDocument*) document
{
return theDocument;
}
@end
/* ----------------------------------------------------- */
/* Category Private of PDFSearchContext */
/* ----------------------------------------------------- */
@implementation PDFSearchContext (Private)
- (SearchContext*) _xpdfSearchContext
{
return (SearchContext*)theSearchContext;
}
@end
|