Autogenerate C code snippets using new Sphinx extension for the API reference docs.
PiperOrigin-RevId: 491613858 Change-Id: I0a878038bee5e929237fa23686f97319b15bddfc
This commit is contained in:
committed by
Copybara-Service
parent
b0665fe2f9
commit
5f7d9f4f02
+354
-2802
File diff suppressed because it is too large
Load Diff
@@ -46,6 +46,7 @@ extensions = [
|
||||
'sphinxcontrib.youtube',
|
||||
'sphinx_reredirects',
|
||||
'sphinx_toolbox.collapse',
|
||||
"mujoco_include",
|
||||
]
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
|
||||
@@ -0,0 +1,200 @@
|
||||
# Copyright 2022 DeepMind Technologies Limited
|
||||
#
|
||||
# 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.
|
||||
# ==============================================================================
|
||||
"""Reads MuJoCo header files and generates a doc-friendly data structure."""
|
||||
|
||||
import dataclasses
|
||||
import re
|
||||
|
||||
from typing import Optional, List, Dict
|
||||
|
||||
# Precompiled regex for matching a section.
|
||||
_SECTION_REGEX = re.compile(r'^//-+ (?P<section>.+) -+$')
|
||||
|
||||
# Precompiled regex for matching a C function definition.
|
||||
_FUNCTION_REGEX = re.compile(r'(?P<token>mj\w+)\s*\(')
|
||||
|
||||
# Precompiled regex for matching a C function ending.
|
||||
_FUNCTION_ENDING_REGEX = re.compile(r'\);\s$')
|
||||
|
||||
# Precompiled regex for matching a C struct ending.
|
||||
_STRUCT_END_REGEX_1 = re.compile(r'^typedef\s+struct\s+\w+\s+(?P<token>mj\w+);')
|
||||
|
||||
# Precompiled regex for matching a C struct ending (version 2).
|
||||
_STRUCT_END_REGEX_2 = re.compile(r'^}\s+(?P<token>mj\w+);')
|
||||
|
||||
# Precompiled regex for matching a C enum ending.
|
||||
_ENUM_END_REGEX = re.compile(r'^}\s+(?P<token>mj\w+);')
|
||||
|
||||
|
||||
@dataclasses.dataclass(frozen=True)
|
||||
class ApiDefinition:
|
||||
"""Defines a C reference parsed from a C header file."""
|
||||
token: str
|
||||
c_type: str
|
||||
code: str
|
||||
start: int
|
||||
end: int
|
||||
section: str
|
||||
doc: str
|
||||
|
||||
|
||||
class ApiState:
|
||||
"""Internal state of the reader used for parsing header files."""
|
||||
|
||||
def __init__(self):
|
||||
self.token = ''
|
||||
self.section = ''
|
||||
self.code = ''
|
||||
self.doc = ''
|
||||
|
||||
self._state = None
|
||||
self._start = 0
|
||||
self._end = 0
|
||||
|
||||
@property
|
||||
def state(self):
|
||||
return self._state
|
||||
|
||||
def export_definition(self):
|
||||
return ApiDefinition(self.token, self._state, self.code, self._start,
|
||||
self._end, self.section, self.doc)
|
||||
|
||||
def start(self, state):
|
||||
self._state = state
|
||||
self._start = self._end
|
||||
|
||||
def iterate(self):
|
||||
self._end += 1
|
||||
|
||||
def end(self):
|
||||
self.token = ''
|
||||
self._state = None
|
||||
self.code = ''
|
||||
self.doc = ''
|
||||
|
||||
|
||||
def read(lines: List[str]) -> Dict[str, ApiDefinition]:
|
||||
"""Reads header lines and returns a maps of ApiDefinition's."""
|
||||
|
||||
api = {}
|
||||
stripped_functions = False
|
||||
s = ApiState()
|
||||
|
||||
for line in lines:
|
||||
s.iterate()
|
||||
section = _find_section(line)
|
||||
if section is not None:
|
||||
if 'MJAPI FUNCTIONS' in section:
|
||||
# Stripped functions do not begin with MJAPI, and must be under the
|
||||
# predefiend section 'MJAPI FUNCTIONS'. This is because the docs don't
|
||||
# include this prefix, and so we need to read such functions from the
|
||||
# reference header.
|
||||
stripped_functions = True
|
||||
s.section = section
|
||||
s.end()
|
||||
continue
|
||||
|
||||
if s.state == 'DOC':
|
||||
token = _find_function_start(line, stripped_functions)
|
||||
if token is not None:
|
||||
if stripped_functions:
|
||||
s.code = f'{s.code}{line}'
|
||||
else:
|
||||
s.code = f'{s.code}{line[6:]}'
|
||||
s.token = token
|
||||
s.start('FUNCTION')
|
||||
if _is_function_end(line):
|
||||
api[token] = s.export_definition()
|
||||
s.end()
|
||||
continue
|
||||
elif line.startswith('//'):
|
||||
s.doc = f'{s.doc}{line[3:]}'
|
||||
else:
|
||||
s.end()
|
||||
if s.state == 'FUNCTION':
|
||||
if stripped_functions:
|
||||
s.code = f'{s.code}{line}'
|
||||
else:
|
||||
s.code = f'{s.code}{line[6:]}'
|
||||
if _is_function_end(line):
|
||||
api[s.token] = s.export_definition()
|
||||
s.end()
|
||||
elif s.state == 'ENUM':
|
||||
match = _ENUM_END_REGEX.search(line)
|
||||
if match is not None:
|
||||
s.code = f'{s.code}{line}'
|
||||
s.token = match.group('token')
|
||||
api[s.token] = s.export_definition()
|
||||
s.end()
|
||||
else:
|
||||
s.code = f'{s.code}{line}'
|
||||
elif s.state == 'STRUCT':
|
||||
match = _STRUCT_END_REGEX_1.search(line)
|
||||
if match is None:
|
||||
match = _STRUCT_END_REGEX_2.search(line)
|
||||
|
||||
if match is not None:
|
||||
s.code = f'{s.code}{line}'
|
||||
s.token = match.group('token')
|
||||
api[s.token] = s.export_definition()
|
||||
s.end()
|
||||
else:
|
||||
s.code = f'{s.code}{line}'
|
||||
elif s.state is None:
|
||||
if line.startswith('typedef enum'):
|
||||
s.start('ENUM')
|
||||
s.code = f'{s.code}{line}'
|
||||
|
||||
if line.startswith('struct') or line.startswith('typedef struct'):
|
||||
s.start('STRUCT')
|
||||
s.code = f'{s.code}{line}'
|
||||
|
||||
if line.startswith('//'):
|
||||
s.doc = f'{s.doc}{line[3:]}'
|
||||
s.start('DOC')
|
||||
|
||||
token = _find_function_start(line, stripped_functions)
|
||||
if token is not None:
|
||||
if stripped_functions:
|
||||
s.code = f'{s.code}{line}'
|
||||
else:
|
||||
s.code = f'{s.code}{line[6:]}'
|
||||
s.token = token
|
||||
s.start('FUNCTION')
|
||||
if _is_function_end(line):
|
||||
api[token] = s.export_definition()
|
||||
s.end()
|
||||
|
||||
return api
|
||||
|
||||
|
||||
def _find_section(line) -> Optional[str]:
|
||||
match = _SECTION_REGEX.search(line)
|
||||
if match is not None:
|
||||
return match.group('section').strip()
|
||||
return None
|
||||
|
||||
|
||||
def _find_function_start(line, stripped) -> Optional[str]:
|
||||
if (line.startswith('MJAPI') and 'extern' not in line) or stripped:
|
||||
match = _FUNCTION_REGEX.search(line)
|
||||
if match is not None:
|
||||
return match.group('token')
|
||||
return None
|
||||
|
||||
|
||||
def _is_function_end(line):
|
||||
match = _FUNCTION_ENDING_REGEX.search(line)
|
||||
return match is not None
|
||||
@@ -0,0 +1,105 @@
|
||||
# Copyright 2022 DeepMind Technologies Limited
|
||||
#
|
||||
# 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.
|
||||
# ==============================================================================
|
||||
"""Tests for MuJoCo API header reader."""
|
||||
|
||||
from absl.testing import absltest
|
||||
from absl.testing import parameterized
|
||||
|
||||
import header_reader
|
||||
|
||||
_EXAMPLE = """
|
||||
//------- My favorite section --------
|
||||
|
||||
// My function
|
||||
MJAPI void mj_function(int a, int b);
|
||||
|
||||
// My other function
|
||||
// This one has multiple lines
|
||||
MJAPI const char* mj_other_function(int a, int b,
|
||||
const char* a);
|
||||
|
||||
typedef enum mjEnum_ {
|
||||
mjVALUE1 // Some value
|
||||
mjVALUE2 // Some other value
|
||||
} mjEnum;
|
||||
|
||||
struct mjStruct_ {
|
||||
int value1 // Some value
|
||||
int value2 // Some other value
|
||||
};
|
||||
typedef struct mjStruct_ mjStruct;
|
||||
// My favorite struct
|
||||
typedef struct mjStruct2_ {
|
||||
int value1 // Another value
|
||||
int value2 // More more value
|
||||
} mjStruct2;
|
||||
|
||||
MJAPI void mj_no_doc(int a, void* b);
|
||||
|
||||
//------------ MJAPI FUNCTIONS --------------
|
||||
|
||||
void mj_stripped(int a, int b,
|
||||
int c);
|
||||
"""
|
||||
|
||||
_API = header_reader.read([f'{line}\n' for line in _EXAMPLE.split('\n')])
|
||||
|
||||
|
||||
class MuJoCoApiGeneratorTest(parameterized.TestCase):
|
||||
|
||||
def test_enums_line_numbers(self):
|
||||
self.assertEqual(_API['mjEnum'].start, 12)
|
||||
self.assertEqual(_API['mjEnum'].end, 15)
|
||||
|
||||
def test_structs_line_numbers(self):
|
||||
self.assertEqual(_API['mjStruct'].start, 17)
|
||||
self.assertEqual(_API['mjStruct'].end, 21)
|
||||
|
||||
def test_structs2_line_numbers(self):
|
||||
self.assertEqual(_API['mjStruct2'].start, 23)
|
||||
self.assertEqual(_API['mjStruct2'].end, 26)
|
||||
|
||||
def test_function_line_numbers(self):
|
||||
self.assertEqual(_API['mj_function'].start, 5)
|
||||
self.assertEqual(_API['mj_function'].end, 5)
|
||||
|
||||
def test_function_code(self):
|
||||
self.assertEqual(_API['mj_function'].code,
|
||||
'void mj_function(int a, int b);\n')
|
||||
|
||||
def test_function_section(self):
|
||||
self.assertEqual(_API['mj_function'].section, 'My favorite section')
|
||||
|
||||
def test_function_doc(self):
|
||||
self.assertEqual(_API['mj_function'].doc, 'My function\n')
|
||||
|
||||
def test_multi_line_doc(self):
|
||||
self.assertEqual(_API['mj_other_function'].doc,
|
||||
'My other function\nThis one has multiple lines\n')
|
||||
|
||||
def test_multi_line_function(self):
|
||||
self.assertEqual(_API['mj_other_function'].start, 9)
|
||||
self.assertEqual(_API['mj_other_function'].end, 10)
|
||||
|
||||
def test_no_doc_function(self):
|
||||
self.assertEqual(_API['mj_no_doc'].start, 28)
|
||||
self.assertEqual(_API['mj_no_doc'].end, 28)
|
||||
|
||||
def test_stripped_functions(self):
|
||||
self.assertEqual(_API['mj_stripped'].start, 32)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
absltest.main()
|
||||
@@ -0,0 +1,56 @@
|
||||
# Copyright 2022 DeepMind Technologies Limited
|
||||
#
|
||||
# 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.
|
||||
# ==============================================================================
|
||||
"""Sphinx extension for the mujoco-include directive."""
|
||||
|
||||
import header_reader
|
||||
from sphinx.application import Sphinx
|
||||
from sphinx.directives.code import LiteralInclude
|
||||
from sphinx.util.console import red
|
||||
|
||||
_FILENAME = 'includes/references.h'
|
||||
_ERROR_LINE = 16
|
||||
|
||||
|
||||
class MujocoInclude(LiteralInclude):
|
||||
"""Extension to LiteralInclude directive for MuJoCo."""
|
||||
|
||||
def run(self):
|
||||
mujoco_api = self.env.app.config['mujoco_include_header']
|
||||
token = self.arguments[0]
|
||||
source = mujoco_api.get(token)
|
||||
start_line = _ERROR_LINE
|
||||
end_line = _ERROR_LINE
|
||||
|
||||
if source is None:
|
||||
print(red(f'Warning: C reference \'{token}\' not found.'))
|
||||
else:
|
||||
start_line = source.start
|
||||
end_line = source.end
|
||||
|
||||
# Config arguments and options for LiteralInclude.
|
||||
self.arguments[0] = _FILENAME
|
||||
self.options['language'] = 'C'
|
||||
self.options['lines'] = f'{start_line}-{end_line}'
|
||||
|
||||
return list(LiteralInclude.run(self))
|
||||
|
||||
|
||||
def setup(app: Sphinx) -> None:
|
||||
api = {}
|
||||
with open(_FILENAME, 'r') as file:
|
||||
api = header_reader.read(file.readlines())
|
||||
|
||||
app.add_config_value('mujoco_include_header', api, '')
|
||||
app.add_directive('mujoco-include', MujocoInclude)
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user