Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | package rust |
| 16 | |
| 17 | import ( |
| 18 | "android/soong/android" |
| 19 | ) |
| 20 | |
| 21 | func init() { |
| 22 | android.RegisterModuleType("rust_proc_macro", ProcMacroFactory) |
| 23 | } |
| 24 | |
| 25 | type ProcMacroCompilerProperties struct { |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | type procMacroDecorator struct { |
| 29 | *baseCompiler |
Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 30 | *flagExporter |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 31 | |
Ivan Lozano | 8a23fa4 | 2020-06-16 10:26:57 -0400 | [diff] [blame] | 32 | Properties ProcMacroCompilerProperties |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | type procMacroInterface interface { |
| 36 | } |
| 37 | |
| 38 | var _ compiler = (*procMacroDecorator)(nil) |
Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 39 | var _ exportedFlagsProducer = (*procMacroDecorator)(nil) |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 40 | |
| 41 | func ProcMacroFactory() android.Module { |
Ivan Lozano | 5ca5ef6 | 2019-09-23 10:10:40 -0700 | [diff] [blame] | 42 | module, _ := NewProcMacro(android.HostSupportedNoCross) |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 43 | return module.Init() |
| 44 | } |
| 45 | |
| 46 | func NewProcMacro(hod android.HostOrDeviceSupported) (*Module, *procMacroDecorator) { |
| 47 | module := newModule(hod, android.MultilibFirst) |
| 48 | |
| 49 | procMacro := &procMacroDecorator{ |
Chih-Hung Hsieh | 9a4a7ba | 2019-12-12 19:36:05 -0800 | [diff] [blame] | 50 | baseCompiler: NewBaseCompiler("lib", "lib64", InstallInSystem), |
Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 51 | flagExporter: NewFlagExporter(), |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 54 | // Don't sanitize procMacros |
| 55 | module.sanitize = nil |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 56 | module.compiler = procMacro |
| 57 | |
| 58 | return module, procMacro |
| 59 | } |
| 60 | |
| 61 | func (procMacro *procMacroDecorator) compilerProps() []interface{} { |
| 62 | return append(procMacro.baseCompiler.compilerProps(), |
| 63 | &procMacro.Properties) |
| 64 | } |
| 65 | |
| 66 | func (procMacro *procMacroDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path { |
| 67 | fileName := procMacro.getStem(ctx) + ctx.toolchain().ProcMacroSuffix() |
| 68 | outputFile := android.PathForModuleOut(ctx, fileName) |
| 69 | |
Ivan Lozano | 07cbaf4 | 2020-07-22 16:09:13 -0400 | [diff] [blame] | 70 | srcPath, _ := srcPathFromModuleSrcs(ctx, procMacro.baseCompiler.Properties.Srcs) |
Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 71 | TransformSrctoProcMacro(ctx, srcPath, deps, flags, outputFile, deps.linkDirs) |
| 72 | return outputFile |
| 73 | } |
Ivan Lozano | ad8b18b | 2019-10-31 19:38:29 -0700 | [diff] [blame] | 74 | |
| 75 | func (procMacro *procMacroDecorator) getStem(ctx ModuleContext) string { |
| 76 | stem := procMacro.baseCompiler.getStemWithoutSuffix(ctx) |
| 77 | validateLibraryStem(ctx, stem, procMacro.crateName()) |
| 78 | |
| 79 | return stem + String(procMacro.baseCompiler.Properties.Suffix) |
| 80 | } |
Matthew Maurer | 0f003b1 | 2020-06-29 14:34:06 -0700 | [diff] [blame] | 81 | |
Liz Kammer | 356f7d4 | 2021-01-26 09:18:53 -0500 | [diff] [blame] | 82 | func (procMacro *procMacroDecorator) autoDep(ctx android.BottomUpMutatorContext) autoDep { |
Matthew Maurer | 0f003b1 | 2020-06-29 14:34:06 -0700 | [diff] [blame] | 83 | return rlibAutoDep |
| 84 | } |