mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
1. Usually the error messages from the :open() method are too long (except for crereader files) and won't be shown. So, I extract the first 30 bytes from the error message (if there is one) and show that. But if there is no error message then just display the generic "Error opening document ". Otherwise, as was currently the case, the error message is present but is too long and so we get absolutely nothing, not even a generic one. But in the Debug output we can show the entire error message as there is no restriction on the length. 2. Use showInfoMsgWithDelay() instead of InfoMessage:show() followed by util.sleep(). 3. Remove the dependency on keys.lua. This was needed when we were detecting emulation by comparing the physical value of some KEY_ but now we use util.isEmulated() so there is no need for it anymore.
190 lines
5.4 KiB
Lua
Executable File
190 lines
5.4 KiB
Lua
Executable File
#!./kpdfview
|
|
--[[
|
|
KindlePDFViewer: a reader implementation
|
|
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/>.
|
|
]]--
|
|
require "alt_getopt"
|
|
require "pdfreader"
|
|
require "djvureader"
|
|
require "crereader"
|
|
require "filechooser"
|
|
require "settings"
|
|
require "screen"
|
|
require "commands"
|
|
require "dialog"
|
|
require "extentions"
|
|
|
|
-- option parsing:
|
|
longopts = {
|
|
password = "p",
|
|
goto = "g",
|
|
gamma = "G",
|
|
debug = "d",
|
|
help = "h"
|
|
}
|
|
|
|
function openFile(filename)
|
|
local file_type = string.lower(string.match(filename, ".+%.([^.]+)"))
|
|
local reader = nil
|
|
|
|
reader = ext:getReader(file_type)
|
|
if reader then
|
|
InfoMessage:show("Opening document... ", 0)
|
|
reader:preLoadSettings(filename)
|
|
local ok, err = reader:open(filename)
|
|
if ok then
|
|
reader:loadSettings(filename)
|
|
page_num = reader:getLastPageOrPos()
|
|
reader:goto(tonumber(page_num), true)
|
|
G_reader_settings:saveSetting("lastfile", filename)
|
|
return reader:inputLoop()
|
|
else
|
|
if err then
|
|
Debug("openFile(): "..err)
|
|
showInfoMsgWithDelay(err:sub(1,30), 2000, 1)
|
|
else
|
|
showInfoMsgWithDelay("Error opening document ", 2000, 1)
|
|
end
|
|
end
|
|
end
|
|
return true -- on failed attempts, we signal to keep running
|
|
end
|
|
|
|
function showusage()
|
|
print("usage: ./reader.lua [OPTION] ... path")
|
|
print("Read PDFs and DJVUs on your E-Ink reader")
|
|
print("")
|
|
print("-p, --password=PASSWORD set password for reading PDF document")
|
|
print("-g, --goto=page start reading on page")
|
|
print("-G, --gamma=GAMMA set gamma correction")
|
|
print("-d, --debug start in debug mode")
|
|
print(" (floating point notation, e.g. \"1.5\")")
|
|
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 PDF|DJVU 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:G:hg:dg:", longopts)
|
|
if optarg["h"] then
|
|
return showusage()
|
|
end
|
|
|
|
if not optarg["d"] then
|
|
Debug = function() end
|
|
dump = function() end
|
|
debug = function() end
|
|
end
|
|
|
|
if optarg["G"] ~= nil then
|
|
globalgamma = optarg["G"]
|
|
end
|
|
|
|
if util.isEmulated()==1 then
|
|
input.open("")
|
|
-- SDL key codes
|
|
setEmuKeycodes()
|
|
else
|
|
input.open("slider")
|
|
input.open("/dev/input/event0")
|
|
input.open("/dev/input/event1")
|
|
|
|
-- check if we are running on Kindle 3 (additional volume input)
|
|
if FileExists("/dev/input/event2") then
|
|
Debug("Auto-detected Kindle 3")
|
|
input.open("/dev/input/event2")
|
|
setK3Keycodes()
|
|
end
|
|
end
|
|
|
|
G_screen_saver_mode = false
|
|
G_charging_mode = false
|
|
fb = einkfb.open("/dev/fb0")
|
|
G_width, G_height = fb:getSize()
|
|
-- read current rotation mode
|
|
Screen:updateRotationMode()
|
|
Screen.native_rotation_mode = Screen.cur_rotation_mode
|
|
|
|
-- set up reader's setting: font
|
|
G_reader_settings = DocSettings:open(".reader")
|
|
fontmap = G_reader_settings:readSetting("fontmap")
|
|
if fontmap ~= nil then
|
|
-- we need to iterate over all fonts used in reader to support upgrade from older configuration
|
|
for name,path in pairs(fontmap) do
|
|
if Font.fontmap[name] then
|
|
Font.fontmap[name] = path
|
|
else
|
|
Debug("missing "..name.." in user configuration, using default font "..path)
|
|
end
|
|
end
|
|
end
|
|
|
|
-- set up the mode to manage files
|
|
FileChooser.filemanager_expert_mode = G_reader_settings:readSetting("filemanager_expert_mode") or 1
|
|
-- initialize global settings shared among all readers
|
|
UniReader:initGlobalSettings(G_reader_settings)
|
|
-- initialize specific readers
|
|
PDFReader:init()
|
|
DJVUReader:init()
|
|
CREReader:init()
|
|
|
|
-- display directory or open file
|
|
local patharg = G_reader_settings:readSetting("lastfile")
|
|
if ARGV[optind] and lfs.attributes(ARGV[optind], "mode") == "directory" then
|
|
local running = true
|
|
FileChooser:setPath(ARGV[optind])
|
|
while running do
|
|
local file, callback = FileChooser:choose(0, G_height)
|
|
if callback then
|
|
callback()
|
|
else
|
|
if file ~= nil then
|
|
running = openFile(file)
|
|
print(file)
|
|
else
|
|
running = false
|
|
end
|
|
end
|
|
end
|
|
elseif ARGV[optind] and lfs.attributes(ARGV[optind], "mode") == "file" then
|
|
openFile(ARGV[optind], optarg["p"])
|
|
elseif patharg and lfs.attributes(patharg, "mode") == "file" then
|
|
openFile(patharg, optarg["p"])
|
|
else
|
|
return showusage()
|
|
end
|
|
|
|
|
|
-- save reader settings
|
|
G_reader_settings:saveSetting("fontmap", Font.fontmap)
|
|
G_reader_settings:close()
|
|
|
|
-- @TODO dirty workaround, find a way to force native system poll
|
|
-- screen orientation and upside down mode 09.03 2012
|
|
fb:setOrientation(Screen.native_rotation_mode)
|
|
|
|
input.closeAll()
|
|
if util.isEmulated()==0 then
|
|
os.execute("killall -cont cvm")
|
|
os.execute('echo "send '..KEY_MENU..'" > /proc/keypad;echo "send '..KEY_MENU..'" > /proc/keypad')
|
|
end
|