2018-05-13 13:13:12 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2018-06-10 16:47:49 +00:00
|
|
|
# Configuration file for the Sphinx documentation builder.
|
2018-05-13 13:13:12 +00:00
|
|
|
#
|
2018-06-10 16:47:49 +00:00
|
|
|
# This file does only contain a selection of the most common options. For a
|
|
|
|
# full list see the documentation:
|
|
|
|
# http://www.sphinx-doc.org/en/master/config
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Path setup --------------------------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
|
|
# add these directories to sys.path here. If the directory is relative to the
|
|
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
|
|
|
# import os
|
|
|
|
# import sys
|
2018-11-12 17:15:24 +00:00
|
|
|
# sys.path.insert(0, os.path.abspath('..'))
|
2018-06-10 16:47:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
# -- Project information -----------------------------------------------------
|
2019-02-03 16:12:53 +00:00
|
|
|
import importlib
|
|
|
|
import inspect
|
|
|
|
from typing import Union
|
|
|
|
|
|
|
|
from docutils.parsers.rst import Directive, directives
|
|
|
|
from docutils.statemachine import StringList, string2lines
|
|
|
|
from marshmallow.fields import DateTime, Field
|
|
|
|
from marshmallow.schema import SchemaMeta
|
|
|
|
from teal.enums import Country, Currency, Layouts, Subdivision
|
|
|
|
from teal.marshmallow import EnumField
|
|
|
|
|
|
|
|
from ereuse_devicehub.marshmallow import NestedOn
|
|
|
|
from ereuse_devicehub.resources.schemas import Thing
|
2018-06-10 16:47:49 +00:00
|
|
|
|
|
|
|
project = 'Devicehub'
|
2020-03-17 17:42:53 +00:00
|
|
|
copyright = '2020, eReuse.org team'
|
2018-06-10 16:47:49 +00:00
|
|
|
author = 'eReuse.org team'
|
|
|
|
|
|
|
|
# The short X.Y version
|
|
|
|
version = ''
|
|
|
|
# The full version, including alpha/beta/rc tags
|
|
|
|
release = '0.1'
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- General configuration ---------------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
|
|
|
# needs_sphinx = '1.0'
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
|
|
# ones.
|
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.intersphinx',
|
|
|
|
'sphinx.ext.todo',
|
|
|
|
'sphinx.ext.viewcode',
|
2018-06-19 20:49:42 +00:00
|
|
|
'sphinxcontrib.plantuml',
|
2018-11-12 17:15:24 +00:00
|
|
|
'sphinx.ext.autosectionlabel',
|
|
|
|
'sphinx.ext.autodoc'
|
2018-05-13 13:13:12 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
|
|
templates_path = ['_templates']
|
|
|
|
|
|
|
|
# The suffix(es) of source filenames.
|
|
|
|
# You can specify multiple suffix as a list of string:
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
# source_suffix = ['.rst', '.md']
|
|
|
|
source_suffix = '.rst'
|
|
|
|
|
|
|
|
# The master toctree document.
|
|
|
|
master_doc = 'index'
|
|
|
|
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
#
|
|
|
|
# This is also used if you do content translation via gettext catalogs.
|
|
|
|
# Usually you set "language" from the command line for these cases.
|
|
|
|
language = None
|
|
|
|
|
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
2018-06-10 16:47:49 +00:00
|
|
|
# This pattern also affects html_static_path and html_extra_path .
|
2018-05-13 13:13:12 +00:00
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Options for HTML output -------------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
|
|
# a list of builtin themes.
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
html_theme = 'alabaster'
|
|
|
|
|
|
|
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
|
|
# further. For a list of options available for each theme, see the
|
|
|
|
# documentation.
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
# html_theme_options = {}
|
|
|
|
|
|
|
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
|
|
# relative to this directory. They are copied after the builtin static files,
|
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
|
|
html_static_path = ['_static']
|
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# Custom sidebar templates, must be a dictionary that maps document names
|
|
|
|
# to template names.
|
|
|
|
#
|
|
|
|
# The default sidebars (for documents that don't match any pattern) are
|
|
|
|
# defined by theme itself. Builtin themes are using these templates by
|
|
|
|
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
|
|
|
|
# 'searchbox.html']``.
|
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
# html_sidebars = {}
|
|
|
|
|
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Options for HTMLHelp output ---------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
# Output file base name for HTML help builder.
|
2018-06-10 16:47:49 +00:00
|
|
|
htmlhelp_basename = 'Devicehubdoc'
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Options for LaTeX output ------------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
latex_elements = {
|
|
|
|
# The paper size ('letterpaper' or 'a4paper').
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
# 'papersize': 'letterpaper',
|
|
|
|
|
|
|
|
# The font size ('10pt', '11pt' or '12pt').
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
# 'pointsize': '10pt',
|
|
|
|
|
|
|
|
# Additional stuff for the LaTeX preamble.
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
# 'preamble': '',
|
|
|
|
|
|
|
|
# Latex figure (float) alignment
|
2018-06-10 16:47:49 +00:00
|
|
|
#
|
2018-05-13 13:13:12 +00:00
|
|
|
# 'figure_align': 'htbp',
|
|
|
|
}
|
|
|
|
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
|
|
# (source start file, target name, title,
|
|
|
|
# author, documentclass [howto, manual, or own class]).
|
|
|
|
latex_documents = [
|
2018-06-10 16:47:49 +00:00
|
|
|
(master_doc, 'Devicehub.tex', 'Devicehub Documentation',
|
2018-05-13 13:13:12 +00:00
|
|
|
'eReuse.org team', 'manual'),
|
|
|
|
]
|
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Options for manual page output ------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
# One entry per manual page. List of tuples
|
|
|
|
# (source start file, name, description, authors, manual section).
|
|
|
|
man_pages = [
|
2018-06-10 16:47:49 +00:00
|
|
|
(master_doc, 'devicehub', 'Devicehub Documentation',
|
2018-05-13 13:13:12 +00:00
|
|
|
[author], 1)
|
|
|
|
]
|
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Options for Texinfo output ----------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
|
|
|
# Grouping the document tree into Texinfo files. List of tuples
|
|
|
|
# (source start file, target name, title, author,
|
|
|
|
# dir menu entry, description, category)
|
|
|
|
texinfo_documents = [
|
2018-06-10 16:47:49 +00:00
|
|
|
(master_doc, 'Devicehub', 'Devicehub Documentation',
|
|
|
|
author, 'Devicehub', 'One line description of project.',
|
2018-05-13 13:13:12 +00:00
|
|
|
'Miscellaneous'),
|
|
|
|
]
|
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Extension configuration -------------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Options for intersphinx extension ---------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# Example configuration for intersphinx: refer to the Python standard library.
|
2018-11-12 17:15:24 +00:00
|
|
|
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# -- Options for todo extension ----------------------------------------------
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
|
|
|
todo_include_todos = True
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# Plantuml
|
2018-08-03 16:15:08 +00:00
|
|
|
plantuml_output_format = 'svg_img'
|
2018-05-13 13:13:12 +00:00
|
|
|
|
2018-06-10 16:47:49 +00:00
|
|
|
# favicon
|
|
|
|
html_favicon = 'img/favicon.ico'
|
2018-06-19 20:49:42 +00:00
|
|
|
|
|
|
|
# autosectionlabel
|
2018-11-12 17:15:24 +00:00
|
|
|
autosectionlabel_prefix_document = True
|
|
|
|
autodoc_member_order = 'bysource'
|
2019-02-03 16:12:53 +00:00
|
|
|
|
|
|
|
import docutils.nodes as n
|
|
|
|
|
|
|
|
|
|
|
|
class DhlistDirective(Directive):
|
|
|
|
"""Generates documentation from Devicehub Schema.
|
|
|
|
|
|
|
|
This requires :py:class:`ereuse_devicehub.resources.schemas.SchemaMeta`.
|
|
|
|
You will find in that module more information.
|
|
|
|
"""
|
|
|
|
has_content = False
|
|
|
|
|
|
|
|
# Definition of passed-in options
|
|
|
|
option_spec = {'module': directives.unchanged}
|
|
|
|
|
|
|
|
def _import(self, module):
|
|
|
|
for obj in vars(module).values():
|
|
|
|
if inspect.isclass(obj):
|
|
|
|
if isinstance(obj, SchemaMeta) and hasattr(obj, '_base_class'):
|
|
|
|
yield obj
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
module = importlib.import_module(self.options['module'])
|
|
|
|
things = tuple(self._import(module))
|
|
|
|
|
|
|
|
sections = []
|
|
|
|
sections.append(self.links(things)) # Make index
|
|
|
|
for thng in things: # type: Thing
|
|
|
|
# Generate a section for each class, with a title,
|
|
|
|
# fields description and a paragraph
|
|
|
|
section = n.section(ids=[self._id(thng)])
|
|
|
|
section += n.title(thng.__name__, thng.__name__)
|
|
|
|
section += self.parse('*Extends {}*'.format(thng._base_class))
|
|
|
|
if thng.__doc__:
|
|
|
|
section += self.parse(thng.__doc__)
|
|
|
|
fields = n.field_list()
|
|
|
|
for key, f in thng._own:
|
|
|
|
name = n.field_name(text=f.data_key or key)
|
|
|
|
body = [
|
|
|
|
self.parse('{} {}'.format(self.type(f), f.metadata.get('description', '')))
|
|
|
|
]
|
|
|
|
if isinstance(f, EnumField):
|
|
|
|
body.append(self._parse_enum_field(f))
|
|
|
|
attrs = n.field_list()
|
|
|
|
if f.dump_only:
|
|
|
|
attrs += self.field('Submit', 'No.')
|
|
|
|
if f.required:
|
|
|
|
attrs += self.field('Required', f.required)
|
|
|
|
fields += n.field('', name, n.field_body('', *body, attrs))
|
|
|
|
section += fields
|
|
|
|
sections.append(section)
|
|
|
|
return sections
|
|
|
|
|
|
|
|
def _parse_enum_field(self, f):
|
|
|
|
from ereuse_devicehub.resources.device import states
|
|
|
|
if issubclass(f.enum, (Subdivision, Currency, Country, Layouts, states.State)):
|
|
|
|
return self.parse(f.enum.__doc__)
|
|
|
|
else:
|
|
|
|
enum_fields = n.field_list()
|
|
|
|
for el in f.enum:
|
|
|
|
enum_fields += self.field(el.name, el.value)
|
|
|
|
return enum_fields
|
|
|
|
|
|
|
|
def field(self, name: str, body: Union[str, bool]):
|
|
|
|
"""Generates a field node with a name and a paragraph body."""
|
|
|
|
if isinstance(body, bool):
|
|
|
|
body = 'Yes.' if body else 'No.'
|
|
|
|
body = str(body) if body else ''
|
|
|
|
return n.field('', n.field_name(text=name), n.field_body('', self.parse(body)))
|
|
|
|
|
|
|
|
def type(self, field: Field):
|
|
|
|
"""Parses the type field."""
|
|
|
|
if isinstance(field, NestedOn):
|
|
|
|
t = ''
|
|
|
|
if field.many:
|
|
|
|
t = 'List of '
|
|
|
|
t = t + str(field.schema.t)
|
|
|
|
elif isinstance(field, EnumField):
|
|
|
|
t = field.enum.__name__
|
|
|
|
elif isinstance(field, DateTime):
|
|
|
|
t = 'Date time (ISO 8601 with timezone)'
|
|
|
|
else:
|
|
|
|
t = field.__class__.__name__
|
|
|
|
if 'str' in t.lower():
|
|
|
|
t = 'Text'
|
|
|
|
if 'unit' in field.metadata:
|
|
|
|
t = t + ' ({})'.format(field.metadata['unit'])
|
|
|
|
return t + '.'
|
|
|
|
|
|
|
|
def links(self, things, parent='Schema'):
|
|
|
|
"""Generates an index of things with inheritance awareness."""
|
|
|
|
l = n.bullet_list('')
|
|
|
|
for child in (c for c in things if c._base_class == parent):
|
|
|
|
ref = n.reference(text=child.__name__)
|
|
|
|
ref['refuri'] = '#{}'.format(self._id(child))
|
|
|
|
p = n.paragraph()
|
|
|
|
p += ref
|
|
|
|
l += n.list_item('', p)
|
|
|
|
sub_list = self.links(things, parent=child.__name__)
|
|
|
|
if sub_list:
|
|
|
|
l += sub_list
|
|
|
|
return l
|
|
|
|
|
|
|
|
def _id(self, thing):
|
|
|
|
"""Generate an id to use as html anchors."""
|
|
|
|
return n.make_id('dh-{}'.format(thing.__name__))
|
|
|
|
|
|
|
|
def parse(self, text) -> n.container:
|
|
|
|
"""Parses text possibly containing ReST stuff and adds it in
|
|
|
|
a node."""
|
|
|
|
p = n.container('')
|
|
|
|
self.state.nested_parse(StringList(string2lines(inspect.cleandoc(text))), 0, p)
|
|
|
|
return p
|
|
|
|
# return publish_doctree(text).children
|
|
|
|
|
|
|
|
|
|
|
|
def setup(app):
|
|
|
|
app.add_directive('dhlist', DhlistDirective)
|
|
|
|
return {'version': '0.1'}
|