summaryrefslogtreecommitdiffstats
path: root/acf/model/init.lua
blob: bf4f7b4dde6fd5aec444880be8ec65ed56a5ea78 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
--[[
Copyright (c) 2012-2013 Kaarle Ritvanen
See LICENSE file for license details
--]]

module(..., package.seeall)

error = require('acf.error')
local raise = error.raise
local relabel = error.relabel

local fld = require('acf.model.field')
local Field = fld.Field

local model = require('acf.model.model')
new = model.new
local to_field = model.to_field

node = require('acf.model.node')

local object = require('acf.object')
local class = object.class
local super = object.super

local pth = require('acf.path')
local map = require('acf.util').map


require 'stringy'


-- TODO object-specific actions

-- TODO access control


local Primitive = class(Field)

function Primitive:validate(context, value)
   local t = self.dtype
   if type(value) ~= t then raise(context.path, 'Not a '..t) end
end


String = class(Primitive)

function String:init(params)
   super(self, String):init(params)
   self.dtype = 'string'
end

function String:validate(context, value)
   super(self, String):validate(context, value)
   if self['max-length'] and string.len(value) > self['max-length'] then
      raise(context.path, 'Maximum length exceeded')
   end
end

function String:meta(context)
   local res = super(self, String):meta(context)
   res['max-length'] = self['max-length']
   return res
end


Number = class(Primitive)

function Number:init(params)
   super(self, Number):init(params)
   self.dtype = 'number'
end

function Number:_validate(context, value)
   return super(self, Number):_validate(
      context,
      value and tonumber(value) or value
   )
end


Integer = class(Number)

function Integer:validate(context, value)
   super(self, Integer):validate(context, value)
   if math.floor(value) ~= value then raise(context.path, 'Not an integer') end
end


Boolean = class(Primitive)

function Boolean:init(params)
   super(self, Boolean):init(params)
   self.dtype = 'boolean'
   self.widget = self.dtype
end


Range = class(String)

function Range:init(params)
   super(self, Range):init(params)
   if not self.type then self.type = Integer end
end

function Range:validate(context, value)
   local comps = stringy.split(value, '-')
   if #comps > 2 then raise(context.path, 'Invalid range') end
   for _, v in ipairs(comps) do to_field(self.type):_validate(context, v) end
end


Reference = class(Field)

function Reference:init(params)
   super(self, Reference):init(params)
   self.dtype = 'reference'
   if not self.scope then self.scope = '/' end
end

function Reference:abs_scope(context)
   return pth.to_absolute(self.scope, node.path(context.parent))
end

function Reference:meta(context)
   local res = super(self, Reference):meta(context)
   res.scope = self:abs_scope(context)

   local txn = context.txn
   local objs = txn:get(
      node.addr(relabel('system', txn.search, txn, res.scope))
   ) or {}
   res.choice = map(function(p) return pth.join(res.scope, p) end, objs)
   res['ui-choice'] = objs

   return res
end

function Reference:follow(context, value)
   return context.txn:search(pth.mjoin(self:abs_scope(context), value))
end

function Reference:load(context)
   local ref = super(self, Reference):load(context)
   return ref and self:follow(context, ref) or nil
end

function Reference:_validate(context, value)
   super(self, Reference):_validate(context, value)

   if value == nil then return end

   if object.isinstance(value, node.TreeNode) then value = node.path(value) end

   local path = context.path

   if pth.is_absolute(value) then
      local scope = self:abs_scope(context)
      local prefix = scope..'/'
      if not stringy.startswith(value, prefix) then
	 raise(path, 'Reference out of scope ('..scope..')')
      end
      value = string.sub(value, string.len(prefix) + 1, -1)
   end

   -- assume one-level ref for now
   if #pth.split(value) > 1 then
      raise(path, 'Subtree references not yet supported')
   end

   -- TODO check instance type
   relabel(path, self.follow, self, context, value)

   return value
end


Model = fld.Model


Collection = class(fld.TreeNode)

function Collection:init(params, ctype)
   super(self, Collection):init(params)
   assert(self.type)
   self.ctype = ctype or node.Collection
   self.dtype = 'collection'
   self.widget = self.dtype
end

function Collection:load(context)
   -- automatically create missing collection (TODO: make this configurable?)
   return self.ctype(
      context,
      {field=to_field(self.type), required=self.required}
   )
end


PrimitiveList = class(Collection)

function PrimitiveList:init(params)
   super(self, PrimitiveList):init(params, node.PrimitiveList)
end


-- experimental
Mixed = class(Collection)

function Mixed:init()
   super(self, Mixed):init({type=Mixed}, node.Mixed)
end

function Mixed:load(context)
   local value = Primitive.load(self, context)
   if type(value) == 'table' then return super(self, Mixed):load(context) end
   return value
end

function Mixed:save(context, value)
   if type(value) == 'table' then super(self, Mixed):save(context, value)
   else Primitive.save(self, context, value) end
end



RootModel = new()

function RootModel:init(txn) super(self, RootModel):init{txn=txn, path='/'} end

function register(name, path, field)
   local field = to_field(field)
   function field:compute(context)
      context.path = '/'..name
      context.addr = path
      return self:load(context)
   end
   RootModel[name] = field
end