run: some play with the entrypoint
This commit is contained in:
parent
ab28bf8717
commit
09181259e1
|
@ -65,78 +65,88 @@ local function modules_tree(modules: List<Module_Info.Module_Info>): Map<string,
|
|||
return tree
|
||||
end
|
||||
|
||||
local function do_one_file(
|
||||
url: string,
|
||||
record_name: string,
|
||||
output_path: string
|
||||
)
|
||||
local html = crawler.fetch(url)
|
||||
local module_doc = scraper.module_doc.get_doc_from_page(html, record_name)
|
||||
module_doc:fixup()
|
||||
module_doc:populate_requires()
|
||||
filesystem.file_writer.write(
|
||||
generator.teal_type_definitions.generate_teal(module_doc),
|
||||
output_path
|
||||
)
|
||||
end
|
||||
-- local function do_one_file(
|
||||
-- url: string,
|
||||
-- record_name: string,
|
||||
-- output_path: string
|
||||
-- )
|
||||
-- local html = crawler.fetch(url)
|
||||
-- local module_doc = scraper.module_doc.get_doc_from_page(html, record_name)
|
||||
-- module_doc:fixup()
|
||||
-- module_doc:populate_requires()
|
||||
-- filesystem.file_writer.write(
|
||||
-- generator.teal_type_definitions.generate_teal(module_doc),
|
||||
-- output_path
|
||||
-- )
|
||||
-- end
|
||||
|
||||
local all_module_infos, module_infos, global_module_infos = module_lists(
|
||||
property.base_url .. property.index_uri,
|
||||
List(property.capi_modules),
|
||||
List(property.ignored_modules)
|
||||
)
|
||||
local tree = modules_tree(module_infos)
|
||||
-- local all_module_infos, module_infos, global_module_infos = module_lists(
|
||||
-- property.base_url .. property.index_uri,
|
||||
-- List(property.capi_modules),
|
||||
-- List(property.ignored_modules)
|
||||
-- )
|
||||
-- local tree = modules_tree(module_infos)
|
||||
|
||||
log:info(
|
||||
logger.message_with_metadata(
|
||||
"Finished Module List scrapping",
|
||||
{
|
||||
total_module_count = #all_module_infos,
|
||||
module_count = #module_infos,
|
||||
global_module_count = #global_module_infos,
|
||||
tree_items = tree:len(),
|
||||
}
|
||||
)
|
||||
-- log:info(
|
||||
-- logger.message_with_metadata(
|
||||
-- "Finished Module List scrapping",
|
||||
-- {
|
||||
-- total_module_count = #all_module_infos,
|
||||
-- module_count = #module_infos,
|
||||
-- global_module_count = #global_module_infos,
|
||||
-- tree_items = tree:len(),
|
||||
-- }
|
||||
-- )
|
||||
-- )
|
||||
|
||||
-- for module in module_infos:iter() do
|
||||
-- do_one_file(
|
||||
-- property.base_url .. "/" .. module.uri,
|
||||
-- module.name,
|
||||
-- property.out_directory .. "/" .. module.name:gsub("%.", "/") .. ".d.tl"
|
||||
-- )
|
||||
-- end
|
||||
|
||||
-- local global_env_def: List<Module_Doc.Module_Doc> = List()
|
||||
-- for module in global_module_infos:iter() do
|
||||
-- if module.name:gmatch(".*%sand%s.*") then
|
||||
-- do_one_file(
|
||||
-- property.base_url .. "/" .. module.uri,
|
||||
-- module.name,
|
||||
-- property.out_directory .. "/" .. module.name:gsub(".*%sand%s", ""):gsub("%.", "/") .. ".d.tl"
|
||||
-- )
|
||||
-- end
|
||||
|
||||
-- local html = crawler.fetch(property.base_url .. "/" .. module.uri)
|
||||
-- local module_doc = scraper.module_doc.get_doc_from_page(html, (module.name:gsub("%sand%s.*", "")))
|
||||
-- module_doc:fixup()
|
||||
-- module_doc.record_name = utils.lowercase(module_doc.record_name)
|
||||
-- global_env_def:append(module_doc)
|
||||
-- end
|
||||
-- filesystem.file_writer.write(
|
||||
-- generator.global_env_def.generate_teal(global_env_def),
|
||||
-- property.out_directory .. "/global_env.d.tl"
|
||||
-- )
|
||||
|
||||
-- for module, children in tree:iter() do
|
||||
-- -- TODO : this map should be coupled with the all_module_infos list
|
||||
-- local requires: Map<string, string> = Map()
|
||||
-- for child in children:iter() do
|
||||
-- local name = child:gmatch(".*%.(.*)$")()
|
||||
-- requires:set(name, child)
|
||||
-- end
|
||||
-- filesystem.file_writer.write(
|
||||
-- generator.module_init_definition.generate_teal(requires),
|
||||
-- property.out_directory .. "/" .. stringx.split(module, "."):slice(1, -1):join("/") .. "/init.d.tl"
|
||||
-- )
|
||||
-- end
|
||||
|
||||
local module_ast, other_nodes = scraper.module_doc.get_doc_from_page(
|
||||
crawler.fetch(property.base_url .. "/widgets/wibox.widget.imagebox.html"),
|
||||
"awful.tag"
|
||||
)
|
||||
|
||||
for module in module_infos:iter() do
|
||||
do_one_file(
|
||||
property.base_url .. "/" .. module.uri,
|
||||
module.name,
|
||||
property.out_directory .. "/" .. module.name:gsub("%.", "/") .. ".d.tl"
|
||||
)
|
||||
end
|
||||
|
||||
local global_env_def: List<Module_Doc.Module_Doc> = List()
|
||||
for module in global_module_infos:iter() do
|
||||
if module.name:gmatch(".*%sand%s.*") then
|
||||
do_one_file(
|
||||
property.base_url .. "/" .. module.uri,
|
||||
module.name,
|
||||
property.out_directory .. "/" .. module.name:gsub(".*%sand%s", ""):gsub("%.", "/") .. ".d.tl"
|
||||
)
|
||||
end
|
||||
|
||||
local html = crawler.fetch(property.base_url .. "/" .. module.uri)
|
||||
local module_doc = scraper.module_doc.get_doc_from_page(html, (module.name:gsub("%sand%s.*", "")))
|
||||
module_doc:fixup()
|
||||
module_doc.record_name = utils.lowercase(module_doc.record_name)
|
||||
global_env_def:append(module_doc)
|
||||
end
|
||||
filesystem.file_writer.write(
|
||||
generator.global_env_def.generate_teal(global_env_def),
|
||||
property.out_directory .. "/global_env.d.tl"
|
||||
)
|
||||
|
||||
for module, children in tree:iter() do
|
||||
-- TODO : this map should be coupled with the all_module_infos list
|
||||
local requires: Map<string, string> = Map()
|
||||
for child in children:iter() do
|
||||
local name = child:gmatch(".*%.(.*)$")()
|
||||
requires:set(name, child)
|
||||
end
|
||||
filesystem.file_writer.write(
|
||||
generator.module_init_definition.generate_teal(requires),
|
||||
property.out_directory .. "/" .. stringx.split(module, "."):slice(1, -1):join("/") .. "/init.d.tl"
|
||||
)
|
||||
end
|
||||
log:info(logger.message_with_metadata("Finished", {
|
||||
module_ast = module_ast,
|
||||
other_nodes = other_nodes,
|
||||
}))
|
||||
|
|
Loading…
Reference in New Issue