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