2014-10-03 16:11:53 +08:00
|
|
|
#!./luajit
|
2012-06-12 00:37:58 +08:00
|
|
|
|
2015-02-19 01:37:36 +08:00
|
|
|
-- load default settings
|
2013-07-01 02:55:28 -04:00
|
|
|
require "defaults"
|
2015-06-15 16:46:43 +08:00
|
|
|
local DataStorage = require("datastorage")
|
|
|
|
|
pcall(dofile, DataStorage:getDataDir() .. "/defaults.persistent.lua")
|
2014-09-25 22:22:30 +08:00
|
|
|
|
2015-02-19 01:37:36 +08:00
|
|
|
-- set search path for 'require()'
|
2016-02-25 16:54:41 +08:00
|
|
|
package.path =
|
|
|
|
|
"common/?.lua;rocks/share/lua/5.1/?.lua;frontend/?.lua;" ..
|
|
|
|
|
package.path
|
|
|
|
|
package.cpath =
|
|
|
|
|
"common/?.so;common/?.dll;/usr/lib/lua/?.so;rocks/lib/lua/5.1/?.so;" ..
|
|
|
|
|
package.cpath
|
2015-02-19 01:37:36 +08:00
|
|
|
|
|
|
|
|
-- set search path for 'ffi.load()'
|
2014-09-25 22:22:30 +08:00
|
|
|
local ffi = require("ffi")
|
2015-02-19 01:37:36 +08:00
|
|
|
local util = require("ffi/util")
|
|
|
|
|
ffi.cdef[[
|
|
|
|
|
char *getenv(const char *name);
|
|
|
|
|
int putenv(const char *envvar);
|
|
|
|
|
int _putenv(const char *envvar);
|
|
|
|
|
]]
|
2014-09-25 22:22:30 +08:00
|
|
|
if ffi.os == "Windows" then
|
|
|
|
|
ffi.C._putenv("PATH=libs;common;")
|
|
|
|
|
end
|
2014-01-18 20:04:14 -02:00
|
|
|
|
|
|
|
|
local DocSettings = require("docsettings")
|
|
|
|
|
local _ = require("gettext")
|
|
|
|
|
-- 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")
|
2014-01-19 12:59:27 -05:00
|
|
|
local lang_locale = G_reader_settings:readSetting("language")
|
|
|
|
|
if lang_locale then
|
2014-03-13 21:52:43 +08:00
|
|
|
_.changeLang(lang_locale)
|
2014-01-18 20:04:14 -02:00
|
|
|
end
|
|
|
|
|
|
2012-06-12 00:37:58 +08:00
|
|
|
-- option parsing:
|
2013-10-18 22:38:07 +02:00
|
|
|
local longopts = {
|
2014-03-13 21:52:43 +08:00
|
|
|
debug = "d",
|
|
|
|
|
profile = "p",
|
|
|
|
|
help = "h",
|
2012-06-12 00:37:58 +08:00
|
|
|
}
|
|
|
|
|
|
2014-09-03 12:09:25 +08:00
|
|
|
local function showusage()
|
2014-06-05 14:58:53 +08:00
|
|
|
print("usage: ./reader.lua [OPTION] ... path")
|
|
|
|
|
print("Read all the books on your E-Ink reader")
|
2014-03-13 21:52:43 +08:00
|
|
|
print("")
|
2014-06-05 14:58:53 +08:00
|
|
|
print("-d start in debug mode")
|
2014-06-05 19:06:35 +08:00
|
|
|
print("-p enable Lua code profiling")
|
2014-06-05 14:58:53 +08:00
|
|
|
print("-h show this usage help")
|
2014-03-13 21:52:43 +08:00
|
|
|
print("")
|
2014-06-05 14:58:53 +08:00
|
|
|
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 21:52:43 +08:00
|
|
|
print("")
|
2014-06-05 14:58:53 +08:00
|
|
|
print("If you don't pass any path, the last viewed document will be opened")
|
2014-03-13 21:52:43 +08:00
|
|
|
print("")
|
2014-06-05 19:23:54 +08:00
|
|
|
print("This software is licensed under the AGPLv3.")
|
2014-06-05 14:58:53 +08:00
|
|
|
print("See http://github.com/koreader/koreader for more info.")
|
2014-03-13 21:52:43 +08:00
|
|
|
return
|
2012-06-12 00:37:58 +08:00
|
|
|
end
|
|
|
|
|
|
2014-11-06 15:07:50 +08:00
|
|
|
-- should check DEBUG option in arg and turn on DEBUG before loading other
|
|
|
|
|
-- modules, otherwise DEBUG in some modules may not be printed.
|
|
|
|
|
local DEBUG = require("dbg")
|
|
|
|
|
|
|
|
|
|
local Profiler = nil
|
2014-10-03 16:11:53 +08:00
|
|
|
local ARGV = arg
|
2012-10-31 22:02:53 -04:00
|
|
|
local argidx = 1
|
2013-08-06 11:53:44 -03:00
|
|
|
while argidx <= #ARGV do
|
2014-03-13 21:52:43 +08: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 11:58:05 +08:00
|
|
|
Profiler = require("jit.p")
|
|
|
|
|
Profiler.start("la")
|
2014-03-13 21:52:43 +08:00
|
|
|
else
|
|
|
|
|
-- not a recognized option, should be a filename
|
|
|
|
|
argidx = argidx - 1
|
|
|
|
|
break
|
|
|
|
|
end
|
2012-06-12 00:37:58 +08:00
|
|
|
end
|
|
|
|
|
|
2014-11-06 15:07:50 +08:00
|
|
|
local lfs = require("libs/libkoreader-lfs")
|
|
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
|
local Device = require("device")
|
|
|
|
|
local Font = require("ui/font")
|
|
|
|
|
|
2014-01-18 12:23:55 -05:00
|
|
|
-- read some global reader setting here:
|
|
|
|
|
-- font
|
|
|
|
|
local fontmap = G_reader_settings:readSetting("fontmap")
|
2012-06-12 12:10:44 +08:00
|
|
|
if fontmap ~= nil then
|
2014-03-13 21:52:43 +08:00
|
|
|
Font.fontmap = fontmap
|
2012-06-12 12:10:44 +08:00
|
|
|
end
|
2014-01-18 12:23:55 -05:00
|
|
|
-- last file
|
2012-06-12 12:10:44 +08:00
|
|
|
local last_file = G_reader_settings:readSetting("lastfile")
|
2014-10-05 14:52:37 +08:00
|
|
|
if last_file and lfs.attributes(last_file, "mode") ~= "file" then
|
|
|
|
|
last_file = nil
|
|
|
|
|
end
|
2014-06-05 19:06:35 +08:00
|
|
|
-- load last opened file
|
|
|
|
|
local open_last = G_reader_settings:readSetting("open_last")
|
2014-06-08 14:06:04 +08:00
|
|
|
-- night mode
|
|
|
|
|
if G_reader_settings:readSetting("night_mode") then
|
2016-03-21 16:30:45 -07:00
|
|
|
Device.screen:toggleNightMode()
|
2014-06-08 14:06:04 +08:00
|
|
|
end
|
2012-06-12 00:37:58 +08:00
|
|
|
|
2015-10-18 00:12:06 +08:00
|
|
|
-- restore kobo frontlight settings and probe kobo touch coordinates
|
2014-09-03 12:19:10 +08:00
|
|
|
if Device:isKobo() then
|
2016-04-14 17:36:06 +02:00
|
|
|
if Device:hasFrontlight() then
|
2016-03-27 23:57:11 -07:00
|
|
|
local powerd = Device:getPowerDevice()
|
|
|
|
|
if powerd and powerd.restore_settings then
|
|
|
|
|
-- UIManager:init() should have sanely set up the frontlight_stuff by this point
|
|
|
|
|
local intensity = G_reader_settings:readSetting("frontlight_intensity")
|
|
|
|
|
powerd.fl_intensity = intensity or powerd.fl_intensity
|
|
|
|
|
local is_frontlight_on = G_reader_settings:readSetting("is_frontlight_on")
|
|
|
|
|
if is_frontlight_on then
|
|
|
|
|
-- default powerd.is_fl_on is false, turn it on
|
|
|
|
|
powerd:toggleFrontlight()
|
|
|
|
|
else
|
2016-04-16 12:21:49 +02:00
|
|
|
-- the light can still be turned on manually outside of KOReader
|
|
|
|
|
-- or Nickel. so we always set the intensity to 0 here to keep it
|
2016-03-27 23:57:11 -07:00
|
|
|
-- in sync with powerd.is_fl_on (false by default)
|
2016-04-16 12:21:49 +02:00
|
|
|
-- NOTE: we cant use setIntensity method here because for Kobo the
|
2016-03-27 23:57:11 -07:00
|
|
|
-- min intensity is 1 :(
|
|
|
|
|
powerd.fl:setBrightness(0)
|
|
|
|
|
end
|
2016-02-25 16:54:41 +08:00
|
|
|
end
|
2014-03-13 21:52:43 +08:00
|
|
|
end
|
2016-04-02 21:52:30 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if Device:needsTouchScreenProbe() then
|
|
|
|
|
Device:touchScreenProbe()
|
2013-08-13 13:56:46 -03:00
|
|
|
end
|
2012-06-12 00:37:58 +08:00
|
|
|
|
2013-03-15 22:12:19 -04:00
|
|
|
if ARGV[argidx] and ARGV[argidx] ~= "" then
|
2014-09-03 12:09:25 +08:00
|
|
|
local file = nil
|
2014-06-05 19:06:35 +08:00
|
|
|
if lfs.attributes(ARGV[argidx], "mode") == "file" then
|
2014-09-03 12:09:25 +08:00
|
|
|
file = ARGV[argidx]
|
2014-06-05 19:06:35 +08:00
|
|
|
elseif open_last and last_file then
|
2014-09-03 12:09:25 +08:00
|
|
|
file = last_file
|
|
|
|
|
end
|
2016-02-25 16:54:41 +08:00
|
|
|
-- if file is given in command line argument or open last document is set
|
|
|
|
|
-- true, the given file or the last file is opened in the reader
|
2014-09-03 12:09:25 +08:00
|
|
|
if file then
|
|
|
|
|
local ReaderUI = require("apps/reader/readerui")
|
2016-03-08 22:52:36 -08:00
|
|
|
UIManager:nextTick(function()
|
|
|
|
|
ReaderUI:showReader(file)
|
|
|
|
|
end)
|
2014-09-03 12:09:25 +08:00
|
|
|
-- we assume a directory is given in command line argument
|
|
|
|
|
-- the filemanger will show the files in that path
|
2014-03-13 21:52:43 +08:00
|
|
|
else
|
2014-09-03 12:09:25 +08:00
|
|
|
local FileManager = require("apps/filemanager/filemanager")
|
2016-02-25 16:54:41 +08:00
|
|
|
local home_dir =
|
|
|
|
|
G_reader_settings:readSetting("home_dir") or ARGV[argidx]
|
2016-03-08 22:52:36 -08:00
|
|
|
UIManager:nextTick(function()
|
|
|
|
|
FileManager:showFiles(home_dir)
|
|
|
|
|
end)
|
2014-03-13 21:52:43 +08:00
|
|
|
end
|
|
|
|
|
UIManager:run()
|
2014-01-17 16:41:44 -02:00
|
|
|
elseif last_file then
|
2014-09-03 12:09:25 +08:00
|
|
|
local ReaderUI = require("apps/reader/readerui")
|
2016-03-08 22:52:36 -08:00
|
|
|
UIManager:nextTick(function()
|
|
|
|
|
ReaderUI:showReader(last_file)
|
|
|
|
|
end)
|
2014-03-13 21:52:43 +08:00
|
|
|
UIManager:run()
|
2012-10-03 00:45:45 +02:00
|
|
|
else
|
2014-03-13 21:52:43 +08:00
|
|
|
return showusage()
|
2012-10-03 00:45:45 +02:00
|
|
|
end
|
|
|
|
|
|
2014-11-06 15:07:50 +08:00
|
|
|
local function exitReader()
|
2016-02-25 16:54:41 +08:00
|
|
|
local ReaderActivityIndicator =
|
|
|
|
|
require("apps/reader/modules/readeractivityindicator")
|
2014-11-06 15:07:50 +08:00
|
|
|
|
|
|
|
|
G_reader_settings:close()
|
|
|
|
|
|
|
|
|
|
-- Close lipc handles
|
|
|
|
|
ReaderActivityIndicator:coda()
|
|
|
|
|
|
|
|
|
|
-- shutdown hardware abstraction
|
|
|
|
|
Device:exit()
|
|
|
|
|
|
|
|
|
|
if Profiler then Profiler.stop() end
|
|
|
|
|
os.exit(0)
|
|
|
|
|
end
|
|
|
|
|
|
2013-03-15 22:02:08 -04:00
|
|
|
exitReader()
|