Skip to content

Project configuration

Project configuration is done in yaml format files which should be placed under project directories. In yaml files, we define parameters that affect generated results and the tool behavior (e.g., input sources and output directories, etc.). Users can have a single or multiple configuration files in yaml format spread across the project. CppBind looks up those files by pattern defined in the application config file via the context_def_glob parameter. The default value of context_def_glob parameter is **/*cppbind.yaml which means any file in the project having cppbind.yaml suffix. If the user operates this default value, they need to have a project config file with a name suffixed with cppbind.yaml. This value can be changed in application config file: App config.

An example of project config file
vars:
  out_prj_dir: "."
  src_glob:
    - cxx/**/*.h*
  extra_headers:
    - stdexcept
    - new
    - typeinfo
  include_dirs:
    - .
  kotlin.clang_args:
    - -D__ANDROID__
  mac.kotlin.target_arch: x86_64
  mac.kotlin.clang_args:
    - -D__ANDROID__
    - --target={{target_arch}}-none-linux-android
    - --sysroot={{get_android_ndk_sysroot(getenv('ANDROID_NDK'))}}
  mac.python.clang_args:
    - --sysroot=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
  mac.swift.clang_args:
    - --sysroot=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
  kotlin.cxx_out_dir: "{{path.join(out_prj_dir, 'kotlin/wrappers')}}"
  kotlin.out_dir: "{{path.join(out_prj_dir, 'kotlin/src/main/java')}}"
  python.cxx_out_dir: "{{path.join(out_prj_dir, 'python/wrappers')}}"
  python.out_dir: "{{path.join(out_prj_dir, 'python/src')}}"
  swift.cxx_out_dir: "{{path.join(out_prj_dir, 'swift/wrappers')}}"
  swift.out_dir: "{{path.join(out_prj_dir, 'swift/src')}}"

type_vars:
  !join
  - !include std_exc_api.yaml

var_def:
  !join
  - !include variable_definitions.yaml

rules:
  kotlin.code_snippets:
    !join
    - !include kotlin/code_snippets.yaml
  python.code_snippets:
    !join
    - !include python/code_snippets.yaml
  swift.code_snippets:
    !join
    - !include swift/code_snippets.yaml

  kotlin.type_converters:
    !join
    - !include "kotlin/*_types.yaml"
  python.type_converters:
    !join
    - !include "python/*_types.yaml"
  swift.type_converters:
    !join
    - !include "swift/*_types.yaml"

  kotlin.actions:
    !join
    - !include kotlin/actions.yaml
  python.actions:
    !join
    - !include python/actions.yaml
  swift.actions:
    !join
    - !include swift/actions.yaml

The project config file can contain six main top-level sections:

  • var_def
  • vars
  • rules
  • dir_vars
  • file_vars
  • type_vars

Section var_def

CppBind project configuration is done by variables written in doxygen style API comments. CppBind provides a set of default variables defined under the var_def section. This section is mandatory in the project config file and should be defined only once per project. CppBind complains about redefinition in multiple config files. More details on variables definitions you can find here.

Section vars

vars is a mandatory section where the user sets root-level config variables. In this section, the user can set/override variables defined under var_def section. For example, the user can set the value of the src_glob variable by controlling C++ source files that must be processed by CppBind. This section also should be defined only once per project. The full list of default variables provided by CppBind is available here.

Section rules

rules section is a mandatory section that contains code snippets, type converter snippets, and action snippets required to generate bindings for target languages. rules sections can be spread across the project. We merge them together by platform and language specifications. This mechanism allows users to have their own custom converters. Merging enables users to keep custom converter files in the same directory where the corresponding type is defined. CppBind can be run only for languages having corresponding snippets under the rules section. Currently, CppBind includes snippets for Swift, Kotlin, and Python languages in the default rules definition. To disable a language, remove its snippets from the rules section. For more detail see Snippets.

Here is the minimal rules configuration for Swift, Kotlin, and Python languages:

rules:
  kotlin.code_snippets:
    !join
    - !include kotlin/code_snippets.yaml
  python.code_snippets:
    !join
    - !include python/code_snippets.yaml
  swift.code_snippets:
    !join
    - !include swift/code_snippets.yaml

  kotlin.type_converters:
    !join
    - !include "kotlin/*_types.yaml"
  python.type_converters:
    !join
    - !include "python/*_types.yaml"
  swift.type_converters:
    !join
    - !include "swift/*_types.yaml"

  kotlin.actions:
    !join
    - !include kotlin/actions.yaml
  python.actions:
    !join
    - !include python/actions.yaml
  swift.actions:
    !join
    - !include swift/actions.yaml

Join and include are yaml helpers allowing users to define configuration in different files and combine them in one place.

Users are not required to care about rules, var_def sections unless they are writing their custom type converters. If a user is going to operate the default behavior of CppBind with the default converters, they can use a command-line utility provided by CppBind to initialize the project config file. To generate the initial configuration user should run cppbind init under the project directory. The command creates a cppbind.yaml file containing the default initial config example. The user operates the vars section to define/override root-level configuration variables. This section defines common variables for the whole project while they can be overridden on the allowed entities (dirs, files, classes, etc.).

Section dir_vars

dir_vars optional section is used to define variables for specific directories. Here is an example:

dir_vars:
  - dir: "path_of_dir"
    vars:
      python.action: gen_package
      name: simple

In this example, the dir_vars section is used to generate a package for the given directory. The directory path must be provided via the dir key. We support two types of directory paths: if the path starts with "/", then the path is relative to the CppBind project root directory. Otherwise, the path is considered relative to the config file's directory. The vars subsection is used to define variables.

Section file_vars

Similar to dir_vars, there is also the file_vars optional section to define API for specific files. The usage and definition are the same as for directories. To define the file path, use the file key:

file_vars:
  - file: "path_of_file"
    vars:
      python.code_fragment: fragment_of_some_code

Section type_vars

The type_vars optional section allows the user to describe API annotations outside the source file. This section is similar to dir_vars and file_vars sections but allows user to define API for types/functions. The primary use case of this feature is the generation of bindings for types/functions from the standard library or a third-party library. CppBind uses this feature to generate bindings for standard exceptions. More details can be found here.

To define API annotations, use the type key. CppBind supports two ways to specify the type. The first way is to specify the full C++ signature of the entity (class, struct, method, property, etc.):

type_vars:
  - type: "NamespaceExample::ClassExample::methodExample(int)"
    vars:
      action: gen_method
      throws: no_throw

CppBind also supports the structure with nested form of definition, where :: symbols are used as the sign of a subsection:

type_vars:
  - type: NamespaceExample
    ::
    - type: ClassExample
      ::
      - type: "anotherMethodExample(std::string)"
        vars:
          action: gen_method
          throws: no_throw

Note

Users define API only once for each type/function. For the same annotation, users have only one type of definition: either with full signature or with nested structure. CppBind reports about merge conflicts and redefinitions.

dir_vars, file_vars and type_vars sections also can be spread across the project and CppBind merges them similar to the rules section.


Last update: December 1, 2022