mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
``mk_genfile_common.py`` and adapt ``mk_util.py`` and ``mk_consts_files.py`` to use the code at its new location. The interface has been changed slightly so that ``mk_z3consts_py_internal()`` now returns the path to the generated file. The motivation behind this is so that clients of the function know the path to the generated file. Whilst I'm here also reindent ``mk_consts_files.py`` and move some of its code into ``mk_genfile_common.py`` so it can be shared. Also update Z3_GENERATED_FILE_EXTRA_DEPENDENCIES in the CMake build so it knows about ``mk_genfile_common.py``. The purpose of this change is to have Python code common to the Python and CMake build systems separate from Python code that is only used for the Python build system.
42 lines
1.2 KiB
Python
Executable file
42 lines
1.2 KiB
Python
Executable file
#!/usr/bin/env python
|
|
"""
|
|
Reads a list of Z3 API header files and
|
|
generate the constant declarations need
|
|
by one or more Z3 language bindings
|
|
"""
|
|
import mk_genfile_common
|
|
import argparse
|
|
import logging
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main(args):
|
|
logging.basicConfig(level=logging.INFO)
|
|
parser = argparse.ArgumentParser(description=__doc__)
|
|
parser.add_argument("api_files", nargs="+")
|
|
parser.add_argument("--z3py-output-dir", dest="z3py_output_dir", default=None)
|
|
pargs = parser.parse_args(args)
|
|
|
|
if not mk_genfile_common.check_files_exist(pargs.api_files):
|
|
logging.error('One or more API files do not exist')
|
|
return 1
|
|
|
|
count = 0
|
|
|
|
if pargs.z3py_output_dir:
|
|
if not mk_genfile_common.check_dir_exists(pargs.z3py_output_dir):
|
|
return 1
|
|
output = mk_genfile_common.mk_z3consts_py_internal(pargs.api_files, pargs.z3py_output_dir)
|
|
logging.info('Generated "{}"'.format(output))
|
|
count += 1
|
|
|
|
if count == 0:
|
|
logging.info('No files generated. You need to specific an output directory'
|
|
' for the relevant langauge bindings')
|
|
# TODO: Add support for other bindings
|
|
return 0
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv[1:]))
|