blob: 49dbd8dc2b843429db7bcad2e107d0823d5212d1 [file] [log] [blame]
Ivan Lozanoffee3342019-08-27 12:03:00 -07001// Copyright 2019 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 (
18 "android/soong/android"
19)
20
21func init() {
22 android.RegisterModuleType("rust_proc_macro", ProcMacroFactory)
23}
24
25type ProcMacroCompilerProperties struct {
Ivan Lozanoffee3342019-08-27 12:03:00 -070026}
27
28type procMacroDecorator struct {
29 *baseCompiler
Matthew Maurerbb3add12020-06-25 09:34:12 -070030 *flagExporter
Ivan Lozanoffee3342019-08-27 12:03:00 -070031
Ivan Lozano8a23fa42020-06-16 10:26:57 -040032 Properties ProcMacroCompilerProperties
Ivan Lozanoffee3342019-08-27 12:03:00 -070033}
34
35type procMacroInterface interface {
36}
37
38var _ compiler = (*procMacroDecorator)(nil)
Matthew Maurerbb3add12020-06-25 09:34:12 -070039var _ exportedFlagsProducer = (*procMacroDecorator)(nil)
Ivan Lozanoffee3342019-08-27 12:03:00 -070040
41func ProcMacroFactory() android.Module {
Ivan Lozano5ca5ef62019-09-23 10:10:40 -070042 module, _ := NewProcMacro(android.HostSupportedNoCross)
Ivan Lozanoffee3342019-08-27 12:03:00 -070043 return module.Init()
44}
45
46func NewProcMacro(hod android.HostOrDeviceSupported) (*Module, *procMacroDecorator) {
47 module := newModule(hod, android.MultilibFirst)
48
49 procMacro := &procMacroDecorator{
Chih-Hung Hsieh9a4a7ba2019-12-12 19:36:05 -080050 baseCompiler: NewBaseCompiler("lib", "lib64", InstallInSystem),
Matthew Maurerbb3add12020-06-25 09:34:12 -070051 flagExporter: NewFlagExporter(),
Ivan Lozanoffee3342019-08-27 12:03:00 -070052 }
53
54 module.compiler = procMacro
55
56 return module, procMacro
57}
58
59func (procMacro *procMacroDecorator) compilerProps() []interface{} {
60 return append(procMacro.baseCompiler.compilerProps(),
61 &procMacro.Properties)
62}
63
64func (procMacro *procMacroDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path {
65 fileName := procMacro.getStem(ctx) + ctx.toolchain().ProcMacroSuffix()
66 outputFile := android.PathForModuleOut(ctx, fileName)
67
Chih-Hung Hsiehbbd25ae2020-05-15 17:36:30 -070068 srcPath, paths := srcPathFromModuleSrcs(ctx, procMacro.baseCompiler.Properties.Srcs)
69 deps.SrcDeps = paths
Ivan Lozanoffee3342019-08-27 12:03:00 -070070
71 procMacro.unstrippedOutputFile = outputFile
72
73 TransformSrctoProcMacro(ctx, srcPath, deps, flags, outputFile, deps.linkDirs)
74 return outputFile
75}
Ivan Lozanoad8b18b2019-10-31 19:38:29 -070076
77func (procMacro *procMacroDecorator) getStem(ctx ModuleContext) string {
78 stem := procMacro.baseCompiler.getStemWithoutSuffix(ctx)
79 validateLibraryStem(ctx, stem, procMacro.crateName())
80
81 return stem + String(procMacro.baseCompiler.Properties.Suffix)
82}
Matthew Maurer0f003b12020-06-29 14:34:06 -070083
84func (procMacro *procMacroDecorator) autoDep() autoDep {
85 return rlibAutoDep
86}