miqt/cmd/genbindings
2024-11-06 18:44:02 +13:00
..
cachedir
clang2il_test.go
clang2il.go qnetwork: add support in genbindings 2024-11-06 18:38:25 +13:00
clangexec.go
config-allowlist.go qmultimedia: add support in genbindings 2024-11-06 18:44:02 +13:00
config-libraries.go qmultimedia: add support in genbindings 2024-11-06 18:44:02 +13:00
emitcabi.go qnetwork: add support in genbindings 2024-11-06 18:38:25 +13:00
emitgo.go genbindings: add qmap/qhash support 2024-11-04 21:33:45 +13:00
intermediate.go qnetwork: add support in genbindings 2024-11-06 18:38:25 +13:00
main.go qt/cbor: split cbor into separate package 2024-11-06 18:38:18 +13:00
README.md
transformblocklist.go genbindings: move AllowClass from parse-time to transformation AST pass 2024-10-26 12:35:27 +13:00
transformchildclasses_test.go
transformchildclasses.go
transformctors.go genbindings: reorder ctors to put (QWidget* parent) version first 2024-10-26 13:46:16 +13:00
transformoptional.go qnetwork: add support in genbindings 2024-11-06 18:38:25 +13:00
transformoverload.go
transformredundant.go
transformtypedefs_test.go
transformtypedefs.go
util.go

genbindings

The genbindings program regenerates the Qt bindings.

Architecture design

Bindings are generated in two passes:

Pass 1

  1. Scan input directory for header files.
  2. For each header file:
  3. Run clang --ast-dump=json to get a JSON ast.
    • This is somewhat slow, the results will be cached in ./cachedir after the first run.
    • Strip all Clang AST nodes that were included from other files, to only consider the header's own definitions.
  4. Convert Clang AST to our own intermediate representation.
  5. Run some transformations on the intermediate representation.
  6. Cache and collect the global state of all known class names, enum names, and typedefs.

Pass 2

  1. For each intermediate-representation AST:
  2. Emit "CABI" cpp/h pair.
    • The CABI is a projection of Qt into plain C. The translation unit itself is C++, but the header can be used as extern c.
  3. Emit Go binding file.
    • The Go binding uses CGO to call into the CABI binding.

Configuration

It's tested to work on with Debian 12 with system packages (Qt 5.15 / Qt 6.4 / Clang 14 / GCC 12).

You should check the following configuration:

  • config-libraries.go: Input directories containing Qt headers
  • config-allowlist.go: Check everything