Skip to content

Commit

Permalink
Synchronize scripts with Vulkan and correct extension appendix sectio…
Browse files Browse the repository at this point in the history
…n nesting

The observable effects of this are

- Pushes the subsection titles in the extension appendices down one level, similar to #1087 but keeping the scripts in sync
- Adds an autogenerated 'API Interactions' section with currently only affects the cl_khr_command_buffer extension, since that's the only one with some APIs tagged in the XML as dependent on a particular core version
  • Loading branch information
oddhack committed Mar 29, 2024
1 parent 00c7969 commit 6f23cbf
Show file tree
Hide file tree
Showing 4 changed files with 129 additions and 14 deletions.
100 changes: 89 additions & 11 deletions scripts/extensionmetadocgenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sys
from functools import total_ordering
from generator import GeneratorOptions, OutputGenerator, regSortFeatures, write
from parse_dependency import dependencyMarkup
from parse_dependency import dependencyMarkup, dependencyNames

class ExtensionMetaDocGeneratorOptions(GeneratorOptions):
"""ExtensionMetaDocGeneratorOptions - subclass of GeneratorOptions.
Expand All @@ -23,6 +23,7 @@ class Extension:
def __init__(self,
generator, # needed for logging and API conventions
filename,
interface,
name,
number,
ext_type,
Expand All @@ -36,9 +37,14 @@ def __init__(self,
specialuse,
ratified
):
"""Object encapsulating information from an XML <extension> tag.
Most of the parameters / members are XML tag values.
'interface' is the actual XML <extension> element."""

self.generator = generator
self.conventions = generator.genOpts.conventions
self.filename = filename
self.interface = interface
self.name = name
self.number = number
self.ext_type = ext_type
Expand Down Expand Up @@ -176,7 +182,7 @@ def conditionalLinkExt(self, extName, indent = ' '):
def resolveDeprecationChain(self, extensions, succeededBy, isRefpage, file):
if succeededBy not in extensions:
write(f' ** *NOTE* The extension `{succeededBy}` is not supported for the API specification being generated', file=file)
self.generator.logMsg('warn', f'resolveDeprecationChain: {self.name} defines a superceding interface {succeededBy} which is not in the supported extensions list')
self.generator.logMsg('warn', f'resolveDeprecationChain: {self.name} defines a superseding interface {succeededBy} which is not in the supported extensions list')
return

ext = extensions[succeededBy]
Expand Down Expand Up @@ -223,10 +229,11 @@ def writeTag(self, tag, value, isRefpage, fp):

if isRefpage:
# Use subsection headers for the tag name
tagPrefix = '== '
# Because we do not know what preceded this, add whitespace
tagPrefix = '\n== '
tagSuffix = ''
else:
# Use an bolded item list for the tag name
# Use a bolded item list for the tag name
tagPrefix = '*'
tagSuffix = '*::'

Expand All @@ -238,12 +245,14 @@ def writeTag(self, tag, value, isRefpage, fp):
if isRefpage:
write('', file=fp)

def makeMetafile(self, extensions, isRefpage = False):
def makeMetafile(self, extensions, SPV_deps, isRefpage = False):
"""Generate a file containing extension metainformation in
asciidoctor markup form.
- extensions - dictionary of Extension objects for extensions spec
is being generated against
- SPV_deps - dictionary of SPIR-V extension names required for each
extension and version name
- isRefpage - True if generating a refpage include, False if
generating a specification extension appendix include"""

Expand All @@ -256,7 +265,7 @@ def makeMetafile(self, extensions, isRefpage = False):

if not isRefpage:
write('[[' + self.name + ']]', file=fp)
write('=== ' + self.name, file=fp)
write('== ' + self.name, file=fp)
write('', file=fp)

self.writeTag('Name String', '`' + self.name + '`', isRefpage, fp)
Expand Down Expand Up @@ -301,6 +310,34 @@ def makeMetafile(self, extensions, isRefpage = False):
' of provisional header files for enablement and stability details.*', file=fp)
write('', file=fp)

# Determine version and extension interactions from 'depends'
# attributes of <require> tags.
interacts = set()
for elem in self.interface.findall('require[@depends]'):
names = dependencyNames(elem.get('depends'))
interacts |= names

if len(interacts) > 0:
self.writeTag('API Interactions', None, isRefpage, fp)

def versionKey(name):
"""Sort _VERSION_ names before extension names"""
return '_VERSION_' not in name

names = sorted(sorted(interacts), key=versionKey)
for name in names:
write(f'* Interacts with {name}', file=fp)

write('', file=fp)

if self.name in SPV_deps:
self.writeTag('SPIR-V Dependencies', None, isRefpage, fp)

for spvname in sorted(SPV_deps[self.name]):
write(f' * {self.conventions.formatSPIRVlink(spvname)}', file=fp)

write('', file=fp)

if self.deprecationType:
self.writeTag('Deprecation State', None, isRefpage, fp)

Expand Down Expand Up @@ -362,7 +399,7 @@ def makeMetafile(self, extensions, isRefpage = False):
if handle.startswith('gitlab:'):
prettyHandle = 'icon:gitlab[alt=GitLab, role="red"]' + handle.replace('gitlab:@', '')
elif handle.startswith('@'):
issuePlaceholderText = f'[{self.name}]{handle}'
issuePlaceholderText = f'[{self.name}] {handle}'
issuePlaceholderText += f'%0A*Here describe the issue or question you have about the {self.name} extension*'
trackerLink = f'link:++https://github.com/KhronosGroup/Vulkan-Docs/issues/new?body={issuePlaceholderText}++'
prettyHandle = f'{trackerLink}[icon:github[alt=GitHub,role="black"]{handle[1:]},window=_blank,opts=nofollow]'
Expand Down Expand Up @@ -408,7 +445,7 @@ def checkProposal(extname):
tag = 'Extension Proposal'
for (name, path) in sorted(proposals):
self.writeTag(tag,
f'link:{{specRepositoryURL}}/{path}[{name}]',
f'{{proposalRefPath}}{path}[{name}]',
isRefpage, fp)
# Setting tag = None so additional values will not get
# additional tag headers.
Expand Down Expand Up @@ -446,6 +483,8 @@ def __init__(self, *args, **kwargs):
# List of strings containing all vendor tags
self.vendor_tags = []
self.file_suffix = ''
# SPIR-V dependencies, generated in beginFile()
self.SPV_deps = {}

def newFile(self, filename):
self.logMsg('diag', '# Generating include file:', filename)
Expand All @@ -465,6 +504,28 @@ def beginFile(self, genOpts):
for tag in root.findall('tags/tag'):
self.vendor_tags.append(tag.get('name'))

# If there are <spirvextension> elements in the XML, generate a
# reverse map from API version and extension names to the SPV
# extensions they depend on.

def add_dep(SPV_deps, name, spvname):
"""Add spvname as a dependency of name.
name may be an API or extension name."""

if name not in SPV_deps:
SPV_deps[name] = set()
SPV_deps[name].add(spvname)

for spvext in root.findall('spirvextensions/spirvextension'):
spvname = spvext.get('name')
for elem in spvext.findall('enable'):
if elem.get('version'):
version_name = elem.get('version')
add_dep(self.SPV_deps, version_name, spvname)
elif elem.get('extension'):
ext_name = elem.get('extension')
add_dep(self.SPV_deps, ext_name, spvname)

# Create subdirectory, if needed
self.makeDir(self.directory)

Expand Down Expand Up @@ -516,9 +577,9 @@ def endFile(self):

# Generate metadoc extension files, in refpage and non-refpage form
for ext in self.extensions.values():
ext.makeMetafile(self.extensions, isRefpage = False)
ext.makeMetafile(self.extensions, self.SPV_deps, isRefpage = False)
if self.conventions.write_refpage_include:
ext.makeMetafile(self.extensions, isRefpage = True)
ext.makeMetafile(self.extensions, self.SPV_deps, isRefpage = True)

# Key to sort extensions alphabetically within 'KHR', 'EXT', vendor
# extension prefixes.
Expand Down Expand Up @@ -565,6 +626,10 @@ def makeSortKey(extname):
# This is difficult to change, and it is very unlikely changing
# it will be needed.

# Do not include the lengthy '*extension_appendices_toc' indices
# in the Antora site build, since all the extensions are already
# indexed on the right navigation sidebar.

write('', file=current_extensions_appendix_fp)
write('include::{generated}/meta/deprecated_extensions_guard_macro' + self.file_suffix + '[]', file=current_extensions_appendix_fp)
write('', file=current_extensions_appendix_fp)
Expand All @@ -577,7 +642,9 @@ def makeSortKey(extname):
write('== List of Current Extensions', file=current_extensions_appendix_fp)
write('endif::HAS_DEPRECATED_EXTENSIONS[]', file=current_extensions_appendix_fp)
write('', file=current_extensions_appendix_fp)
write('ifndef::site-gen-antora[]', file=current_extensions_appendix_fp)
write('include::{generated}/meta/current_extension_appendices_toc' + self.file_suffix + '[]', file=current_extensions_appendix_fp)
write('endif::site-gen-antora[]', file=current_extensions_appendix_fp)
write('\n<<<\n', file=current_extensions_appendix_fp)
write('include::{generated}/meta/current_extension_appendices' + self.file_suffix + '[]', file=current_extensions_appendix_fp)

Expand All @@ -587,7 +654,9 @@ def makeSortKey(extname):
write('ifdef::HAS_DEPRECATED_EXTENSIONS[]', file=deprecated_extensions_appendix_fp)
write('[[deprecated-extension-appendices-list]]', file=deprecated_extensions_appendix_fp)
write('== List of Deprecated Extensions', file=deprecated_extensions_appendix_fp)
write('ifndef::site-gen-antora[]', file=deprecated_extensions_appendix_fp)
write('include::{generated}/meta/deprecated_extension_appendices_toc' + self.file_suffix + '[]', file=deprecated_extensions_appendix_fp)
write('endif::site-gen-antora[]', file=deprecated_extensions_appendix_fp)
write('\n<<<\n', file=deprecated_extensions_appendix_fp)
write('include::{generated}/meta/deprecated_extension_appendices' + self.file_suffix + '[]', file=deprecated_extensions_appendix_fp)
write('endif::HAS_DEPRECATED_EXTENSIONS[]', file=deprecated_extensions_appendix_fp)
Expand All @@ -604,7 +673,9 @@ def makeSortKey(extname):
write('ifdef::HAS_PROVISIONAL_EXTENSIONS[]', file=provisional_extensions_appendix_fp)
write('[[provisional-extension-appendices-list]]', file=provisional_extensions_appendix_fp)
write('== List of Provisional Extensions', file=provisional_extensions_appendix_fp)
write('ifndef::site-gen-antora[]', file=provisional_extensions_appendix_fp)
write('include::{generated}/meta/provisional_extension_appendices_toc' + self.file_suffix + '[]', file=provisional_extensions_appendix_fp)
write('endif::site-gen-antora[]', file=provisional_extensions_appendix_fp)
write('\n<<<\n', file=provisional_extensions_appendix_fp)
write('include::{generated}/meta/provisional_extension_appendices' + self.file_suffix + '[]', file=provisional_extensions_appendix_fp)
write('endif::HAS_PROVISIONAL_EXTENSIONS[]', file=provisional_extensions_appendix_fp)
Expand All @@ -614,8 +685,14 @@ def makeSortKey(extname):
for name in sorted_keys:
ext = self.extensions[name]

include = self.makeExtensionInclude(ext.name)
# Increase the leveloffset of the extension include so it is
# lower than the subsection (extension name) it belongs to
include = ':leveloffset: +1\n'
include += '\n' + self.makeExtensionInclude(ext.name) + '\n\n'
include += ':leveloffset: -1\n'

link = ' * ' + self.conventions.formatExtension(ext.name)

if ext.provisional == 'true':
write(self.conditionalExt(ext.name, include), file=provisional_extension_appendices_fp)
write(self.conditionalExt(ext.name, link), file=provisional_extension_appendices_toc_fp)
Expand Down Expand Up @@ -675,6 +752,7 @@ def beginFeature(self, interface, emit):
extdata = Extension(
generator = self,
filename = filename,
interface = interface,
name = name,
number = number,
ext_type = ext_type,
Expand Down
3 changes: 1 addition & 2 deletions scripts/genRef.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def refPageShell(pageName, pageDesc, fp, head_content = None, sections=None, tai
"""Generate body of a reference page.
- pageName - string name of the page
- pageDesc - string short description of the page, or empty string
- pageDesc - string short description of the page
- fp - file to write to
- head_content - text to include before the sections
- sections - iterable returning (title,body) for each section.
Expand All @@ -245,7 +245,6 @@ def refPageShell(pageName, pageDesc, fp, head_content = None, sections=None, tai
conventions.extra_refpage_body,
'',
sep='\n', file=fp)

