2008-05-26 15:25:40 +02:00
|
|
|
#!/usr/bin/lua
|
|
|
|
-- Generate documentation for awesome Lua functions
|
|
|
|
-- Take a .c file in stdin
|
|
|
|
|
|
|
|
function string.comment_clean(str)
|
|
|
|
local s = str:gsub("/%*%* ", " ")
|
2008-06-10 16:44:47 +02:00
|
|
|
s = s:gsub(" %*", "")
|
2008-06-08 19:55:41 +02:00
|
|
|
s = s:gsub("\\luastack", "")
|
|
|
|
s = s:gsub("\\lparam", "\n\n Parameter:")
|
|
|
|
s = s:gsub("\\lreturn", "\n\n Return:")
|
2008-05-26 15:25:40 +02:00
|
|
|
return s
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Read all the files in lines
|
|
|
|
lines = io.read("*all")
|
|
|
|
|
|
|
|
ilines = {}
|
|
|
|
|
|
|
|
-- read the lines in table `ilines'
|
|
|
|
for line in lines:gmatch("[^\r\n]+") do
|
|
|
|
table.insert(ilines, line)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Store function documentations in an array
|
|
|
|
function_doc = {}
|
|
|
|
for i, line in ipairs(ilines) do
|
|
|
|
if line:find("^/%*%*") then
|
|
|
|
comment_start = true
|
|
|
|
comment = line
|
|
|
|
elseif line:find("%*/") then
|
|
|
|
comment_start = false
|
|
|
|
local l = ilines[i + 2]
|
|
|
|
local fctname
|
2008-05-28 09:17:24 +02:00
|
|
|
_, _, fctname = l:find("^(.+)%(lua_State")
|
2008-05-26 15:25:40 +02:00
|
|
|
if fctname then
|
|
|
|
function_doc[fctname] = comment
|
|
|
|
end
|
|
|
|
comment = nil
|
|
|
|
elseif comment_start then
|
2008-06-11 02:46:30 +02:00
|
|
|
if not line:find("\\param") and not line:find("\\return") and not line:find("\\lvalue") then
|
2008-06-08 19:55:41 +02:00
|
|
|
comment = comment .. line
|
|
|
|
end
|
2008-05-26 15:25:40 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Get function list and print their documentation
|
|
|
|
capture = false
|
|
|
|
for i, line in ipairs(ilines) do
|
|
|
|
if not libname then
|
|
|
|
_, _, libname, libtype = line:find("const struct luaL_reg awesome_(%a+)_(%a+)%[%] =")
|
|
|
|
-- Special case
|
|
|
|
if not libname then _, _, libname, libtype = line:find("const struct luaL_reg (awesome)_(lib)%[%] =") end
|
|
|
|
else
|
|
|
|
if line:find("};") then
|
|
|
|
libname = nil
|
|
|
|
else
|
|
|
|
local fctname, fctdef
|
|
|
|
_, _, fctname, fctdef = line:find("\"(.+)\", (.+) },")
|
2008-05-26 20:24:30 +02:00
|
|
|
if fctname and not fctname:find("^__") then
|
2008-05-26 15:25:40 +02:00
|
|
|
if libtype == "meta" then sep = ":" else sep = "." end
|
|
|
|
print("*" .. libname .. sep .. fctname .. "*::")
|
2008-05-26 20:24:30 +02:00
|
|
|
if function_doc[fctdef] then
|
|
|
|
print(function_doc[fctdef]:comment_clean())
|
|
|
|
else
|
|
|
|
print("This function is not yet documented.")
|
|
|
|
end
|
2008-05-26 20:17:15 +02:00
|
|
|
print()
|
2008-05-26 15:25:40 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|