blob: a692826c9b916ee1fefd300bfab02e2291ec978c [file] [log] [blame]
Ivan Lozano4fef93c2020-07-08 08:39:44 -04001// Copyright 2020 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package rust
16
17import (
Ivan Lozano4fef93c2020-07-08 08:39:44 -040018 "strings"
19
Ivan Lozano45901ed2020-07-24 16:05:01 -040020 "github.com/google/blueprint"
Stephen Crane12e2cb72020-08-04 12:26:10 -070021 "github.com/google/blueprint/proptools"
Ivan Lozano45901ed2020-07-24 16:05:01 -040022
Ivan Lozano4fef93c2020-07-08 08:39:44 -040023 "android/soong/android"
Ivan Lozanobc9e4212020-09-25 16:08:34 -040024 "android/soong/cc"
Ivan Lozano3d947522020-09-23 13:26:25 -040025 cc_config "android/soong/cc/config"
Ivan Lozano4fef93c2020-07-08 08:39:44 -040026)
27
28var (
Ivan Lozanoec54eec2020-07-22 16:48:53 -040029 defaultBindgenFlags = []string{""}
Ivan Lozano4fef93c2020-07-08 08:39:44 -040030
31 // bindgen should specify its own Clang revision so updating Clang isn't potentially blocked on bindgen failures.
Aditya Kumaref7c1212024-02-02 17:22:03 +000032 bindgenClangVersion = "clang-r510928"
Ivan Lozano4fef93c2020-07-08 08:39:44 -040033
Peter Collingbourne9a868f12020-12-30 20:23:01 -080034 _ = pctx.VariableFunc("bindgenClangVersion", func(ctx android.PackageVarContext) string {
35 if override := ctx.Config().Getenv("LLVM_BINDGEN_PREBUILTS_VERSION"); override != "" {
36 return override
37 }
38 return bindgenClangVersion
39 })
40
Ivan Lozano4fef93c2020-07-08 08:39:44 -040041 //TODO(b/160803703) Use a prebuilt bindgen instead of the built bindgen.
Shao-Chuan Leeaa3231c2020-11-05 22:20:17 +090042 _ = pctx.HostBinToolVariable("bindgenCmd", "bindgen")
Colin Cross567d3422022-04-28 15:30:09 -070043 _ = pctx.VariableFunc("bindgenHostPrebuiltTag", func(ctx android.PackageVarContext) string {
44 if ctx.Config().UseHostMusl() {
45 // This is a hack to use the glibc bindgen binary until we have a musl version checked in.
46 return "linux-x86"
47 } else {
48 return "${config.HostPrebuiltTag}"
49 }
50 })
51 _ = pctx.VariableFunc("bindgenClangLibdir", func(ctx android.PackageVarContext) string {
52 if ctx.Config().UseHostMusl() {
Colin Cross645874d2022-10-14 14:18:21 -070053 return "musl/lib/"
Colin Cross567d3422022-04-28 15:30:09 -070054 } else {
Yi Kongbd188812023-02-08 19:51:59 +090055 return "lib/"
Colin Cross567d3422022-04-28 15:30:09 -070056 }
57 })
Ivan Lozano4fef93c2020-07-08 08:39:44 -040058 _ = pctx.SourcePathVariable("bindgenClang",
Colin Cross567d3422022-04-28 15:30:09 -070059 "${cc_config.ClangBase}/${bindgenHostPrebuiltTag}/${bindgenClangVersion}/bin/clang")
Ivan Lozano4fef93c2020-07-08 08:39:44 -040060 _ = pctx.SourcePathVariable("bindgenLibClang",
Colin Cross567d3422022-04-28 15:30:09 -070061 "${cc_config.ClangBase}/${bindgenHostPrebuiltTag}/${bindgenClangVersion}/${bindgenClangLibdir}")
Ivan Lozano4fef93c2020-07-08 08:39:44 -040062
63 //TODO(ivanlozano) Switch this to RuleBuilder
Andrei Homescu78a1f8d2023-07-08 00:35:15 +000064 //
65 //TODO Pass the flag files directly to bindgen e.g. with @file when it supports that.
66 //See https://github.com/rust-lang/rust-bindgen/issues/2508.
Ivan Lozano4fef93c2020-07-08 08:39:44 -040067 bindgen = pctx.AndroidStaticRule("bindgen",
68 blueprint.RuleParams{
Ivan Lozanoec54eec2020-07-22 16:48:53 -040069 Command: "CLANG_PATH=$bindgenClang LIBCLANG_PATH=$bindgenLibClang RUSTFMT=${config.RustBin}/rustfmt " +
Andrei Homescu78a1f8d2023-07-08 00:35:15 +000070 "$cmd $flags $$(cat $flagfiles) $in -o $out -- -MD -MF $out.d $cflags",
Ivan Lozanoc564d2d2020-08-04 15:43:37 -040071 CommandDeps: []string{"$cmd"},
Ivan Lozanoe1e844b2020-07-24 15:16:30 -040072 Deps: blueprint.DepsGCC,
73 Depfile: "$out.d",
Ivan Lozano4fef93c2020-07-08 08:39:44 -040074 },
Andrei Homescu78a1f8d2023-07-08 00:35:15 +000075 "cmd", "flags", "flagfiles", "cflags")
Ivan Lozano4fef93c2020-07-08 08:39:44 -040076)
77
78func init() {
79 android.RegisterModuleType("rust_bindgen", RustBindgenFactory)
Ivan Lozanof6fe9952020-07-22 16:30:20 -040080 android.RegisterModuleType("rust_bindgen_host", RustBindgenHostFactory)
Ivan Lozano4fef93c2020-07-08 08:39:44 -040081}
82
83var _ SourceProvider = (*bindgenDecorator)(nil)
84
85type BindgenProperties struct {
Ivan Lozano3d947522020-09-23 13:26:25 -040086 // The wrapper header file. By default this is assumed to be a C header unless the extension is ".hh" or ".hpp".
87 // This is used to specify how to interpret the header and determines which '-std' flag to use by default.
88 //
89 // If your C++ header must have some other extension, then the default behavior can be overridden by setting the
90 // cpp_std property.
Ivan Lozano4fef93c2020-07-08 08:39:44 -040091 Wrapper_src *string `android:"path,arch_variant"`
92
93 // list of bindgen-specific flags and options
Ivan Lozano26ecd6c2020-07-31 13:40:31 -040094 Bindgen_flags []string `android:"arch_variant"`
Ivan Lozano4fef93c2020-07-08 08:39:44 -040095
Andrei Homescu78a1f8d2023-07-08 00:35:15 +000096 // list of files containing extra bindgen flags
97 Bindgen_flag_files []string `android:"arch_variant"`
98
Ivan Lozanoc564d2d2020-08-04 15:43:37 -040099 // module name of a custom binary/script which should be used instead of the 'bindgen' binary. This custom
100 // binary must expect arguments in a similar fashion to bindgen, e.g.
101 //
102 // "my_bindgen [flags] wrapper_header.h -o [output_path] -- [clang flags]"
Liz Kammereda93982021-04-20 10:15:41 -0400103 Custom_bindgen string
Ellen Arteca810c37e2024-04-23 00:17:47 +0000104
Ivan Lozano3b591c72024-05-02 10:07:04 -0400105 // flag to indicate if bindgen should handle `static inline` functions (default is false).
106 // If true, Static_inline_library must be set.
107 Handle_static_inline *bool
108
109 // module name of the corresponding cc_library_static which includes the static_inline wrapper
110 // generated functions from bindgen. Must be used together with handle_static_inline.
111 //
112 // If there are no static inline functions provided through the header file,
113 // then bindgen (as of 0.69.2) will silently fail to output a .c file, and
114 // the cc_library_static depending on this module will fail compilation.
115 Static_inline_library *string
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400116}
117
118type bindgenDecorator struct {
Andrei Homescuc7767922020-08-05 06:36:19 -0700119 *BaseSourceProvider
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400120
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400121 Properties BindgenProperties
122 ClangProperties cc.RustBindgenClangProperties
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400123}
124
Ivan Lozano3d947522020-09-23 13:26:25 -0400125func (b *bindgenDecorator) getStdVersion(ctx ModuleContext, src android.Path) (string, bool) {
126 // Assume headers are C headers
127 isCpp := false
128 stdVersion := ""
129
130 switch src.Ext() {
131 case ".hpp", ".hh":
132 isCpp = true
133 }
134
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400135 if String(b.ClangProperties.Cpp_std) != "" && String(b.ClangProperties.C_std) != "" {
Ivan Lozano3d947522020-09-23 13:26:25 -0400136 ctx.PropertyErrorf("c_std", "c_std and cpp_std cannot both be defined at the same time.")
137 }
138
Ivan Lozano829e1e92023-10-09 11:30:09 -0400139 if b.ClangProperties.Cpp_std != nil {
140 isCpp = true
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400141 if String(b.ClangProperties.Cpp_std) == "experimental" {
Ivan Lozano3d947522020-09-23 13:26:25 -0400142 stdVersion = cc_config.ExperimentalCppStdVersion
Ivan Lozano829e1e92023-10-09 11:30:09 -0400143 } else if String(b.ClangProperties.Cpp_std) == "default" || String(b.ClangProperties.Cpp_std) == "" {
Ivan Lozano3d947522020-09-23 13:26:25 -0400144 stdVersion = cc_config.CppStdVersion
145 } else {
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400146 stdVersion = String(b.ClangProperties.Cpp_std)
Ivan Lozano3d947522020-09-23 13:26:25 -0400147 }
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400148 } else if b.ClangProperties.C_std != nil {
Ivan Lozano829e1e92023-10-09 11:30:09 -0400149 isCpp = false
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400150 if String(b.ClangProperties.C_std) == "experimental" {
Ivan Lozano3d947522020-09-23 13:26:25 -0400151 stdVersion = cc_config.ExperimentalCStdVersion
Ivan Lozano829e1e92023-10-09 11:30:09 -0400152 } else if String(b.ClangProperties.C_std) == "default" || String(b.ClangProperties.C_std) == "" {
Ivan Lozano3d947522020-09-23 13:26:25 -0400153 stdVersion = cc_config.CStdVersion
154 } else {
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400155 stdVersion = String(b.ClangProperties.C_std)
Ivan Lozano3d947522020-09-23 13:26:25 -0400156 }
157 } else if isCpp {
158 stdVersion = cc_config.CppStdVersion
159 } else {
160 stdVersion = cc_config.CStdVersion
161 }
162
163 return stdVersion, isCpp
164}
165
Thiébaud Weksteen31f1bb82020-08-27 13:37:29 +0200166func (b *bindgenDecorator) GenerateSource(ctx ModuleContext, deps PathDeps) android.Path {
167 ccToolchain := ctx.RustModule().ccToolchain(ctx)
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400168
169 var cflags []string
Ivan Lozano45901ed2020-07-24 16:05:01 -0400170 var implicits android.Paths
Ivan Lozano3b591c72024-05-02 10:07:04 -0400171 var implicitOutputs android.WritablePaths
172 var validations android.Paths
173
174 if Bool(b.Properties.Handle_static_inline) && b.Properties.Static_inline_library == nil {
175 ctx.PropertyErrorf("handle_static_inline",
176 "requires declaring static_inline_library to the corresponding cc_library module that includes the generated C source from bindgen.")
177 }
178
179 if b.Properties.Static_inline_library != nil && !Bool(b.Properties.Handle_static_inline) {
180 ctx.PropertyErrorf("static_inline_library",
181 "requires declaring handle_static_inline.")
182 }
Ivan Lozano45901ed2020-07-24 16:05:01 -0400183
Ivan Lozanoddd0bdb2020-08-28 17:00:26 -0400184 implicits = append(implicits, deps.depGeneratedHeaders...)
Ivan Lozano45901ed2020-07-24 16:05:01 -0400185
186 // Default clang flags
Colin Cross0523ba22021-07-14 18:45:05 -0700187 cflags = append(cflags, "${cc_config.CommonGlobalCflags}")
Ivan Lozano45901ed2020-07-24 16:05:01 -0400188 if ctx.Device() {
Colin Cross0523ba22021-07-14 18:45:05 -0700189 cflags = append(cflags, "${cc_config.DeviceGlobalCflags}")
Ivan Lozano45901ed2020-07-24 16:05:01 -0400190 }
191
192 // Toolchain clang flags
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400193 cflags = append(cflags, "-target "+ccToolchain.ClangTriple())
Colin Cross33bac242021-07-14 17:03:16 -0700194 cflags = append(cflags, strings.ReplaceAll(ccToolchain.Cflags(), "${config.", "${cc_config."))
195 cflags = append(cflags, strings.ReplaceAll(ccToolchain.ToolchainCflags(), "${config.", "${cc_config."))
Ivan Lozano45901ed2020-07-24 16:05:01 -0400196
Kiyoung Kimaa394802024-01-08 12:55:45 +0900197 if ctx.RustModule().InVendorOrProduct() {
Ivan Lozanoe950cda2021-11-09 11:26:04 -0500198 cflags = append(cflags, "-D__ANDROID_VNDK__")
199 if ctx.RustModule().InVendor() {
200 cflags = append(cflags, "-D__ANDROID_VENDOR__")
Justin Yun41cbb5e2023-11-29 17:58:16 +0900201
202 vendorApiLevel := ctx.Config().VendorApiLevel()
203 if vendorApiLevel == "" {
204 // TODO(b/314036847): This is a fallback for UDC targets.
205 // This must be a build failure when UDC is no longer built
206 // from this source tree.
207 vendorApiLevel = ctx.Config().PlatformSdkVersion().String()
208 }
209 cflags = append(cflags, "-D__ANDROID_VENDOR_API__="+vendorApiLevel)
Ivan Lozanoe950cda2021-11-09 11:26:04 -0500210 } else if ctx.RustModule().InProduct() {
211 cflags = append(cflags, "-D__ANDROID_PRODUCT__")
212 }
213 }
214
215 if ctx.RustModule().InRecovery() {
216 cflags = append(cflags, "-D__ANDROID_RECOVERY__")
217 }
218
219 if mctx, ok := ctx.(*moduleContext); ok && mctx.apexVariationName() != "" {
220 cflags = append(cflags, "-D__ANDROID_APEX__")
Ivan Lozanoe950cda2021-11-09 11:26:04 -0500221 }
222
223 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
224 cflags = append(cflags, "-D__ANDROID_NATIVE_BRIDGE__")
225 }
226
Ivan Lozano45901ed2020-07-24 16:05:01 -0400227 // Dependency clang flags and include paths
228 cflags = append(cflags, deps.depClangFlags...)
229 for _, include := range deps.depIncludePaths {
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400230 cflags = append(cflags, "-I"+include.String())
231 }
Ivan Lozano45901ed2020-07-24 16:05:01 -0400232 for _, include := range deps.depSystemIncludePaths {
233 cflags = append(cflags, "-isystem "+include.String())
234 }
235
Stephen Crane12e2cb72020-08-04 12:26:10 -0700236 esc := proptools.NinjaAndShellEscapeList
237
Ivan Lozano0a2a1152020-10-16 10:49:08 -0400238 // Filter out invalid cflags
Cole Fauste96c16a2024-06-13 14:51:14 -0700239 cflagsProp := b.ClangProperties.Cflags.GetOrDefault(ctx, nil)
240 for _, flag := range cflagsProp {
Ivan Lozano0a2a1152020-10-16 10:49:08 -0400241 if flag == "-x c++" || flag == "-xc++" {
242 ctx.PropertyErrorf("cflags",
243 "-x c++ should not be specified in cflags; setting cpp_std specifies this is a C++ header, or change the file extension to '.hpp' or '.hh'")
244 }
245 if strings.HasPrefix(flag, "-std=") {
246 ctx.PropertyErrorf("cflags",
247 "-std should not be specified in cflags; instead use c_std or cpp_std")
248 }
249 }
250
Ivan Lozano45901ed2020-07-24 16:05:01 -0400251 // Module defined clang flags and include paths
Cole Fauste96c16a2024-06-13 14:51:14 -0700252 cflags = append(cflags, esc(cflagsProp)...)
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400253 for _, include := range b.ClangProperties.Local_include_dirs {
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400254 cflags = append(cflags, "-I"+android.PathForModuleSrc(ctx, include).String())
Ivan Lozano45901ed2020-07-24 16:05:01 -0400255 implicits = append(implicits, android.PathForModuleSrc(ctx, include))
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400256 }
257
258 bindgenFlags := defaultBindgenFlags
Stephen Crane12e2cb72020-08-04 12:26:10 -0700259 bindgenFlags = append(bindgenFlags, esc(b.Properties.Bindgen_flags)...)
Ivan Lozano3b591c72024-05-02 10:07:04 -0400260 if Bool(b.Properties.Handle_static_inline) {
261 outputStaticFnsFile := android.PathForModuleOut(ctx, b.BaseSourceProvider.getStem(ctx)+".c")
262 implicitOutputs = append(implicitOutputs, outputStaticFnsFile)
263 validations = append(validations, outputStaticFnsFile)
264 bindgenFlags = append(bindgenFlags, []string{"--experimental", "--wrap-static-fns", "--wrap-static-fns-path=" + outputStaticFnsFile.String()}...)
Ellen Arteca810c37e2024-04-23 00:17:47 +0000265 }
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400266
Andrei Homescu78a1f8d2023-07-08 00:35:15 +0000267 // cat reads from stdin if its command line is empty,
268 // so we pass in /dev/null if there are no other flag files
269 bindgenFlagFiles := []string{"/dev/null"}
270 for _, flagFile := range b.Properties.Bindgen_flag_files {
271 bindgenFlagFiles = append(bindgenFlagFiles, android.PathForModuleSrc(ctx, flagFile).String())
272 implicits = append(implicits, android.PathForModuleSrc(ctx, flagFile))
273 }
274
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400275 wrapperFile := android.OptionalPathForModuleSrc(ctx, b.Properties.Wrapper_src)
276 if !wrapperFile.Valid() {
277 ctx.PropertyErrorf("wrapper_src", "invalid path to wrapper source")
278 }
279
Ivan Lozano3d947522020-09-23 13:26:25 -0400280 // Add C std version flag
281 stdVersion, isCpp := b.getStdVersion(ctx, wrapperFile.Path())
282 cflags = append(cflags, "-std="+stdVersion)
283
284 // Specify the header source language to avoid ambiguity.
285 if isCpp {
286 cflags = append(cflags, "-x c++")
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400287 // Add any C++ only flags.
Aleks Todorovb6f16932024-07-26 13:41:13 +0100288 cflags = append(cflags, esc(b.ClangProperties.Cppflags.GetOrDefault(ctx, nil))...)
Ivan Lozano3d947522020-09-23 13:26:25 -0400289 } else {
290 cflags = append(cflags, "-x c")
291 }
292
Colin Cross8a5a1e22022-10-14 15:53:02 -0700293 // clang-r468909b complains about the -x c in the flags in clang-sys parse_search_paths:
294 // clang: error: '-x c' after last input file has no effect [-Werror,-Wunused-command-line-argument]
295 cflags = append(cflags, "-Wno-unused-command-line-argument")
296
Yi Kong52e5e6b2024-02-25 12:45:30 +0800297 // The Clang version used by CXX can be newer than the one used by Bindgen, and uses warning related flags that
298 // it cannot recognize. Turn off unknown warning flags warning.
299 cflags = append(cflags, "-Wno-unknown-warning-option")
Yi Kong4f664e92022-07-14 20:36:15 +0800300
Andrei Homescuc7767922020-08-05 06:36:19 -0700301 outputFile := android.PathForModuleOut(ctx, b.BaseSourceProvider.getStem(ctx)+".rs")
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400302
Ivan Lozanoc564d2d2020-08-04 15:43:37 -0400303 var cmd, cmdDesc string
304 if b.Properties.Custom_bindgen != "" {
Andrei Homescu44946852023-07-07 04:59:07 +0000305 cmd = ctx.GetDirectDepWithTag(b.Properties.Custom_bindgen, customBindgenDepTag).(android.HostToolProvider).HostToolPath().String()
Ivan Lozanoc564d2d2020-08-04 15:43:37 -0400306 cmdDesc = b.Properties.Custom_bindgen
307 } else {
308 cmd = "$bindgenCmd"
309 cmdDesc = "bindgen"
310 }
311
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400312 ctx.Build(pctx, android.BuildParams{
Ivan Lozano3b591c72024-05-02 10:07:04 -0400313 Rule: bindgen,
314 Description: strings.Join([]string{cmdDesc, wrapperFile.Path().Rel()}, " "),
315 Output: outputFile,
316 Input: wrapperFile.Path(),
317 Implicits: implicits,
318 ImplicitOutputs: implicitOutputs,
319 Validations: validations,
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400320 Args: map[string]string{
Andrei Homescu78a1f8d2023-07-08 00:35:15 +0000321 "cmd": cmd,
322 "flags": strings.Join(bindgenFlags, " "),
323 "flagfiles": strings.Join(bindgenFlagFiles, " "),
324 "cflags": strings.Join(cflags, " "),
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400325 },
326 })
Ivan Lozanoc564d2d2020-08-04 15:43:37 -0400327
Chih-Hung Hsiehc49649c2020-10-01 21:25:05 -0700328 b.BaseSourceProvider.OutputFiles = android.Paths{outputFile}
Ivan Lozano3b591c72024-05-02 10:07:04 -0400329
330 // Append any additional implicit outputs after the entry point source.
331 // We append any generated .c file here so it can picked up by cc_library_static modules.
332 // Those CC modules need to be sure not to pass any included .rs files to Clang.
333 // We don't have to worry about the additional .c files for Rust modules as only the entry point
334 // is passed to rustc.
335 b.BaseSourceProvider.OutputFiles = append(b.BaseSourceProvider.OutputFiles, implicitOutputs.Paths()...)
336
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400337 return outputFile
338}
339
Andrei Homescuc7767922020-08-05 06:36:19 -0700340func (b *bindgenDecorator) SourceProviderProps() []interface{} {
341 return append(b.BaseSourceProvider.SourceProviderProps(),
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400342 &b.Properties, &b.ClangProperties)
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400343}
344
Ivan Lozano10735d92020-07-22 09:14:47 -0400345// rust_bindgen generates Rust FFI bindings to C libraries using bindgen given a wrapper header as the primary input.
346// Bindgen has a number of flags to control the generated source, and additional flags can be passed to clang to ensure
Thiébaud Weksteen295c72b2020-09-23 18:10:17 +0200347// the header and generated source is appropriately handled. It is recommended to add it as a dependency in the
Vinh Tran4eeb2a92023-08-14 13:29:30 -0400348// rlibs or rustlibs property. It may also be added in the srcs property for external crates, using the ":"
Thiébaud Weksteen295c72b2020-09-23 18:10:17 +0200349// prefix.
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400350func RustBindgenFactory() android.Module {
351 module, _ := NewRustBindgen(android.HostAndDeviceSupported)
352 return module.Init()
353}
354
Ivan Lozanof6fe9952020-07-22 16:30:20 -0400355func RustBindgenHostFactory() android.Module {
356 module, _ := NewRustBindgen(android.HostSupported)
357 return module.Init()
358}
359
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400360func NewRustBindgen(hod android.HostOrDeviceSupported) (*Module, *bindgenDecorator) {
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400361 bindgen := &bindgenDecorator{
Andrei Homescuc7767922020-08-05 06:36:19 -0700362 BaseSourceProvider: NewSourceProvider(),
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400363 Properties: BindgenProperties{},
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400364 ClangProperties: cc.RustBindgenClangProperties{},
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400365 }
Ivan Lozano26ecd6c2020-07-31 13:40:31 -0400366
Matthew Maurere94f3e72022-08-10 20:25:50 +0000367 module := NewSourceProviderModule(hod, bindgen, false, true)
368
369 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
370 type stub_props struct {
371 Visibility []string
372 }
373 props := &stub_props{[]string{":__subpackages__"}}
374 ctx.PrependProperties(props)
375 })
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400376
377 return module, bindgen
378}
379
Andrei Homescuc7767922020-08-05 06:36:19 -0700380func (b *bindgenDecorator) SourceProviderDeps(ctx DepsContext, deps Deps) Deps {
381 deps = b.BaseSourceProvider.SourceProviderDeps(ctx, deps)
Dan Albert30e66dc2023-02-23 19:17:50 +0000382 if ctx.toolchain().Bionic() && !ctx.RustModule().compiler.noStdlibs() {
Thiébaud Weksteenf1ff54a2021-03-22 14:24:54 +0100383 deps = bionicDeps(ctx, deps, false)
Colin Crosse32f0932022-01-23 20:48:36 -0800384 } else if ctx.Os() == android.LinuxMusl {
385 deps = muslDeps(ctx, deps, false)
Ivan Lozano45901ed2020-07-24 16:05:01 -0400386 }
387
Ivan Lozano3b591c72024-05-02 10:07:04 -0400388 if !ctx.RustModule().Source() && b.Properties.Static_inline_library != nil {
389 // This is not the source variant, so add the static inline library as a dependency.
390 //
391 // This is necessary to avoid a circular dependency between the source variant and the
392 // dependent cc module.
393 deps.StaticLibs = append(deps.StaticLibs, String(b.Properties.Static_inline_library))
394 }
395
Cole Faust9d6c7dc2024-08-19 14:39:19 -0700396 deps.SharedLibs = append(deps.SharedLibs, b.ClangProperties.Shared_libs.GetOrDefault(ctx, nil)...)
397 deps.StaticLibs = append(deps.StaticLibs, b.ClangProperties.Static_libs.GetOrDefault(ctx, nil)...)
398 deps.HeaderLibs = append(deps.HeaderLibs, b.ClangProperties.Header_libs.GetOrDefault(ctx, nil)...)
Ivan Lozano4fef93c2020-07-08 08:39:44 -0400399 return deps
400}