docgen: only parse the necessary class when generating only one
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Fri, 3 Mar 2017 16:34:30 +0000 (17:34 +0100)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Fri, 3 Mar 2017 16:34:40 +0000 (17:34 +0100)
src/scripts/elua/apps/docgen/doctree.lua
src/scripts/elua/apps/gendoc.lua

index f4db74e..6330e56 100644 (file)
@@ -1480,12 +1480,18 @@ M.scan_directory = function(dir)
     end
 end
 
-M.parse = function()
+M.parse = function(st)
     if not eolian.all_eot_files_parse() then
         error("failed parsing eo type files")
     end
-    if not eolian.all_eo_files_parse() then
-        error("failed parsing eo files")
+    if st and st:match("%.") then
+        if not eolian.file_parse(st:gsub("%.", "_"):lower() .. ".eo") then
+            error("failed parsing eo file")
+        end
+    else
+        if not eolian.all_eo_files_parse() then
+            error("failed parsing eo files")
+        end
     end
     -- build reverse inheritance hierarchy
     for cl in eolian.all_classes_get() do
index c1d3e56..4675eff 100644 (file)
@@ -1561,7 +1561,7 @@ getopt.parse {
 
         local st = opts["pass"]
 
-        dtree.parse()
+        dtree.parse(st)
 
         if st == "clist" then
             for i, cl in ipairs(dtree.Class.all_get()) do