kuroko/tools/gendoc.krk

361 lines
13 KiB
Python
Raw Normal View History

2021-02-20 08:10:36 +03:00
#!/usr/bin/env kuroko
'''
@brief Tool for dynamically generating documentation files through introspection.
Imports modules and scans through members to generate Markdown files to feed into
Doxygen. Uses dynamic introspection to obtain member lists and look up function
arguments, docstrings, etc.
Markdown output is aided by a set of macros defined in the Kuroko API Documentation
Doxyfile. The output should be suitable for use with a normal Doxygen build, but some
additional customization is available.
'''
import fileio
import kuroko
import syntax.highlighter
let realPrint = print
let blacklistedMethods = [
'__func__',
'__repr__',
'__str__',
]
let specialMethods = {
2021-02-20 09:43:47 +03:00
'__contains__': lambda cls, args: f'{args or "<i>needle</i>"} <b>in</b> {cls}',
'__init__': lambda cls, args: f'let <i>x</i> = <b>{cls}</b>({args})',
'__getitem__': lambda cls, args: f'{cls}[{args or "<i>key</i>"}]',
2021-02-20 09:43:47 +03:00
'__delitem__': lambda cls, args: f'<b>del</b> {cls}[{args or "<i>key</i>"}]',
'__add__': lambda cls, args: f'{cls} + {args or "<i>other</i>"}',
'__len__': lambda cls, args: f'<b>len</b>({cls})',
'__call__': lambda cls, args: f'{cls}({args})',
'__iter__': lambda cls, args: f'<b>for</b> <i>x</i> <b>in</b> {cls}:',
'__eq__': lambda cls, args: f'{cls} == {args or "<i>other</i>"}',
'__lt__': lambda cls, args: f'{cls} &lt; {args or "<i>other</i>"}',
'__gt__': lambda cls, args: f'{cls} &gt; {args or "<i>other</i>"}',
2021-02-20 08:10:36 +03:00
}
class Pair():
'''Makes a silly sortable pair that can be expanded like a two-tuple.'''
def __init__(left,right):
self.left = left
self.right = right
2021-02-20 09:43:47 +03:00
def __eq__(other):
if not isinstance(other,Pair): return False
return self.left == other.left
2021-02-20 08:10:36 +03:00
def __lt__(other):
2021-02-20 09:43:47 +03:00
if self.left == '__init__' and other.left != '__init__': return True
if other.left == '__init__': return False
2021-02-20 08:10:36 +03:00
return self.left < other.left
def __gt__(other):
if self.left == '__init__': return False
2021-02-20 09:43:47 +03:00
if other.left == '__init__': return True
2021-02-20 08:10:36 +03:00
return self.left > other.left
2021-02-20 09:43:47 +03:00
def __repr__():
return f'Pair({self.left!r},{self.right!r})'
2021-02-20 08:10:36 +03:00
def __iter__():
2021-03-17 02:07:16 +03:00
yield self.left
yield self.right
2021-02-20 08:10:36 +03:00
let modules = [
# Integrated stuff
'__builtins__',
'os',
'kuroko',
'math',
'threading',
'gc',
'dis',
'fileio',
'time',
2021-03-22 06:49:31 +03:00
'socket',
2021-02-20 08:10:36 +03:00
# Stuff from modules/
'json',
'collections',
'string',
'callgrind',
2021-02-20 08:10:36 +03:00
# Other stuff
'tools.gendoc',
# Codecs module
'codecs.bespokecodecs',
'codecs.binascii',
'codecs.dbdata',
'codecs.dbextra_data_7bit',
'codecs.dbextra_data_8bit',
'codecs.dbextra',
'codecs.infrastructure',
'codecs.isweblabel',
'codecs.sbencs',
'codecs.sbextra',
2021-02-20 08:10:36 +03:00
]
let docString = {}
def fixup(mod):
2021-02-20 14:44:07 +03:00
'''Escapes some characters in module names to make better page IDs.'''
2021-02-20 08:10:36 +03:00
if mod.startswith('__'): return '\\' + mod
return mod
def truncateString(s):
2021-02-20 14:44:07 +03:00
'''If @p s is longer than 100 characters, truncate it with an ellipsis.'''
2021-02-20 08:10:36 +03:00
s = s.strip()
if '\n' in s:
s = s.split('\n')[0]
let short = s[:100]
if len(short) < len(s):
return short + '...'
else:
return short
def fixupDoc(doc):
2021-02-20 14:44:07 +03:00
'''Cleans up docstring contents for display in the module list.'''
2021-02-20 08:10:36 +03:00
for line in doc.split('\n'):
if line.strip().startswith('@brief '):
doc = line.strip().replace('@brief ', '', 1).strip()
break
return doc.replace(',','\\,').replace('<','&lt;').replace('>','&gt;')
def isExceptionType(cls):
2021-02-20 14:44:07 +03:00
'''Determines if @p cls is an @c Exception type by examining its superclass chain.'''
2021-02-20 08:10:36 +03:00
if cls == Exception: return True
let checked = []
while '__base__' in dir(cls) and cls.__base__ not in checked:
if cls.__base__ == Exception: return True
checked.append(cls.__base__)
cls = cls.__base__
return False
def typeName(t: type) -> str:
'''Get a clean type name from @p t '''
if t is type: return 'type'
if isinstance(t,type):
return t.__qualname__ if hasattr(t,'__qualname__') else t.__name__
return str(t)
2021-02-20 08:10:36 +03:00
def getArgs(func):
2021-02-20 14:44:07 +03:00
'''Extract the arguments of either a managed (@c func.__args__) or native (from an `@arguments` docstring) function.'''
2021-02-20 08:10:36 +03:00
if func.__file__ == '<builtin>':
if '__doc__' in dir(func) and func.__doc__ and '@arguments ' in func.__doc__:
let before, after = func.__doc__.split('@arguments ',1)
let line, rest = after.split('\n',1) if '\n' in after else (after,None)
return line.strip().replace(',','\\,')
2021-02-20 09:43:47 +03:00
return ''
let argNames = [x for x in func.__args__ if x != 'self']
if hasattr(func,'__annotations__') and func.__annotations__:
for i in range(len(argNames)):
if argNames[i] in func.__annotations__:
argNames[i] += '<span class="type-hint">' + typeName(func.__annotations__[argNames[i]]) + '</span>'
return '\\,'.join(argNames)
2021-02-20 08:10:36 +03:00
def functionDoc(func):
2021-02-20 14:44:07 +03:00
'''Extracts the docstring from a function and removes markup that Doxygen will choke on.'''
2021-02-20 08:10:36 +03:00
let doc = func.__doc__ if ('__doc__' in dir(func) and func.__doc__) else ''
if '@arguments ' in doc:
doc = '\n'.join([x for x in doc.split('\n') if '@arguments' not in x])
return doc
def processModules(modules):
2021-02-20 16:31:59 +03:00
let globalClassList = []
let globalFunctionList = []
2021-02-20 08:10:36 +03:00
for modulepath in modules:
# Import the module.
let module = kuroko.importmodule(modulepath)
let output = fileio.open(f'docs/mod.{modulepath}.md','w')
realPrint(f"Processing {modulepath}")
def print(*args):
output.write(' '.join(args))
output.write('\n')
print('## ' + fixup(modulepath) + ' {#mod_' + modulepath.replace('.','_') + '}')
if '__doc__' in dir(module) and module.__doc__:
print(module.__doc__.strip())
docString[modulepath] = truncateString(module.__doc__)
else:
docString[modulepath] = 'TODO'
def outputFunction(name, func, prefix=None):
2021-02-20 08:10:36 +03:00
# Build the function signature
2021-02-20 09:43:47 +03:00
let _args = getArgs(func)
let args = ('<i>' + _args + '</i>') if _args else ''
2021-02-20 08:10:36 +03:00
let body = functionDoc(func)
let maybePrefix = prefix + '.' if prefix else ''
let formatted = maybePrefix + '<b>' + name + '</b>' + f'({args})'
2021-02-20 09:43:47 +03:00
let maybeDetail = ''
2021-02-20 08:10:36 +03:00
if prefix and name in specialMethods:
2021-02-20 09:43:47 +03:00
maybeDetail = ',' + formatted
2021-02-20 08:10:36 +03:00
formatted = specialMethods[name](prefix,args)
if hasattr(func,'__annotations__') and func.__annotations__ and 'return' in func.__annotations__:
formatted += '<span class="type-hint-return">' + typeName(func.__annotations__['return']) + '</span>'
2021-02-20 09:43:47 +03:00
print('\\methodstart{' + (maybePrefix + name).replace('.','_') + ',' + formatted + ',' + ('h4,methodDef' if prefix else 'h3,functionDef') + maybeDetail + '}')
2021-02-20 08:10:36 +03:00
if body: print(body)
print('\n\\methodend')
print('')
def outputProperty(name, func, prefix=None):
let body = functionDoc(func)
let maybePrefix = prefix + '.' if prefix else ''
let formatted = '<i>property</i> ' + maybePrefix + '<b>' + name + '</b>'
print('\\methodstart{' + (maybePrefix + name).replace('.','_') + ',' + formatted + ',' + ('h4,methodDef' if prefix else 'h3,functionDef') + '}')
if body: print(body)
print('\n\\methodend')
print('')
2021-02-20 08:10:36 +03:00
def outputConstant(name, val):
print(f'<h3 class=\"letDef\"><i>let</i> <b>{name}</b> = <code>\htmlonly {val!r} \\endhtmlonly</code></h3>\n')
def outputOther(name, val):
print(f'<h3 class=\"letDef\"><i>let</i> <b>{name}</b> = <i>{type(val).__name__}</i></h3>\n')
def outputClass(name, cls):
let classType = 'exceptionDef' if isExceptionType(cls) else 'classDef'
let superclass = cls.__base__.__name__ if cls.__base__ else ''
let formatted = f'<i>class</i> <b>{name}</b>({superclass})'
print('\\methodstart{' + name + ',' + formatted + ',h3,' + classType + '}')
if '__doc__' in dir(cls) and isinstance(cls.__doc__,str):
print('<p>' + cls.__doc__ + '</p>')
let seen = []
let methods = []
2021-02-20 14:44:07 +03:00
let properties = []
2021-02-20 08:10:36 +03:00
for member in dir(cls):
if member in blacklistedMethods: continue
realPrint(cls,member)
let obj
try:
obj = getattr(cls,member)
if cls.__base__ and member in dir(cls.__base__) and getattr(cls.__base__,member) == obj: continue
except:
continue
if isinstance(obj, function) and member not in seen:
seen.append(member)
methods.append(Pair(member,obj))
else if isinstance(obj, property) and member not in seen:
2021-02-20 14:44:07 +03:00
seen.append(member)
properties.append(Pair(member,obj.fget))
2021-02-20 08:10:36 +03:00
if methods:
methods.sort()
for methodName, method in methods:
outputFunction(methodName, method, prefix=name)
2021-02-20 14:44:07 +03:00
if properties:
properties.sort()
for propName, method in properties:
outputProperty(propName, method, prefix=name)
2021-02-20 08:10:36 +03:00
print('\\methodend')
def dumpModule(name, thing):
let functions = []
let classes = []
let constants = []
let exceptions = []
let other = []
for member in dir(thing):
if not member.startswith('_'):
let obj = getattr(thing,member)
if isinstance(obj, function):
if hasattr(obj,'__file__') and obj.__file__ != thing.__file__:
continue
2021-02-20 08:10:36 +03:00
functions.append(Pair(member,obj))
else if isinstance(obj, type):
if hasattr(obj,'__module__') and obj.__module__ != name:
continue
2021-02-20 08:10:36 +03:00
if isExceptionType(obj):
exceptions.append(Pair(member,obj))
else:
classes.append(Pair(member,obj))
else if isinstance(obj, (int,str,float,bool,type(None))):
constants.append(Pair(member,obj))
else if isinstance(obj, kuroko.module):
continue # Skip top-level modules as these are almost definitely imports
else:
other.append(Pair(member,obj))
if classes:
print('\n### Classes\n')
classes.sort()
2021-02-20 16:31:59 +03:00
for clsName, cls in classes:
outputClass(clsName, cls)
globalClassList.append((name.replace('.','_'), clsName))
2021-02-20 08:10:36 +03:00
if functions:
print('\n### Functions\n')
functions.sort()
2021-02-20 16:31:59 +03:00
for funcName, func in functions:
outputFunction(funcName, func)
globalFunctionList.append((name.replace('.','_'), funcName))
2021-02-20 08:10:36 +03:00
if exceptions:
print('\n### Exceptions\n')
exceptions.sort()
for name, cls in exceptions:
outputClass(name, cls)
if constants:
print('\n### Constants\n')
constants.sort()
for name, val in constants:
outputConstant(name,val)
if other:
print('\n### Other Members\n')
other.sort()
for name, val in other:
outputOther(name, val)
dumpModule(modulepath,module)
output.close()
with fileio.open('docs/modulelist.md','w') as output:
output.write(
'# Module List {#modulelist}\n'
'\n'
'Here is a list of documented modules:\n'
'\n'
'\\modulelist{\n'
)
modules.sort()
for module in modules:
output.write(' \\krkmodule{mod_' + fixup(module).replace('.','_') + ',' + fixupDoc(docString[module]) + '}\n')
output.write('}\n')
2021-02-20 16:31:59 +03:00
with fileio.open('docs/classindex.md','w') as output:
output.write(
'# Class Index {#classindex}\n'
'\n'
'Here are all of the available classes:\n'
'\n'
'\htmlonly<div class="krk-class-index"><ul>\n')
for moduleName, className in globalClassList:
output.write(f'<li><a class="el" href="mod_{moduleName}.html#{className}">{className}</a> <i>from <b>{moduleName}</b></i></li>\n')
output.write('</ul></div>\endhtmlonly\n')
with fileio.open('docs/functionindex.md','w') as output:
output.write(
'# Function Index {#functionindex}\n'
'\n'
'Here are all of the available functions:\n'
'\n'
'\htmlonly<div class="krk-class-index"><ul>\n')
for moduleName, funcName in globalFunctionList:
output.write(f'<li><a class="el" href="mod_{moduleName}.html#{funcName}">{funcName}</a> <i>from <b>{moduleName}</b></i></li>\n')
output.write('</ul></div>\endhtmlonly\n')
2021-02-20 08:10:36 +03:00
if __name__ == '__main__':
processModules(modules)