if pageDesc.strip() == '':
pageDesc = 'NO SHORT DESCRIPTION PROVIDED'
logWarn('refPageHead: no short description provided for', pageName)
Expand Down
17 changes: 17 additions & 0 deletions scripts/reflib.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,13 @@ def fixupRefs(pageMap, specFile, file):
pi.param = nextPara(file, pi.include)
if pi.body is None:
pi.body = nextPara(file, pi.param)

# Vulkan Feature struct refpages may have interstitial
# text between the include block and the actual
# parameter descriptions.
# If so, advance the body one more paragraph.
if 'This structure describes the following feature' in file[pi.param]:
pi.body = nextPara(file, pi.body)
else:
if pi.body is None:
pi.body = nextPara(file, pi.include)
Expand All @@ -337,6 +344,16 @@ def fixupRefs(pageMap, specFile, file):
pi.param = clampToBlock(pi.param, pi.include, pi.end)
pi.body = clampToBlock(pi.body, pi.param, pi.end)

if pi.type in ['funcpointers', 'protos']:
# It is possible for the inferred parameter section to be invalid,
# such as for the type PFN_vkVoidFunction, which has no parameters.
# Since the parameter section is always a bullet-point list, we know
# the section is invalid if its text does not start with a list item.
# Note: This also deletes parameter sections that are simply empty.
if pi.param is not None and not file[pi.param].startswith(' * '):
pi.body = pi.param
pi.param = None

