mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Allow modules to be categorized, and also sort them when generating the documentation.
This commit is contained in:
parent
f46bdb6343
commit
391fb98ee2
87 changed files with 118 additions and 67 deletions
|
@ -62,7 +62,7 @@ Let's see what's available in the Ansible module library, out of the box:
|
||||||
|
|
||||||
|
|
||||||
Writing your own modules
|
Writing your own modules
|
||||||
````````````````````````
|
========================
|
||||||
|
|
||||||
See :doc:`moduledev`.
|
See :doc:`moduledev`.
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -18,6 +18,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import glob
|
||||||
import sys
|
import sys
|
||||||
import yaml
|
import yaml
|
||||||
import codecs
|
import codecs
|
||||||
|
@ -137,6 +138,20 @@ def boilerplate():
|
||||||
print >>sys.stderr, "Missing example boiler plate: %S" % EXAMPLE_YAML
|
print >>sys.stderr, "Missing example boiler plate: %S" % EXAMPLE_YAML
|
||||||
print file(EXAMPLE_YAML).read()
|
print file(EXAMPLE_YAML).read()
|
||||||
|
|
||||||
|
def list_modules(module_dir):
|
||||||
|
categories = {}
|
||||||
|
files = glob.glob("%s/*" % module_dir)
|
||||||
|
for d in files:
|
||||||
|
if os.path.isdir(d):
|
||||||
|
files2 = glob.glob("%s/*" % d)
|
||||||
|
for f in files2:
|
||||||
|
tokens = f.split("/")
|
||||||
|
module = tokens[-1]
|
||||||
|
category = tokens[-2]
|
||||||
|
if not category in categories:
|
||||||
|
categories[category] = {}
|
||||||
|
categories[category][module] = f
|
||||||
|
return categories
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
|
@ -274,75 +289,104 @@ def main():
|
||||||
|
|
||||||
# Temporary variable required to genrate aggregated content in 'js' format.
|
# Temporary variable required to genrate aggregated content in 'js' format.
|
||||||
js_data = []
|
js_data = []
|
||||||
for module in sorted(os.listdir(options.module_dir)):
|
|
||||||
if len(options.module_list):
|
categories = list_modules(options.module_dir)
|
||||||
if not module in options.module_list:
|
last_category = None
|
||||||
|
category_names = categories.keys()
|
||||||
|
category_names.sort()
|
||||||
|
|
||||||
|
for category in category_names:
|
||||||
|
module_map = categories[category]
|
||||||
|
|
||||||
|
category = category.replace("_"," ")
|
||||||
|
category = category.title()
|
||||||
|
|
||||||
|
modules = module_map.keys()
|
||||||
|
modules.sort()
|
||||||
|
|
||||||
|
for module in modules:
|
||||||
|
fname = module_map[module]
|
||||||
|
|
||||||
|
if len(options.module_list):
|
||||||
|
if not module in options.module_list:
|
||||||
|
continue
|
||||||
|
|
||||||
|
# fname = os.path.join(options.module_dir, module)
|
||||||
|
|
||||||
|
extra = os.path.join("inc", "%s.tex" % module)
|
||||||
|
|
||||||
|
# probably could just throw out everything with extensions
|
||||||
|
if fname.endswith(".swp") or fname.endswith(".orig") or fname.endswith(".rej"):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
fname = os.path.join(options.module_dir, module)
|
# print " processing module source ---> %s" % fname
|
||||||
extra = os.path.join("inc", "%s.tex" % module)
|
|
||||||
|
|
||||||
# probably could just throw out everything with extensions
|
if options.type == 'js':
|
||||||
if fname.endswith(".swp") or fname.endswith(".orig") or fname.endswith(".rej"):
|
if fname.endswith(".json"):
|
||||||
continue
|
f = open(fname)
|
||||||
|
j = json.load(f)
|
||||||
|
f.close()
|
||||||
|
js_data.append(j)
|
||||||
|
continue
|
||||||
|
|
||||||
# print " processing module source ---> %s" % fname
|
doc, examples = ansible.utils.module_docs.get_docstring(fname, verbose=options.verbose)
|
||||||
|
|
||||||
|
if doc is None and module not in ansible.utils.module_docs.BLACKLIST_MODULES:
|
||||||
|
print " while processing module source ---> %s" % fname
|
||||||
|
sys.stderr.write("*** ERROR: CORE MODULE MISSING DOCUMENTATION: %s ***\n" % module)
|
||||||
|
#sys.exit(1)
|
||||||
|
|
||||||
|
if not doc is None:
|
||||||
|
|
||||||
|
all_keys = []
|
||||||
|
for (k,v) in doc['options'].iteritems():
|
||||||
|
all_keys.append(k)
|
||||||
|
all_keys = sorted(all_keys)
|
||||||
|
doc['option_keys'] = all_keys
|
||||||
|
|
||||||
|
doc['filename'] = fname
|
||||||
|
doc['docuri'] = doc['module'].replace('_', '-')
|
||||||
|
doc['now_date'] = datetime.date.today().strftime('%Y-%m-%d')
|
||||||
|
doc['ansible_version'] = options.ansible_version
|
||||||
|
doc['plainexamples'] = examples #plain text
|
||||||
|
|
||||||
|
# BOOKMARK: here is where we build the table of contents...
|
||||||
|
|
||||||
|
if options.includes_file is not None and includefmt != "":
|
||||||
|
|
||||||
|
if last_category != category:
|
||||||
|
incfile.write("\n\n")
|
||||||
|
incfile.write(category)
|
||||||
|
incfile.write("\n")
|
||||||
|
incfile.write('=' * len(category))
|
||||||
|
incfile.write("\n\n")
|
||||||
|
last_category = category
|
||||||
|
|
||||||
|
incfile.write(includefmt % module)
|
||||||
|
|
||||||
|
if options.verbose:
|
||||||
|
print json.dumps(doc, indent=4)
|
||||||
|
|
||||||
|
|
||||||
|
if options.type == 'latex':
|
||||||
|
if os.path.exists(extra):
|
||||||
|
f = open(extra)
|
||||||
|
extradata = f.read()
|
||||||
|
f.close()
|
||||||
|
doc['extradata'] = extradata
|
||||||
|
|
||||||
|
if options.type == 'json':
|
||||||
|
text = json.dumps(doc, indent=2)
|
||||||
|
else:
|
||||||
|
text = template.render(doc)
|
||||||
|
|
||||||
|
return_data(text, options, outputname, module)
|
||||||
|
|
||||||
if options.type == 'js':
|
if options.type == 'js':
|
||||||
if fname.endswith(".json"):
|
docs = {}
|
||||||
f = open(fname)
|
docs['json'] = json.dumps(js_data, indent=2)
|
||||||
j = json.load(f)
|
text = template.render(docs)
|
||||||
f.close()
|
return_data(text, options, outputname, 'modules')
|
||||||
js_data.append(j)
|
|
||||||
continue
|
|
||||||
|
|
||||||
doc, examples = ansible.utils.module_docs.get_docstring(fname, verbose=options.verbose)
|
|
||||||
|
|
||||||
if doc is None and module not in ansible.utils.module_docs.BLACKLIST_MODULES:
|
|
||||||
print " while processing module source ---> %s" % fname
|
|
||||||
sys.stderr.write("*** ERROR: CORE MODULE MISSING DOCUMENTATION: %s ***\n" % module)
|
|
||||||
#sys.exit(1)
|
|
||||||
|
|
||||||
if not doc is None:
|
|
||||||
|
|
||||||
all_keys = []
|
|
||||||
for (k,v) in doc['options'].iteritems():
|
|
||||||
all_keys.append(k)
|
|
||||||
all_keys = sorted(all_keys)
|
|
||||||
doc['option_keys'] = all_keys
|
|
||||||
|
|
||||||
doc['filename'] = fname
|
|
||||||
doc['docuri'] = doc['module'].replace('_', '-')
|
|
||||||
doc['now_date'] = datetime.date.today().strftime('%Y-%m-%d')
|
|
||||||
doc['ansible_version'] = options.ansible_version
|
|
||||||
doc['plainexamples'] = examples #plain text
|
|
||||||
|
|
||||||
if options.includes_file is not None and includefmt != "":
|
|
||||||
incfile.write(includefmt % module)
|
|
||||||
|
|
||||||
if options.verbose:
|
|
||||||
print json.dumps(doc, indent=4)
|
|
||||||
|
|
||||||
|
|
||||||
if options.type == 'latex':
|
|
||||||
if os.path.exists(extra):
|
|
||||||
f = open(extra)
|
|
||||||
extradata = f.read()
|
|
||||||
f.close()
|
|
||||||
doc['extradata'] = extradata
|
|
||||||
|
|
||||||
if options.type == 'json':
|
|
||||||
text = json.dumps(doc, indent=2)
|
|
||||||
else:
|
|
||||||
text = template.render(doc)
|
|
||||||
|
|
||||||
return_data(text, options, outputname, module)
|
|
||||||
|
|
||||||
if options.type == 'js':
|
|
||||||
docs = {}
|
|
||||||
docs['json'] = json.dumps(js_data, indent=2)
|
|
||||||
text = template.render(docs)
|
|
||||||
return_data(text, options, outputname, 'modules')
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -92,8 +92,15 @@ class PluginLoader(object):
|
||||||
ret += self._extra_dirs
|
ret += self._extra_dirs
|
||||||
for basedir in _basedirs:
|
for basedir in _basedirs:
|
||||||
fullpath = os.path.join(basedir, self.subdir)
|
fullpath = os.path.join(basedir, self.subdir)
|
||||||
if fullpath not in ret:
|
if os.path.isdir(fullpath):
|
||||||
ret.append(fullpath)
|
files = glob.glob("%s/*" % fullpath)
|
||||||
|
for file in files:
|
||||||
|
if os.path.isdir(file):
|
||||||
|
ret.append(file)
|
||||||
|
else:
|
||||||
|
if fullpath not in ret:
|
||||||
|
ret.append(fullpath)
|
||||||
|
|
||||||
ret += self.config.split(os.pathsep)
|
ret += self.config.split(os.pathsep)
|
||||||
ret += self._get_package_path()
|
ret += self._get_package_path()
|
||||||
|
|
||||||
|
|
0
library/gem → library/packaging/gem
Executable file → Normal file
0
library/gem → library/packaging/gem
Executable file → Normal file
0
library/homebrew → library/packaging/homebrew
Executable file → Normal file
0
library/homebrew → library/packaging/homebrew
Executable file → Normal file
0
library/pacman → library/packaging/pacman
Executable file → Normal file
0
library/pacman → library/packaging/pacman
Executable file → Normal file
0
library/rhn_channel → library/packaging/rhn_channel
Executable file → Normal file
0
library/rhn_channel → library/packaging/rhn_channel
Executable file → Normal file
0
library/lvg → library/system/lvg
Executable file → Normal file
0
library/lvg → library/system/lvg
Executable file → Normal file
Loading…
Add table
Reference in a new issue