This crate contains the main part of the generator's implementation.
See README of the repository root for more information about other parts of the project.
Refer to README of qt_generator
crate to learn how to run the generator of Qt crates.
If you want to generate a crate for another C++ library, create a new binary crate and call the generator using its API.
See fullrun.rs and qtgenerator for examples.
All crates require stable Rust ≥ 1.15 and some dependencies delivered by cargo
automatically.
The generator additionally requires:
make
and a C++ compiler;libclang-dev
≥ 3.5 (CI uses 3.8 and 3.9).The following environment variables may be required for clang
parser to work correctly:
LLVM_CONFIG_PATH
(path to llvm-config
binary)CLANG_SYSTEM_INCLUDE_PATH
(e.g. $CLANG_DIR/lib/clang/3.8.0/include
for clang
3.8.0).Generated crates require:
cmake
;cpp_to_rust_generator
may require CLANG_SYSTEM_INCLUDE_PATH
environment variable set to path to clang
's system headers, e.g. /usr/lib/llvm-3.8/lib/clang/3.8.0/include
. Without it, parsing may abort with an error like this:
fatal error: 'stddef.h' file not found
CPP_TO_RUST_TEMP_TEST_DIR
variable may be used to specify location of the temporary directory used by tests. If the directory is preserved between test runs, tests will run faster.
Build scripts of generated crates accept CPP_TO_RUST_LIB_PATHS
, CPP_TO_RUST_FRAMEWORK_PATHS
, CPP_TO_RUST_INCLUDE_PATHS
environment variables. They can be used to override paths selected by the build script (if any). If multiple paths need to be specified, separate them in the same way PATH
variable is separated on target platform.
C++ build tools and the linker may also read other environment variables, including LIB
, PATH
, LIBRARY_PATH
, LD_LIBRARY_PATH
, DYLD_FRAMEWORK_PATH
. The generator has API for specifying library paths, passes them to cmake
when building the C++ wrapper library, and reports the paths in build script's output, but it may not be enough for the linker to find the library, so you may need to set them manually.
The generator itself (cpp_to_rust_generator
) is a library which exposes API for configurating different aspects of the process. In order to run the generator and produce an output crate, one must use a binary crate (such as qt_generator
) and launch the generator using its API.
The generator runs in the following steps:
clang
C++ parser is executed to extract information about the library's types and methods from its header files.enum
s and struct
s for all found C++ enums, structs and classes (including instantiations of template classes).cpp_to_rust
's processing data are used to generate a full-featured documentation for the crate (example).The generated crate can be built using cargo
and included to an other project as a dependency, just as any other crate.
Many things are directly translated from C++ to Rust:
bool
) and types provided by libc crate (like libc::c_int
).int8_t
or qint8
) are mapped to Rust's fixed size types (e.g. i8
).Drop
and CppDeletable
implementations.static_cast
and dynamic_cast
are available in Rust through corresponding traits.Names of Rust identifiers are modified according to Rust's naming conventions.
When direct translation is not possible:
Deref
and DerefMut
implementation, allowing to call base class methods on derived objects. When deref coercions are not enough, static_cast
should be used to convert from derived to base class.Not implemented yet but planned:
typedef
s to Rust type aliases.op_
prefix.Class1<T>::Class2
.Not planned to support:
Implemented:
QFlags<Enum>
types are converted to Rust's own similar implementation located at qt_core::flags
).qt_core::connection
implements a way to use signals and slots. It's possible to use signals and slots of the built-in Qt classes and create slots bound to an arbitrary closure from Rust code. Argument types compability is checked at compile time.Not implemented yet but planned:
Linux, OS X and Windows are supported. cpp_to_rust
and Qt crates are continuously tested using Travis and Appveyor on the following platforms and targets:
Windows MinGW toolchain is partially supported.
cpp_to_rust
takes advantage of Rust's crate system. If a C++ library depends on another C++ library, generated Rust crate will also depend on the dependency's crate and reuse its types.
Documentation is important! cpp_to_rust
generates rustdoc
comments with information about corresponding C++ types and methods. Overloaded methods have detailed documentation listing all available variants. Qt documentation is integrated in rustdoc
comments.
cpp_to_rust
supports two allocation place modes for C++ objects. Appropriate mode is chosen automatically and separately for each type and can be overriden in generator configuration. Allocation place mode only affects methods which return class values (not references, pointers or primitive types) and constructors.
Box mode:
new
. Constructors are called like new MyClass(args)
, and functions that return objects by value are called like new MyClass(function(args))
.new
is passed through FFI to the Rust wrapper and to cpp_utils::CppBox::new
. CppBox<T>
is returned to the caller.CppBox
is dropped, it calls the deleter function, which calls delete object
on C++ side.CppBox
and passed to another function that can take ownership of the object.Struct mode:
new
. Constructors are called like new(buf) MyClass(args)
, where buf
is pointer to the struct created in Rust. The struct is filled with valid data.Box
or Vec
, pass it to another place and take references and pointers to it. Box mode is a more general and safe way to store C++ objects in Rust, but it can produce unnecessary overhead when working with multiple small objects.
Struct mode is more limited and dangerous. You can't use it if pointers to the object are stored somewhere because Rust can move the struct in memory and the pointer can become invalid. And sometimes it's not clear whether they are stored or not. It is also forbidden to pass such structs to functions that take ownership, as they would try to delete it and free the memory that is managed by Rust. However, struct mode allows to avoid heap allocations and can be used for small simple structs and classes.
The generator automatically chooses Box mode for types which are passed to other functions as pointers because these functions may take ownership of the object. Also Box mode is default for types with any virtual methods. All other types use Struct mode by default.
Pointers, references and primitive types are (in most cases) passed through FFI border as-is, so allocation place mode has no effect on them. If a class value is used as an argument, it's converted to a const reference on Rust side to allow passing the value regardless of ownership and placement in memory.
The generator currently assumes that the C++ library's API is consistent across all supported platforms. Any platform-specific (e.g. Windows only) classes and methods should be blacklisted in the generator's configuration. As long as it's done, the generated crate should work successfully on all platforms supported by the generator. The build script of the generated crate will build the C++ wrapper library using currently available toolchain and determine actual struct sizes when necessary.
When working with platform-specific API, it's possible to run the generator on each target platform and use its results within that platform.
If using previously generated crate with a different version of the C++ library, the version needs to be source compatible with the version used for generation (but it's not required to be binary compatible). In case of Qt, that means that older and newer patch releases and newer minor releases should be compatible with an older crate.
The generator is in active development, and its own API is not stable yet. That shouldn't be a big issue, because it's just a development tool, and amount of code using the generator's API should be fairly small.
The big issue is that the generator can't provide API stability of the generated crate. It's possible (and currently highly likely) that the generated API will significantly change when switching to a newer version of the generator.
The generator may also introduce breaking changes when switching to another version of the C++ library, even if these versions are compatible on C++ side. For example:
Fixing these issues would require two steps:
It's impossible to bring Rust's safety to C++ APIs automatically, so most of the generated APIs are very unsafe to use and require thinking in C++ terms. In Rust, it's totally safe to produce a raw pointer, but unsafe to dereference it. The generator marks all wrapper functions accepting raw pointers as unsafe because raw pointers are not guaranteed to be valid, and the function will almost definitely try to dereference the pointer (it may check for null if we're lucky).
It's possible to introduce a generator API for marking methods as safe and/or changing their signatures (e.g. converting raw pointers to references, Option
s or anything more suitable), but it hasn't been done yet.
C++ wrapper functions may only contain C-compatible types in their signatures, so references and class values are replaced with pointers, and wrapper functions perform necessary conversions to and from original C++ types. In Rust code the types are converted back to references and values.
If Rust crates and C++ wrapper libraries are all built statically, the linker only runs once for the final executable that uses the crates. It should be able to eliminate all unused wrapper functions and produce a reasonably small file that will only depend on original C++ libraries.