[docs] Add plugin reference
This patch adds single page that contains list of all plugins with their description. In the future next things will be addressed: - Split this page into few pages, each page should contain only specific type of plugins - Improve descriptions of plugins that we have, especially description of context classes - Add description to base plugin classes that expalins how everything works. So it won't be hardcoded in plugins.rst and it will be possilbe to use it in different places Change-Id: I87ec6f8497392306578d91263c98c4c035acc521
This commit is contained in:
parent
a39ade84a6
commit
20ccd2248f
0
doc/ext/__init__.py
Normal file
0
doc/ext/__init__.py
Normal file
156
doc/ext/plugin_reference.py
Normal file
156
doc/ext/plugin_reference.py
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
# Copyright 2015: Mirantis Inc.
|
||||||
|
# All Rights Reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||||
|
# not use this file except in compliance with the License. You may obtain
|
||||||
|
# a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
# License for the specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
|
||||||
|
from docutils import nodes
|
||||||
|
from docutils.parsers import rst
|
||||||
|
|
||||||
|
from oslo_utils import importutils
|
||||||
|
|
||||||
|
from rally import plugins
|
||||||
|
|
||||||
|
DATA = [
|
||||||
|
{
|
||||||
|
"group": "Task plugins",
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"name": "Scenario Runners",
|
||||||
|
"base": "rally.task.runner:ScenarioRunner"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "SLAs",
|
||||||
|
"base": "rally.task.sla:SLA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Contexts",
|
||||||
|
"base": "rally.task.context:Context"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Scenarios",
|
||||||
|
"base": "rally.task.scenario:Scenario"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"group": "Deployment plugins",
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"name": "Engines",
|
||||||
|
"base": "rally.deployment.engine:Engine"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ProviderFactory",
|
||||||
|
"base":
|
||||||
|
"rally.deployment.serverprovider.provider:ProviderFactory"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
def make_row(data):
|
||||||
|
row = nodes.row()
|
||||||
|
for item in data:
|
||||||
|
node_type, text = item
|
||||||
|
entry = nodes.entry()
|
||||||
|
entry.append(node_type(text=text))
|
||||||
|
row.append(entry)
|
||||||
|
|
||||||
|
return row
|
||||||
|
|
||||||
|
|
||||||
|
def make_table(data):
|
||||||
|
table = nodes.table()
|
||||||
|
table_group = nodes.tgroup()
|
||||||
|
|
||||||
|
for w in data["colwidth"]:
|
||||||
|
table_group.append(nodes.colspec(colwidth=w))
|
||||||
|
|
||||||
|
table_head = nodes.thead()
|
||||||
|
table_head.append(make_row(data["headers"]))
|
||||||
|
table_group.append(table_head)
|
||||||
|
|
||||||
|
table_body = nodes.tbody()
|
||||||
|
for row in data["rows"]:
|
||||||
|
table_body.append(make_row(row))
|
||||||
|
table_group.append(table_body)
|
||||||
|
|
||||||
|
table.append(table_group)
|
||||||
|
|
||||||
|
return table
|
||||||
|
|
||||||
|
|
||||||
|
def _make_pretty_parameters(parameters):
|
||||||
|
if not parameters:
|
||||||
|
return ""
|
||||||
|
|
||||||
|
result = "PARAMETERS:\n"
|
||||||
|
for p in parameters:
|
||||||
|
result += "* %(name)s: %(doc)s\n" % p
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
def _get_plugin_info(plugin_group_item):
|
||||||
|
module, cls = plugin_group_item["base"].split(":")
|
||||||
|
plugin_base = getattr(importutils.import_module(module), cls)
|
||||||
|
|
||||||
|
def process_plugin(p):
|
||||||
|
info = p.get_info()
|
||||||
|
|
||||||
|
description = [info["title"] or ""]
|
||||||
|
if info["description"]:
|
||||||
|
description.append(info["description"])
|
||||||
|
if info["parameters"]:
|
||||||
|
description.append(_make_pretty_parameters(info["parameters"]))
|
||||||
|
if info["returns"]:
|
||||||
|
description.append("RETURNS:\n%s" % info["returns"])
|
||||||
|
description.append("MODULE:\n%s" % info["module"])
|
||||||
|
|
||||||
|
return [
|
||||||
|
[nodes.inline, p.get_name()],
|
||||||
|
[nodes.doctest_block, "\n\n".join(description)]
|
||||||
|
]
|
||||||
|
|
||||||
|
return {
|
||||||
|
"headers": zip([nodes.inline] * 2,
|
||||||
|
["name", "description"]),
|
||||||
|
"colwidth": [1, 1],
|
||||||
|
"rows": map(process_plugin, plugin_base.get_all())
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def make_plugin_section(plugin_group):
|
||||||
|
elements = []
|
||||||
|
|
||||||
|
for item in plugin_group["items"]:
|
||||||
|
elements.append(nodes.rubric(text=item["name"]))
|
||||||
|
elements.append(make_table(_get_plugin_info(item)))
|
||||||
|
|
||||||
|
return elements
|
||||||
|
|
||||||
|
|
||||||
|
class PluginReferenceDirective(rst.Directive):
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
content = []
|
||||||
|
for i in range(len(DATA)):
|
||||||
|
content.append(nodes.subtitle(text=DATA[i]["group"]))
|
||||||
|
content.extend(make_plugin_section(DATA[i]))
|
||||||
|
|
||||||
|
return content
|
||||||
|
|
||||||
|
|
||||||
|
def setup(app):
|
||||||
|
plugins.load()
|
||||||
|
app.add_directive('generate_plugin_reference', PluginReferenceDirective)
|
@ -3,10 +3,10 @@
|
|||||||
# Rally documentation build configuration file, created by
|
# Rally documentation build configuration file, created by
|
||||||
# sphinx-quickstart on Fri Jan 10 23:19:18 2014.
|
# sphinx-quickstart on Fri Jan 10 23:19:18 2014.
|
||||||
#
|
#
|
||||||
# This file is execfile()d with the current directory set to its containing dir.
|
# This file is execfile() with the current directory set to its containing dir.
|
||||||
#
|
#
|
||||||
# Note that not all possible configuration values are present in this
|
# Note that not all possible configuration values are present in this
|
||||||
# autogenerated file.
|
# auto-generated file.
|
||||||
#
|
#
|
||||||
# All configuration values have a default; values that are commented out
|
# All configuration values have a default; values that are commented out
|
||||||
# serve to show the default.
|
# serve to show the default.
|
||||||
@ -18,18 +18,25 @@ import sys
|
|||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# 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
|
# 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.
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||||
sys.path.extend([
|
#sys.path.extend([
|
||||||
os.path.abspath("../.."),
|
# os.path.abspath("../.."),
|
||||||
])
|
# os.path.abspath("../"),
|
||||||
|
# os.path.abspath("./")
|
||||||
|
#])
|
||||||
|
|
||||||
|
sys.path.insert(0, os.path.abspath('../../'))
|
||||||
|
sys.path.insert(0, os.path.abspath('../'))
|
||||||
|
sys.path.insert(0, os.path.abspath('./'))
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration -----------------------------------------------------
|
# -- General configuration ----------------------------------------------------
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
# If your documentation needs a minimal Sphinx version, state it here.
|
||||||
# needs_sphinx = "1.0"
|
# needs_sphinx = "1.0"
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be extensions
|
# Add any Sphinx extension module names here, as strings.
|
||||||
# coming with Sphinx (named "sphinx.ext.*") or your custom ones.
|
# They can be extensions coming with Sphinx (named "sphinx.ext.*") or your
|
||||||
|
# custom ones.
|
||||||
extensions = [
|
extensions = [
|
||||||
"sphinx.ext.autodoc",
|
"sphinx.ext.autodoc",
|
||||||
"sphinx.ext.doctest",
|
"sphinx.ext.doctest",
|
||||||
@ -37,6 +44,7 @@ extensions = [
|
|||||||
"sphinx.ext.coverage",
|
"sphinx.ext.coverage",
|
||||||
"sphinx.ext.ifconfig",
|
"sphinx.ext.ifconfig",
|
||||||
"sphinx.ext.viewcode",
|
"sphinx.ext.viewcode",
|
||||||
|
"ext.plugin_reference"
|
||||||
]
|
]
|
||||||
todo_include_todos = True
|
todo_include_todos = True
|
||||||
|
|
||||||
@ -77,10 +85,13 @@ release = "0.0.4"
|
|||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
exclude_patterns = ["feature_request/README.rst", "samples/README.rst",
|
exclude_patterns = [
|
||||||
"**/README.rst"]
|
"feature_request/README.rst",
|
||||||
|
"samples/README.rst",
|
||||||
|
"**/README.rst"
|
||||||
|
]
|
||||||
|
|
||||||
# The reST default role (used for this markup: `text`) to use for all documents.
|
# The reST default role (used for this markup: `text`) to use for all documents
|
||||||
# default_role = None
|
# default_role = None
|
||||||
|
|
||||||
# If true, "()" will be appended to :func: etc. cross-reference text.
|
# If true, "()" will be appended to :func: etc. cross-reference text.
|
||||||
@ -101,7 +112,7 @@ pygments_style = "sphinx"
|
|||||||
# modindex_common_prefix = []
|
# modindex_common_prefix = []
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTML output ---------------------------------------------------
|
# -- Options for HTML output --------------------------------------------------
|
||||||
|
|
||||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||||
# a list of builtin themes.
|
# a list of builtin themes.
|
||||||
@ -182,7 +193,7 @@ html_last_updated_fmt = os.popen(git_cmd).read()
|
|||||||
htmlhelp_basename = "%sdoc" % project
|
htmlhelp_basename = "%sdoc" % project
|
||||||
|
|
||||||
|
|
||||||
# -- Options for LaTeX output --------------------------------------------------
|
# -- Options for LaTeX output -------------------------------------------------
|
||||||
|
|
||||||
latex_elements = {
|
latex_elements = {
|
||||||
# The paper size ("letterpaper" or "a4paper").
|
# The paper size ("letterpaper" or "a4paper").
|
||||||
@ -196,7 +207,7 @@ latex_elements = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
# Grouping the document tree into LaTeX files. List of tuples
|
||||||
# (source start file, target name, title, author, documentclass [howto/manual]).
|
# (source start file, target name, title, author, documentclass [howto/manual])
|
||||||
latex_documents = [
|
latex_documents = [
|
||||||
("index",
|
("index",
|
||||||
"%s.tex" % project,
|
"%s.tex" % project,
|
||||||
@ -225,7 +236,7 @@ latex_documents = [
|
|||||||
# latex_domain_indices = True
|
# latex_domain_indices = True
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output --------------------------------------------
|
# -- Options for manual page output -------------------------------------------
|
||||||
|
|
||||||
# One entry per manual page. List of tuples
|
# One entry per manual page. List of tuples
|
||||||
# (source start file, name, description, authors, manual section).
|
# (source start file, name, description, authors, manual section).
|
||||||
@ -238,15 +249,15 @@ latex_documents = [
|
|||||||
# man_show_urls = False
|
# man_show_urls = False
|
||||||
|
|
||||||
|
|
||||||
# -- Options for Texinfo output ------------------------------------------------
|
# -- Options for Texinfo output -----------------------------------------------
|
||||||
|
|
||||||
# Grouping the document tree into Texinfo files. List of tuples
|
# Grouping the document tree into Texinfo files. List of tuples
|
||||||
# (source start file, target name, title, author,
|
# (source start file, target name, title, author,
|
||||||
# dir menu entry, description, category)
|
# dir menu entry, description, category)
|
||||||
texinfo_documents = [
|
texinfo_documents = [
|
||||||
("index", "Rally", u"Rally Documentation",
|
("index", "Rally", u"Rally Documentation",
|
||||||
u"Rally Team", "Rally", "One line description of project.",
|
u"Rally Team", "Rally", "Testing framework and tool for all kinds of tests",
|
||||||
"Miscellaneous"),
|
"Development"),
|
||||||
]
|
]
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
|
@ -13,8 +13,6 @@
|
|||||||
License for the specific language governing permissions and limitations
|
License for the specific language governing permissions and limitations
|
||||||
under the License.
|
under the License.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.. _contribute:
|
.. _contribute:
|
||||||
|
|
||||||
Contribute to Rally
|
Contribute to Rally
|
||||||
|
@ -32,6 +32,7 @@ Contents
|
|||||||
tutorial
|
tutorial
|
||||||
user_stories
|
user_stories
|
||||||
plugins
|
plugins
|
||||||
|
plugin/plugin_reference
|
||||||
contribute
|
contribute
|
||||||
gates
|
gates
|
||||||
feature_requests
|
feature_requests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user