ab0e0091d5
PiperOrigin-RevId: 919718422 Change-Id: I2cba07d75d37d45f3f30b23d049c944b080248ad
74 lines
2.4 KiB
Python
74 lines
2.4 KiB
Python
# Copyright 2025 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.
|
|
|
|
from introspect import enums as introspect_enums
|
|
from introspect import functions as introspect_functions
|
|
|
|
from wasm.codegen.generators import common
|
|
from wasm.codegen.generators import constants
|
|
from wasm.codegen.generators import enums
|
|
from wasm.codegen.generators import functions
|
|
from wasm.codegen.generators import structs
|
|
|
|
|
|
class BindingBuilder:
|
|
"""Builds WASM bindings for MuJoCo."""
|
|
|
|
def __init__(
|
|
self,
|
|
template_path_cc: str,
|
|
):
|
|
with open(template_path_cc, "r") as f:
|
|
self.content_cc = f.readlines()
|
|
|
|
self.markers_and_content = []
|
|
|
|
def set_enums(self):
|
|
"""Generates and sets the enum bindings."""
|
|
self.markers_and_content += enums.generate(
|
|
list(introspect_enums.ENUMS.values())
|
|
)
|
|
return self
|
|
|
|
def set_structs(self):
|
|
"""Generates and sets the struct bindings."""
|
|
self.markers_and_content += structs.generate(constants.STRUCTS_TO_BIND)
|
|
return self
|
|
|
|
def set_functions(self):
|
|
"""Generates and sets the function wrappers and bindings."""
|
|
|
|
functions_to_bind = []
|
|
for name, func in introspect_functions.FUNCTIONS.items():
|
|
if not functions.is_excluded_function_name(name):
|
|
functions_to_bind.append(func)
|
|
|
|
self.markers_and_content += functions.generate(functions_to_bind)
|
|
return self
|
|
|
|
def to_string(self) -> str:
|
|
for marker, content in self.markers_and_content:
|
|
self.content_cc = common.replace_lines_containing_marker(
|
|
self.content_cc, marker, content
|
|
)
|
|
text = "".join(self.content_cc)
|
|
return text.replace(
|
|
"// limitations under the License.\n\n",
|
|
"// limitations under the License.\n\n// DO NOT EDIT. THIS FILE IS AUTOMATICALLY GENERATED.\n\n",
|
|
1,
|
|
)
|
|
|
|
def build(self, generated_path_cc: str):
|
|
common.write_to_file(generated_path_cc, self.to_string())
|