mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-17 21:25:35 +00:00
5ca2ee76a5
Languages refactored: * Python * JS
193 lines
5.0 KiB
Python
193 lines
5.0 KiB
Python
import os
|
|
|
|
from sphinx.util.osutil import ensuredir
|
|
|
|
from .base import AutoAPIBase, AutoAPIDomain
|
|
|
|
|
|
class GoDomain(AutoAPIDomain):
|
|
|
|
'''Auto API domain handler for Go
|
|
|
|
Parses directly from Go files.
|
|
|
|
:param app: Sphinx application passed in as part of the extension
|
|
'''
|
|
|
|
# def read_file(self, path, format=None):
|
|
# '''Read file input into memory, returning deserialized objects
|
|
|
|
# :param path: Path of file to read
|
|
# '''
|
|
# TODO support JSON here
|
|
# TODO sphinx way of reporting errors in logs?
|
|
|
|
# try:
|
|
# raw_json = os.system('godocjson %s' % path)
|
|
# parsed_data = json.loads(raw_json)
|
|
# return parsed_data
|
|
# except IOError:
|
|
# print Warning('Error reading file: {0}'.format(path))
|
|
# except TypeError:
|
|
# print Warning('Error reading file: {0}'.format(path))
|
|
# return None
|
|
|
|
def create_class(self, data):
|
|
'''Return instance of class based on Go data
|
|
|
|
Data keys handled here:
|
|
|
|
type
|
|
Set the object class
|
|
|
|
consts, types, vars, funcs
|
|
Recurse into :py:meth:`create_class` to create child object
|
|
instances
|
|
|
|
:param data: dictionary data from godocjson output
|
|
'''
|
|
obj_map = dict(
|
|
(cls.type, cls) for cls
|
|
in ALL_CLASSES
|
|
)
|
|
try:
|
|
cls = obj_map[data['type']]
|
|
except KeyError:
|
|
self.app.warn('Unknown Type: %s' % data)
|
|
else:
|
|
if cls.inverted_names and 'names' in data:
|
|
# Handle types that have reversed names parameter
|
|
for name in data['names']:
|
|
data_inv = {}
|
|
data_inv.update(data)
|
|
data_inv['name'] = name
|
|
if 'names' in data_inv:
|
|
del data_inv['names']
|
|
for obj in self.create_class(data_inv):
|
|
yield obj
|
|
else:
|
|
# Recurse for children
|
|
obj = cls(data, env=self.jinja_env)
|
|
for child_type in ['consts', 'types', 'vars', 'funcs']:
|
|
for child_data in data.get(child_type, []):
|
|
obj.children += list(self.create_class(child_data))
|
|
yield obj
|
|
|
|
def full(self):
|
|
self.get_objects(self.get_config('autoapi_file_pattern'), format='json')
|
|
self.generate_output()
|
|
self.write_indexes()
|
|
|
|
def generate_output(self):
|
|
for obj in self.app.env.autoapi_data:
|
|
|
|
if not obj:
|
|
continue
|
|
|
|
rst = obj.render()
|
|
# Detail
|
|
try:
|
|
filename = obj.name.split('(')[0]
|
|
except IndexError:
|
|
filename = obj.name
|
|
detail_dir = os.path.join(self.get_config('autoapi_root'),
|
|
*filename.split('.'))
|
|
ensuredir(detail_dir)
|
|
# TODO: Better way to determine suffix?
|
|
path = os.path.join(detail_dir, '%s%s' % ('index', self.get_config('source_suffix')[0]))
|
|
if rst:
|
|
with open(path, 'w+') as detail_file:
|
|
detail_file.write(rst.encode('utf-8'))
|
|
|
|
|
|
class GoBase(AutoAPIBase):
|
|
|
|
language = 'go'
|
|
inverted_names = False
|
|
|
|
def __init__(self, obj):
|
|
super(GoBase, self).__init__(obj)
|
|
self.name = obj.get('name') or obj.get('packageName')
|
|
self.id = self.name
|
|
|
|
# Second level
|
|
self.imports = obj.get('imports', [])
|
|
self.children = []
|
|
self.parameters = map(
|
|
lambda n: {'name': n['name'],
|
|
'type': n['type'].lstrip('*')},
|
|
obj.get('parameters', [])
|
|
)
|
|
self.docstring = obj.get('doc', '')
|
|
|
|
# Go Specific
|
|
self.notes = obj.get('notes', {})
|
|
self.filenames = obj.get('filenames', [])
|
|
self.bugs = obj.get('bugs', [])
|
|
|
|
def __str__(self):
|
|
return '<{cls} {id}>'.format(cls=self.__class__.__name__,
|
|
id=self.id)
|
|
|
|
@property
|
|
def short_name(self):
|
|
'''Shorten name property'''
|
|
return self.name.split('.')[-1]
|
|
|
|
@property
|
|
def namespace(self):
|
|
pieces = self.id.split('.')[:-1]
|
|
if pieces:
|
|
return '.'.join(pieces)
|
|
|
|
@property
|
|
def ref_type(self):
|
|
return self.type
|
|
|
|
@property
|
|
def ref_directive(self):
|
|
return self.type
|
|
|
|
@property
|
|
def methods(self):
|
|
return self.obj.get('methods', [])
|
|
|
|
|
|
class GoVariable(GoBase):
|
|
type = 'var'
|
|
inverted_names = True
|
|
|
|
|
|
class GoMethod(GoBase):
|
|
type = 'method'
|
|
ref_directive = 'meth'
|
|
|
|
|
|
class GoConstant(GoBase):
|
|
type = 'const'
|
|
inverted_names = True
|
|
|
|
|
|
class GoFunction(GoBase):
|
|
type = 'func'
|
|
ref_type = 'function'
|
|
|
|
|
|
class GoPackage(GoBase):
|
|
type = 'package'
|
|
ref_directive = 'pkg'
|
|
|
|
|
|
class GoType(GoBase):
|
|
type = 'type'
|
|
|
|
|
|
ALL_CLASSES = [
|
|
GoConstant,
|
|
GoFunction,
|
|
GoPackage,
|
|
GoVariable,
|
|
GoType,
|
|
GoMethod,
|
|
]
|