mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
7894b15511
1. Make "-d" switch passed to reader.lua enable all debugging 2. Enable debugging for now (development stage) to preserve the current behaviour. But for the production release I advise to: a) disable it by not passing "-d" and b) redirect standard output (not just standard error) of reader.lua to crash.log in kpdf.sh 3. Comment out debug printf()s in pdf.c Conflicts: reader.lua
152 lines
3.4 KiB
Lua
Executable File
152 lines
3.4 KiB
Lua
Executable File
#!./kpdfview
|
|
|
|
package.path = "./frontend/?.lua"
|
|
require "ui/ui"
|
|
require "ui/readerui"
|
|
require "ui/filechooser"
|
|
require "ui/infomessage"
|
|
require "document/document"
|
|
require "alt_getopt"
|
|
|
|
function showReader(file, pass)
|
|
local document = DocumentRegistry:openDocument(file)
|
|
if not document then
|
|
UIManager:show(InfoMessage:new{ text = "No reader engine for this file" })
|
|
return
|
|
end
|
|
|
|
local readerwindow = FrameContainer:new{
|
|
dimen = Screen:getSize(),
|
|
background = 0,
|
|
margin = 0,
|
|
padding = 0,
|
|
bordersize = 0
|
|
}
|
|
local reader = ReaderUI:new{
|
|
dialog = readerwindow,
|
|
dimen = Screen:getSize(),
|
|
document = document,
|
|
password = pass
|
|
}
|
|
|
|
readerwindow[1] = reader
|
|
|
|
UIManager:show(readerwindow)
|
|
end
|
|
|
|
function showFileManager(path)
|
|
local FileManager = FileChooser:new{
|
|
path = path,
|
|
dimen = Screen:getSize(),
|
|
is_borderless = true,
|
|
filter = function(filename)
|
|
if DocumentRegistry:getProvider(filename) then
|
|
return true
|
|
end
|
|
end
|
|
}
|
|
|
|
function FileManager:onFileSelect(file)
|
|
showReader(file)
|
|
return true
|
|
end
|
|
|
|
function FileManager:onClose()
|
|
UIManager:quit()
|
|
return true
|
|
end
|
|
|
|
UIManager:show(FileManager)
|
|
end
|
|
|
|
|
|
|
|
-- option parsing:
|
|
longopts = {
|
|
password = "p",
|
|
goto = "g",
|
|
gamma = "G",
|
|
debug = "d",
|
|
help = "h",
|
|
}
|
|
|
|
function showusage()
|
|
print("usage: ./reader.lua [OPTION] ... path")
|
|
print("Read all the books on your E-Ink reader")
|
|
print("")
|
|
print("-p, --password=PASSWORD set password for reading PDF document")
|
|
print("-G, --gamma=GAMMA set gamma correction")
|
|
print(" (floating point notation, e.g. \"1.5\")")
|
|
print("-d, --debug start in debug mode")
|
|
print("-h, --help show this usage help")
|
|
print("")
|
|
print("If you give the name of a directory instead of a file path, a file")
|
|
print("chooser will show up and let you select a file")
|
|
print("")
|
|
print("If you don't pass any path, the last viewed document will be opened")
|
|
print("")
|
|
print("This software is licensed under the GPLv3.")
|
|
print("See http://github.com/hwhw/kindlepdfviewer for more info.")
|
|
return
|
|
end
|
|
|
|
optarg, optind = alt_getopt.get_opts(ARGV, "p:G:hg:dg:", longopts)
|
|
|
|
if optarg["h"] then
|
|
return showusage()
|
|
end
|
|
|
|
if not optarg["d"] then
|
|
DEBUG = function() end
|
|
end
|
|
|
|
if optarg["G"] ~= nil then
|
|
globalgamma = optarg["G"]
|
|
end
|
|
|
|
|
|
if Device.isKindle4() then
|
|
-- remove menu item shortcut for K4
|
|
Menu.is_enable_shortcut = false
|
|
end
|
|
|
|
-- set up reader's setting: font
|
|
G_reader_settings = DocSettings:open(".reader")
|
|
fontmap = G_reader_settings:readSetting("fontmap")
|
|
if fontmap ~= nil then
|
|
Font.fontmap = fontmap
|
|
end
|
|
local last_file = G_reader_settings:readSetting("lastfile")
|
|
|
|
Screen:updateRotationMode()
|
|
Screen.native_rotation_mode = Screen.cur_rotation_mode
|
|
|
|
|
|
|
|
if ARGV[optind] then
|
|
if lfs.attributes(ARGV[optind], "mode") == "directory" then
|
|
showFileManager(ARGV[optind])
|
|
elseif lfs.attributes(ARGV[optind], "mode") == "file" then
|
|
showReader(ARGV[optind], optarg["p"])
|
|
end
|
|
UIManager:run()
|
|
elseif last_file and lfs.attributes(last_file, "mode") == "file" then
|
|
showReader(last_file, optarg["p"])
|
|
UIManager:run()
|
|
else
|
|
return showusage()
|
|
end
|
|
|
|
|
|
|
|
-- @TODO dirty workaround, find a way to force native system poll
|
|
-- screen orientation and upside down mode 09.03 2012
|
|
Screen:setRotationMode(Screen.native_rotation_mode)
|
|
|
|
input.closeAll()
|
|
if util.isEmulated()==0 then
|
|
os.execute("killall -cont cvm")
|
|
-- send double menu key press events to trigger screen refresh
|
|
os.execute("echo 'send 139' > /proc/keypad;echo 'send 139' > /proc/keypad")
|
|
end
|