summaryrefslogtreecommitdiffstats
path: root/aconf/persistence/backends/json.lua
blob: bdf2715fb0aa5f5f32345d5894eec656a09149c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
--[[
Copyright (c) 2012-2014 Kaarle Ritvanen
See LICENSE file for license details
--]]

local pth = require('aconf.path')
local Cache = require('aconf.persistence.backends.volatile')
local util = require('aconf.persistence.util')
local copy = require('aconf.util').copy

local json = require('cjson')
local posix = require('posix')


local backend = require('aconf.object').class()

function backend:init()
   -- TODO cache expiration
   self.cache = {}
   self.dirty = {}
end

function backend:split_path(path)
   local fpath = copy(path)
   local jpath = {}
   local res

   while #fpath > 0 do
      local fp = pth.join('/', table.unpack(fpath))
      if self.cache[fp] then return fp, jpath end
      table.insert(jpath, 1, fpath[#fpath])
      table.remove(fpath)
   end

   fpath = '/'
   
   while true do
      fpath = pth.join(fpath, jpath[1])
      table.remove(jpath, 1)

      local t = posix.stat(fpath, 'type')
      if t == 'link' then t = posix.stat(posix.readlink(fpath), 'type') end
      if not t or not ({directory=true, regular=true})[t] then
	 error('File or directory does not exist: '..fpath)
      end

      if t == 'regular' then return fpath, jpath end

      assert(#jpath > 0)
   end
end

function backend:get(path, top)
   local fpath, jpath = self:split_path(path)
   if not self.cache[fpath] then
      self.cache[fpath] = Cache(json.decode(util.read_file(fpath)))
   end
   return self.cache[fpath]:get(jpath, top)
end

function backend:set(mods)
   local dirty = {}

   for _, mod in ipairs(mods) do
      local path, value = table.unpack(mod)
      local fpath, jpath = self:split_path(path)
      self.cache[fpath]:_set(jpath, value)
      dirty[fpath] = true
   end

   for path, _ in pairs(dirty) do
      local file = util.open_file(path, 'w')
      file:write(json.encode(self.cache[path]:_get{}))
      file:close()
   end
end


return backend