2012-11-27 12:31:56 +00:00
|
|
|
require "cache"
|
|
|
|
require "ui/geometry"
|
|
|
|
require "ui/screen"
|
|
|
|
require "ui/device"
|
|
|
|
|
|
|
|
-- Any document processed by K2pdfopt is called a koptdocument
|
|
|
|
KoptDocument = Document:new{
|
|
|
|
_document = false,
|
|
|
|
-- muPDF manages its own additional cache
|
|
|
|
mupdf_cache_size = 5 * 1024 * 1024,
|
|
|
|
djvulibre_cache_size = nil,
|
|
|
|
dc_null = DrawContext.new(),
|
|
|
|
screen_size = Screen:getSize(),
|
|
|
|
screen_dpi = Device:getModel() == "KindlePaperWhite" and 212 or 167,
|
|
|
|
configurable = {
|
2012-12-04 02:24:45 +00:00
|
|
|
font_size = 1.0,
|
2012-11-27 12:31:56 +00:00
|
|
|
page_margin = 0.06,
|
|
|
|
line_spacing = 1.2,
|
|
|
|
word_spacing = 0.15,
|
|
|
|
quality = 1.0,
|
|
|
|
text_wrap = 1,
|
|
|
|
defect_size = 1.0,
|
2012-12-04 02:24:45 +00:00
|
|
|
trim_page = 0,
|
2012-11-27 12:31:56 +00:00
|
|
|
detect_indent = 1,
|
|
|
|
multi_threads = 0,
|
|
|
|
auto_straighten = 0,
|
|
|
|
justification = -1,
|
|
|
|
max_columns = 2,
|
|
|
|
contrast = 1.0,
|
|
|
|
screen_rotation = 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function KoptDocument:init()
|
|
|
|
self.file_type = string.lower(string.match(self.file, ".+%.([^.]+)") or "")
|
|
|
|
if self.file_type == "pdf" then
|
|
|
|
local ok
|
|
|
|
ok, self._document = pcall(pdf.openDocument, self.file, self.mupdf_cache_size)
|
|
|
|
if not ok then
|
|
|
|
self.error_message = self.doc -- will contain error message
|
|
|
|
return
|
|
|
|
end
|
|
|
|
self.is_open = true
|
|
|
|
self.info.has_pages = true
|
|
|
|
if self._document:needsPassword() then
|
|
|
|
self.is_locked = true
|
|
|
|
else
|
|
|
|
self:_readMetadata()
|
|
|
|
end
|
|
|
|
|
|
|
|
elseif self.file_type == "djvu" then
|
|
|
|
if not validDjvuFile(self.file) then
|
|
|
|
self.error_message = "Not a valid DjVu file"
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local ok
|
|
|
|
ok, self._document = pcall(djvu.openDocument, self.file, self.djvulibre_cache_size)
|
|
|
|
if not ok then
|
|
|
|
self.error_message = self.doc -- will contain error message
|
|
|
|
return
|
|
|
|
end
|
|
|
|
self.is_open = true
|
|
|
|
self.info.has_pages = true
|
|
|
|
self:_readMetadata()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function KoptDocument:unlock(password)
|
|
|
|
if not self._document:authenticatePassword(password) then
|
|
|
|
self._document:close()
|
|
|
|
return false, "wrong password"
|
|
|
|
end
|
|
|
|
self.is_locked = false
|
|
|
|
return self:_readMetadata()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- check DjVu magic string to validate
|
|
|
|
function validDjvuFile(filename)
|
|
|
|
f = io.open(filename, "r")
|
|
|
|
if not f then return false end
|
|
|
|
local magic = f:read(8)
|
|
|
|
f:close()
|
|
|
|
if not magic or magic ~= "AT&TFORM" then return false end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function KoptDocument:getUsedBBox(pageno)
|
|
|
|
if self.file_type == "pdf" then
|
|
|
|
local hash = "pgubbox|"..self.file.."|"..pageno
|
|
|
|
local cached = Cache:check(hash)
|
|
|
|
if cached then
|
2012-12-04 02:24:45 +00:00
|
|
|
return cached.ubbox
|
2012-11-27 12:31:56 +00:00
|
|
|
end
|
|
|
|
local page = self._document:openPage(pageno)
|
|
|
|
local used = {}
|
2012-12-04 02:24:45 +00:00
|
|
|
used.x0, used.y0, used.x1, used.y1 = page:getUsedBBox()
|
|
|
|
local pwidth, pheight = page:getSize(self.dc_null)
|
|
|
|
if used.x1 == 0 then used.x1 = pwidth end
|
|
|
|
if used.y1 == 0 then used.y1 = pheight end
|
|
|
|
-- clamp to page BBox
|
|
|
|
if used.x0 < 0 then used.x0 = 0 end;
|
|
|
|
if used.y0 < 0 then used.y0 = 0 end;
|
|
|
|
if used.x1 > pwidth then used.x1 = pwidth end
|
|
|
|
if used.y1 > pheight then used.y1 = pheight end
|
|
|
|
--@TODO give size for cacheitem? 02.12 2012 (houqp)
|
|
|
|
Cache:insert(hash, CacheItem:new{
|
|
|
|
ubbox = used,
|
|
|
|
})
|
2012-11-27 12:31:56 +00:00
|
|
|
page:close()
|
2012-12-04 02:24:45 +00:00
|
|
|
DEBUG("UsedBBox", used)
|
2012-11-27 12:31:56 +00:00
|
|
|
return used
|
|
|
|
elseif self.file_type == "djvu" then
|
|
|
|
-- djvu does not support usedbbox, so fake it.
|
|
|
|
local used = {}
|
|
|
|
local native_dim = self:getNativePageDimensions(pageno)
|
2012-12-04 02:24:45 +00:00
|
|
|
used.x0, used.y0, used.x1, used.y1 = 0, 0, native_dim.w, native_dim.h
|
2012-11-27 12:31:56 +00:00
|
|
|
return used
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- get reflow context
|
|
|
|
function KoptDocument:getKOPTContext(pageno)
|
|
|
|
local kc = KOPTContext.new()
|
|
|
|
kc:setTrim(self.configurable.trim_page)
|
|
|
|
kc:setWrap(self.configurable.text_wrap)
|
|
|
|
kc:setIndent(self.configurable.detect_indent)
|
|
|
|
kc:setRotate(self.configurable.screen_rotation)
|
|
|
|
kc:setColumns(self.configurable.max_columns)
|
|
|
|
kc:setDeviceDim(self.screen_size.w, self.screen_size.h)
|
|
|
|
kc:setDeviceDPI(self.screen_dpi)
|
|
|
|
kc:setStraighten(self.configurable.auto_straighten)
|
|
|
|
kc:setJustification(self.configurable.justification)
|
|
|
|
kc:setZoom(self.configurable.font_size)
|
|
|
|
kc:setMargin(self.configurable.page_margin)
|
|
|
|
kc:setQuality(self.configurable.quality)
|
|
|
|
kc:setContrast(self.configurable.contrast)
|
|
|
|
kc:setDefectSize(self.configurable.defect_size)
|
|
|
|
kc:setLineSpacing(self.configurable.line_spacing)
|
|
|
|
kc:setWordSpacing(self.configurable.word_spacing)
|
|
|
|
local bbox = self:getUsedBBox(pageno)
|
2012-12-04 02:24:45 +00:00
|
|
|
kc:setBBox(bbox.x0, bbox.y0, bbox.x1, bbox.y1)
|
2012-11-27 12:31:56 +00:00
|
|
|
return kc
|
|
|
|
end
|
|
|
|
|
|
|
|
-- calculates page dimensions
|
|
|
|
function KoptDocument:getPageDimensions(pageno, zoom, rotation)
|
2012-11-29 13:53:20 +00:00
|
|
|
-- check cached page size
|
2012-12-04 02:24:45 +00:00
|
|
|
local hash = "kctx|"..self.file.."|"..pageno
|
2012-11-29 13:53:20 +00:00
|
|
|
local cached = Cache:check(hash)
|
|
|
|
if not cached then
|
2012-12-04 02:24:45 +00:00
|
|
|
local kc = self:getKOPTContext(pageno)
|
|
|
|
local page = self._document:openPage(pageno)
|
|
|
|
-- reflow page
|
|
|
|
page:reflow(kc, 0)
|
|
|
|
page:close()
|
|
|
|
local fullwidth, fullheight = kc:getPageDim()
|
|
|
|
DEBUG("page::reflowPage:", "fullwidth:", fullwidth, "fullheight:", fullheight)
|
|
|
|
local page_size = Geom:new{ w = fullwidth, h = fullheight }
|
|
|
|
-- cache reflowed page size and kc
|
|
|
|
Cache:insert(hash, CacheItem:new{ kctx = kc })
|
|
|
|
return page_size
|
2012-11-29 13:53:20 +00:00
|
|
|
end
|
2012-12-04 02:24:45 +00:00
|
|
|
DEBUG("Found cached koptcontex on page", pageno, cached)
|
|
|
|
local fullwidth, fullheight = cached.kctx:getPageDim()
|
|
|
|
local page_size = Geom:new{ w = fullwidth, h = fullheight }
|
|
|
|
return page_size
|
2012-11-27 12:31:56 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function KoptDocument:renderPage(pageno, rect, zoom, rotation, render_mode)
|
2012-12-04 02:24:45 +00:00
|
|
|
self.render_mode = render_mode
|
2012-11-27 12:31:56 +00:00
|
|
|
local hash = "renderpg|"..self.file.."|"..pageno.."|"..zoom.."|"..rotation
|
2012-12-04 02:24:45 +00:00
|
|
|
local page_size = self:getPageDimensions(pageno, zoom, rotation)
|
2012-11-27 12:31:56 +00:00
|
|
|
-- this will be the size we actually render
|
|
|
|
local size = page_size
|
|
|
|
-- we prefer to render the full page, if it fits into cache
|
|
|
|
if not Cache:willAccept(size.w * size.h / 2) then
|
|
|
|
-- whole page won't fit into cache
|
|
|
|
DEBUG("rendering only part of the page")
|
|
|
|
-- TODO: figure out how to better segment the page
|
|
|
|
if not rect then
|
|
|
|
DEBUG("aborting, since we do not have a specification for that part")
|
|
|
|
-- required part not given, so abort
|
|
|
|
return
|
|
|
|
end
|
|
|
|
-- only render required part
|
|
|
|
hash = "renderpg|"..self.file.."|"..pageno.."|"..zoom.."|"..rotation.."|"..tostring(rect)
|
|
|
|
size = rect
|
|
|
|
end
|
|
|
|
|
|
|
|
-- prepare cache item with contained blitbuffer
|
|
|
|
local tile = CacheItem:new{
|
|
|
|
size = size.w * size.h / 2 + 64, -- estimation
|
|
|
|
excerpt = size,
|
|
|
|
pageno = pageno,
|
|
|
|
bb = Blitbuffer.new(size.w, size.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
-- draw to blitbuffer
|
2012-12-04 02:24:45 +00:00
|
|
|
local kc_hash = "kctx|"..self.file.."|"..pageno
|
|
|
|
local page = self._document:openPage(pageno)
|
|
|
|
local cached = Cache:check(kc_hash)
|
|
|
|
if cached then
|
|
|
|
page:rfdraw(cached.kctx, tile.bb)
|
|
|
|
page:close()
|
|
|
|
Cache:insert(hash, tile)
|
|
|
|
return tile
|
|
|
|
end
|
|
|
|
DEBUG("Error: cannot render page before reflowing.")
|
2012-11-27 12:31:56 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
DocumentRegistry:addProvider("pdf", "application/pdf", KoptDocument)
|
|
|
|
DocumentRegistry:addProvider("djvu", "application/djvu", KoptDocument)
|