-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathschema.lua
919 lines (837 loc) · 27 KB
/
schema.lua
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
--[=[
RDBMS schema definition language & operations
Written by Cosmin Apreutesei. Public Domain.
This module implements a Lua-based Data Definition Language (DDL) for RDBMS
schemas. Lua-based means that instead of a textual format like SQL DDL,
we use Lua syntax to write table definitions in, and generate an Abstract
Syntax Three (AST) from that. Using setfenv and metamethod magic we create
a language that is very readable and at the same time more expressive than
any textual format could be, giving us full programming power in an otherwise
declarative language. Basically a metaprogrammed DDL.
So why would you want to keep your database schema definition in the
application anyway, and not in SQL files containing DDL statements?
Here's some reasons:
* you want to generate SQL DDL scripts for different SQL dialects
from a common structured format.
* you want to diff between a live database and your "on paper" schema
to make sure that the database was migrated properly.
* you want to generate schema migrations (semi-)automatically without having
to create and maintain schema versions and migration scripts.
* you don't want to care about declaration order for foreign key constraints.
* you want to annotate table fields with extra information for use in
data-bound widget toolkits like [widgets](WIDGETS.md), and you don't want
to do that off-band in a separate file.
* your app has modules or extensions and you want each module to define its
own part of the app schema, including adding columns to common tables
or even adding foreign keys that reference tables from other modules.
* you want to use a boolean type in MySQL.
* you want a "shell" API for bulk DML ops like copying tables between
databases with different engines.
* use it as a base for a scriptable ETL tool.
## Usage
See `schema_std.lua` for type definitions and `lang_schema.lua`
and `webb_auth.lua` for examples of table definitions.
### How this works / caveats
#### TL;DR
Field names in `my_schema` that clash with flag names need to be quoted.
Field names, type names and flag names that clash with globals from `sc.env`
or locals from the outer scope also need to be quoted.
#### Long version
Using Lua for syntax instead of our own means that Lua's lexical rules apply,
including lexical scoping which cannot be turned off, so there are some
quirks to this that you have to know.
When calling `sc:def(my_schema)`, the function `my_schema` is run in an
environment (available at `sc.env`) that resolves every unknown keyword
to itself, so `foo_id` simply turns into `'foo_id'`. This is so that you
don't have to quote the names of fields, types or flags, unless you have to.
Because of this, you need to define `my_schema` in a clean lexical scope,
ideally at the top of your script before you declare any locals, otherwise
those locals will be captured by `my_schema` and your names will resolve to
the locals instead of to themselves. Globals declared in `sc.env` are also
captured so they can also clash with any unquoted names. Flag names can
also clash but only with unquoted field names.
If you don't want to put the schema definition at the top of the script
for some reason, one simple way to fix an unwanted capture of an outer local
is with an override: `local unsigned = 'unsigned'`.
Also because of this, you cannot use globals inside `my_schema` directly,
you'll have to _bring them into scope_ via locals, or access them through
`_G`, which _is_ available. A DDL is mostly static however so you'd rarely
need to do this.
Q: Flags and types look like the do the same thing, why the distinction?
A: Because column definitions have the form `name, type, flag1, ...`
instead of `name, flag1|type1, ...` which would have allowed a field to
inherit from multiple types but would've also made type names clash with
field names. With the first variant only flag names clash with field names
which is more acceptable.
API
schema(opt) -> sc` create a new schema object
schema_diff(sc1, sc2) -> diff` find out what changed between `sc1` and `sc2`
diff:pp()` pretty print a schema diff
]=]
if not ... then require'schema_test'; return end
require'glue'
--definition parsing ---------------------------------------------------------
--NOTE: flag names clash with unquoted field names!
--NOTE: env names clash with all unquoted names!
local function isschema(t) return istab(t) and t.is_schema end
local schema = {is_schema = true, package = {}, isschema = isschema}
--NOTE: the double-underscore is for disambiguation, not for aesthetics.
schema.fk_name_format = 'fk_%s__%s'
schema.ck_name_format = 'ck_%s__%s'
schema.ix_name_format = '%s_%s__%s'
local function resolve_type(self, fld, t, i, n, fld_ct, allow_types, allow_flags, allow_unknown)
for i = i, n do
local k = t[i]
local v = k
if isstr(v) then --type name, flag name or next field
v = allow_types and self.types[k] or allow_flags and self.flags[k] or nil
if not v and allow_unknown then --next field
return i
end
end
assertf(v ~= nil, 'unknown flag or type name `%s`', k)
v = call(v, self, fld_ct, fld)
if v then
resolve_type(self, fld, v, 1, #v, fld_ct, true, true) --recurse
for k,v in pairs(v) do --copy named attrs
if isstr(k) then
fld[k] = v
end
end
end
end
return n + 1
end
local function update_type(self, fld)
update(fld, rawget(self.type_attrs, fld.type))
end
local function parse_cols(self, t, dt, loc1, fld_ct)
local dt_i = #dt + 1
if t.after_col then
dt_i = dt[t.after_col].col_pos + 1
end
local i = 1
while i <= #t do --[out], field_name, type_name, flag_name|{attr->val}, ...
if i == 1 and not isstr(t[1]) then --aka for renaming the table.
t[1](self, fld_ct)
i = i + 1
end
local col, mode
if not fld_ct.is_table then --this is a proc param, not a table field.
mode = t[i]
if mode == 'out' then
i = i + 1
else
mode = nil --'in' (default)
end
end
col = t[i]
assertf(isstr(col), 'column name expected for `%s`, got %s', loc1, type(col))
assertf(not dt[col], 'duplicate field name: %s.%s', loc1, col)
i = i + 1
local fld = {col = col, mode = mode}
insert(dt, dt_i, fld); dt_i = dt_i + 1
dt[col] = fld
i = resolve_type(self, fld, t, i, i , fld_ct, true , false , false)
i = resolve_type(self, fld, t, i, #t, fld_ct, false, true , true )
update_type(self, fld)
end
if fld_ct.is_table then
for i, fld in ipairs(dt) do
fld.col_pos = i
fld.col_in_front = i > 1 and dt[i-1].col
end
end
end
local function resolve_fk(fk, tbl, ref_tbl)
assertf(ref_tbl.pk, 'ref table `%s` has no PK', ref_tbl.name)
fk.ref_cols = extend({}, ref_tbl.pk)
--add convenience ref fields for automatic lookup in widgets.
if #fk.cols == 1 then
local fld = tbl.fields[fk.cols[1]]
fld.ref_table = ref_tbl.name
fld.ref_col = ref_tbl.pk[1]
end
end
local function parse_table(self, name, t)
local tbl = {is_table = true, name = name, fields = {}}
parse_cols(self, t, tbl.fields, name, tbl)
--resolve fks that ref this table.
local fks = self.table_refs and self.table_refs[name]
if fks then
for fk in pairs(fks) do
local fk_tbl =
fk.table == name and tbl --self-reference
or self.tables[fk.table]
resolve_fk(fk, fk_tbl, tbl)
end
self.table_refs[name] = nil
end
--add API to table to add more cols after-definition.
function tbl.add_cols(t)
parse_cols(self, t, tbl.fields, name, tbl)
end
return tbl
end
local function parse_ix_cols(fld, ...) --'col1 [desc], ...'
if not ... then
return {fld.col}
end
local s = cat({...}, ',')
local dt = {desc = {}}
for s in s:gmatch'[^,]+' do
s = trim(s)
local name, desc = s:match'(.-)%s+desc$'
if name then
desc = true
else
name, desc = s, false
end
add(dt, name)
add(dt.desc, desc and true or false)
end
return dt
end
local function check_cols(T, tbl, cols)
for i,col in ipairs(cols) do
local found = false
for i,fld in ipairs(tbl.fields) do
if fld.col == col then found = true; break end
end
assertf(found, 'unknown column in %s of `%s`: `%s`', T, tbl.name, col)
end
return cols
end
local function return_false() return false end
local function add_pk(self, tbl, cols)
assertf(not tbl.pk, 'pk already applied for table `%s`', tbl.name)
tbl.pk = check_cols('pk', tbl, cols)
tbl.pk.desc = imap(cols, return_false)
end
local function add_ix(self, T, tbl, cols)
local t = attr(tbl, T..'s')
local k = _(self.ix_name_format, T, tbl.name, cat(cols, '_'))
assertf(not t[k], 'duplicate %s `%s`', T, k)
t[k] = check_cols(T, tbl, cols)
end
local function add_fk(self, tbl, cols, ref_tbl_name, ondelete, onupdate, fld)
local fks = attr(tbl, 'fks')
local k = _(self.fk_name_format, tbl.name, cat(cols, '_'))
assertf(not fks[k], 'duplicate fk `%s`', k)
ref_tbl_name = ref_tbl_name or assert(#cols == 1 and cols[1])
local cols = check_cols('fk', tbl, cols)
cols.desc = imap(cols, return_false)
local fk = {name = k, table = tbl.name, cols = cols,
ref_table = ref_tbl_name, ondelete = ondelete, onupdate = onupdate or 'cascade'}
fks[k] = fk
local ref_tbl =
ref_tbl_name == tbl.name and tbl --self-reference
or self.tables[ref_tbl_name]
if ref_tbl then
resolve_fk(fk, tbl, ref_tbl)
else --we'll resolve it when the table is defined later.
attr(attr(self, 'table_refs'), ref_tbl_name)[fk] = true
end
end
do
local function add_global(t, k, v)
assertf(not t.flags [k], 'global overshadows flag `%s`', k)
assertf(not t.types [k], 'global overshadows type `%s`', k)
assertf(not t.tables[k], 'global overshadows table `%s`', k)
assertf(not t.procs [k], 'global overshadows proc `%s`', k)
rawset(t, k, v)
end
local T = function() end
local function getter(t, k) return t[T][k] end
local function init(self, env, k, parse)
local k1 = k:gsub('s$', '')
local t = update({}, schema[k])
self[k] = t
env[k] = setmetatable({}, {
__index = t,
__newindex = function(_, k, v)
assertf(not t[k], 'duplicate %s `%s`', k1, k)
t[k] = parse(self, k, v)
end,
})
end
function _G.schema(opt)
assert(opt ~= schema, 'use dot notation')
local self = update(opt or {}, schema)
local env = update({self = self}, schema.env)
self.flags = update({}, schema.flags)
self.types = update({}, schema.types)
self.procs = {}
self.type_attrs = update({}, schema.type_attrs)
setmetatable(self.type_attrs, {__index = function(ta, k)
local t = {}; rawset(ta, k, t); return t
end})
env.flags = self.flags
env.types = self.types
env.type_attrs = self.type_attrs
init(self, env, 'tables', parse_table)
local function resolve_symbol(t, k)
return k --symbols resolve to their name as string.
end
setmetatable(env, {__index = resolve_symbol, __newindex = add_global})
self.env = env
self.loaded = {}
function env.import (...) self:import (...) end
function env.add_fk (...) self:add_fk (...) end
function env.add_child_fk (...) self:add_child_fk (...) end
function env.add_weak_fk (...) self:add_weak_fk (...) end
function env.trigger (...) self:add_trigger (...) end
function env.proc (...) self:add_proc (...) end
function env.add_cols (...) self:add_cols (...) end
return self
end
end
local function import(self, k, sc)
local k1 = k:gsub('s$', '')
for k,v in pairs(sc[k]) do
assertf(not self[k], 'duplicate %s `%s`', k1, k)
self[k] = v
end
end
function schema:import(src)
if isstr(src) then --module
src = schema.package[src] or require(src)
end
if isfunc(src) then --def
if not self.loaded[src] then
setfenv(src, self.env)
src()
self.loaded[src] = true
end
elseif isschema(src) then --schema
if not self.loaded[src] then
import(self, 'types' , src)
import(self, 'tables', src)
import(self, 'procs' , src)
update(self.type_attrs, src.type_attrs)
self.loaded[src] = true
end
elseif istab(src) then --plain table: use as environsment.
update(self.env, src)
else
assert(false)
end
return self
end
schema.env = {_G = _G}
local function fk_func(force_ondelete, force_onupdate)
return function(arg1, ...)
if isschema(arg1) then --used as flag: make a fk on current field.
local self, tbl, fld = arg1, ...
add_fk(self, tbl, {fld.col}, nil,
force_ondelete,
force_onupdate,
fld)
else --called by user, return a flag generator.
local ref_tbl, ondelete, onupdate = arg1, ...
return function(self, tbl, fld)
add_fk(self, tbl, {fld.col}, ref_tbl,
force_ondelete or ondelete,
force_onupdate or onupdate,
fld)
end
end
end
end
schema.env.fk = fk_func()
schema.env.child_fk = fk_func'cascade'
schema.env.weak_fk = fk_func'set null'
function schema:add_fk(tbl, cols, ...)
local tbl = assertf(self.tables[tbl], 'unknown table `%s`', tbl)
add_fk(self, tbl, collect(words(cols)), ...)
end
function schema:add_child_fk(tbl, cols, ref_tbl)
self:add_fk(tbl, cols, ref_tbl, 'cascade')
end
function schema:add_weak_fk(tbl, cols, ref_tbl)
self:add_fk(tbl, cols, ref_tbl, 'set null')
end
local function ix_func(T)
return function(arg1, ...)
if isschema(arg1) then --used as flag: make an index on current field.
local self, tbl, fld = arg1, ...
add_ix(self, T, tbl, {fld.col, desc = {false}})
fld[T] = true
else --called by user, return a flag generator.
local cols = pack(arg1, ...)
return function(self, tbl, fld)
local cols = parse_ix_cols(fld, unpack(cols))
add_ix(self, T, tbl, cols)
end
end
end
end
schema.env.uk = ix_func'uk'
schema.env.ix = ix_func'ix'
schema.flags = {} --not used
schema.types = {} --not used
schema.type_attrs = {} --not used
function schema.env.pk(arg1, ...)
if isschema(arg1) then --used as flag.
local self, tbl, cur_fld = arg1, ...
add_pk(self, tbl, imap(tbl.fields, 'col'))
--apply `not_null` flag to all fields up to this.
for _,fld in ipairs(tbl.fields) do
fld.not_null = true
if fld == cur_fld then break end
end
else --called by user, return a flag generator.
local cols = pack(arg1, ...)
return function(self, tbl, fld)
local cols = parse_ix_cols(fld, unpack(cols))
add_pk(self, tbl, cols)
end
end
end
function schema.env.check(body)
return function(self, tbl, fld)
local name = _(self.ck_name_format, tbl.name, fld.col)
local ck = {}
if istab(body) then
update(ck, body) --mysql'...'
else
ck.body = body
end
attr(tbl, 'checks')[name] = ck
end
end
function schema.env.aka(old_names)
return function(self, tbl, fld)
local entity = fld or tbl --table rename or field rename.
for old_name in words(old_names) do
attr(entity, 'aka')[old_name] = true
end
end
end
local function trigger_pos(tgs, when, op)
local i = 1
for _,tg in pairs(tgs) do
if tg.when == when and tg.op == op then
i = i + 1
end
end
return i
end
function schema:add_trigger(name, when, op, tbl_name, ...)
name = _('%s_%s_%s%s', tbl_name, name, when:sub(1,1), op:sub(1,1))
local tbl = assertf(self.tables[tbl_name], 'unknown table `%s`', tbl_name)
local triggers = attr(tbl, 'triggers')
assertf(not triggers[name], 'duplicate trigger `%s`', name)
triggers[name] = update({name = name, when = when, op = op,
table = tbl_name, pos = trigger_pos(triggers, when, op)}, ...)
end
function schema:add_proc(name, args, ...)
local p = {name = name, args = {}}
parse_cols(self, args, p.args, name, p)
update(p, ...)
self.procs[name] = p
end
function schema:add_cols(tbl_name, t)
local nt = collect(words(tbl_name))
local tbl_name = nt[1]
if nt[2] then
assert(nt[2] == 'after')
t.after_col = assert(nt[3])
else
assert(#nt == 1)
end
self.tables[tbl_name].add_cols(t)
end
function schema:check_refs()
if not self.table_refs or isempty(self.table_refs) then return end
assertf(false, 'unresolved refs to tables: %s', cat(keys(self.table_refs, true), ', '))
end
--schema diff'ing ------------------------------------------------------------
local function map_fields(flds)
local t = {}
for i,fld in ipairs(flds) do
t[fld.col] = fld
end
return t
end
local function diff_maps(self, t1, t0, diff_vals, map, sc0, supported) --sync t0 to t1.
if not supported then return nil end
t1 = t1 and (map and map(t1) or t1) or empty
t0 = t0 and (map and map(t0) or t0) or empty
--map out current renames.
local new_name --{old_name->new_name}
local old_name --{new_name->old_name}
for k1, v1 in pairs(t1) do
if istab(v1) and v1.aka then
for k0 in pairs(v1.aka) do
if t0[k0] ~= nil then
if not old_name then
old_name = {}
new_name = {}
end
assertf(not old_name[k1], 'double rename for `%s`', k1)
new_name[k0] = k1
old_name[k1] = k0
end
end
end
end
local dt = {}
--remove names not present in new schema and not renamed.
for k0,v0 in pairs(t0) do
local v1 = new_name and t1[new_name[k0]] --must rename, not remove.
if v1 == nil and t1[k0] ~= nil then --old name in new schema, keep it?
if not (old_name and old_name[k0]) then --not a rename of other field, keep it.
v1 = t1[k0]
end
end
if v1 == nil then
attr(dt, 'remove')[k0] = v0
end
end
--add names not present in old schema and not renamed, or update.
for k1,v1 in pairs(t1) do
local v0 = t0[k1]
if v0 == nil and old_name then --not present in old schema, check if renamed.
v0 = t0[old_name[k1]]
end
if v0 == nil then
attr(dt, 'add')[k1] = v1
elseif diff_vals then
local k0 = old_name and old_name[k1] or k1
local vdt = diff_vals(self, v1, v0, sc0)
if vdt == true then
attr(dt, 'remove')[k0] = v0
attr(dt, 'add' )[k1] = v1
elseif vdt then
attr(dt, 'update')[k0] = vdt
end
end
end
return next(dt) and dt or nil
end
local function diff_arrays(a1, a0)
a1 = a1 or empty
a0 = a0 or empty
if #a1 ~= #a0 then return true end
for i,s in ipairs(a1) do
if a0[i] ~= s then return true end
end
return false
end
local function diff_ixs(self, c1, c0)
return diff_arrays(c1, c0) or diff_arrays(c1.desc, c0.desc)
end
local function not_eq(_, a, b) return a ~= b end
local function diff_keys(self, t1, t0, keys)
local dt = {}
for k, diff in pairs(keys) do
if not isfunc(diff) then diff = not_eq end
if diff(self, t1[k], t0[k]) then
dt[k] = true
end
end
return next(dt) and {old = t0, new = t1, changed = dt}
end
local function diff_fields(self, f1, f0, sc0)
return diff_keys(self, f1, f0, sc0.relevant_field_attrs)
end
local function diff_fks(self, fk1, fk0)
return diff_keys(self, fk1, fk0, {
table=1,
ref_table=1,
onupdate=1,
ondelete=1,
cols=function(self, c1, c0) return diff_ixs(self, c1, c0) end,
ref_cols=function(self, c1, c0) return diff_ixs(self, c1, c0) end,
}) and true
end
local function diff_checks(self, c1, c0)
local BODY = self.engine..'_body'
local b1 = c1[BODY] or c1.body
local b0 = c0[BODY] or c0.body
return b1 ~= b0
end
local function diff_triggers(self, t1, t0)
local BODY = self.engine..'_body'
return diff_keys(self, t1, t0, {
pos=1,
when=1,
op=1,
[BODY]=1,
}) and true
end
local function diff_procs(self, p1, p0, sc0)
local BODY = self.engine..'_body'
return diff_keys(self, p1, p0, {
[BODY]=1,
args=function(self, a1, a0)
return diff_maps(self, a1, a0, diff_fields, map_fields, sc0, true) and true
end,
}) and true
end
local function diff_tables(self, t1, t0, sc0)
local d = {}
d.fields = diff_maps(self, t1.fields , t0.fields , diff_fields , map_fields, sc0, true)
local pk = diff_maps(self, {pk=t1.pk} , {pk=t0.pk} , diff_ixs , nil, sc0, true)
d.uks = diff_maps(self, t1.uks , t0.uks , diff_ixs , nil, sc0, true)
d.ixs = diff_maps(self, t1.ixs , t0.ixs , diff_ixs , nil, sc0, true)
d.fks = diff_maps(self, t1.fks , t0.fks , diff_fks , nil, sc0, sc0.supports_fks )
d.checks = diff_maps(self, t1.checks , t0.checks , diff_checks , nil, sc0, sc0.supports_checks )
d.triggers = diff_maps(self, t1.triggers, t0.triggers, diff_triggers , nil, sc0, sc0.supports_triggers)
d.add_pk = pk and pk.add and pk.add.pk
d.remove_pk = pk and pk.remove and pk.remove.pk
if not (next(d) or t1.name ~= t0.name) then return nil end
d.old = t0
d.new = t1
return d
end
local diff = {is_diff = true}
function schema.diff(sc0, sc1) --sync sc0 to sc1.
local sc0 = assertf(isschema(sc0) and sc0, 'schema expected, got `%s`', type(sc0))
sc0:check_refs()
sc1:check_refs()
local self = {engine = sc0.engine, __index = diff, old_schema = sc0, new_schema = sc1}
self.tables = diff_maps(self, sc1.tables, sc0.tables, diff_tables, nil, sc0, true)
self.procs = diff_maps(self, sc1.procs , sc0.procs , diff_procs , nil, sc0, sc0.supports_procs)
return setmetatable(self, self)
end
--diff pretty-printing -------------------------------------------------------
local function dots(s, n) return #s > n and s:sub(1, n-2)..'..' or s end
local kbytes = function(x) return x and kbytes(x) or '' end
local function P(...) print(_(...)) end
function diff:pp(opt)
local BODY = self.engine..'_body'
print()
local function P_fld(fld, prefix)
P(' %1s %3s %-2s%-16s %-8s %4s%1s %6s %6s %-18s %s',
fld.auto_increment and 'A' or '',
prefix or '',
fld.not_null and '*' or '',
dots(fld.col, 16), fld.type or '',
fld.type == 'number' and not fld.digits and '['..fld.size..']'
or fld.type == 'bool' and ''
or (fld.digits or '')..(fld.decimals and ','..fld.decimals or ''),
fld.type == 'number' and not fld.unsigned and '-' or '',
kbytes(fld.size) or '', kbytes(fld.maxlen) or '',
fld[self.engine..'_collation'] or '',
repl(repl(fld[self.engine..'_default'], nil, fld.default), nil, '')
)
end
local function format_fk(fk)
return _('(%s) -> %s (%s)%s%s', cat(fk.cols, ','), fk.ref_table,
cat(fk.ref_cols, ','),
fk.ondelete and ' D:'..fk.ondelete or '',
fk.onupdate and ' U:'..fk.onupdate or ''
)
end
local function ix_cols(ix)
local dt = {}
for i,s in ipairs(ix) do
dt[i] = s .. (ix.desc and ix.desc[i] and ':desc' or '')
end
return cat(dt, ',')
end
local function P_tg(tg, prefix)
if not tg[BODY] then return end
P(' %1sTG %d %s %s `%s`', prefix or '', tg.pos, tg.when, tg.op, tg.name)
if prefix ~= '-' then
print(outdent(tg[BODY], ' '))
end
end
if self.tables and self.tables.add then
for tbl_name, tbl in sortedpairs(self.tables.add) do
P(' %-24s %-8s %2s,%-1s%1s %6s %6s %-18s %s', '+ TABLE '..tbl_name,
'type', 'D', 'd', '-', 'size', 'maxlen', 'collation', 'default')
print(('-'):rep(80))
local pk = tbl.pk and index(tbl.pk)
for i,fld in ipairs(tbl.fields) do
local pki = pk and pk[fld.col]
local desc = pki and tbl.pk.desc and tbl.pk.desc[pki]
P_fld(fld, pki and _('%sK%d', desc and 'p' or 'P', pki))
end
print(' -------')
if tbl.uks then
for uk_name, uk in sortedpairs(tbl.uks) do
P(' UK %s', ix_cols(uk))
end
end
if tbl.ixs then
for ix_name, ix in sortedpairs(tbl.ixs) do
P(' IX %s', ix_cols(ix))
end
end
if tbl.fks then
for fk_name, fk in sortedpairs(tbl.fks) do
P(' FK %s', format_fk(fk))
end
end
if tbl.checks then
for ck_name, ck in sortedpairs(tbl.checks) do
P(' CK %s', ck[BODY] or ck.body)
end
end
local tgs = tbl.triggers
if tgs then
local function cmp_tg(tg1, tg2)
local a = tgs[tg1]
local b = tgs[tg2]
if a.op ~= b.op then return a.op < b.op end
if a.when ~= b.when then return a.when < b.when end
return a.pos < b.pos
end
for tg_name, tg in sortedpairs(tgs, cmp_tg) do
P_tg(tg)
end
end
print()
end
end
if self.tables and self.tables.update then
local hide_attrs = opt and opt.hide_attrs
for old_tbl_name, d in sortedpairs(self.tables.update) do
if opt and opt.tables and not opt.tables[old_tbl_name] then
goto skip
end
P(' ~ TABLE %s%s', old_tbl_name,
d.new.name ~= old_tbl_name and ' -> '..d.new.name or '')
print(('-'):rep(80))
if d.fields and d.fields.add then
for col, fld in sortedpairs(d.fields.add) do
P_fld(fld, '+')
end
end
if d.fields and d.fields.remove then
for col, fld in sortedpairs(d.fields.remove) do
P_fld(fld, '-')
end
end
if d.fields and d.fields.update then
for col, d in sortedpairs(d.fields.update) do
P_fld(d.old, '<')
P_fld(d.new, '>')
for k in sortedpairs(d.changed) do
P(' %-14s %s -> %s', k, d.old[k], d.new[k])
end
end
end
if d.remove_pk then
P(' -PK %s', ix_cols(d.remove_pk))
end
if d.add_pk then
P(' +PK %s', ix_cols(d.add_pk))
end
if d.uks and d.uks.remove then
for uk_name, uk in sortedpairs(d.uks.remove) do
P(' -UK %s', ix_cols(uk))
end
end
if d.uks and d.uks.add then
for uk_name, uk in sortedpairs(d.uks.add) do
P(' +UK %s', ix_cols(uk))
end
end
if d.ixs and d.ixs.remove then
for ix_name, ix in sortedpairs(d.ixs.remove) do
P(' -IX %s', ix_cols(ix))
end
end
if d.ixs and d.ixs.add then
for ix_name, ix in sortedpairs(d.ixs.add) do
P(' +IX %s', ix_cols(ix))
end
end
if d.checks and d.checks.remove then
for ck_name, ck in sortedpairs(d.checks.remove) do
P(' -CK %s', ck[BODY] or ck.body)
end
end
if d.checks and d.checks.add then
for ck_name, ck in sortedpairs(d.checks.add) do
P(' +CK %s', ck[BODY] or ck.body)
end
end
if d.fks and d.fks.remove then
for fk_name, fk in sortedpairs(d.fks.remove) do
P(' -FK %s', format_fk(fk))
end
end
if d.fks and d.fks.add then
for fk_name, fk in sortedpairs(d.fks.add) do
P(' +FK %s', format_fk(fk))
end
end
if d.triggers and d.triggers.remove then
for tg_name, tg in sortedpairs(d.triggers.remove) do
P_tg(tg, '-')
end
end
if d.triggers and d.triggers.add then
for tg_name, tg in sortedpairs(d.triggers.add) do
P_tg(tg, '+')
end
end
print()
::skip::
end
end
if self.tables and self.tables.remove then
for tbl_name in sortedpairs(self.tables.remove) do
P(' - TABLE %s', tbl_name)
end
print()
end
if self.procs and self.procs.remove then
for proc_name, proc in sortedpairs(self.procs.remove) do
if proc[BODY] then
P(' - PROC %s', proc_name)
end
end
print()
end
if self.procs and self.procs.add then
for proc_name, proc in sortedpairs(self.procs.add) do
if proc[BODY] then
P(' + PROC %s(', proc_name)
for i,arg in ipairs(proc.args) do
P_fld(arg)
end
P('\t)\n%s', proc[BODY])
end
end
print()
end
end
function schema:resolve_type(t, opt) --{attr = val, flag1, ...}
resolve_type(self, t, t, 1, #t, empty, true, true)
update_type(self, t)
for i=#t,1,-1 do t[i] = nil end --remove flags
--add translatable field attributes.
for i,attr in ipairs{'text', 'info'} do
local en_attr = 'en_'..attr
t[attr] = function()
local name = t.name
return
S(_('%s:%s', attr, name))
or S(_('%s:%s.%s.%s', attr, name, tbl, tbl_type))
or call(t[en_attr])
end
if opt and opt.translate then
t[attr] = t[attr]()
end
end
return t
end
function schema:resolve_types(fields, opt) --{field1, ...}
for i,f in ipairs(fields) do
local f = self:resolve_type(f, opt)
if opt and opt.check_duplicates then
assertf(isstr(f.name), 'field name not a string: %s: %s', opt.table_name, type(f.name))
assertf(not fields[f.name], 'duplicate field name: %s.%s', opt.table_name, f.name)
end
fields[i] = f
fields[f.name] = f
end
return fields
end
return schema