# We can get to this point with .include, .param, and .validity
# all being None, indicating those sections were not found.

Expand Down
23 changes: 22 additions & 1 deletion scripts/spec_tools/conventions.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,17 @@ def formatExtension(self, name):
"""Mark up an extension name as a link in the spec."""
return '`<<{}>>`'.format(name)

def formatSPIRVlink(self, name):
"""Mark up a SPIR-V extension name as an external link in the spec.
Since these are external links, the formatting probably will be
the same for all APIs creating such links, so long as they use
the asciidoctor {spirv} attribute for the base path to the SPIR-V
extensions."""

(vendor, _) = self.extension_name_split(name)

return f'{{spirv}}/{vendor}/{name}.html[{name}]'

@property
@abc.abstractmethod
def null(self):
Expand Down Expand Up @@ -285,7 +296,7 @@ def extension_name_prefix(self):
Typically two uppercase letters followed by an underscore.
Assumed to be the same as api_prefix, but some APIs use different
case convntions."""
case conventions."""

return self.api_prefix

Expand Down Expand Up @@ -443,6 +454,16 @@ def generate_max_enum_in_docs(self):
documentation includes."""
return False

def extension_name_split(self, name):
"""Split an extension name, returning (vendor, rest of name).
The API prefix of the name is ignored."""

match = EXT_NAME_DECOMPOSE_RE.match(name)
vendor = match.group('vendor')
bare_name = match.group('name')

return (vendor, bare_name)

@abc.abstractmethod
def extension_file_path(self, name):
"""Return file path to an extension appendix relative to a directory
Expand Down

0 comments on commit 6f23cbf

Please sign in to comment.