Overall CBI-UVL ineraction fixes
[project/luci.git] / libs / uvl / luasrc / uvl.lua
1 --[[
2
3 UCI Validation Layer - Main Library
4 (c) 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
5 (c) 2008 Steven Barth <steven@midlink.org>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14
15 ]]--
16
17
18 --- UVL - UCI Validation Layer
19 -- @class       module
20 -- @cstyle      instance
21
22 local fs = require "luci.fs"
23 local uci = require "luci.model.uci"
24 local util = require "luci.util"
25 local table = require "table"
26 local string = require "string"
27
28 local require, pcall, ipairs, pairs = require, pcall, ipairs, pairs
29 local type, error, tonumber, tostring = type, error, tonumber, tostring
30 local unpack, loadfile = unpack, loadfile
31
32 module "luci.uvl"
33
34 local ERR = require "luci.uvl.errors"
35 local datatypes = require "luci.uvl.datatypes"
36 local validation = require "luci.uvl.validation"
37 local dependencies = require "luci.uvl.dependencies"
38
39 local TYPE_SCHEME   = 0x00
40 local TYPE_CONFIG   = 0x01
41 local TYPE_SECTION  = 0x02
42 local TYPE_OPTION   = 0x03
43 local TYPE_ENUM     = 0x04
44
45 --- Boolean; default true;
46 -- treat sections found in config but not in scheme as error
47 STRICT_UNKNOWN_SECTIONS    = true
48
49 --- Boolean; default true;
50 -- treat options found in config but not in scheme as error
51 STRICT_UNKNOWN_OPTIONS     = true
52
53 --- Boolean; default true;
54 -- treat failed external validators as error
55 STRICT_EXTERNAL_VALIDATORS = true
56
57 --- Boolean; default true;
58 -- treat list values stored as options like errors
59 STRICT_LIST_TYPE           = true
60
61
62 local default_schemedir = "/lib/uci/schema"
63 local default_savedir = "/tmp/.uvl"
64
65
66 --- Object constructor
67 -- @class                       function
68 -- @name                        UVL
69 -- @param schemedir     Path to the scheme directory (optional)
70 -- @return                      Instance object
71 UVL = util.class()
72
73 function UVL.__init__( self, schemedir )
74         self.schemedir  = schemedir or default_schemedir
75         self.packages   = { }
76         self.beenthere  = { }
77         self.depseen    = { }
78         self.uci                = uci
79         self.err                = ERR
80         self.dep                = dependencies
81         self.datatypes  = datatypes
82 end
83
84
85 --- Parse given scheme and return the scheme tree.
86 -- @param scheme        Name of the scheme to parse
87 -- @return                      Table containing the parsed scheme or nil on error
88 -- @return                      String containing the reason for errors (if any)
89 function UVL.get_scheme( self, scheme )
90         if not self.packages[scheme] then
91                 local ok, err = self:read_scheme( scheme )
92                 if not ok then
93                         return nil, err
94                 end
95         end
96         return self.packages[scheme], nil
97 end
98
99 --- Validate given configuration, section or option.
100 -- @param config        Name of the configuration to validate
101 -- @param section       Name of the section to validate (optional)
102 -- @param option        Name of the option to validate (optional)
103 -- @return                      Boolean indicating whether the given config validates
104 -- @return                      String containing the reason for errors (if any)
105 function UVL.validate( self, config, section, option )
106         if config and section and option then
107                 return self:validate_option( config, section, option )
108         elseif config and section then
109                 return self:validate_section( config, section )
110         elseif config then
111                 return self:validate_config( config )
112         end
113 end
114
115 --- Validate given configuration.
116 -- @param cfg   Name of the configuration to validate
117 -- @return                      Boolean indicating whether the given config validates
118 -- @return                      String containing the reason for errors (if any)
119 function UVL.validate_config( self, cfg, uci )
120
121         if not self.packages[cfg] then
122                 local ok, err = self:read_scheme(cfg)
123                 if not ok then
124                         return false, err
125                 end
126         end
127
128         local co = config( self, uci or cfg, uci and cfg )
129         local sc = { }
130
131         self.beenthere = { }
132         self.depseen   = { }
133
134         if not co:config() then
135                 return false, co:errors()
136         end
137
138         local function _uci_foreach( type, func )
139                 for k, v in pairs(co:config()) do
140                         if v['.type'] == type then
141                                 sc[type] = sc[type] + 1
142                                 local ok, err = func( k, v )
143                                 if not ok then co:error(err) end
144                         end
145                 end
146         end
147
148         for k, v in pairs( self.packages[cfg].sections ) do
149                 sc[k] = 0
150                 _uci_foreach( k,
151                         function(s)
152                                 return self:_validate_section( co:section(s) )
153                         end
154                 )
155         end
156
157         if STRICT_UNKNOWN_SECTIONS then
158                 for k, v in pairs(co:config()) do
159                         local so = co:section(k)
160                         if not self.beenthere[so:cid()] then
161                                 co:error(ERR.SECT_UNKNOWN(so))
162                         end
163                 end
164         end
165
166         for _, k in ipairs(util.keys(sc)) do
167                 local so = co:section(k)
168                 if so:scheme('required') and sc[k] == 0 then
169                         co:error(ERR.SECT_REQUIRED(so))
170                 elseif so:scheme('unique') and sc[k] > 1 then
171                         co:error(ERR.SECT_UNIQUE(so))
172                 end
173         end
174
175         return co:ok(), co:errors()
176 end
177
178 --- Validate given config section.
179 -- @param config        Name of the configuration to validate
180 -- @param section       Name of the section to validate
181 -- @return                      Boolean indicating whether the given config validates
182 -- @return                      String containing the reason for errors (if any)
183 function UVL.validate_section( self, cfg, section, uci )
184
185         if not self.packages[cfg] then
186                 local ok, err = self:read_scheme( cfg )
187                 if not ok then
188                         return false, err
189                 end
190         end
191
192         local co = config( self, uci or cfg, uci and cfg )
193         local so = co:section( section )
194
195         self.beenthere = { }
196         self.depseen   = { }
197
198         if not co:config() then
199                 return false, co:errors()
200         end
201
202         if so:config() then
203                 return self:_validate_section( so )
204         else
205                 return false, ERR.SECT_NOTFOUND(so)
206         end
207 end
208
209 --- Validate given config option.
210 -- @param config        Name of the configuration to validate
211 -- @param section       Name of the section to validate
212 -- @param option        Name of the option to validate
213 -- @return                      Boolean indicating whether the given config validates
214 -- @return                      String containing the reason for errors (if any)
215 function UVL.validate_option( self, cfg, section, option, uci )
216
217         if not self.packages[cfg] then
218                 local ok, err = self:read_scheme( cfg )
219                 if not ok then
220                         return false, err
221                 end
222         end
223
224         local co = config( self, uci or cfg, uci and cfg )
225         local so = co:section( section )
226         local oo = so:option( option )
227
228         if not co:config() then
229                 return false, co:errors()
230         end
231
232         if so:config() and oo:config() then
233                 return self:_validate_option( oo )
234         else
235                 return false, ERR.OPT_NOTFOUND(oo)
236         end
237 end
238
239
240 function UVL._validate_section( self, section )
241
242         self.beenthere[section:cid()] = true
243
244         if section:config() then
245                 if section:scheme('named') == true and
246                    section:config('.anonymous') == true
247                 then
248                         return false, ERR.SECT_NAMED(section)
249                 end
250
251                 for _, v in ipairs(section:variables()) do
252                         local ok, err = self:_validate_option( v )
253                         if not ok and (
254                                 v:scheme('required') or v:scheme('type') == "enum" or (
255                                         not err:is(ERR.ERR_DEP_NOTEQUAL) and
256                                         not err:is(ERR.ERR_DEP_NOVALUE)
257                                 )
258                         ) then
259                                 section:error(err)
260                         end
261                 end
262
263                 local ok, err = dependencies.check( self, section )
264                 if not ok then
265                         section:error(err)
266                 end
267         else
268                 return false, ERR.SECT_NOTFOUND(section)
269         end
270
271         if STRICT_UNKNOWN_OPTIONS and not section:scheme('dynamic') then
272                 for k, v in pairs(section:config()) do
273                         local oo = section:option(k)
274                         if k:sub(1,1) ~= "." and not self.beenthere[oo:cid()] then
275                                 section:error(ERR.OPT_UNKNOWN(oo))
276                         end
277                 end
278         end
279
280         return section:ok(), section:errors()
281 end
282
283 function UVL._validate_option( self, option, nodeps )
284
285         self.beenthere[option:cid()] = true
286
287         if not option:scheme() and not option:parent():scheme('dynamic') then
288                 if STRICT_UNKNOWN_OPTIONS then
289                         return false, option:error(ERR.OPT_UNKNOWN(option))
290                 else
291                         return true
292                 end
293
294         elseif option:scheme() then
295                 if option:scheme('required') and not option:value() then
296                         return false, option:error(ERR.OPT_REQUIRED(option))
297
298                 elseif option:value() then
299                         local val = option:value()
300
301                         if option:scheme('type') == "reference" or
302                            option:scheme('type') == "enum"
303                         then
304                                 local scheme_values = option:scheme('values') or { }
305                                 local config_values = ( type(val) == "table" and val or { val } )
306                                 for _, v in ipairs(config_values) do
307                                         if not scheme_values[v] then
308                                                 return false, option:error( ERR.OPT_BADVALUE(
309                                                         option, { v, util.serialize_data(
310                                                                 util.keys(scheme_values)
311                                                         ) }
312                                                 ) )
313                                         end
314                                 end
315                         elseif option:scheme('type') == "list" then
316                                 if type(val) ~= "table" and STRICT_LIST_TYPE then
317                                         return false, option:error(ERR.OPT_NOTLIST(option))
318                                 end
319                         end
320
321                         if option:scheme('datatype') then
322                                 local dt = option:scheme('datatype')
323
324                                 if self.datatypes[dt] then
325                                         val = ( type(val) == "table" and val or { val } )
326                                         for i, v in ipairs(val) do
327                                                 if not self.datatypes[dt]( v ) then
328                                                         return false, option:error(
329                                                                 ERR.OPT_INVVALUE(option, { v, dt })
330                                                         )
331                                                 end
332                                         end
333                                 else
334                                         return false, option:error(ERR.OPT_DATATYPE(option, dt))
335                                 end
336                         end
337
338                         if not nodeps then
339                                 local ok, err = dependencies.check( self, option )
340                                 if not ok then
341                                         option:error(err)
342                                 end
343                         end
344                 end
345
346                 local ok, err = validation.check( self, option )
347                 if not ok and STRICT_EXTERNAL_VALIDATORS then
348                         return false, option:error(err)
349                 end
350         end
351
352         return option:ok(), option:errors()
353 end
354
355 --- Find all parts of given scheme and construct validation tree.
356 -- This is normally done on demand, so you don't have to call this function
357 -- by yourself.
358 -- @param shm   Name of the scheme to parse
359 -- @param alias         Create an alias for the loaded scheme
360 function UVL.read_scheme( self, shm, alias )
361
362         local so = scheme( self, shm )
363         local bc = "%s/bytecode/%s.lua" %{ self.schemedir, shm }
364
365         if not fs.access(bc) then
366                 local files = fs.glob(self.schemedir .. '/*/' .. shm)
367
368                 if files then
369                         local ok, err
370                         for i, file in ipairs( files ) do
371                                 if not fs.access(file) then
372                                         return false, so:error(ERR.SME_READ(so,file))
373                                 end
374
375                                 local uci = uci.cursor( fs.dirname(file), default_savedir )
376
377                                 local sname = fs.basename(file)
378                                 local sd, err = uci:load( sname )
379
380                                 if not sd then
381                                         return false, ERR.UCILOAD(so, err)
382                                 end
383
384                                 ok, err = pcall(function()
385                                         uci:foreach(sname, "package", function(s)
386                                                 self:_parse_package(so, s[".name"], s)
387                                         end)
388                                         uci:foreach(sname, "section", function(s)
389                                                 self:_parse_section(so, s[".name"], s)
390                                         end)
391                                         uci:foreach(sname, "variable", function(s)
392                                                 self:_parse_var(so, s[".name"], s)
393                                         end)
394                                         uci:foreach(sname, "enum", function(s)
395                                                 self:_parse_enum(so, s[".name"], s)
396                                         end)
397
398                                 end)
399                         end
400
401                         if ok and alias then self.packages[alias] = self.packages[shm] end
402                         return ok and self, err
403                 else
404                         return false, so:error(ERR.SME_FIND(so, self.schemedir))
405                 end
406         else
407                 local sc = loadfile(bc)
408                 if sc then
409                         self.packages[shm] = sc()
410                         return true
411                 else
412                         return false, so:error(ERR.SME_READ(so,bc))
413                 end
414         end
415 end
416
417 -- helper function to check for required fields
418 local function _req( t, n, c, r )
419         for i, v in ipairs(r) do
420                 if not c[v] then
421                         local p, o = scheme:sid(), nil
422
423                         if t == TYPE_SECTION then
424                                 o = section( scheme, nil, p, n )
425                         elseif t == TYPE_OPTION then
426                                 o = option( scheme, nil, p, '(nil)', n )
427                         elseif t == TYPE_ENUM then
428                                 o = enum( scheme, nil, p, '(nil)', '(nil)', n )
429                         end
430
431                         return false, ERR.SME_REQFLD(o,v)
432                 end
433         end
434         return true
435 end
436
437 -- helper function to validate references
438 local function _ref( c, t )
439         local r, k, n = {}
440         if c == TYPE_SECTION then
441                 k = "package"
442                 n = 1
443         elseif c == TYPE_OPTION then
444                 k = "section"
445                 n = 2
446         elseif c == TYPE_ENUM then
447                 k = "variable"
448                 n = 3
449         end
450
451         for o in t[k]:gmatch("[^.]+") do
452                 r[#r+1] = o
453         end
454         r[1] = ( #r[1] > 0 and r[1] or scheme:sid() )
455
456         if #r ~= n then
457                 return false, ERR.SME_BADREF(scheme, k)
458         end
459
460         return r
461 end
462
463 -- helper function to read bools
464 local function _bool( v )
465         return ( v == "true" or v == "yes" or v == "on" or v == "1" )
466 end
467
468 -- Step 0: get package meta information
469 function UVL._parse_package(self, scheme, k, v)
470         local sid = scheme:sid()
471         local pkg = self.packages[sid] or {
472                 ["name"]      = sid;
473                 ["sections"]  = { };
474                 ["variables"] = { };
475         }
476
477         pkg.title = v.title
478         pkg.description = v.description
479
480         self.packages[sid] = pkg
481 end
482
483 -- Step 1: get all sections
484 function UVL._parse_section(self, scheme, k, v)
485         local ok, err = _req( TYPE_SECTION, k, v, { "name", "package" } )
486         if err then error(scheme:error(err)) end
487
488         local r, err = _ref( TYPE_SECTION, v )
489         if err then error(scheme:error(err)) end
490
491         local p = self.packages[r[1]] or {
492                 ["name"]      = r[1];
493                 ["sections"]  = { };
494                 ["variables"] = { };
495         }
496         p.sections[v.name]  = p.sections[v.name]  or { }
497         p.variables[v.name] = p.variables[v.name] or { }
498         self.packages[r[1]] = p
499
500         local s  = p.sections[v.name]
501         local so = scheme:section(v.name)
502
503         for k, v2 in pairs(v) do
504                 if k ~= "name" and k ~= "package" and k:sub(1,1) ~= "." then
505                         if k == "depends" then
506                                 s.depends = self:_read_dependency( v2, s.depends )
507                                 if not s.depends then
508                                         return false, scheme:error(
509                                                 ERR.SME_BADDEP(so, util.serialize_data(s.depends))
510                                         )
511                                 end
512                         elseif k == "dynamic" or k == "unique" or
513                                k == "required" or k == "named"
514                         then
515                                 s[k] = _bool(v2)
516                         else
517                                 s[k] = v2
518                         end
519                 end
520         end
521
522         s.dynamic  = s.dynamic  or false
523         s.unique   = s.unique   or false
524         s.required = s.required or false
525         s.named    = s.named    or false
526 end
527
528
529         -- Step 2: get all variables
530 function UVL._parse_var(self, scheme, k, v)
531         local ok, err = _req( TYPE_OPTION, k, v, { "name", "section" } )
532         if err then error(scheme:error(err)) end
533
534         local r, err = _ref( TYPE_OPTION, v )
535         if err then error(scheme:error(err)) end
536
537         local p = self.packages[r[1]]
538         if not p then
539                 error(scheme:error(
540                         ERR.SME_VBADPACK({scheme:sid(), '', v.name}, r[1])
541                 ))
542         end
543
544         local s = p.variables[r[2]]
545         if not s then
546                 error(scheme:error(
547                         ERR.SME_VBADSECT({scheme:sid(), '', v.name}, r[2])
548                 ))
549         end
550
551         s[v.name] = s[v.name] or { }
552
553         local t  = s[v.name]
554         local so = scheme:section(r[2])
555         local to = so:option(v.name)
556
557         for k, v2 in pairs(v) do
558                 if k ~= "name" and k ~= "section" and k:sub(1,1) ~= "." then
559                         if k == "depends" then
560                                 t.depends = self:_read_dependency( v2, t.depends )
561                                 if not t.depends then
562                                         error(scheme:error(so:error(
563                                                 ERR.SME_BADDEP(to, util.serialize_data(v2))
564                                         )))
565                                 end
566                         elseif k == "validator" then
567                                 t.validators = self:_read_validator( v2, t.validators )
568                                 if not t.validators then
569                                         error(scheme:error(so:error(
570                                                 ERR.SME_BADVAL(to, util.serialize_data(v2))
571                                         )))
572                                 end
573                         elseif k == "valueof" then
574                                 local values, err = self:_read_reference( v2 )
575                                 if err then
576                                         error(scheme:error(so:error(
577                                                 ERR.REFERENCE(to, util.serialize_data(v2)):child(err)
578                                         )))
579                                 end
580                                 t.type   = "reference"
581                                 t.values = values
582                                 t.valueof = type(v2) == "table" and v2 or {v2}
583                         elseif k == "required" then
584                                 t[k] = _bool(v2)
585                         else
586                                 t[k] = t[k] or v2
587                         end
588                 end
589         end
590
591         t.type     = t.type     or "variable"
592         t.datatype = t.datatype or "string"
593         t.required = t.required or false
594 end
595
596 -- Step 3: get all enums
597 function UVL._parse_enum(self, scheme, k, v)
598         local ok, err = _req( TYPE_ENUM, k, v, { "value", "variable" } )
599         if err then error(scheme:error(err)) end
600
601         local r, err = _ref( TYPE_ENUM, v )
602         if err then error(scheme:error(err)) end
603
604         local p = self.packages[r[1]]
605         if not p then
606                 error(scheme:error(
607                         ERR.SME_EBADPACK({scheme:sid(), '', '', v.value}, r[1])
608                 ))
609         end
610
611         local s = p.variables[r[2]]
612         if not s then
613                 error(scheme:error(
614                         ERR.SME_EBADSECT({scheme:sid(), '', '', v.value}, r[2])
615                 ))
616         end
617
618         local t = s[r[3]]
619         if not t then
620                 error(scheme:error(
621                         ERR.SME_EBADOPT({scheme:sid(), '', '', v.value}, r[3])
622                 ))
623         end
624
625
626         local so = scheme:section(r[2])
627         local oo = so:option(r[3])
628         local eo = oo:enum(v.value)
629
630         if t.type ~= "enum" and t.type ~= "reference" then
631                 error(scheme:error(ERR.SME_EBADTYPE(eo)))
632         end
633
634         if not t.values then
635                 t.values = { [v.value] = v.title or v.value }
636                 t.valuelist = { {value = v.value, title = v.title} }
637         else
638                 t.values[v.value] = v.title or v.value
639                 t.valuelist[#t.valuelist + 1] = {value = v.value, title = v.title}
640         end
641
642         if not t.enum_depends then
643                 t.enum_depends = { }
644         end
645
646         if v.default then
647                 if t.default then
648                         error(scheme:error(ERR.SME_EBADDEF(eo)))
649                 end
650                 t.default = v.value
651         end
652
653         if v.depends then
654                 t.enum_depends[v.value] = self:_read_dependency(
655                         v.depends, t.enum_depends[v.value]
656                 )
657
658                 if not t.enum_depends[v.value] then
659                         error(scheme:error(so:error(oo:error(
660                                 ERR.SME_BADDEP(eo, util.serialize_data(v.depends))
661                         ))))
662                 end
663         end
664 end
665
666 -- Read a dependency specification
667 function UVL._read_dependency( self, values, deps )
668         local expr = "%$?[%w_]+"
669         if values then
670                 values = ( type(values) == "table" and values or { values } )
671                 for _, value in ipairs(values) do
672                         local condition = { }
673                         for val in value:gmatch("[^,]+") do
674                                 local k, e, v = val:match("%s*([%w$_.]+)%s*(=?)%s*(.*)")
675
676                                 if k and (
677                                         k:match("^"..expr.."%."..expr.."%."..expr.."$") or
678                                         k:match("^"..expr.."%."..expr.."$") or
679                                         k:match("^"..expr.."$")
680                                 ) then
681                                         condition[k] = (e == '=') and v or true
682                                 else
683                                         return nil
684                                 end
685                         end
686
687                         if not deps then
688                                 deps = { condition }
689                         else
690                                 deps[#deps+1] = condition
691                         end
692                 end
693         end
694
695         return deps
696 end
697
698 -- Read a validator specification
699 function UVL._read_validator( self, values, validators )
700         if values then
701                 values = ( type(values) == "table" and values or { values } )
702                 for _, value in ipairs(values) do
703                         local validator
704
705                         if value:match("^exec:") then
706                                 validator = value:gsub("^exec:","")
707                         elseif value:match("^lua:") then
708                                 validator = self:_resolve_function( (value:gsub("^lua:","") ) )
709                         elseif value:match("^regexp:") then
710                                 local pattern = value:gsub("^regexp:","")
711                                 validator = function( type, dtype, pack, sect, optn, ... )
712                                         local values = { ... }
713                                         for _, v in ipairs(values) do
714                                                 local ok, match =
715                                                         pcall( string.match, v, pattern )
716
717                                                 if not ok then
718                                                         return false, match
719                                                 elseif not match then
720                                                         return false,
721                                                                 'Value "%s" does not match pattern "%s"' % {
722                                                                         v, pattern
723                                                                 }
724                                                 end
725                                         end
726                                         return true
727                                 end
728                         end
729
730                         if validator then
731                                 if not validators then
732                                         validators = { validator }
733                                 else
734                                         validators[#validators+1] = validator
735                                 end
736                         else
737                                 return nil
738                         end
739                 end
740
741                 return validators
742         end
743 end
744
745 -- Read a reference specification (XXX: We should validate external configs too...)
746 function UVL._read_reference( self, values )
747         local val = { }
748         values = ( type(values) == "table" and values or { values } )
749
750         for _, value in ipairs(values) do
751                 local ref = util.split(value, ".")
752
753                 if #ref == 2 or #ref == 3 then
754                         local co = config( self, ref[1] )
755                         if not co:config() then return false, co:errors() end
756
757                         for k, v in pairs(co:config()) do
758                                 if v['.type'] == ref[2] then
759                                         if #ref == 2 then
760                                                 if v['.anonymous'] == true then
761                                                         return false, ERR.SME_INVREF('', value)
762                                                 end
763                                                 val[k] = k      -- XXX: title/description would be nice
764                                         elseif v[ref[3]] then
765                                                 val[v[ref[3]]] = v[ref[3]]  -- XXX: dito
766                                         end
767                                 end
768                         end
769                 else
770                         return false, ERR.SME_BADREF('', value)
771                 end
772         end
773
774         return val, nil
775 end
776
777 -- Resolve given path
778 function UVL._resolve_function( self, value )
779         local path = util.split(value, ".")
780
781         for i=1, #path-1 do
782                 local stat, mod = pcall(
783                         require, table.concat(path, ".", 1, i)
784                 )
785
786                 if stat and mod then
787                         for j=i+1, #path-1 do
788                                 if not type(mod) == "table" then
789                                         break
790                                 end
791                                 mod = mod[path[j]]
792                                 if not mod then
793                                         break
794                                 end
795                         end
796                         mod = type(mod) == "table" and mod[path[#path]] or nil
797                         if type(mod) == "function" then
798                                 return mod
799                         end
800                 end
801         end
802 end
803
804
805 --- Object representation of an uvl item - base class.
806 uvlitem = util.class()
807
808 function uvlitem.cid(self)
809         if #self.cref == 1 then
810                 return self.cref[1]
811         else
812                 local r = { unpack(self.cref) }
813                 local c = self.c
814                 if c and c[r[2]] and c[r[2]]['.anonymous'] and c[r[2]]['.index'] then
815                         r[2] = '@' .. c[r[2]]['.type'] ..
816                                '[' .. tostring(c[r[2]]['.index']) .. ']'
817                 end
818                 return table.concat( r, '.' )
819         end
820 end
821
822 function uvlitem.sid(self)
823         return table.concat( self.sref, '.' )
824 end
825
826 function uvlitem.scheme(self, opt)
827         local s = self.s and self.s.packages
828         s = s      and s[self.sref[1]]
829         if #self.sref == 4 or #self.sref == 3 then
830                 s = s      and s.variables
831                 s = s      and s[self.sref[2]]
832                 s = s      and s[self.sref[3]]
833         elseif #self.sref == 2 then
834                 s = s      and s.sections
835                 s = s      and s[self.sref[2]]
836         end
837
838         if s and opt then
839                 return s[opt]
840         elseif s then
841                 return s
842         end
843 end
844
845 function uvlitem.config(self, opt)
846         local c = self.c
847
848         if #self.cref >= 2 and #self.cref <= 4 then
849                 c = c and self.c[self.cref[2]] or nil
850                 if #self.cref >= 3 then
851                         c = c and c[self.cref[3]] or nil
852                 end
853         end
854
855         if c and opt then
856                 return c[opt]
857         elseif c then
858                 return c
859         end
860 end
861
862 function uvlitem.title(self)
863         return self:scheme() and self:scheme('title') or
864                 self.cref[3] or self.cref[2] or self.cref[1]
865 end
866
867 function uvlitem.type(self)
868         if self.t == TYPE_CONFIG then
869                 return 'config'
870         elseif self.t == TYPE_SECTION then
871                 return 'section'
872         elseif self.t == TYPE_OPTION then
873                 return 'option'
874         elseif self.t == TYPE_ENUM then
875                 return 'enum'
876         end
877 end
878
879 function uvlitem.error(self, ...)
880         if not self.e then
881                 local errconst = { ERR.CONFIG, ERR.SECTION, ERR.OPTION, ERR.OPTION }
882                 self.e = errconst[#self.cref]( self )
883         end
884
885         return self.e:child( ... )
886 end
887
888 function uvlitem.errors(self)
889         return self.e
890 end
891
892 function uvlitem.ok(self)
893         return not self:errors()
894 end
895
896 function uvlitem.parent(self)
897         if self.p then
898                 return self.p
899         elseif #self.cref == 3 or #self.cref == 4 then
900                 return section( self.s, self.c, self.cref[1], self.cref[2] )
901         elseif #self.cref == 2 then
902                 return config( self.s, self.c, self.cref[1] )
903         else
904                 return nil
905         end
906 end
907
908 function uvlitem._loadconf(self, co, c)
909         co = co or self._configcache
910         if not co then
911                 local err
912                 co, err = uci.cursor():get_all(c)
913
914                 if err then
915                         self:error(ERR.UCILOAD(self, err))
916                 end
917
918                 self._configcache = co
919         end
920         return co
921 end
922
923
924 --- Object representation of a scheme.
925 -- @class       scheme
926 -- @cstyle      instance
927 -- @name        luci.uvl.scheme
928
929 --- Scheme instance constructor.
930 -- @class                       function
931 -- @name                        scheme
932 -- @param scheme        Scheme instance
933 -- @param co            Configuration data
934 -- @param c                     Configuration name
935 -- @return                      Config instance
936 scheme = util.class(uvlitem)
937
938 function scheme.__init__(self, scheme, co, c)
939         if not c then
940                 c, co = co, nil
941         end
942
943         self.cref = { c }
944         self.sref = { c }
945         self.c    = self:_loadconf(co, c)
946         self.s    = scheme
947         self.t    = TYPE_SCHEME
948 end
949
950 --- Add an error to scheme.
951 -- @return      Scheme error context
952 function scheme.error(self, ...)
953         if not self.e then self.e = ERR.SCHEME( self ) end
954         return self.e:child( ... )
955 end
956
957 --- Get an associated config object.
958 -- @return      Config instance
959 function scheme.config(self)
960         local co = config( self.s, self.cref[1] )
961               co.p = self
962
963         return co
964 end
965
966 --- Get all section objects associated with this scheme.
967 -- @return      Table containing all associated luci.uvl.section instances
968 function scheme.sections(self)
969         local v = { }
970         if self.s.packages[self.sref[1]].sections then
971                 for o, _ in pairs( self.s.packages[self.sref[1]].sections ) do
972                         v[#v+1] = option(
973                                 self.s, self.c, self.cref[1], self.cref[2], o
974                         )
975                 end
976         end
977         return v
978 end
979
980 --- Get an associated section object.
981 -- @param s     Section to select
982 -- @return      Section instance
983 function scheme.section(self, s)
984         local so = section( self.s, self.c, self.cref[1], s )
985               so.p = self
986
987         return so
988 end
989
990
991 --- Object representation of a config.
992 -- @class       config
993 -- @cstyle      instance
994 -- @name        luci.uvl.config
995
996 --- Config instance constructor.
997 -- @class                       function
998 -- @name                        config
999 -- @param scheme        Scheme instance
1000 -- @param co            Configuration data
1001 -- @param c                     Configuration name
1002 -- @return                      Config instance
1003 config = util.class(uvlitem)
1004
1005 function config.__init__(self, scheme, co, c)
1006         if not c then
1007                 c, co = co, nil
1008         end
1009
1010         self.cref = { c }
1011         self.sref = { c }
1012         self.c    = self:_loadconf(co, c)
1013         self.s    = scheme
1014         self.t    = TYPE_CONFIG
1015 end
1016
1017 --- Get all section objects associated with this config.
1018 -- @return      Table containing all associated luci.uvl.section instances
1019 function config.sections(self)
1020         local v = { }
1021         if self.s.packages[self.sref[1]].sections then
1022                 for o, _ in pairs( self.s.packages[self.sref[1]].sections ) do
1023                         v[#v+1] = option(
1024                                 self.s, self.c, self.cref[1], self.cref[2], o
1025                         )
1026                 end
1027         end
1028         return v
1029 end
1030
1031 --- Get an associated section object.
1032 -- @param s     Section to select
1033 -- @return      Section instance
1034 function config.section(self, s)
1035         local so = section( self.s, self.c, self.cref[1], s )
1036               so.p = self
1037
1038         return so
1039 end
1040
1041
1042 --- Object representation of a scheme/config section.
1043 -- @class       module
1044 -- @cstyle      instance
1045 -- @name        luci.uvl.section
1046
1047 --- Section instance constructor.
1048 -- @class                       function
1049 -- @name                        section
1050 -- @param scheme        Scheme instance
1051 -- @param co            Configuration data
1052 -- @param c                     Configuration name
1053 -- @param s                     Section name
1054 -- @return                      Section instance
1055 section = util.class(uvlitem)
1056
1057 function section.__init__(self, scheme, co, c, s)
1058         self.cref = { c, s }
1059         self.sref = { c, co and co[s] and co[s]['.type'] or s }
1060         self.c    = self:_loadconf(co, c)
1061         self.s    = scheme
1062         self.t    = TYPE_SECTION
1063 end
1064
1065 --- Get all option objects associated with this section.
1066 -- @return      Table containing all associated luci.uvl.option instances
1067 function section.variables(self)
1068         local v = { }
1069         if self.s.packages[self.sref[1]].variables[self.sref[2]] then
1070                 for o, _ in pairs(
1071                         self.s.packages[self.sref[1]].variables[self.sref[2]]
1072                 ) do
1073                         v[#v+1] = option(
1074                                 self.s, self.c, self.cref[1], self.cref[2], o
1075                         )
1076                 end
1077         end
1078         return v
1079 end
1080
1081 --- Get an associated option object.
1082 -- @param o     Option to select
1083 -- @return      Option instance
1084 function section.option(self, o)
1085         local oo = option( self.s, self.c, self.cref[1], self.cref[2], o )
1086               oo.p = self
1087
1088         return oo
1089 end
1090
1091
1092 --- Object representation of a scheme/config option.
1093 -- @class       module
1094 -- @cstyle      instance
1095 -- @name        luci.uvl.option
1096
1097 --- Section instance constructor.
1098 -- @class                       function
1099 -- @name                        option
1100 -- @param scheme        Scheme instance
1101 -- @param co            Configuration data
1102 -- @param c                     Configuration name
1103 -- @param s                     Section name
1104 -- @param o                     Option name
1105 -- @return                      Option instance
1106 option = util.class(uvlitem)
1107
1108 function option.__init__(self, scheme, co, c, s, o)
1109         self.cref = { c, s, o }
1110         self.sref = { c, co and co[s] and co[s]['.type'] or s, o }
1111         self.c    = self:_loadconf(co, c)
1112         self.s    = scheme
1113         self.t    = TYPE_OPTION
1114 end
1115
1116 --- Get the value of this option.
1117 -- @return      The associated configuration value
1118 function option.value(self)
1119         local v = self:config() or self:scheme('default')
1120         if v and self:scheme('multival') then
1121                 v = util.split( v, "%s+", nil, true )
1122         end
1123         return v
1124 end
1125
1126 --- Get the associated section information in scheme.
1127 -- @return      Table containing the scheme properties
1128 function option.section(self)
1129         return self.s.packages[self.sref[1]].sections[self.sref[2]]
1130 end
1131
1132 --- Construct an enum object instance from given or default value.
1133 -- @param v     Value to select
1134 -- @return      Enum instance for selected value
1135 function option.enum(self, val)
1136         return enum(
1137                 self.s, self.c,
1138                 self.cref[1], self.cref[2], self.cref[3],
1139                 val or self:value()
1140         )
1141 end
1142
1143
1144 --- Object representation of a enum value.
1145 -- @class       module
1146 -- @cstyle      instance
1147 -- @name        luci.uvl.enum
1148
1149 --- Section instance constructor.
1150 -- @class                       function
1151 -- @name                        enum
1152 -- @param scheme        Scheme instance
1153 -- @param co            Configuration data
1154 -- @param c                     Configuration name
1155 -- @param s                     Section name
1156 -- @param o                     Enum name
1157 -- @param v                     Enum value
1158 -- @return                      Enum value instance
1159 enum = util.class(option)
1160
1161 function enum.__init__(self, scheme, co, c, s, o, v)
1162         self.cref = { c, s, o, v }
1163         self.sref = { c, co and co[s] and co[s]['.type'] or s, o, v }
1164         self.c    = self:_loadconf(co, c)
1165         self.s    = scheme
1166         self.t    = TYPE_ENUM
1167 end