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
|
local eolian = require("eolian")
local getopt = require("getopt")
local serializer = require("serializer")
local stats = require("docgen.stats")
local dutil = require("docgen.util")
local writer = require("docgen.writer")
local keyref = require("docgen.keyref")
local ser = require("docgen.serializers")
local dtree = require("docgen.doctree")
-- eolian to various doc elements conversions
local propt_to_type = {
[dtree.Function.PROPERTY] = "(get, set)",
[dtree.Function.PROP_GET] = "(get)",
[dtree.Function.PROP_SET] = "(set)",
}
local gen_cparam = function(par, out)
local part = par:type_get()
out = out or (par:direction_get() == par.OUT)
local tstr = part:c_type_get()
if out then
tstr = ser.get_ctype_str(tstr, "*")
end
return ser.get_ctype_str(tstr, par:name_get())
end
local get_func_csig_part = function(cn, tp)
if not tp then
return "void " .. cn
end
return ser.get_ctype_str(tp, cn)
end
local gen_func_csig = function(f, ftype)
ftype = ftype or f.METHOD
assert(ftype ~= f.PROPERTY)
local cn = f:full_c_name_get(ftype)
keyref.add(cn, "c")
local rtype = f:return_type_get(ftype)
local fparam = "Eo *obj"
if f:is_const() or f:is_class() or ftype == f.PROP_GET then
fparam = "const Eo *obj"
end
if f:type_get() == f.METHOD then
local pars = f:parameters_get()
local cnrt = get_func_csig_part(cn, rtype)
for i = 1, #pars do
pars[i] = gen_cparam(pars[i])
end
table.insert(pars, 1, fparam);
return cnrt .. "(" .. table.concat(pars, ", ") .. ");"
end
local keys = f:property_keys_get(ftype)
local vals = f:property_values_get(ftype)
if ftype == f.PROP_SET then
local cnrt = get_func_csig_part(cn, rtype)
local pars = {}
for i, par in ipairs(keys) do
pars[#pars + 1] = gen_cparam(par)
end
for i, par in ipairs(vals) do
pars[#pars + 1] = gen_cparam(par)
end
table.insert(pars, 1, fparam);
return cnrt .. "(" .. table.concat(pars, ", ") .. ");"
end
-- getters
local cnrt
if not rtype then
if #vals == 1 then
cnrt = get_func_csig_part(cn, vals[1]:type_get())
table.remove(vals, 1)
else
cnrt = get_func_csig_part(cn)
end
else
cnrt = get_func_csig_part(cn, rtype)
end
local pars = {}
for i, par in ipairs(keys) do
pars[#pars + 1] = gen_cparam(par)
end
for i, par in ipairs(vals) do
pars[#pars + 1] = gen_cparam(par, true)
end
table.insert(pars, 1, fparam);
return cnrt .. "(" .. table.concat(pars, ", ") .. ");"
end
local gen_func_namesig = function(fn, cl, buf, isprop, isget, isset)
if isprop then
buf[#buf + 1] = "@property "
end
buf[#buf + 1] = cl:full_name_get()
buf[#buf + 1] = "."
buf[#buf + 1] = fn:name_get()
buf[#buf + 1] = " "
if not isprop then
if fn:scope_get(fn.METHOD) == fn.scope.PROTECTED then
buf[#buf + 1] = "@protected "
end
elseif isget and isset then
if fn:scope_get(fn.PROP_GET) == fn.scope.PROTECTED and
fn:scope_get(fn.PROP_SET) == fn.scope.PROTECTED then
buf[#buf + 1] = "@protected "
end
end
if fn:is_class() then
buf[#buf + 1] = "@class "
end
if fn:is_const() then
buf[#buf + 1] = "@const "
end
if fn:is_c_only() then
buf[#buf + 1] = "@c_only "
end
end
local gen_func_param = function(fp, buf, nodir)
-- TODO: default value
buf[#buf + 1] = " "
local dirs = {
[dtree.Parameter.IN] = "@in ",
[dtree.Parameter.OUT] = "@out ",
[dtree.Parameter.INOUT] = "@inout ",
}
if not nodir then buf[#buf + 1] = dirs[fp:direction_get()] end
buf[#buf + 1] = fp:name_get()
buf[#buf + 1] = ": "
buf[#buf + 1] = ser.get_type_str(fp:type_get())
local dval = fp:default_value_get()
if dval then
buf[#buf + 1] = " ("
buf[#buf + 1] = dval:serialize()
buf[#buf + 1] = ")"
end
if fp:is_nonull() then
buf[#buf + 1] = " @nonull"
end
if fp:is_nullable() then
buf[#buf + 1] = " @nullable"
end
if fp:is_optional() then
buf[#buf + 1] = " @optional"
end
buf[#buf + 1] = ";\n"
end
local gen_func_return = function(fp, ftype, buf, indent)
local rett = fp:return_type_get(ftype)
if not rett then
return
end
buf[#buf + 1] = indent and (" "):rep(indent) or " "
buf[#buf + 1] = "return: "
buf[#buf + 1] = ser.get_type_str(rett)
local dval = fp:return_default_value_get(ftype)
if dval then
buf[#buf + 1] = " ("
buf[#buf + 1] = dval:serialize()
buf[#buf + 1] = ")"
end
if fp:return_is_warn_unused(ftype) then
buf[#buf + 1] = " @warn_unused"
end
buf[#buf + 1] = ";\n"
end
local gen_method_sig = function(fn, cl)
local buf = {}
gen_func_namesig(fn, cl, buf, false, false, false)
if fn:is_virtual_pure(fn.METHOD) then
buf[#buf + 1] = "@virtual_pure "
end
buf[#buf + 1] = "{"
local params = fn:parameters_get()
local rtp = fn:return_type_get(fn.METHOD)
if #params == 0 and not rtp then
buf[#buf + 1] = "}"
return table.concat(buf)
end
buf[#buf + 1] = "\n"
if #params > 0 then
buf[#buf + 1] = " params {\n"
for i, fp in ipairs(params) do
gen_func_param(fp, buf)
end
buf[#buf + 1] = " }\n"
end
gen_func_return(fn, fn.METHOD, buf)
buf[#buf + 1] = "}"
return table.concat(buf)
end
local eovals_check_same = function(a1, a2)
if #a1 ~= #a2 then return false end
for i, v in ipairs(a1) do
if v ~= a2[i] then return false end
end
return true
end
local gen_prop_keyvals = function(tbl, kword, buf, indent)
local ind = indent and (" "):rep(indent) or " "
if #tbl == 0 then return end
buf[#buf + 1] = " "
buf[#buf + 1] = ind
buf[#buf + 1] = kword
buf[#buf + 1] = " {\n"
for i, v in ipairs(tbl) do
buf[#buf + 1] = ind
gen_func_param(v, buf, true)
end
buf[#buf + 1] = " "
buf[#buf + 1] = ind
buf[#buf + 1] = "}\n"
end
local gen_prop_sig = function(fn, cl)
local buf = {}
local fnt = fn:type_get()
local isget = (fnt == fn.PROPERTY or fnt == fn.PROP_GET)
local isset = (fnt == fn.PROPERTY or fnt == fn.PROP_SET)
gen_func_namesig(fn, cl, buf, true, isget, isset)
local gvirt = fn:is_virtual_pure(fn.PROP_GET)
local svirt = fn:is_virtual_pure(fn.PROP_SET)
if (not isget or gvirt) and (not isset or svirt) then
buf[#buf + 1] = "@virtual_pure "
end
local gkeys = isget and fn:property_keys_get(fn.PROP_GET) or {}
local skeys = isset and fn:property_keys_get(fn.PROP_SET) or {}
local gvals = isget and fn:property_values_get(fn.PROP_GET) or {}
local svals = isget and fn:property_values_get(fn.PROP_SET) or {}
local grtt = isget and fn:return_type_get(fn.PROP_GET) or nil
local srtt = isset and fn:return_type_get(fn.PROP_SET) or nil
local keys_same = eovals_check_same(gkeys, skeys)
local vals_same = eovals_check_same(gvals, svals)
buf[#buf + 1] = "{\n"
if isget then
buf[#buf + 1] = " get "
if fn:scope_get(fn.PROP_GET) == fn.scope.PROTECTED and
fn:scope_get(fn.PROP_SET) ~= fn.scope.PROTECTED then
buf[#buf + 1] = "@protected "
end
buf[#buf + 1] = "{"
if (#gkeys == 0 or keys_same) and (#gvals == 0 or vals_same) and
(not grtt or grtt == srtt) then
buf[#buf + 1] = "}\n"
else
buf[#buf + 1] = "\n"
if not keys_same then gen_prop_keyvals(gkeys, "keys", buf) end
if not vals_same then gen_prop_keyvals(gvals, "values", buf) end
if grtt ~= srtt then
gen_func_return(fn, fn.PROP_GET, buf, 2)
end
buf[#buf + 1] = " }\n"
end
end
if isset then
buf[#buf + 1] = " set "
if fn:scope_get(fn.PROP_SET) == fn.scope.PROTECTED and
fn:scope_get(fn.PROP_GET) ~= fn.scope.PROTECTED then
buf[#buf + 1] = "@protected "
end
buf[#buf + 1] = "{"
if (#skeys == 0 or keys_same) and (#svals == 0 or vals_same) and
(not srtt or grtt == srtt) then
buf[#buf + 1] = "}\n"
else
buf[#buf + 1] = "\n"
if not keys_same then gen_prop_keyvals(skeys, "keys", buf) end
if not vals_same then gen_prop_keyvals(svals, "values", buf) end
if grtt ~= srtt then
gen_func_return(fn, fn.PROP_SET, buf, 2)
end
buf[#buf + 1] = " }\n"
end
end
if keys_same then gen_prop_keyvals(gkeys, "keys", buf, 0) end
if vals_same then gen_prop_keyvals(gvals, "values", buf, 0) end
buf[#buf + 1] = "}"
return table.concat(buf)
end
-- builders
local build_method, build_property, build_event
local build_reftable = function(f, title, ctitle, ctype, t, iscl)
if not t or #t == 0 then
return
end
f:write_h(title, 2)
local nt = {}
for i, v in ipairs(t) do
nt[#nt + 1] = {
writer.Buffer():write_link(
iscl and v:nspaces_get() or dtree.Node.nspaces_get(v, ctype, true),
v:full_name_get()
):finish(),
(iscl and v:doc_get() or dtree.Doc(v:documentation_get())):brief_get()
}
end
table.sort(nt, function(v1, v2) return v1[1] < v2[1] end)
f:write_table({ ctitle, "Brief description" }, nt)
f:write_nl()
end
local build_functable = function(f, title, ctitle, cl, tp)
local t = cl:functions_get(tp)
if #t == 0 then
return
end
f:write_h(title, 3)
local nt = {}
for i, v in ipairs(t) do
local lbuf = writer.Buffer()
lbuf:write_link(v:nspaces_get(cl, true), v:name_get())
local pt = propt_to_type[v:type_get()]
if pt then
lbuf:write_raw(" ")
lbuf:write_i(pt)
end
nt[#nt + 1] = {
lbuf:finish(),
v:doc_get(v.METHOD):brief_get(v:fallback_doc_get())
}
if v:type_str_get() == "property" then
build_property(v, cl)
else
build_method(v, cl)
end
end
table.sort(nt, function(v1, v2) return v1[1] < v2[1] end)
f:write_table({ ctitle, "Brief description" }, nt)
f:write_nl()
end
local build_ref = function()
local f = writer.Writer("reference")
f:write_h("EFL Reference", 2)
local classes = {}
local ifaces = {}
local mixins = {}
for i, cl in ipairs(dtree.Class.all_get()) do
local tp = cl:type_get()
if tp == dtree.Class.REGULAR or tp == dtree.Class.ABSTRACT then
classes[#classes + 1] = cl
elseif tp == dtree.Class.MIXIN then
mixins[#mixins + 1] = cl
elseif tp == dtree.Class.INTERFACE then
ifaces[#ifaces + 1] = cl
else
error("unknown class: " .. cl:full_name_get())
end
end
build_reftable(f, "Classes", "Class name", "class", classes, true)
build_reftable(f, "Interfaces", "Interface name", "interface", ifaces, true)
build_reftable(f, "Mixins", "Mixin name", "mixin", mixins, true)
build_reftable(f, "Aliases", "Alias name", "alias",
eolian.typedecl_all_aliases_get():to_array())
build_reftable(f, "Structures", "Struct name", "struct",
eolian.typedecl_all_structs_get():to_array())
build_reftable(f, "Enums", "Enum name", "enum",
eolian.typedecl_all_enums_get():to_array())
build_reftable(f, "Constants", "Constant name", "constant",
dtree.Variable.all_constants_get())
build_reftable(f, "Globals", "Global name", "global",
dtree.Variable.all_globals_get())
f:finish()
end
local build_inherits
build_inherits = function(cl, t, lvl)
t = t or {}
lvl = lvl or 0
local lbuf = writer.Buffer()
lbuf:write_link(cl:nspaces_get(true), cl:full_name_get())
lbuf:write_raw(" ")
lbuf:write_i("(" .. cl:type_str_get() .. ")")
if lvl == 0 then
lbuf:write_b(lbuf:finish())
end
t[#t + 1] = { lvl, lbuf:finish() }
for i, cln in ipairs(cl:inherits_get()) do
local acl = dtree.Class.by_name_get(cln)
if not acl then
error("error retrieving inherited class " .. cln)
end
build_inherits(acl, t, lvl + 1)
end
return t
end
local default_theme_light = {
classes = {
regular = {
style = "filled",
color = "black",
fill_color = "white",
font_color = "black",
primary_color = "black",
primary_fill_color = "gray",
primary_font_color = "black"
},
abstract = {
style = "filled",
color = "black",
fill_color = "white",
font_color = "black",
primary_color = "black",
primary_fill_color = "gray",
primary_font_color = "black"
},
mixin = {
style = "filled",
color = "blue",
fill_color = "white",
font_color = "black",
primary_color = "blue",
primary_fill_color = "skyblue",
primary_font_color = "black"
},
interface = {
style = "filled",
color = "cornflowerblue",
fill_color = "white",
font_color = "black",
primary_color = "cornflowerblue",
primary_fill_color = "azure",
primary_font_color = "black"
}
},
node = {
shape = "box"
},
edge = {
color = "black"
},
bg_color = "transparent",
rank_dir = "TB",
size = "6"
}
local default_theme_dark = {
classes = {
regular = {
style = "filled",
color = "gray15",
fill_color = "gray15",
font_color = "white",
primary_color = "gray15",
primary_fill_color = "black",
primary_font_color = "white"
},
abstract = {
style = "filled",
color = "gray15",
fill_color = "gray15",
font_color = "white",
primary_color = "gray15",
primary_fill_color = "black",
primary_font_color = "white"
},
mixin = {
style = "filled",
color = "deepskyblue",
fill_color = "gray15",
font_color = "white",
primary_color = "deepskyblue",
primary_fill_color = "deepskyblue4",
primary_font_color = "white"
},
interface = {
style = "filled",
color = "cornflowerblue",
fill_color = "gray15",
font_color = "white",
primary_color = "cornflowerblue",
primary_fill_color = "dodgerblue4",
primary_font_color = "white"
}
},
node = {
shape = "box"
},
edge = {
color = "gray35"
},
bg_color = "transparent",
rank_dir = "TB",
size = "6"
}
local current_theme = default_theme_dark
local validate_ctheme = function(tb, name)
if type(tb.classes[name]) ~= "table" then
return false
end
local t = tb.classes[name]
if type(t.style) ~= "string" then
return false
end
if type(t.color) ~= "string" then
return false
end
if type(t.fill_color) ~= "string" then
return false
end
if type(t.font_color) ~= "string" then
return false
end
if not t.primary_color then
t.primary_color = t.color
end
if not t.primary_fill_color then
t.primary_fill_color = t.fill_color
end
if not t.primary_font_color then
t.primary_font_color = t.font_color
end
if type(t.primary_color) ~= "string" then
return false
end
if type(t.primary_fill_color) ~= "string" then
return false
end
if type(t.primary_font_color) ~= "string" then
return false
end
return true
end
local validate_theme = function(tb)
if type(tb) ~= "table" then
return false
end
if type(tb.classes) ~= "table" then
return false
end
if not tb.node then
tb.node = current_theme.node
end
if not tb.edge then
tb.edge = current_theme.edge
end
if not tb.bg_color then
tb.bg_color = current_theme.bg_color
end
if not tb.rank_dir then
tb.rank_dir = current_theme.rank_dir
end
if not tb.size then
tb.size = current_theme.size
end
if type(tb.node) ~= "table" then
return false
end
if type(tb.edge) ~= "table" then
return false
end
if type(tb.bg_color) ~= "string" then
return false
end
if type(tb.rank_dir) ~= "string" then
return false
end
if type(tb.size) ~= "string" then
return false
end
if not validate_ctheme(tb, "regular") then
return false
end
if not validate_ctheme(tb, "abstract") then
return false
end
if not validate_ctheme(tb, "mixin") then
return false
end
if not validate_ctheme(tb, "interface") then
return false
end
return true
end
local set_theme = function(tname)
local tf = io.open(tname)
if tf then
local cont = tf:read("*all")
tf:close()
local tb, err = serializer.deserialize(cont)
if not tb then
error("error parsing theme '" .. tname .. "': " .. err)
end
if not validate_theme(tb) then
error("invalid theme '" .. tname .. "'")
end
current_theme = tb
else
error("theme '" .. tname .. "' does not exist")
end
end
local class_to_node = function(cl, main)
local ret = {}
ret.label = cl:full_name_get()
ret.name = ret.label:lower():gsub("%.", "_")
local clr = cl:theme_str_get()
ret.style = current_theme.classes[clr].style
ret.color = current_theme.classes[clr][main and "primary_color" or "color"]
ret.fillcolor = current_theme.classes[clr][main and "primary_fill_color"
or "fill_color"]
ret.fontcolor = current_theme.classes[clr][main and "primary_font_color"
or "font_color"]
-- FIXME: need a dokuwiki graphviz plugin with proper URL support
-- the existing one only supports raw URLs (no dokuwikí namespaces)
--ret.URL = ":" .. global_opts.root_nspace .. ":"
-- .. table.concat(cl:nspaces_get(), ":")
return ret
end
local build_igraph_r
build_igraph_r = function(cl, nbuf, ibuf)
local sn = cl:full_name_get():lower():gsub("%.", "_")
for i, cln in ipairs(cl:inherits_get()) do
local acl = dtree.Class.by_name_get(cln)
if not acl then
error("error retrieving inherited class " .. cln)
end
nbuf[#nbuf + 1] = class_to_node(acl)
ibuf[#ibuf + 1] = { sn, (cln:lower():gsub("%.", "_")) }
build_igraph_r(acl, nbuf, ibuf)
end
end
local build_igraph = function(cl)
local graph = {
type = "hierarchy",
attrs = {
rankdir = current_theme.rank_dir,
size = current_theme.size,
bgcolor = current_theme.bg_color
},
node = current_theme.node,
edge = current_theme.edge
}
local nbuf = {}
local ibuf = {}
nbuf[#nbuf + 1] = class_to_node(cl, true)
build_igraph_r(cl, nbuf, ibuf)
graph.nodes = nbuf
graph.connections = ibuf
return graph
end
local build_class = function(cl)
local f = writer.Writer(cl:nspaces_get())
stats.check_class(cl)
f:write_h(cl:full_name_get(), 2)
keyref.add(cl:full_name_get():gsub("%.", "_"), "c")
f:write_folded("Inheritance graph", function()
f:write_graph(build_igraph(cl))
end)
if writer.has_feature("dot") then
f:write_nl(2)
end
f:write_h("Inheritance hierarchy", 3)
f:write_list(build_inherits(cl))
f:write_nl()
f:write_h("Description", 3)
f:write_raw(cl:doc_get():full_get(nil, true))
f:write_nl(2)
build_functable(f, "Methods", "Method name", cl, dtree.Function.METHOD)
build_functable(f, "Properties", "Property name",
cl, dtree.Function.PROPERTY)
f:write_h("Events", 3)
local evs = cl:events_get()
if #evs == 0 then
f:write_raw("This class does not define any events.\n")
else
local nt = {}
for i, ev in ipairs(evs) do
local lbuf = writer.Buffer()
lbuf:write_link(ev:nspaces_get(cl, true), ev:name_get())
nt[#nt + 1] = {
lbuf:finish(), ev:doc_get():brief_get()
}
build_event(ev, cl)
end
table.sort(nt, function(v1, v2) return v1[1] < v2[1] end)
f:write_table({ "Event name", "Brief description" }, nt)
end
f:finish()
end
local build_classes = function()
for i, cl in ipairs(dtree.Class.all_get()) do
if not cl:type_str_get() then
error("unknown class: " .. cl:full_name_get())
end
build_class(cl)
end
end
local write_tsigs = function(f, tp)
f:write_h(tp:full_name_get(), 2)
f:write_h("Signature", 3)
f:write_code(ser.get_typedecl_str(tp))
f:write_nl()
f:write_h("C signature", 3)
f:write_code(ser.get_typedecl_cstr(tp), "c")
f:write_nl()
end
local build_alias = function(tp)
local f = writer.Writer(dtree.Node.nspaces_get(tp, "alias"))
stats.check_alias(tp)
write_tsigs(f, tp)
f:write_h("Description", 3)
f:write_raw(dtree.Doc(tp:documentation_get()):full_get(nil, true))
f:write_nl(2)
f:finish()
end
local build_struct = function(tp)
local f = writer.Writer(dtree.Node.nspaces_get(tp, "struct"))
stats.check_struct(tp)
write_tsigs(f, tp)
f:write_h("Description", 3)
f:write_raw(dtree.Doc(tp:documentation_get()):full_get(nil, true))
f:write_nl(2)
f:write_h("Fields", 3)
local arr = {}
for fl in tp:struct_fields_get() do
local buf = writer.Buffer()
buf:write_b(fl:name_get())
buf:write_raw(" - ", dtree.Doc(fl:documentation_get()):full_get())
arr[#arr + 1] = buf:finish()
end
f:write_list(arr)
f:write_nl()
f:finish()
end
local build_enum = function(tp)
local f = writer.Writer(dtree.Node.nspaces_get(tp, "enum"))
stats.check_enum(tp)
write_tsigs(f, tp)
f:write_h("Description", 3)
f:write_raw(dtree.Doc(tp:documentation_get()):full_get(nil, true))
f:write_nl(2)
f:write_h("Fields", 3)
local arr = {}
for fl in tp:enum_fields_get() do
local buf = writer.Buffer()
buf:write_b(fl:name_get())
buf:write_raw(" - ", dtree.Doc(fl:documentation_get()):full_get())
arr[#arr + 1] = buf:finish()
end
f:write_list(arr)
f:write_nl()
f:finish()
end
local build_variable = function(v, constant)
local f = writer.Writer(v:nspaces_get())
if constant then
stats.check_constant(v)
else
stats.check_global(v)
end
f:finish()
end
local build_typedecls = function()
for tp in eolian.typedecl_all_aliases_get() do
build_alias(tp)
end
for tp in eolian.typedecl_all_structs_get() do
build_struct(tp)
end
for tp in eolian.typedecl_all_enums_get() do
build_enum(tp)
end
end
local build_variables = function()
for i, v in ipairs(dtree.Variable.all_constants_get()) do
build_variable(v, true)
end
for i, v in ipairs(dtree.Variable.all_globals_get()) do
build_variable(v, false)
end
end
local build_parlist = function(f, pl, nodir)
local params = {}
for i, p in ipairs(pl) do
local buf = writer.Buffer()
buf:write_b(p:name_get())
if not nodir then
buf:write_raw(" ")
buf:write_i("(", p:direction_name_get(), ")")
end
buf:write_raw(" - ", p:doc_get():full_get())
params[#params + 1] = buf:finish()
end
f:write_list(params)
end
local build_vallist = function(f, pg, ps, title)
if #pg == #ps then
local same = true
for i = 1, #pg do
if not pg[i]:is_same(ps[i]) then
same = false
break
end
end
if same then ps = {} end
end
if #pg > 0 or #ps > 0 then
f:write_h(title, 3)
if #pg > 0 then
if #ps > 0 then
f:write_h("Getter", 4)
end
build_parlist(f, pg, true)
end
if #ps > 0 then
if #pg > 0 then
f:write_h("Setter", 4)
end
build_parlist(f, ps, true)
end
end
end
build_method = function(fn, cl)
local f = writer.Writer(fn:nspaces_get(cl))
stats.check_method(fn, cl)
f:write_h(cl:full_name_get() .. "." .. fn:name_get(), 2)
f:write_h("Signature", 3)
f:write_code(gen_method_sig(fn, cl))
f:write_nl()
f:write_h("C signature", 3)
f:write_code(gen_func_csig(fn), "c")
f:write_nl()
local pars = fn:parameters_get()
if #pars > 0 then
f:write_h("Parameters", 3)
build_parlist(f, pars)
f:write_nl()
end
f:write_h("Description", 3)
f:write_raw(fn:doc_get(fn.METHOD):full_get(nil, true))
f:write_nl()
f:finish()
end
build_property = function(fn, cl)
local f = writer.Writer(fn:nspaces_get(cl))
local ft = fn:type_get()
local isget = (ft == fn.PROP_GET or ft == fn.PROPERTY)
local isset = (ft == fn.PROP_SET or ft == fn.PROPERTY)
if isget then stats.check_property(fn, cl, fn.PROP_GET) end
if isset then stats.check_property(fn, cl, fn.PROP_SET) end
local doc = fn:doc_get(fn.PROPERTY)
local gdoc = fn:doc_get(fn.PROP_GET)
local sdoc = fn:doc_get(fn.PROP_SET)
f:write_h(cl:full_name_get() .. "." .. fn:name_get(), 2)
f:write_h("Signature", 3)
f:write_code(gen_prop_sig(fn, cl))
f:write_nl()
f:write_h("C signature", 3)
local codes = {}
if isget then
codes[#codes + 1] = gen_func_csig(fn, fn.PROP_GET)
end
if isset then
codes[#codes + 1] = gen_func_csig(fn, fn.PROP_SET)
end
f:write_code(table.concat(codes, "\n"), "c")
f:write_nl()
local pgkeys = isget and fn:property_keys_get(fn.PROP_GET) or {}
local pskeys = isset and fn:property_keys_get(fn.PROP_SET) or {}
build_vallist(f, pgkeys, pskeys, "Keys")
local pgvals = isget and fn:property_values_get(fn.PROP_GET) or {}
local psvals = isset and fn:property_values_get(fn.PROP_SET) or {}
build_vallist(f, pgvals, psvals, "Values")
if isget and isset then
f:write_h("Description", 3)
if doc:exists() or (not gdoc:exists() and not sdoc:exists()) then
f:write_raw(doc:full_get(nil, true))
end
if (isget and gdoc:exists()) or (isset and sdoc:exists()) then
f:write_nl(2)
end
end
if isget and gdoc:exists() then
if isset then
f:write_h("Getter", 4)
else
f:write_h("Description", 3)
end
f:write_raw(gdoc:full_get(nil, true))
if isset and sdoc:exists() then
f:write_nl(2)
end
end
if isset and sdoc:exists() then
if isget then
f:write_h("Setter", 4)
else
f:write_h("Description", 3)
end
f:write_raw(sdoc:full_get(nil, true))
end
f:write_nl()
f:finish()
end
build_event = function(ev, cl)
local f = writer.Writer(ev:nspaces_get(cl))
f:write_h(cl:full_name_get() .. ": " .. ev:name_get(), 2)
f:write_h("Signature", 3)
local buf = { ev:name_get() }
if ev:scope_get() == ev.scope.PRIVATE then
buf[#buf + 1] = " @private"
elseif ev:scope_get() == ev.scope.PROTECTED then
buf[#buf + 1] = " @protected"
end
if ev:is_beta() then
buf[#buf + 1] = " @beta"
end
if ev:is_hot() then
buf[#buf + 1] = " @hot"
end
if ev:is_restart() then
buf[#buf + 1] = " @restart"
end
local etp = ev:type_get()
if etp then
buf[#buf + 1] = ": "
buf[#buf + 1] = ser.get_type_str(etp)
end
buf[#buf + 1] = ";"
f:write_code(table.concat(buf))
f:write_nl()
f:write_h("C signature", 3)
local cn = ev:c_name_get()
keyref.add(cn, "c")
f:write_code(ser.get_ctype_str(etp, cn) .. ";", "c")
f:write_nl()
f:write_h("Description", 3)
f:write_raw(ev:doc_get():full_get(nil, true))
f:write_nl()
f:finish()
end
getopt.parse {
args = arg,
descs = {
{ category = "General" },
{ "h", "help", nil, help = "Show this message.", metavar = "CATEGORY",
callback = getopt.help_cb(io.stdout)
},
{ "v", "verbose", false, help = "Be verbose." },
{ category = "Generator" },
{ "r", "root", true, help = "Root path of the docs." },
{ "n", "namespace", true, help = "Root namespace of the docs." },
{ nil, "graph-theme", true, help = "Optional graph theme." },
{ nil, "graph-theme-light", false, help = "Use light builtin graph theme." },
{ nil, "disable-graphviz", false, help = "Disable graphviz usage." },
{ nil, "disable-notes", false, help = "Disable notes plugin usage." },
{ nil, "disable-folded", false, help = "Disable folded plugin usage." }
},
error_cb = function(parser, msg)
io.stderr:write(msg, "\n")
getopt.help(parser, io.stderr)
end,
done_cb = function(parser, opts, args)
if opts["h"] then
return
end
if opts["graph-theme-dark"] then
current_theme = default_theme_light
end
if opts["graph-theme"] then
set_theme(opts["graph-theme"])
end
local rootns = (not opts["n"] or opts["n"] == "")
and "efl" or opts["n"]
local dr
if not opts["r"] or opts["r"] == "" then
dr = "dokuwiki/data/pages"
else
dr = opts["r"]
end
dr = dutil.path_join(dr, dutil.nspace_to_path(rootns))
dutil.init(dr)
if #args == 0 then
dtree.scan_directory()
else
for i, p in ipairs(args) do
dtree.scan_directory(p)
end
end
dtree.parse()
stats.init(not not opts["v"])
local wfeatures = {
notes = not opts["disable-notes"],
folds = not opts["disable-folded"],
dot = not opts["disable-graphviz"]
}
writer.init(rootns, wfeatures)
dutil.rm_root()
dutil.mkdir_r(nil)
build_ref()
build_classes()
build_typedecls()
build_variables()
keyref.build()
stats.print()
end
}
return true
|