2011-11-14 17:30:16 +00:00
|
|
|
/*
|
|
|
|
KindlePDFViewer: MuPDF abstraction for Lua
|
|
|
|
Copyright (C) 2011 Hans-Werner Hilse <hilse@web.de>
|
|
|
|
|
|
|
|
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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2012-03-24 16:47:52 +00:00
|
|
|
#include <fitz/fitz-internal.h>
|
2011-11-14 17:30:16 +00:00
|
|
|
|
|
|
|
#include "blitbuffer.h"
|
2012-03-19 17:59:36 +00:00
|
|
|
#include "drawcontext.h"
|
2011-11-14 17:30:16 +00:00
|
|
|
#include "pdf.h"
|
2012-03-22 01:08:31 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2011-11-14 17:30:16 +00:00
|
|
|
|
|
|
|
typedef struct PdfDocument {
|
2012-03-19 21:24:24 +00:00
|
|
|
fz_document *xref;
|
2012-01-21 18:20:16 +00:00
|
|
|
fz_context *context;
|
2011-11-14 17:30:16 +00:00
|
|
|
} PdfDocument;
|
|
|
|
|
|
|
|
typedef struct PdfPage {
|
|
|
|
int num;
|
|
|
|
#ifdef USE_DISPLAY_LIST
|
|
|
|
fz_display_list *list;
|
|
|
|
#endif
|
2012-03-19 21:24:24 +00:00
|
|
|
fz_page *page;
|
2011-11-14 17:30:16 +00:00
|
|
|
PdfDocument *doc;
|
|
|
|
} PdfPage;
|
|
|
|
|
2012-03-22 01:08:31 +00:00
|
|
|
|
|
|
|
static double LOG_TRESHOLD_PERC = 0.05; // 5%
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MAGIC = 0x3795d42b,
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct header {
|
|
|
|
int magic;
|
|
|
|
size_t sz;
|
|
|
|
} header;
|
|
|
|
|
|
|
|
static size_t msize=0;
|
|
|
|
static size_t msize_prev;
|
|
|
|
static size_t msize_max;
|
|
|
|
static size_t msize_min;
|
|
|
|
static size_t msize_iniz;
|
|
|
|
static int is_realloc=0;
|
|
|
|
|
|
|
|
char* readable_fs(double size/*in bytes*/, char *buf) {
|
|
|
|
int i = 0;
|
|
|
|
const char* units[] = {"B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"};
|
|
|
|
while (size > 1024) {
|
|
|
|
size /= 1024;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
sprintf(buf, "%.*f %s", i, size, units[i]);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void resetMsize(){
|
|
|
|
msize_iniz = msize;
|
|
|
|
msize_prev = 0;
|
|
|
|
msize_max = 0;
|
|
|
|
msize_min = (size_t)-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void showMsize(){
|
|
|
|
char buf[15],buf2[15],buf3[15],buf4[15];
|
|
|
|
printf("§§§ now: %s was: %s - min: %s - max: %s\n",readable_fs(msize,buf),readable_fs(msize_iniz,buf2),readable_fs(msize_min,buf3),readable_fs(msize_max,buf4));
|
|
|
|
resetMsize();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void log_size(char *funcName){
|
|
|
|
if(msize_max < msize)
|
|
|
|
msize_max = msize;
|
|
|
|
if(msize_min > msize)
|
|
|
|
msize_min = msize;
|
|
|
|
if(1==0 && abs(msize-msize_prev)>msize_prev*LOG_TRESHOLD_PERC){
|
|
|
|
char buf[15],buf2[15];
|
|
|
|
printf("§§§ %s - total: %s (was %s)\n",funcName, readable_fs(msize,buf),readable_fs(msize_prev,buf2));
|
|
|
|
msize_prev = msize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
my_malloc_default(void *opaque, unsigned int size)
|
|
|
|
{
|
|
|
|
struct header * h = malloc(size + sizeof(header));
|
|
|
|
if (h == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
h -> magic = MAGIC;
|
|
|
|
h -> sz = size;
|
|
|
|
msize += size + sizeof(struct header);
|
|
|
|
if(is_realloc!=1)
|
|
|
|
log_size("alloc");
|
|
|
|
return (void *)(h + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
my_free_default(void *opaque, void *ptr)
|
|
|
|
{
|
|
|
|
if (ptr != NULL) {
|
|
|
|
struct header * h = ((struct header *)ptr) - 1;
|
|
|
|
if (h -> magic != MAGIC) { /* Not allocated by us */
|
|
|
|
} else {
|
|
|
|
msize -= h -> sz + sizeof(struct header);
|
|
|
|
free(h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(is_realloc!=1)
|
|
|
|
log_size("free");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
my_realloc_default(void *opaque, void *old, unsigned int size)
|
|
|
|
{
|
|
|
|
void * newp;
|
|
|
|
if (old==NULL) { //practically, it's a malloc
|
|
|
|
newp = my_malloc_default(opaque, size);
|
|
|
|
} else {
|
|
|
|
struct header * h = ((struct header *)old) - 1;
|
|
|
|
if (h -> magic != MAGIC) { // Not allocated by my_malloc_default
|
|
|
|
printf("§§§ warn: not allocated by my_malloc_default, new size: %i\n",size);
|
|
|
|
newp = realloc(old,size);
|
|
|
|
} else { // malloc + free
|
|
|
|
is_realloc = 1;
|
|
|
|
size_t oldsize = h -> sz;
|
|
|
|
//printf("realloc %i -> %i\n",oldsize,size);
|
|
|
|
newp = my_malloc_default(opaque, size);
|
|
|
|
if (NULL != newp) {
|
|
|
|
memcpy(newp, old, oldsize<size?oldsize:size);
|
|
|
|
my_free_default(opaque, old);
|
|
|
|
}
|
|
|
|
log_size("realloc");
|
|
|
|
is_realloc = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(newp);
|
|
|
|
}
|
|
|
|
|
|
|
|
fz_alloc_context my_alloc_default =
|
|
|
|
{
|
|
|
|
NULL,
|
|
|
|
my_malloc_default,
|
|
|
|
my_realloc_default,
|
|
|
|
my_free_default
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-11-14 17:30:16 +00:00
|
|
|
static int openDocument(lua_State *L) {
|
2012-03-19 21:24:24 +00:00
|
|
|
char *filename = strdup(luaL_checkstring(L, 1));
|
2012-03-31 12:44:09 +00:00
|
|
|
int cache_size = luaL_optint(L, 2, 64 << 20); // 64 MB limit default
|
2012-03-22 01:08:31 +00:00
|
|
|
char buf[15];
|
2012-03-31 12:44:09 +00:00
|
|
|
printf("## cache_size: %s\n",readable_fs(cache_size,buf));
|
2012-03-19 21:48:54 +00:00
|
|
|
|
2011-11-14 17:30:16 +00:00
|
|
|
PdfDocument *doc = (PdfDocument*) lua_newuserdata(L, sizeof(PdfDocument));
|
|
|
|
|
|
|
|
luaL_getmetatable(L, "pdfdocument");
|
|
|
|
lua_setmetatable(L, -2);
|
|
|
|
|
2012-03-31 12:44:09 +00:00
|
|
|
doc->context = fz_new_context(&my_alloc_default, NULL, cache_size);
|
2011-11-14 17:30:16 +00:00
|
|
|
|
2012-01-21 18:20:16 +00:00
|
|
|
fz_try(doc->context) {
|
2012-03-19 21:24:24 +00:00
|
|
|
doc->xref = fz_open_document(doc->context, filename);
|
2012-01-21 18:20:16 +00:00
|
|
|
}
|
|
|
|
fz_catch(doc->context) {
|
2012-03-19 21:24:24 +00:00
|
|
|
free(filename);
|
2012-03-19 23:03:35 +00:00
|
|
|
return luaL_error(L, "cannot open PDF file");
|
2011-11-14 17:30:16 +00:00
|
|
|
}
|
2012-01-21 18:20:16 +00:00
|
|
|
|
2012-03-19 21:24:24 +00:00
|
|
|
free(filename);
|
2012-03-19 23:03:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int needsPassword(lua_State *L) {
|
|
|
|
PdfDocument *doc = (PdfDocument*) luaL_checkudata(L, 1, "pdfdocument");
|
|
|
|
lua_pushboolean(L, fz_needs_password(doc->xref));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int authenticatePassword(lua_State *L) {
|
|
|
|
PdfDocument *doc = (PdfDocument*) luaL_checkudata(L, 1, "pdfdocument");
|
|
|
|
char *password = strdup(luaL_checkstring(L, 2));
|
|
|
|
|
|
|
|
if (!fz_authenticate_password(doc->xref, password)) {
|
|
|
|
lua_pushboolean(L, 0);
|
|
|
|
} else {
|
|
|
|
lua_pushboolean(L, 1);
|
|
|
|
}
|
2012-03-19 21:24:24 +00:00
|
|
|
free(password);
|
2011-11-14 17:30:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-12-08 00:16:40 +00:00
|
|
|
static int closeDocument(lua_State *L) {
|
|
|
|
PdfDocument *doc = (PdfDocument*) luaL_checkudata(L, 1, "pdfdocument");
|
2012-04-16 20:51:13 +00:00
|
|
|
|
|
|
|
// should be save if called twice
|
2011-12-08 22:43:10 +00:00
|
|
|
if(doc->xref != NULL) {
|
2012-03-19 21:24:24 +00:00
|
|
|
fz_close_document(doc->xref);
|
2011-12-08 22:43:10 +00:00
|
|
|
doc->xref = NULL;
|
|
|
|
}
|
2012-01-21 18:20:16 +00:00
|
|
|
if(doc->context != NULL) {
|
|
|
|
fz_free_context(doc->context);
|
|
|
|
doc->context = NULL;
|
2011-12-08 22:43:10 +00:00
|
|
|
}
|
2012-04-16 20:51:13 +00:00
|
|
|
|
2012-03-05 17:35:54 +00:00
|
|
|
return 0;
|
2011-12-08 00:16:40 +00:00
|
|
|
}
|
|
|
|
|
2011-11-14 17:30:16 +00:00
|
|
|
static int getNumberOfPages(lua_State *L) {
|
|
|
|
PdfDocument *doc = (PdfDocument*) luaL_checkudata(L, 1, "pdfdocument");
|
2012-03-19 23:03:35 +00:00
|
|
|
fz_try(doc->context) {
|
|
|
|
lua_pushinteger(L, fz_count_pages(doc->xref));
|
|
|
|
}
|
|
|
|
fz_catch(doc->context) {
|
|
|
|
return luaL_error(L, "cannot access page tree");
|
|
|
|
}
|
2011-11-14 17:30:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-02-21 13:42:52 +00:00
|
|
|
/*
|
2012-02-21 14:30:02 +00:00
|
|
|
* helper function for getTableOfContent()
|
2012-02-21 13:42:52 +00:00
|
|
|
*/
|
2012-02-21 14:30:02 +00:00
|
|
|
static int walkTableOfContent(lua_State *L, fz_outline* ol, int *count, int depth) {
|
|
|
|
depth++;
|
2012-02-21 13:42:52 +00:00
|
|
|
while(ol) {
|
2012-02-21 14:30:02 +00:00
|
|
|
lua_pushnumber(L, *count);
|
2012-02-21 13:42:52 +00:00
|
|
|
|
|
|
|
/* set subtable */
|
|
|
|
lua_newtable(L);
|
|
|
|
lua_pushstring(L, "page");
|
|
|
|
lua_pushnumber(L, ol->dest.ld.gotor.page + 1);
|
|
|
|
lua_settable(L, -3);
|
2012-03-16 04:27:27 +00:00
|
|
|
|
2012-02-21 14:30:02 +00:00
|
|
|
lua_pushstring(L, "depth");
|
2012-03-22 01:08:31 +00:00
|
|
|
lua_pushnumber(L, depth);
|
2012-02-21 13:42:52 +00:00
|
|
|
lua_settable(L, -3);
|
2012-03-02 05:27:44 +00:00
|
|
|
|
2012-03-16 04:27:27 +00:00
|
|
|
lua_pushstring(L, "title");
|
2012-02-21 13:42:52 +00:00
|
|
|
lua_pushstring(L, ol->title);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
|
|
|
|
|
2012-03-16 04:27:27 +00:00
|
|
|
lua_settable(L, -3);
|
2012-02-21 14:30:02 +00:00
|
|
|
(*count)++;
|
|
|
|
if (ol->down) {
|
|
|
|
walkTableOfContent(L, ol->down, count, depth);
|
|
|
|
}
|
2012-02-21 13:42:52 +00:00
|
|
|
ol = ol->next;
|
|
|
|
}
|
2012-02-21 14:30:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-02-27 14:17:17 +00:00
|
|
|
* Return a table like this:
|
|
|
|
* {
|
|
|
|
* {page=12, depth=1, title="chapter1"},
|
|
|
|
* {page=54, depth=1, title="chapter2"},
|
|
|
|
* }
|
2012-02-21 14:30:02 +00:00
|
|
|
*/
|
|
|
|
static int getTableOfContent(lua_State *L) {
|
|
|
|
fz_outline *ol;
|
|
|
|
int count = 1;
|
|
|
|
|
|
|
|
PdfDocument *doc = (PdfDocument*) luaL_checkudata(L, 1, "pdfdocument");
|
2012-03-19 21:24:24 +00:00
|
|
|
ol = fz_load_outline(doc->xref);
|
2012-02-21 14:30:02 +00:00
|
|
|
|
|
|
|
lua_newtable(L);
|
|
|
|
walkTableOfContent(L, ol, &count, 0);
|
2012-02-21 13:42:52 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-11-14 17:30:16 +00:00
|
|
|
static int openPage(lua_State *L) {
|
|
|
|
fz_device *dev;
|
|
|
|
|
|
|
|
PdfDocument *doc = (PdfDocument*) luaL_checkudata(L, 1, "pdfdocument");
|
|
|
|
|
|
|
|
int pageno = luaL_checkint(L, 2);
|
|
|
|
|
2012-03-19 23:03:35 +00:00
|
|
|
fz_try(doc->context) {
|
|
|
|
if(pageno < 1 || pageno > fz_count_pages(doc->xref)) {
|
|
|
|
return luaL_error(L, "cannot open page #%d, out of range (1-%d)",
|
|
|
|
pageno, fz_count_pages(doc->xref));
|
|
|
|
}
|
2011-11-14 17:30:16 +00:00
|
|
|
|
2012-03-19 23:03:35 +00:00
|
|
|
PdfPage *page = (PdfPage*) lua_newuserdata(L, sizeof(PdfPage));
|
2011-11-14 17:30:16 +00:00
|
|
|
|
2012-03-19 23:03:35 +00:00
|
|
|
luaL_getmetatable(L, "pdfpage");
|
|
|
|
lua_setmetatable(L, -2);
|
2011-11-14 17:30:16 +00:00
|
|
|
|
2012-03-19 21:24:24 +00:00
|
|
|
page->page = fz_load_page(doc->xref, pageno - 1);
|
2012-03-19 23:03:35 +00:00
|
|
|
|
|
|
|
page->doc = doc;
|
2012-01-21 18:20:16 +00:00
|
|
|
}
|
|
|
|
fz_catch(doc->context) {
|
|
|
|
return luaL_error(L, "cannot open page #%d", pageno);
|
2011-11-14 17:30:16 +00:00
|
|
|
}
|
2012-03-22 01:08:31 +00:00
|
|
|
showMsize();
|
2011-11-14 17:30:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-04-15 22:10:41 +00:00
|
|
|
static void load_lua_text_page(lua_State *L, fz_text_page *page)
|
|
|
|
{
|
|
|
|
fz_text_block *block;
|
|
|
|
fz_text_line *aline;
|
|
|
|
fz_text_span *span;
|
|
|
|
|
|
|
|
fz_rect bbox, linebbox;
|
|
|
|
int i;
|
|
|
|
int word, line;
|
|
|
|
int len, c;
|
|
|
|
int start;
|
|
|
|
char chars[4]; // max length of UTF-8 encoded rune
|
|
|
|
luaL_Buffer textbuf;
|
|
|
|
|
|
|
|
/* table that contains all the lines */
|
|
|
|
lua_newtable(L);
|
2012-04-16 21:47:50 +00:00
|
|
|
|
|
|
|
line = 1;
|
|
|
|
|
2012-04-15 22:10:41 +00:00
|
|
|
for (block = page->blocks; block < page->blocks + page->len; block++)
|
|
|
|
{
|
|
|
|
for (aline = block->lines; aline < block->lines + block->len; aline++)
|
|
|
|
{
|
2012-04-16 21:47:50 +00:00
|
|
|
linebbox = fz_empty_rect;
|
|
|
|
/* will hold information about a line: */
|
|
|
|
lua_newtable(L);
|
|
|
|
|
|
|
|
word = 1;
|
|
|
|
|
2012-04-15 22:10:41 +00:00
|
|
|
for (span = aline->spans; span < aline->spans + aline->len; span++)
|
|
|
|
{
|
|
|
|
for(i = 0; i < span->len; ) {
|
|
|
|
/* will hold information about a word: */
|
|
|
|
lua_newtable(L);
|
|
|
|
|
|
|
|
luaL_buffinit(L, &textbuf);
|
|
|
|
bbox = span->text[i].bbox; // start with sensible default
|
|
|
|
for(; i < span->len; i++) {
|
|
|
|
/* check for space characters */
|
|
|
|
if(span->text[i].c == ' ' ||
|
|
|
|
span->text[i].c == '\t' ||
|
|
|
|
span->text[i].c == '\n' ||
|
|
|
|
span->text[i].c == '\v' ||
|
|
|
|
span->text[i].c == '\f' ||
|
|
|
|
span->text[i].c == '\r' ||
|
|
|
|
span->text[i].c == 0xA0 ||
|
|
|
|
span->text[i].c == 0x1680 ||
|
|
|
|
span->text[i].c == 0x180E ||
|
|
|
|
(span->text[i].c >= 0x2000 && span->text[i].c <= 0x200A) ||
|
|
|
|
span->text[i].c == 0x202F ||
|
|
|
|
span->text[i].c == 0x205F ||
|
|
|
|
span->text[i].c == 0x3000) {
|
|
|
|
// ignore and end word
|
|
|
|
i++;
|
|
|
|
break;
|
|
|
|
}
|
2012-04-16 21:47:50 +00:00
|
|
|
len = fz_runetochar(chars, span->text[i].c);
|
2012-04-15 22:10:41 +00:00
|
|
|
for(c = 0; c < len; c++) {
|
|
|
|
luaL_addchar(&textbuf, chars[c]);
|
|
|
|
}
|
|
|
|
bbox = fz_union_rect(bbox, span->text[i].bbox);
|
|
|
|
linebbox = fz_union_rect(linebbox, span->text[i].bbox);
|
|
|
|
}
|
|
|
|
lua_pushstring(L, "word");
|
|
|
|
luaL_pushresult(&textbuf);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
|
|
|
|
/* bbox for a word: */
|
|
|
|
lua_pushstring(L, "x0");
|
|
|
|
lua_pushinteger(L, bbox.x0);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
lua_pushstring(L, "y0");
|
|
|
|
lua_pushinteger(L, bbox.y0);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
lua_pushstring(L, "x1");
|
|
|
|
lua_pushinteger(L, bbox.x1);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
lua_pushstring(L, "y1");
|
|
|
|
lua_pushinteger(L, bbox.y1);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
|
|
|
|
lua_rawseti(L, -2, word++);
|
|
|
|
}
|
|
|
|
}
|
2012-04-16 21:47:50 +00:00
|
|
|
/* bbox for a whole line */
|
|
|
|
lua_pushstring(L, "x0");
|
|
|
|
lua_pushinteger(L, linebbox.x0);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
lua_pushstring(L, "y0");
|
|
|
|
lua_pushinteger(L, linebbox.y0);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
lua_pushstring(L, "x1");
|
|
|
|
lua_pushinteger(L, linebbox.x1);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
lua_pushstring(L, "y1");
|
|
|
|
lua_pushinteger(L, linebbox.y1);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
|
|
|
|
lua_rawseti(L, -2, line++);
|
2012-04-15 22:10:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-11 19:12:59 +00:00
|
|
|
/* get the text of the given page
|
2012-04-15 22:10:41 +00:00
|
|
|
*
|
2012-04-11 19:12:59 +00:00
|
|
|
* will return text in a Lua table that is modeled after
|
|
|
|
* djvu.c creates this table.
|
|
|
|
*
|
|
|
|
* note that the definition of "line" is somewhat arbitrary
|
|
|
|
* here (for now)
|
|
|
|
*
|
|
|
|
* MuPDFs API provides text as single char information
|
|
|
|
* that is collected in "spans". we use a span as a "line"
|
|
|
|
* in Lua output and segment spans into words by looking
|
|
|
|
* for space characters.
|
|
|
|
*
|
|
|
|
* will return an empty table if we have no text
|
|
|
|
*/
|
|
|
|
static int getPageText(lua_State *L) {
|
2012-04-15 22:10:41 +00:00
|
|
|
fz_text_page *text_page;
|
2012-04-16 21:47:50 +00:00
|
|
|
fz_text_sheet *text_sheet;
|
2012-04-11 19:12:59 +00:00
|
|
|
fz_device *tdev;
|
|
|
|
|
|
|
|
PdfPage *page = (PdfPage*) luaL_checkudata(L, 1, "pdfpage");
|
|
|
|
|
2012-04-15 22:10:41 +00:00
|
|
|
text_page = fz_new_text_page(page->doc->context, fz_bound_page(page->doc->xref, page->page));
|
2012-04-16 21:47:50 +00:00
|
|
|
text_sheet = fz_new_text_sheet(page->doc->context);
|
|
|
|
tdev = fz_new_text_device(page->doc->context, text_sheet, text_page);
|
2012-04-11 20:47:05 +00:00
|
|
|
fz_run_page(page->doc->xref, page->page, tdev, fz_identity, NULL);
|
2012-04-11 19:12:59 +00:00
|
|
|
fz_free_device(tdev);
|
2012-04-15 22:10:41 +00:00
|
|
|
tdev = NULL;
|
2012-04-11 19:12:59 +00:00
|
|
|
|
2012-04-15 22:10:41 +00:00
|
|
|
load_lua_text_page(L, text_page);
|
2012-04-11 19:12:59 +00:00
|
|
|
|
2012-04-15 22:10:41 +00:00
|
|
|
fz_free_text_page(page->doc->context, text_page);
|
2012-04-16 21:47:50 +00:00
|
|
|
fz_free_text_sheet(page->doc->context, text_sheet);
|
2012-04-11 19:12:59 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-11-14 17:30:16 +00:00
|
|
|
static int getPageSize(lua_State *L) {
|
|
|
|
fz_matrix ctm;
|
2012-03-19 17:24:43 +00:00
|
|
|
fz_rect bounds;
|
2011-11-14 17:30:16 +00:00
|
|
|
fz_rect bbox;
|
|
|
|
PdfPage *page = (PdfPage*) luaL_checkudata(L, 1, "pdfpage");
|
|
|
|
DrawContext *dc = (DrawContext*) luaL_checkudata(L, 2, "drawcontext");
|
|
|
|
|
2012-03-19 17:24:43 +00:00
|
|
|
bounds = fz_bound_page(page->doc->xref, page->page);
|
|
|
|
ctm = fz_scale(dc->zoom, dc->zoom) ;
|
2011-11-14 17:30:16 +00:00
|
|
|
ctm = fz_concat(ctm, fz_rotate(dc->rotate));
|
2012-03-19 17:24:43 +00:00
|
|
|
bbox = fz_transform_rect(ctm, bounds);
|
2012-03-22 01:08:31 +00:00
|
|
|
|
2012-04-11 19:12:59 +00:00
|
|
|
lua_pushnumber(L, bbox.x1-bbox.x0);
|
2011-11-14 17:30:16 +00:00
|
|
|
lua_pushnumber(L, bbox.y1-bbox.y0);
|
|
|
|
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2011-11-20 23:40:23 +00:00
|
|
|
static int getUsedBBox(lua_State *L) {
|
|
|
|
fz_bbox result;
|
|
|
|
fz_matrix ctm;
|
|
|
|
fz_device *dev;
|
|
|
|
PdfPage *page = (PdfPage*) luaL_checkudata(L, 1, "pdfpage");
|
|
|
|
|
|
|
|
/* returned BBox is in centi-point (n * 0.01 pt) */
|
2012-01-21 18:20:16 +00:00
|
|
|
ctm = fz_scale(100, 100);
|
2011-11-20 23:40:23 +00:00
|
|
|
|
2012-01-21 18:20:16 +00:00
|
|
|
fz_try(page->doc->context) {
|
|
|
|
dev = fz_new_bbox_device(page->doc->context, &result);
|
2012-03-19 21:24:24 +00:00
|
|
|
fz_run_page(page->doc->xref, page->page, dev, ctm, NULL);
|
2012-01-21 18:20:16 +00:00
|
|
|
}
|
|
|
|
fz_always(page->doc->context) {
|
|
|
|
fz_free_device(dev);
|
|
|
|
}
|
|
|
|
fz_catch(page->doc->context) {
|
|
|
|
return luaL_error(L, "cannot calculate bbox for page");
|
|
|
|
}
|
2011-11-20 23:40:23 +00:00
|
|
|
|
|
|
|
lua_pushnumber(L, ((double)result.x0)/100);
|
|
|
|
lua_pushnumber(L, ((double)result.y0)/100);
|
|
|
|
lua_pushnumber(L, ((double)result.x1)/100);
|
|
|
|
lua_pushnumber(L, ((double)result.y1)/100);
|
|
|
|
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2011-11-14 17:30:16 +00:00
|
|
|
static int closePage(lua_State *L) {
|
|
|
|
PdfPage *page = (PdfPage*) luaL_checkudata(L, 1, "pdfpage");
|
2011-12-01 13:33:17 +00:00
|
|
|
if(page->page != NULL) {
|
2012-03-19 21:24:24 +00:00
|
|
|
fz_free_page(page->doc->xref, page->page);
|
2011-12-01 13:33:17 +00:00
|
|
|
page->page = NULL;
|
|
|
|
}
|
2011-12-07 23:42:02 +00:00
|
|
|
return 0;
|
2011-11-14 17:30:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int drawPage(lua_State *L) {
|
|
|
|
fz_pixmap *pix;
|
|
|
|
fz_device *dev;
|
|
|
|
fz_matrix ctm;
|
|
|
|
fz_bbox bbox;
|
|
|
|
|
|
|
|
PdfPage *page = (PdfPage*) luaL_checkudata(L, 1, "pdfpage");
|
|
|
|
DrawContext *dc = (DrawContext*) luaL_checkudata(L, 2, "drawcontext");
|
|
|
|
BlitBuffer *bb = (BlitBuffer*) luaL_checkudata(L, 3, "blitbuffer");
|
2012-03-24 16:47:52 +00:00
|
|
|
bbox.x0 = luaL_checkint(L, 4);
|
|
|
|
bbox.y0 = luaL_checkint(L, 5);
|
|
|
|
bbox.x1 = bbox.x0 + bb->w;
|
|
|
|
bbox.y1 = bbox.y0 + bb->h;
|
|
|
|
pix = fz_new_pixmap_with_bbox(page->doc->context, fz_device_gray, bbox);
|
2012-02-13 19:13:04 +00:00
|
|
|
fz_clear_pixmap_with_value(page->doc->context, pix, 0xff);
|
2011-11-14 17:30:16 +00:00
|
|
|
|
2012-01-21 18:20:16 +00:00
|
|
|
ctm = fz_scale(dc->zoom, dc->zoom);
|
2011-11-14 17:30:16 +00:00
|
|
|
ctm = fz_concat(ctm, fz_rotate(dc->rotate));
|
|
|
|
ctm = fz_concat(ctm, fz_translate(dc->offset_x, dc->offset_y));
|
2012-01-21 18:20:16 +00:00
|
|
|
dev = fz_new_draw_device(page->doc->context, pix);
|
2011-11-20 20:29:59 +00:00
|
|
|
#ifdef MUPDF_TRACE
|
|
|
|
fz_device *tdev;
|
2012-01-21 18:20:16 +00:00
|
|
|
fz_try(page->doc->context) {
|
|
|
|
tdev = fz_new_trace_device(page->doc->context);
|
2012-03-19 21:24:24 +00:00
|
|
|
fz_run_page(page->doc->xref, page->page, tdev, ctm, NULL);
|
2012-01-21 18:20:16 +00:00
|
|
|
}
|
|
|
|
fz_always(page->doc->context) {
|
|
|
|
fz_free_device(tdev);
|
|
|
|
}
|
2011-11-14 17:30:16 +00:00
|
|
|
#endif
|
2012-03-19 21:24:24 +00:00
|
|
|
fz_run_page(page->doc->xref, page->page, dev, ctm, NULL);
|
2012-01-21 18:20:16 +00:00
|
|
|
fz_free_device(dev);
|
|
|
|
|
2011-11-16 00:56:37 +00:00
|
|
|
if(dc->gamma >= 0.0) {
|
2012-02-13 19:13:04 +00:00
|
|
|
fz_gamma_pixmap(page->doc->context, pix, dc->gamma);
|
2011-11-16 00:56:37 +00:00
|
|
|
}
|
2011-11-20 20:29:59 +00:00
|
|
|
|
|
|
|
uint8_t *bbptr = (uint8_t*)bb->data;
|
2011-12-01 23:37:28 +00:00
|
|
|
uint16_t *pmptr = (uint16_t*)pix->samples;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
for(y = 0; y < bb->h; y++) {
|
2011-12-07 23:42:02 +00:00
|
|
|
for(x = 0; x < (bb->w / 2); x++) {
|
|
|
|
bbptr[x] = (((pmptr[x*2 + 1] & 0xF0) >> 4) | (pmptr[x*2] & 0xF0)) ^ 0xFF;
|
2011-12-01 23:37:28 +00:00
|
|
|
}
|
|
|
|
if(bb->w & 1) {
|
2012-03-19 21:29:06 +00:00
|
|
|
bbptr[x] = (pmptr[x*2] & 0xF0) ^ 0xF0;
|
2011-12-01 23:37:28 +00:00
|
|
|
}
|
|
|
|
bbptr += bb->pitch;
|
|
|
|
pmptr += bb->w;
|
2011-11-20 20:29:59 +00:00
|
|
|
}
|
|
|
|
|
2012-01-21 18:20:16 +00:00
|
|
|
fz_drop_pixmap(page->doc->context, pix);
|
2011-11-14 17:30:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-31 13:29:17 +00:00
|
|
|
static int getCacheSize(lua_State *L) {
|
|
|
|
printf("## mupdf getCacheSize = %d\n", msize);
|
|
|
|
lua_pushnumber(L, msize);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cleanCache(lua_State *L) {
|
|
|
|
printf("## mupdf cleanCache NOP\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-19 18:11:32 +00:00
|
|
|
static const struct luaL_Reg pdf_func[] = {
|
2011-11-14 17:30:16 +00:00
|
|
|
{"openDocument", openDocument},
|
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
2012-03-19 18:11:32 +00:00
|
|
|
static const struct luaL_Reg pdfdocument_meth[] = {
|
2012-03-19 23:03:35 +00:00
|
|
|
{"needsPassword", needsPassword},
|
|
|
|
{"authenticatePassword", authenticatePassword},
|
2011-11-14 17:30:16 +00:00
|
|
|
{"openPage", openPage},
|
|
|
|
{"getPages", getNumberOfPages},
|
2012-03-29 10:17:32 +00:00
|
|
|
{"getToc", getTableOfContent},
|
2011-12-08 00:16:40 +00:00
|
|
|
{"close", closeDocument},
|
2012-03-31 13:29:17 +00:00
|
|
|
{"getCacheSize", getCacheSize},
|
|
|
|
{"cleanCache", cleanCache},
|
2011-12-08 00:16:40 +00:00
|
|
|
{"__gc", closeDocument},
|
2011-11-14 17:30:16 +00:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
2012-03-19 18:11:32 +00:00
|
|
|
static const struct luaL_Reg pdfpage_meth[] = {
|
2011-11-14 17:30:16 +00:00
|
|
|
{"getSize", getPageSize},
|
2011-11-20 23:40:23 +00:00
|
|
|
{"getUsedBBox", getUsedBBox},
|
2012-04-11 19:12:59 +00:00
|
|
|
{"getPageText", getPageText},
|
2011-11-14 17:30:16 +00:00
|
|
|
{"close", closePage},
|
2011-12-01 13:33:17 +00:00
|
|
|
{"__gc", closePage},
|
2011-11-14 17:30:16 +00:00
|
|
|
{"draw", drawPage},
|
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
int luaopen_pdf(lua_State *L) {
|
|
|
|
luaL_newmetatable(L, "pdfdocument");
|
|
|
|
lua_pushstring(L, "__index");
|
|
|
|
lua_pushvalue(L, -2);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
luaL_register(L, NULL, pdfdocument_meth);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
luaL_newmetatable(L, "pdfpage");
|
|
|
|
lua_pushstring(L, "__index");
|
|
|
|
lua_pushvalue(L, -2);
|
|
|
|
lua_settable(L, -3);
|
|
|
|
luaL_register(L, NULL, pdfpage_meth);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
luaL_register(L, "pdf", pdf_func);
|
|
|
|
return 1;
|
|
|
|
}
|