Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1 | // 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 Gribenko | e4e77d0 | 2022-03-17 14:09:39 +0000 | [diff] [blame] | 5 | #ifndef CRUBIT_RS_BINDINGS_FROM_CC_SRC_CODE_GEN_H_ |
| 6 | #define CRUBIT_RS_BINDINGS_FROM_CC_SRC_CODE_GEN_H_ |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 7 | |
| 8 | #include <string> |
| 9 | |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 10 | #include "absl/strings/string_view.h" |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 11 | #include "rs_bindings_from_cc/ir.h" |
| 12 | |
Marcel Hlopko | f15e8ce | 2022-04-08 08:46:09 -0700 | [diff] [blame] | 13 | namespace crubit { |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 14 | |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 15 | // Source code for generated bindings. |
| 16 | struct 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 Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 24 | Bindings GenerateBindings(const IR& ir, absl::string_view crubit_support_path, |
Lukasz Anforowicz | d7d68f0 | 2022-05-26 07:41:02 -0700 | [diff] [blame] | 25 | absl::string_view rustfmt_exe_path, |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 26 | absl::string_view rustfmt_config_path); |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 27 | |
Marcel Hlopko | f15e8ce | 2022-04-08 08:46:09 -0700 | [diff] [blame] | 28 | } // namespace crubit |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 29 | |
Dmitri Gribenko | e4e77d0 | 2022-03-17 14:09:39 +0000 | [diff] [blame] | 30 | #endif // CRUBIT_RS_BINDINGS_FROM_CC_SRC_CODE_GEN_H_ |