blob: 748879cc80d9a484e95ccc889c824e73f71cecae [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
Ivan Lozano07cbaf42020-07-22 16:09:13 -040068 srcPath, _ := srcPathFromModuleSrcs(ctx, procMacro.baseCompiler.Properties.Srcs)
Ivan Lozanoffee3342019-08-27 12:03:00 -070069
70 procMacro.unstrippedOutputFile = outputFile
71
72 TransformSrctoProcMacro(ctx, srcPath, deps, flags, outputFile, deps.linkDirs)
73 return outputFile
74}
Ivan Lozanoad8b18b2019-10-31 19:38:29 -070075
76func (procMacro *procMacroDecorator) getStem(ctx ModuleContext) string {
77 stem := procMacro.baseCompiler.getStemWithoutSuffix(ctx)
78 validateLibraryStem(ctx, stem, procMacro.crateName())
79
80 return stem + String(procMacro.baseCompiler.Properties.Suffix)
81}
Matthew Maurer0f003b12020-06-29 14:34:06 -070082
Ivan Lozano042504f2020-08-18 14:31:23 -040083func (procMacro *procMacroDecorator) autoDep(ctx BaseModuleContext) autoDep {
Matthew Maurer0f003b12020-06-29 14:34:06 -070084 return rlibAutoDep
85}