2
0
mirror of https://github.com/koreader/koreader synced 2024-11-04 12:00:25 +00:00
koreader/reader.lua

220 lines
6.1 KiB
Lua
Raw Normal View History

#!./koreader-base
2012-06-11 16:37:58 +00:00
require "libs/libkoreader-lfs"
einkfb = require("ffi/framebuffer")
input = require("ffi/input")
freetype = require("ffi/freetype")
Image = require("ffi/mupdfimg")
2013-07-01 06:55:28 +00:00
require "defaults"
2014-06-18 17:18:27 +00:00
pcall(dofile, "defaults.persistent.lua")
package.path = "?.lua;common/?.lua;frontend/?.lua"
package.cpath = "?.so;common/?.so;/usr/lib/lua/?.so"
local DocSettings = require("docsettings")
local _ = require("gettext")
2014-06-04 10:19:43 +00:00
local util = require("ffi/util")
-- read settings and check for language override
-- has to be done before requiring other files because
-- they might call gettext on load
G_reader_settings = DocSettings:open(".reader")
local lang_locale = G_reader_settings:readSetting("language")
if lang_locale then
2014-03-13 13:52:43 +00:00
_.changeLang(lang_locale)
end
local DocumentRegistry = require("document/documentregistry")
local FileManager = require("apps/filemanager/filemanager")
local InfoMessage = require("ui/widget/infomessage")
2013-10-18 20:38:07 +00:00
local UIManager = require("ui/uimanager")
2013-10-23 14:51:07 +00:00
local Menu = require("ui/widget/menu")
2013-10-18 20:38:07 +00:00
local Device = require("ui/device")
local Screen = require("ui/screen")
local DEBUG = require("dbg")
2013-02-02 19:41:35 +00:00
local ReaderUI = require("apps/reader/readerui")
2014-05-01 03:58:05 +00:00
local Profiler = nil
2013-02-02 19:41:35 +00:00
function exitReader()
local KindlePowerD = require("ui/device/kindlepowerd")
local ReaderActivityIndicator = require("apps/reader/modules/readeractivityindicator")
2014-03-13 13:52:43 +00:00
G_reader_settings:close()
input.closeAll()
-- Close lipc handles
KindlePowerD:coda()
ReaderActivityIndicator:coda()
2014-03-13 13:52:43 +00:00
if not util.isEmulated() then
if Device:isKindle3() or (Device:getModel() == "KindleDXG") then
-- send double menu key press events to trigger screen refresh
os.execute("echo 'send 139' > /proc/keypad;echo 'send 139' > /proc/keypad")
end
if Device:isTouchDevice() and Device.survive_screen_saver then
-- If needed, hack the swipe to unlock screen
if Device:isSpecialOffers() then
local dev = Device:getTouchInputDev()
if dev then
local width, height = Screen:getWidth(), Screen:getHeight()
input.fakeTapInput(dev,
math.min(width, height)/2,
math.max(width, height)-30
)
end
2014-03-13 13:52:43 +00:00
end
end
end
2014-05-01 03:58:05 +00:00
if Profiler then Profiler.stop() end
2014-03-13 13:52:43 +00:00
os.exit(0)
end
2013-08-14 09:29:05 +00:00
function showReaderUI(file, pass)
2014-03-13 13:52:43 +00:00
DEBUG("opening file", file)
if lfs.attributes(file, "mode") ~= "file" then
UIManager:show(InfoMessage:new{
text = _("File does not exist")
})
return
end
UIManager:show(InfoMessage:new{
text = _("Opening file") .. file,
2014-03-13 13:52:43 +00:00
timeout = 1,
})
UIManager:scheduleIn(0.1, function() doShowReaderUI(file, pass) end)
end
function doShowReaderUI(file, pass)
2014-03-13 13:52:43 +00:00
local document = DocumentRegistry:openDocument(file)
if not document then
UIManager:show(InfoMessage:new{
text = _("No reader engine for this file")
})
return
end
G_reader_settings:saveSetting("lastfile", file)
local reader = ReaderUI:new{
dialog = readerwindow,
dimen = Screen:getSize(),
document = document,
password = pass
}
UIManager:show(reader)
end
2013-02-02 19:41:35 +00:00
function showHomePage(path)
G_reader_settings:saveSetting("lastdir", path)
2014-03-13 13:52:43 +00:00
UIManager:show(FileManager:new{
dimen = Screen:getSize(),
root_path = path,
onExit = function()
UIManager:quit()
end
})
end
2012-06-11 16:37:58 +00:00
-- option parsing:
2013-10-18 20:38:07 +00:00
local longopts = {
2014-03-13 13:52:43 +00:00
debug = "d",
profile = "p",
help = "h",
2012-06-11 16:37:58 +00:00
}
function showusage()
print("usage: ./reader.lua [OPTION] ... path")
print("Read all the books on your E-Ink reader")
2014-03-13 13:52:43 +00:00
print("")
print("-d start in debug mode")
print("-p enable Lua code profiling")
print("-h show this usage help")
2014-03-13 13:52:43 +00:00
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")
2014-03-13 13:52:43 +00:00
print("")
print("If you don't pass any path, the last viewed document will be opened")
2014-03-13 13:52:43 +00:00
print("")
2014-06-05 11:23:54 +00:00
print("This software is licensed under the AGPLv3.")
print("See http://github.com/koreader/koreader for more info.")
2014-03-13 13:52:43 +00:00
return
2012-06-11 16:37:58 +00:00
end
2012-11-01 02:02:53 +00:00
local argidx = 1
while argidx <= #ARGV do
2014-03-13 13:52:43 +00:00
local arg = ARGV[argidx]
argidx = argidx + 1
if arg == "--" then break end
-- parse longopts
if arg:sub(1,2) == "--" then
local opt = longopts[arg:sub(3)]
if opt ~= nil then arg = "-"..opt end
end
-- code for each option
if arg == "-h" then
return showusage()
elseif arg == "-d" then
DEBUG:turnOn()
elseif arg == "-p" then
2014-05-01 03:58:05 +00:00
Profiler = require("jit.p")
Profiler.start("la")
2014-03-13 13:52:43 +00:00
else
-- not a recognized option, should be a filename
argidx = argidx - 1
break
end
2012-06-11 16:37:58 +00:00
end
if Device:hasNoKeyboard() then
2014-03-13 13:52:43 +00:00
-- remove menu item shortcut for K4
Menu.is_enable_shortcut = false
2012-06-27 08:26:06 +00:00
end
2014-01-18 17:23:55 +00:00
-- read some global reader setting here:
-- font
local fontmap = G_reader_settings:readSetting("fontmap")
2012-06-12 04:10:44 +00:00
if fontmap ~= nil then
2014-03-13 13:52:43 +00:00
Font.fontmap = fontmap
2012-06-12 04:10:44 +00:00
end
2014-01-18 17:23:55 +00:00
-- last file
2012-06-12 04:10:44 +00:00
local last_file = G_reader_settings:readSetting("lastfile")
-- load last opened file
local open_last = G_reader_settings:readSetting("open_last")
-- night mode
if G_reader_settings:readSetting("night_mode") then
Screen.bb:invert()
end
2012-06-11 16:37:58 +00:00
do
2014-03-13 13:52:43 +00:00
local powerd = Device:getPowerDevice()
if powerd and powerd.restore_settings then
local intensity = G_reader_settings:readSetting("frontlight_intensity")
intensity = intensity or powerd.flIntensity
powerd:setIntensityWithoutHW(intensity)
-- powerd:setIntensity(intensity)
2014-03-13 13:52:43 +00:00
end
end
2012-06-11 16:37:58 +00:00
if ARGV[argidx] and ARGV[argidx] ~= "" then
if lfs.attributes(ARGV[argidx], "mode") == "file" then
showReaderUI(ARGV[argidx])
elseif open_last and last_file then
showReaderUI(last_file)
UIManager:run()
2014-03-13 13:52:43 +00:00
showHomePage(ARGV[argidx])
else
showHomePage(ARGV[argidx])
2014-03-13 13:52:43 +00:00
end
UIManager:run()
elseif last_file then
2014-03-13 13:52:43 +00:00
showReaderUI(last_file)
UIManager:run()
else
2014-03-13 13:52:43 +00:00
return showusage()
end
2013-03-16 02:02:08 +00:00
exitReader()