2016-01-07 14:30:28 +00:00
|
|
|
--[[
|
|
|
|
Access and modify values in 'Kobo eReader.conf' used by Nickel.
|
|
|
|
Only PowerOptions:FrontLightLevel is currently supported .
|
|
|
|
]]
|
|
|
|
|
|
|
|
local NickelConf = {}
|
|
|
|
NickelConf.frontLightLevel = {}
|
2016-02-25 08:54:41 +00:00
|
|
|
NickelConf.frontLightState = {}
|
2016-01-07 14:30:28 +00:00
|
|
|
|
|
|
|
local kobo_conf_path = '/mnt/onboard/.kobo/Kobo/Kobo eReader.conf'
|
2016-02-25 08:54:41 +00:00
|
|
|
local front_light_level_str = "FrontLightLevel"
|
|
|
|
local front_light_state_str = "FrontLightState"
|
|
|
|
-- Nickel will set FrontLightLevel to 0 - 100
|
|
|
|
local re_FrontLightLevel = "^" .. front_light_level_str .. "%s*=%s*([0-9]+)%s*$"
|
|
|
|
-- Nickel will set FrontLightState to true (light on) or false (light off)
|
|
|
|
local re_FrontLightState = "^" .. front_light_state_str .. "%s*=%s*(.+)%s*$"
|
2016-01-07 14:30:28 +00:00
|
|
|
local re_PowerOptionsSection = "^%[PowerOptions%]%s*"
|
|
|
|
local re_AnySection = "^%[.*%]%s*"
|
|
|
|
|
2016-02-03 18:35:47 +00:00
|
|
|
|
|
|
|
function NickelConf._set_kobo_conf_path(new_path)
|
|
|
|
kobo_conf_path = new_path
|
|
|
|
end
|
|
|
|
|
2016-02-25 08:54:41 +00:00
|
|
|
function NickelConf._read_kobo_conf(re_Match)
|
|
|
|
local value
|
2016-01-07 14:30:28 +00:00
|
|
|
local correct_section = false
|
2016-01-12 13:52:44 +00:00
|
|
|
local kobo_conf = io.open(kobo_conf_path, "r")
|
|
|
|
|
|
|
|
if kobo_conf then
|
|
|
|
for line in kobo_conf:lines() do
|
2016-02-25 08:54:41 +00:00
|
|
|
if string.match(line, re_PowerOptionsSection) then
|
|
|
|
correct_section = true
|
|
|
|
elseif string.match(line, re_AnySection) then
|
2016-01-12 13:52:44 +00:00
|
|
|
correct_section = false
|
2016-02-25 08:54:41 +00:00
|
|
|
elseif correct_section then
|
|
|
|
value = string.match(line, re_Match)
|
|
|
|
if value then
|
2016-01-12 13:52:44 +00:00
|
|
|
break
|
|
|
|
end
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
|
|
|
end
|
2016-01-12 13:52:44 +00:00
|
|
|
kobo_conf:close()
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
2016-01-12 13:52:44 +00:00
|
|
|
|
2016-02-25 08:54:41 +00:00
|
|
|
return value
|
|
|
|
end
|
|
|
|
|
|
|
|
function NickelConf.frontLightLevel.get()
|
|
|
|
local new_intensity = NickelConf._read_kobo_conf(re_FrontLightLevel)
|
|
|
|
if new_intensity then
|
|
|
|
new_intensity = tonumber(new_intensity)
|
|
|
|
end
|
2016-01-12 13:52:44 +00:00
|
|
|
|
2016-02-25 08:54:41 +00:00
|
|
|
-- In NickelConfSpec, require("device") won't return KoboDevice
|
|
|
|
local powerd = require("device/kobo/powerd")
|
|
|
|
if new_intensity then
|
|
|
|
return powerd:normalizeIntensity(new_intensity)
|
|
|
|
else
|
2016-03-02 06:06:21 +00:00
|
|
|
local fallback_fl_level = powerd.fl_intensity or 1
|
|
|
|
assert(NickelConf.frontLightLevel.set(fallback_fl_level))
|
|
|
|
return fallback_fl_level
|
2016-01-12 13:52:44 +00:00
|
|
|
end
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 08:54:41 +00:00
|
|
|
function NickelConf.frontLightState.get()
|
|
|
|
local new_state = NickelConf._read_kobo_conf(re_FrontLightState)
|
|
|
|
if new_state then
|
|
|
|
new_state = (new_state == "true") or false
|
|
|
|
end
|
2016-03-02 06:30:29 +00:00
|
|
|
-- for devices that do not have toggle button, the entry will be missing
|
|
|
|
-- and we return nil in this case.
|
2016-02-25 08:54:41 +00:00
|
|
|
return new_state
|
|
|
|
end
|
|
|
|
|
|
|
|
function NickelConf._write_kobo_conf(re_Match, key, value)
|
|
|
|
local kobo_conf = io.open(kobo_conf_path, "r")
|
2016-01-07 14:30:28 +00:00
|
|
|
local lines = {}
|
2016-02-25 08:54:41 +00:00
|
|
|
local found = false
|
|
|
|
local remaining
|
2016-01-07 14:30:28 +00:00
|
|
|
local correct_section = false
|
2016-02-25 08:54:41 +00:00
|
|
|
local new_value_line = key .. "=" .. tostring(value)
|
2016-01-12 13:52:44 +00:00
|
|
|
if kobo_conf then
|
2016-02-25 08:54:41 +00:00
|
|
|
local pos
|
2016-01-12 13:52:44 +00:00
|
|
|
for line in kobo_conf:lines() do
|
|
|
|
if string.match(line, re_AnySection) then
|
|
|
|
if correct_section then
|
|
|
|
-- found a new section after having found the correct one,
|
|
|
|
-- therefore the key was missing: let the code below add it
|
2016-02-25 08:54:41 +00:00
|
|
|
kobo_conf:seek("set", pos)
|
2016-01-12 13:52:44 +00:00
|
|
|
break
|
2016-02-25 08:54:41 +00:00
|
|
|
elseif string.match(line, re_PowerOptionsSection) then
|
2016-01-12 13:52:44 +00:00
|
|
|
correct_section = true
|
|
|
|
end
|
|
|
|
end
|
2016-02-25 08:54:41 +00:00
|
|
|
local old_value = string.match(line, re_Match)
|
|
|
|
if correct_section and old_value then
|
|
|
|
lines[#lines + 1] = new_value_line
|
|
|
|
found = true
|
2016-01-12 13:52:44 +00:00
|
|
|
break
|
|
|
|
else
|
|
|
|
lines[#lines + 1] = line
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
2016-02-25 08:54:41 +00:00
|
|
|
pos = kobo_conf:seek()
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
2016-02-25 08:54:41 +00:00
|
|
|
|
|
|
|
remaining = kobo_conf:read("*a")
|
|
|
|
kobo_conf:close()
|
2016-01-12 13:52:44 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 08:54:41 +00:00
|
|
|
if not found then
|
2016-01-12 13:52:44 +00:00
|
|
|
if not correct_section then
|
2016-02-25 08:54:41 +00:00
|
|
|
lines[#lines + 1] = "[PowerOptions]"
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
2016-02-25 08:54:41 +00:00
|
|
|
lines[#lines + 1] = new_value_line
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
|
|
|
|
2016-02-15 09:33:48 +00:00
|
|
|
local kobo_conf_w = assert(io.open(kobo_conf_path, "w"))
|
2016-01-07 14:30:28 +00:00
|
|
|
for i, line in ipairs(lines) do
|
2016-01-12 13:52:44 +00:00
|
|
|
kobo_conf_w:write(line, "\n")
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
2016-02-25 08:54:41 +00:00
|
|
|
if remaining then
|
|
|
|
kobo_conf_w:write(remaining)
|
|
|
|
end
|
2016-01-12 13:52:44 +00:00
|
|
|
kobo_conf_w:close()
|
2016-02-25 08:54:41 +00:00
|
|
|
|
2016-01-12 13:52:44 +00:00
|
|
|
return true
|
2016-01-07 14:30:28 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 08:54:41 +00:00
|
|
|
function NickelConf.frontLightLevel.set(new_intensity)
|
|
|
|
assert(new_intensity >= 0 and new_intensity <= 100,
|
|
|
|
"Wrong brightness value given!")
|
|
|
|
return NickelConf._write_kobo_conf(re_FrontLightLevel,
|
|
|
|
front_light_level_str,
|
|
|
|
new_intensity)
|
|
|
|
end
|
|
|
|
|
|
|
|
function NickelConf.frontLightState.set(new_state)
|
|
|
|
assert(type(new_state) == "boolean",
|
|
|
|
"Wrong front light state value type (expect boolean)!")
|
|
|
|
return NickelConf._write_kobo_conf(re_FrontLightState,
|
|
|
|
front_light_state_str,
|
|
|
|
new_state)
|
|
|
|
end
|
|
|
|
|
2016-01-07 14:30:28 +00:00
|
|
|
return NickelConf
|