refactor(lua2dox): overhaul (#24386)

This commit is contained in:
Lewis Russell
2023-07-18 12:24:53 +01:00
committed by GitHub
parent e4da418ba8
commit 9fcb0a64ee
3 changed files with 316 additions and 485 deletions

View File

@@ -1988,13 +1988,13 @@ vim.Ringbuf:peek() *Ringbuf:peek()*
Returns the first unread item without removing it Returns the first unread item without removing it
Return: ~ Return: ~
any?|ni any?|nil
vim.Ringbuf:pop() *Ringbuf:pop()* vim.Ringbuf:pop() *Ringbuf:pop()*
Removes and returns the first unread item Removes and returns the first unread item
Return: ~ Return: ~
any?|ni any?|nil
vim.Ringbuf:push({item}) *Ringbuf:push()* vim.Ringbuf:push({item}) *Ringbuf:push()*
Adds an item, overriding the oldest item if the buffer is full. Adds an item, overriding the oldest item if the buffer is full.
@@ -3044,7 +3044,7 @@ vim.version.last({versions}) *vim.version.last()*
• {versions} Version [] • {versions} Version []
Return: ~ Return: ~
Version ?|ni Version ?|nil
vim.version.lt({v1}, {v2}) *vim.version.lt()* vim.version.lt({v1}, {v2}) *vim.version.lt()*
Returns `true` if `v1 < v2` . See |vim.version.cmp()| for usage. Returns `true` if `v1 < v2` . See |vim.version.cmp()| for usage.

View File

@@ -1035,7 +1035,7 @@ set({lang}, {query_name}, {text}) *vim.treesitter.query.set()*
Lua module: vim.treesitter.highlighter *lua-treesitter-highlighter* Lua module: vim.treesitter.highlighter *lua-treesitter-highlighter*
TSHighlighter:destroy() *TSHighlighter:destroy()* TSHighlighter:destroy() *TSHighlighter:destroy()*
Removes all internal references to the highlighter Removes all internal references to the highlighter.
============================================================================== ==============================================================================
@@ -1100,7 +1100,8 @@ LanguageTree:destroy() *LanguageTree:destroy()*
Any cleanup logic should be performed here. Any cleanup logic should be performed here.
Note: This DOES NOT remove this tree from a parent. Instead, `remove_child` must be called on the parent to remove it. Note: This DOES NOT remove this tree from a parent. Instead,
`remove_child` must be called on the parent to remove it.
*LanguageTree:for_each_child()* *LanguageTree:for_each_child()*
LanguageTree:for_each_child({fn}, {include_self}) LanguageTree:for_each_child({fn}, {include_self})

View File

@@ -1,4 +1,4 @@
--[[-------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- Copyright (C) 2012 by Simon Dales -- -- Copyright (C) 2012 by Simon Dales --
-- simon@purrsoft.co.uk -- -- simon@purrsoft.co.uk --
-- -- -- --
@@ -16,7 +16,7 @@
-- along with this program; if not, write to the -- -- along with this program; if not, write to the --
-- Free Software Foundation, Inc., -- -- Free Software Foundation, Inc., --
-- 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- -- 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
----------------------------------------------------------------------------]] -----------------------------------------------------------------------------
--[[! --[[!
Lua-to-Doxygen converter Lua-to-Doxygen converter
@@ -48,536 +48,364 @@ It only has to be good enough for doxygen to see it as legal.
One limitation is that each line is treated separately (except for long comments). One limitation is that each line is treated separately (except for long comments).
The implication is that class and function declarations must be on the same line. The implication is that class and function declarations must be on the same line.
Some functions can have their parameter lists extended over multiple lines to make it look neat.
Managing this where there are also some comments is a bit more coding than I want to do at this stage,
so it will probably not document accurately if we do do this.
However I have put in a hack that will insert the "missing" close paren. There is hack that will insert the "missing" close paren.
The effect is that you will get the function documented, but not with the parameter list you might expect. The effect is that you will get the function documented, but not with the parameter list you might expect.
]] ]]
local _debug_outfile = nil local TYPES = { 'integer', 'number', 'string', 'table', 'list', 'boolean', 'function' }
local _debug_output = {}
local function class() local TAGGED_TYPES = { 'TSNode', 'LanguageTree' }
local newClass = {} -- a new class newClass
-- the class will be the metatable for all its newInstanceects,
-- and they will look up their methods in it.
newClass.__index = newClass
-- expose a constructor which can be called by <classname>(<args>) -- Document these as 'table'
setmetatable(newClass, { local ALIAS_TYPES = { 'Range', 'Range4', 'Range6', 'TSMetadata' }
__call = function(class_tbl, ...)
local newInstance = {}
setmetatable(newInstance, newClass)
--if init then
-- init(newInstance,...)
if class_tbl.init then
class_tbl.init(newInstance, ...)
end
return newInstance
end
})
return newClass
end
-- write to stdout local debug_outfile = nil --- @type string?
local function TCore_IO_write(Str) local debug_output = {}
if Str then
io.write(Str) --- write to stdout
if _debug_outfile then --- @param str? string
table.insert(_debug_output, Str) local function write(str)
if not str then
return
end end
io.write(str)
if debug_outfile then
table.insert(debug_output, str)
end end
end end
-- write to stdout --- write to stdout
local function TCore_IO_writeln(Str) --- @param str? string
TCore_IO_write(Str) local function writeln(str)
TCore_IO_write('\n') write(str)
write('\n')
end end
-- trims a string --- an input file buffer
local function string_trim(Str) --- @class StreamRead
return Str:match('^%s*(.-)%s*$') --- @field currentLine string?
end --- @field contentsLen integer
--- @field currentLineNo integer
--- @field filecontents string[]
local StreamRead = {}
-- split a string --- @return StreamRead
--! --- @param filename string
--! \param Str function StreamRead.new(filename)
--! \param Pattern assert(filename, ('invalid file: %s'):format(filename))
--! \returns table of string fragments
---@return string[]
local function string_split(Str, Pattern)
local splitStr = {}
local fpat = '(.-)' .. Pattern
local last_end = 1
local str, e, cap = string.find(Str, fpat, 1)
while str do
if str ~= 1 or cap ~= '' then
table.insert(splitStr, cap)
end
last_end = e + 1
str, e, cap = string.find(Str, fpat, last_end)
end
if last_end <= #Str then
cap = string.sub(Str, last_end)
table.insert(splitStr, cap)
end
return splitStr
end
-------------------------------
-- file buffer
--!
--! an input file buffer
local TStream_Read = class()
-- get contents of file
--!
--! \param Filename name of file to read (or nil == stdin)
function TStream_Read.getContents(this, Filename)
assert(Filename, ('invalid file: %s'):format(Filename))
-- get lines from file -- get lines from file
-- syphon lines to our table -- syphon lines to our table
local filecontents = {} local filecontents = {} --- @type string[]
for line in io.lines(Filename) do for line in io.lines(filename) do
table.insert(filecontents, line) filecontents[#filecontents+1] = line
end end
if filecontents then return setmetatable({
this.filecontents = filecontents filecontents = filecontents,
this.contentsLen = #filecontents contentsLen = #filecontents,
this.currentLineNo = 1 currentLineNo = 1,
end }, { __index = StreamRead })
return filecontents
end
-- get lineno
function TStream_Read.getLineNo(this)
return this.currentLineNo
end end
-- get a line -- get a line
function TStream_Read.getLine(this) function StreamRead:getLine()
local line if self.currentLine then
if this.currentLine then self.currentLine = nil
line = this.currentLine return self.currentLine
this.currentLine = nil end
else
-- get line -- get line
if this.currentLineNo <= this.contentsLen then if self.currentLineNo <= self.contentsLen then
line = this.filecontents[this.currentLineNo] local line = self.filecontents[self.currentLineNo]
this.currentLineNo = this.currentLineNo + 1 self.currentLineNo = self.currentLineNo + 1
else
line = ''
end
end
return line return line
end
return ''
end end
-- save line fragment -- save line fragment
function TStream_Read.ungetLine(this, LineFrag) --- @param line_fragment string
this.currentLine = LineFrag function StreamRead:ungetLine(line_fragment)
self.currentLine = line_fragment
end end
-- is it eof? -- is it eof?
function TStream_Read.eof(this) function StreamRead:eof()
if this.currentLine or this.currentLineNo <= this.contentsLen then return not self.currentLine and self.currentLineNo > self.contentsLen
return false
end
return true
end
-- output stream
local TStream_Write = class()
-- constructor
function TStream_Write.init(this)
this.tailLine = {}
end
-- write immediately
function TStream_Write.write(_, Str)
TCore_IO_write(Str)
end
-- write immediately
function TStream_Write.writeln(_, Str)
TCore_IO_writeln(Str)
end
-- write immediately
function TStream_Write.writelnComment(_, Str)
TCore_IO_write('// ZZ: ')
TCore_IO_writeln(Str)
end
-- write to tail
function TStream_Write.writelnTail(this, Line)
if not Line then
Line = ''
end
table.insert(this.tailLine, Line)
end
-- output tail lines
function TStream_Write.write_tailLines(this)
for _, line in ipairs(this.tailLine) do
TCore_IO_writeln(line)
end
TCore_IO_write('// Lua2DoX new eof')
end end
-- input filter -- input filter
local TLua2DoX_filter = class() --- @class Lua2DoxFilter
local Lua2DoxFilter = {}
setmetatable(Lua2DoxFilter, { __index = Lua2DoxFilter })
-- allow us to do errormessages --- trim comment off end of string
function TLua2DoX_filter.warning(this, Line, LineNo, Legend) ---
this.outStream:writelnTail( --- @param line string
'//! \todo warning! ' .. Legend .. ' (@' .. LineNo .. ')"' .. Line .. '"' --- @return string, string?
) local function removeCommentFromLine(line)
local pos_comment = line:find('%-%-')
if not pos_comment then
return line
end
return line:sub(1, pos_comment - 1), line:sub(pos_comment)
end end
-- trim comment off end of string --- @param line string
--! --- @param generics table<string,string>
--! If the string has a comment on the end, this trims it off. --- @return string?
--! local function process_magic(line, generics)
local function TString_removeCommentFromLine(Line) line = line:gsub('^%s+@', '@')
local pos_comment = string.find(Line, '%-%-')
local tailComment
if pos_comment then
Line = string.sub(Line, 1, pos_comment - 1)
tailComment = string.sub(Line, pos_comment)
end
return Line, tailComment
end
-- get directive from magic
local function getMagicDirective(Line)
local macro, tail
local macroStr = '[\\@]'
local pos_macro = string.find(Line, macroStr)
if pos_macro then
--! ....\\ macro...stuff
--! ....\@ macro...stuff
local line = string.sub(Line, pos_macro + 1)
local space = string.find(line, '%s+')
if space then
macro = string.sub(line, 1, space - 1)
tail = string_trim(string.sub(line, space + 1))
else
macro = line
tail = ''
end
end
return macro, tail
end
-- check comment for fn
local function checkComment4fn(Fn_magic, MagicLines)
local fn_magic = Fn_magic
-- TCore_IO_writeln('// checkComment4fn "' .. MagicLines .. '"')
local magicLines = string_split(MagicLines, '\n')
local macro, tail
for _, line in ipairs(magicLines) do
macro, tail = getMagicDirective(line)
if macro == 'fn' then
fn_magic = tail
-- TCore_IO_writeln('// found fn "' .. fn_magic .. '"')
--else
--TCore_IO_writeln('// not found fn "' .. line .. '"')
end
end
return fn_magic
end
local types = { 'integer', 'number', 'string', 'table', 'list', 'boolean', 'function' }
local tagged_types = { 'TSNode', 'LanguageTree' }
-- Document these as 'table'
local alias_types = { 'Range', 'Range4', 'Range6', 'TSMetadata' }
-- Processes the file and writes filtered output to stdout.
function TLua2DoX_filter.filter(this, AppStamp, Filename)
local inStream = TStream_Read()
local outStream = TStream_Write()
this.outStream = outStream -- save to this obj
if inStream:getContents(Filename) then
-- output the file
local line
local fn_magic -- function name/def from magic comment
outStream:writelnTail('// #######################')
outStream:writelnTail('// app run:' .. AppStamp)
outStream:writelnTail('// #######################')
outStream:writelnTail()
local state = '' -- luacheck: ignore 231 variable is set but never accessed.
local offset = 0
local generic = {}
local l = 0
while not (inStream:eof()) do
line = string_trim(inStream:getLine())
l = l + 1
if string.sub(line, 1, 2) == '--' then -- it's a comment
line = line:gsub('^---%s+@', '---@')
-- Allow people to write style similar to EmmyLua (since they are basically the same)
-- instead of silently skipping things that start with ---
if string.sub(line, 3, 3) == '@' then -- it's a magic comment
offset = 0
elseif string.sub(line, 1, 4) == '---@' then -- it's a magic comment
offset = 1
end
line = line:gsub('@package', '@private') line = line:gsub('@package', '@private')
if vim.startswith(line, '---@cast') if not vim.startswith(line, '@') then -- it's a magic comment
or vim.startswith(line, '---@diagnostic') return '/// ' .. line
or vim.startswith(line, '---@overload') end
or vim.startswith(line, '---@meta')
or vim.startswith(line, '---@type') then
-- Ignore LSP directives
outStream:writeln('// gg:"' .. line .. '"')
elseif string.sub(line, 3, 3) == '@' or string.sub(line, 1, 4) == '---@' then -- it's a magic comment
state = 'in_magic_comment'
local magic = string.sub(line, 4 + offset)
local magic_split = string_split(magic, ' ') local magic = line:sub(2)
if magic_split[1] == 'param' then local magic_split = vim.split(magic, ' ', { plain = true })
for _, type in ipairs(types) do local directive = magic_split[1]
if vim.list_contains({
'cast', 'diagnostic', 'overload', 'meta', 'type'
}, directive) then
-- Ignore LSP directives
return '// gg:"' .. line .. '"'
end
if directive == 'defgroup' or directive == 'addtogroup' then
-- Can't use '.' in defgroup, so convert to '--'
return '/// @' .. magic:gsub('%.', '-dot-')
end
if directive == 'generic' then
local generic_name, generic_type = line:match('@generic%s*(%w+)%s*:?%s*(.*)')
if generic_type == '' then
generic_type = 'any'
end
generics[generic_name] = generic_type
return
end
local type_index = 2
if directive == 'param' then
for _, type in ipairs(TYPES) do
magic = magic:gsub('^param%s+([a-zA-Z_?]+)%s+.*%((' .. type .. ')%)', 'param %1 %2') magic = magic:gsub('^param%s+([a-zA-Z_?]+)%s+.*%((' .. type .. ')%)', 'param %1 %2')
magic = magic =
magic:gsub('^param%s+([a-zA-Z_?]+)%s+.*%((' .. type .. '|nil)%)', 'param %1 %2') magic:gsub('^param%s+([a-zA-Z_?]+)%s+.*%((' .. type .. '|nil)%)', 'param %1 %2')
end end
magic_split = string_split(magic, ' ') magic_split = vim.split(magic, ' ', { plain = true })
elseif magic_split[1] == 'return' then type_index = 3
for _, type in ipairs(types) do elseif directive == 'return' then
for _, type in ipairs(TYPES) do
magic = magic:gsub('^return%s+.*%((' .. type .. ')%)', 'return %1') magic = magic:gsub('^return%s+.*%((' .. type .. ')%)', 'return %1')
magic = magic:gsub('^return%s+.*%((' .. type .. '|nil)%)', 'return %1') magic = magic:gsub('^return%s+.*%((' .. type .. '|nil)%)', 'return %1')
end end
-- handle the return of vim.spell.check -- handle the return of vim.spell.check
magic = magic:gsub('({.*}%[%])', '`%1`') magic = magic:gsub('({.*}%[%])', '`%1`')
magic_split = string_split(magic, ' ') magic_split = vim.split(magic, ' ', { plain = true })
end end
if magic_split[1] == 'generic' then local ty = magic_split[type_index]
local generic_name, generic_type = line:match('@generic%s*(%w+)%s*:?%s*(.*)')
if generic_type == '' then
generic_type = 'any'
end
generic[generic_name] = generic_type
else
local type_index = 2
if magic_split[1] == 'param' then
type_index = type_index + 1
end
if magic_split[type_index] then if ty then
-- fix optional parameters -- fix optional parameters
if magic_split[type_index] and magic_split[2]:find('%?$') then if magic_split[2]:find('%?$') then
if not magic_split[type_index]:find('nil') then if not ty:find('nil') then
magic_split[type_index] = magic_split[type_index] .. '|nil' ty = ty .. '|nil'
end end
magic_split[2] = magic_split[2]:sub(1, -2) magic_split[2] = magic_split[2]:sub(1, -2)
end end
-- replace generic types -- replace generic types
if magic_split[type_index] then for k, v in pairs(generics) do
for k, v in pairs(generic) do ty = ty:gsub(k, v) --- @type string
magic_split[type_index] = magic_split[type_index]:gsub(k, v)
end
end end
for _, type in ipairs(tagged_types) do for _, type in ipairs(TAGGED_TYPES) do
magic_split[type_index] = ty = ty:gsub(type, '|%1|')
magic_split[type_index]:gsub(type, '|%1|')
end end
for _, type in ipairs(alias_types) do for _, type in ipairs(ALIAS_TYPES) do
magic_split[type_index] = ty = ty:gsub('^'..type..'$', 'table') --- @type string
magic_split[type_index]:gsub('^'..type..'$', 'table')
end end
-- surround some types by () -- surround some types by ()
for _, type in ipairs(types) do for _, type in ipairs(TYPES) do
magic_split[type_index] = ty = ty
magic_split[type_index]:gsub('^(' .. type .. '|nil):?$', '(%1)') :gsub('^(' .. type .. '|nil):?$', '(%1)')
magic_split[type_index] = :gsub('^(' .. type .. '):?$', '(%1)')
magic_split[type_index]:gsub('^(' .. type .. '):?$', '(%1)')
end end
magic_split[type_index] = ty
end end
magic = table.concat(magic_split, ' ') magic = table.concat(magic_split, ' ')
if magic_split[1] == 'defgroup' or magic_split[1] == 'addtogroup' then return '/// @' .. magic
-- Can't use '.' in defgroup, so convert to '--' end
magic = magic:gsub('%.', '-dot-')
end
outStream:writeln('/// @' .. magic) --- @param line string
fn_magic = checkComment4fn(fn_magic, magic) --- @param in_stream StreamRead
end --- @return string
elseif string.sub(line, 3, 3) == '-' then -- it's a nonmagic doc comment local function process_block_comment(line, in_stream)
local comment = string.sub(line, 4) local comment_parts = {} --- @type string[]
outStream:writeln('/// ' .. comment) local done --- @type boolean?
elseif string.sub(line, 3, 4) == '[[' then -- it's a long comment
line = string.sub(line, 5) -- nibble head while not done and not in_stream:eof() do
local comment = '' local thisComment --- @type string?
local closeSquare, hitend, thisComment local closeSquare = line:find(']]')
while not hitend and (not inStream:eof()) do
closeSquare = string.find(line, ']]')
if not closeSquare then -- need to look on another line if not closeSquare then -- need to look on another line
thisComment = line .. '\n' thisComment = line .. '\n'
line = inStream:getLine() line = in_stream:getLine()
else else
thisComment = string.sub(line, 1, closeSquare - 1) thisComment = line:sub(1, closeSquare - 1)
hitend = true done = true
-- unget the tail of the line -- unget the tail of the line
-- in most cases it's empty. This may make us less efficient but -- in most cases it's empty. This may make us less efficient but
-- easier to program -- easier to program
inStream:ungetLine(string_trim(string.sub(line, closeSquare + 2))) in_stream:ungetLine(vim.trim(line:sub(closeSquare + 2)))
end end
comment = comment .. thisComment comment_parts[#comment_parts+1] = thisComment
end
if string.sub(comment, 1, 1) == '@' then -- it's a long magic comment
outStream:write('/*' .. comment .. '*/ ')
fn_magic = checkComment4fn(fn_magic, comment)
else -- discard
outStream:write('/* zz:' .. comment .. '*/ ')
fn_magic = nil
end
-- TODO(justinmk): Uncomment this if we want "--" lines to continue the
-- preceding magic ("---", "--@", …) lines.
-- elseif state == 'in_magic_comment' then -- next line of magic comment
-- outStream:writeln('/// '.. line:sub(3))
else -- discard
outStream:writeln('// zz:"' .. line .. '"')
fn_magic = nil
end
elseif string.find(line, '^function') or string.find(line, '^local%s+function') then
generic = {}
state = 'in_function' -- it's a function
local pos_fn = string.find(line, 'function')
-- function
-- ....v...
if pos_fn then
-- we've got a function
local fn = TString_removeCommentFromLine(string_trim(string.sub(line, pos_fn + 8)))
if fn_magic then
fn = fn_magic
end end
if string.sub(fn, 1, 1) == '(' then local comment = table.concat(comment_parts)
if comment:sub(1, 1) == '@' then -- it's a long magic comment
return '/*' .. comment .. '*/ '
end
-- discard
return '/* zz:' .. comment .. '*/ '
end
--- @param line string
--- @return string
local function process_function_header(line)
local pos_fn = assert(line:find('function'))
-- we've got a function
local fn = removeCommentFromLine(vim.trim(line:sub(pos_fn + 8)))
if fn:sub(1, 1) == '(' then
-- it's an anonymous function -- it's an anonymous function
outStream:writelnComment(line) return '// ZZ: '..line
else end
-- fn has a name, so is interesting -- fn has a name, so is interesting
-- want to fix for iffy declarations -- want to fix for iffy declarations
local open_paren = string.find(fn, '[%({]') if fn:find('[%({]') then
if open_paren then
-- we might have a missing close paren -- we might have a missing close paren
if not string.find(fn, '%)') then if not fn:find('%)') then
fn = fn .. ' ___MissingCloseParenHere___)' fn = fn .. ' ___MissingCloseParenHere___)'
end end
end end
-- Big hax -- Big hax
if string.find(fn, ':') then if fn:find(':') then
-- TODO: We need to add a first parameter of "SELF" here
-- local colon_place = string.find(fn, ":")
-- local name = string.sub(fn, 1, colon_place)
fn = fn:gsub(':', '.', 1) fn = fn:gsub(':', '.', 1)
outStream:writeln('/// @param self')
local paren_start = string.find(fn, '(', 1, true) local paren_start = fn:find('(', 1, true)
local paren_finish = string.find(fn, ')', 1, true) local paren_finish = fn:find(')', 1, true)
-- Nothing in between the parens -- Nothing in between the parens
local comma local comma --- @type string
if paren_finish == paren_start + 1 then if paren_finish == paren_start + 1 then
comma = '' comma = ''
else else
comma = ', ' comma = ', '
end end
fn = string.sub(fn, 1, paren_start)
fn = fn:sub(1, paren_start)
.. 'self' .. 'self'
.. comma .. comma
.. string.sub(fn, paren_start + 1) .. fn:sub(paren_start + 1)
end end
-- add vanilla function -- add vanilla function
outStream:writeln('function ' .. fn .. '{}') return 'function ' .. fn .. '{}'
end end
else
this:warning(inStream:getLineNo(), 'something weird here')
end
fn_magic = nil -- mustn't inadvertently use it again
-- TODO: If we can make this learn how to generate these, that would be helpful. --- @param line string
-- elseif string.find(line, "^M%['.*'%] = function") then --- @param in_stream StreamRead
-- state = 'in_function' -- it's a function --- @param generics table<string,string>>
-- outStream:writeln("function textDocument/publishDiagnostics(...){}") --- @return string?
local function process_line(line, in_stream, generics)
if vim.startswith(line, '---') then
return process_magic(line:sub(4), generics)
end
if vim.startswith(line, '--'..'[[') then -- it's a long comment
return process_block_comment(line:sub(5), in_stream)
end
if line:find('^function') or line:find('^local%s+function') then
return process_function_header(line)
end
-- fn_magic = nil -- mustn't inadvertently use it again
else
state = '' -- unknown
if #line > 0 then -- we don't know what this line means, so just comment it out if #line > 0 then -- we don't know what this line means, so just comment it out
outStream:writeln('// zz: ' .. line) return '// zz: ' .. line
else
outStream:writeln() -- keep this line blank
end
end
end end
-- output the tail return ''
outStream:write_tailLines() end
else
outStream:writeln('!empty file') -- Processes the file and writes filtered output to stdout.
---@param filename string
function Lua2DoxFilter:filter(filename)
local in_stream = StreamRead.new(filename)
local generics = {} --- @type table<string,string>
while not in_stream:eof() do
local line = vim.trim(in_stream:getLine())
local out_line = process_line(line, in_stream, generics)
if not vim.startswith(line, '---') then
generics = {}
end
if out_line then
writeln(out_line)
end
end end
end end
-- this application --- @class TApp
local TApp = class() --- @field timestamp string|osdate
--- @field name string
--- @field version string
--- @field copyright string
--- this application
local TApp = {
timestamp = os.date('%c %Z', os.time()),
name = 'Lua2DoX',
version = '0.2 20130128',
copyright = 'Copyright (c) Simon Dales 2012-13'
}
-- constructor setmetatable(TApp, { __index = TApp })
function TApp.init(this)
this.timestamp = os.date('%c %Z', os.time()) function TApp:getRunStamp()
this.name = 'Lua2DoX' return self.name .. ' (' .. self.version .. ') ' .. self.timestamp
this.version = '0.2 20130128'
this.copyright = 'Copyright (c) Simon Dales 2012-13'
end end
function TApp.getRunStamp(this) function TApp:getVersion()
return this.name .. ' (' .. this.version .. ') ' .. this.timestamp return self.name .. ' (' .. self.version .. ') '
end end
function TApp.getVersion(this)
return this.name .. ' (' .. this.version .. ') '
end
function TApp.getCopyright(this)
return this.copyright
end
local This_app = TApp()
--main --main
if arg[1] == '--help' then if arg[1] == '--help' then
TCore_IO_writeln(This_app:getVersion()) writeln(TApp:getVersion())
TCore_IO_writeln(This_app:getCopyright()) writeln(TApp.copyright)
TCore_IO_writeln([[ writeln([[
run as: run as:
nvim -l scripts/lua2dox.lua <param> nvim -l scripts/lua2dox.lua <param>
-------------- --------------
@@ -586,8 +414,8 @@ if arg[1] == '--help' then
--version : show version/copyright info --version : show version/copyright info
--help : this help text]]) --help : this help text]])
elseif arg[1] == '--version' then elseif arg[1] == '--version' then
TCore_IO_writeln(This_app:getVersion()) writeln(TApp:getVersion())
TCore_IO_writeln(This_app:getCopyright()) writeln(TApp.copyright)
else -- It's a filter. else -- It's a filter.
local filename = arg[1] local filename = arg[1]
@@ -597,18 +425,20 @@ else -- It's a filter.
error(('invalid --outdir: "%s"'):format(tostring(outdir))) error(('invalid --outdir: "%s"'):format(tostring(outdir)))
end end
vim.fn.mkdir(outdir, 'p') vim.fn.mkdir(outdir, 'p')
_debug_outfile = string.format('%s/%s.c', outdir, vim.fs.basename(filename)) debug_outfile = string.format('%s/%s.c', outdir, vim.fs.basename(filename))
end end
local appStamp = This_app:getRunStamp() Lua2DoxFilter:filter(filename)
local filter = TLua2DoX_filter()
filter:filter(appStamp, filename)
if _debug_outfile then -- output the tail
local f = assert(io.open(_debug_outfile, 'w')) writeln('// #######################')
f:write(table.concat(_debug_output)) writeln('// app run:' .. TApp:getRunStamp())
writeln('// #######################')
writeln()
if debug_outfile then
local f = assert(io.open(debug_outfile, 'w'))
f:write(table.concat(debug_output))
f:close() f:close()
end end
end end
--eof