blob: d59e2e9411a61f74a1b25bf6d5ca252f0dbb8fb5 [file] [log] [blame]
Marcel Hlopko42abfc82021-08-09 07:03:17 +00001// Part of the Crubit project, under the Apache License v2.0 with LLVM
2// Exceptions. See /LICENSE for license information.
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
Dmitri Gribenkoe4e77d02022-03-17 14:09:39 +00005#ifndef CRUBIT_RS_BINDINGS_FROM_CC_SRC_CODE_GEN_H_
6#define CRUBIT_RS_BINDINGS_FROM_CC_SRC_CODE_GEN_H_
Marcel Hlopko42abfc82021-08-09 07:03:17 +00007
8#include <string>
9
Lukasz Anforowicz54ff3182022-05-06 07:17:58 -070010#include "absl/strings/string_view.h"
Marcel Hlopko42abfc82021-08-09 07:03:17 +000011#include "rs_bindings_from_cc/ir.h"
12
Marcel Hlopkof15e8ce2022-04-08 08:46:09 -070013namespace crubit {
Marcel Hlopko42abfc82021-08-09 07:03:17 +000014
Marcel Hlopko45fba972021-08-23 19:52:20 +000015// Source code for generated bindings.
16struct Bindings {
17 // Rust source code.
18 std::string rs_api;
19 // C++ source code.
20 std::string rs_api_impl;
21};
22
23// Generates bindings from the given `IR`.
Lukasz Anforowiczdd907702022-05-06 09:24:07 -070024Bindings GenerateBindings(const IR& ir, absl::string_view crubit_support_path,
Lukasz Anforowiczd7d68f02022-05-26 07:41:02 -070025 absl::string_view rustfmt_exe_path,
Lukasz Anforowiczdd907702022-05-06 09:24:07 -070026 absl::string_view rustfmt_config_path);
Marcel Hlopko42abfc82021-08-09 07:03:17 +000027
Marcel Hlopkof15e8ce2022-04-08 08:46:09 -070028} // namespace crubit
Marcel Hlopko42abfc82021-08-09 07:03:17 +000029
Dmitri Gribenkoe4e77d02022-03-17 14:09:39 +000030#endif // CRUBIT_RS_BINDINGS_FROM_CC_SRC_CODE_GEN_H_