Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 1 | // Copyright 2017 Google Inc. All rights reserved. |
| 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 python |
| 16 | |
| 17 | // This file contains Ninja build actions for building Python program. |
| 18 | |
| 19 | import ( |
| 20 | "strings" |
| 21 | |
| 22 | "android/soong/android" |
| 23 | |
| 24 | "github.com/google/blueprint" |
| 25 | _ "github.com/google/blueprint/bootstrap" |
| 26 | ) |
| 27 | |
| 28 | var ( |
| 29 | pctx = android.NewPackageContext("android/soong/python") |
| 30 | |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 31 | zip = pctx.AndroidStaticRule("zip", |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 32 | blueprint.RuleParams{ |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 33 | Command: `$parCmd -o $out $args`, |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 34 | CommandDeps: []string{"$parCmd"}, |
| 35 | }, |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 36 | "args") |
| 37 | |
Nan Zhang | b8fa197 | 2017-12-22 16:12:00 -0800 | [diff] [blame] | 38 | combineZip = pctx.AndroidStaticRule("combineZip", |
| 39 | blueprint.RuleParams{ |
| 40 | Command: `$mergeParCmd $out $in`, |
| 41 | CommandDeps: []string{"$mergeParCmd"}, |
| 42 | }, |
| 43 | ) |
| 44 | |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 45 | hostPar = pctx.AndroidStaticRule("hostPar", |
| 46 | blueprint.RuleParams{ |
| 47 | Command: `sed -e 's/%interpreter%/$interp/g' -e 's/%main%/$main/g' $template > $stub && ` + |
yangbill | 3aa2975 | 2021-04-16 16:00:28 +0800 | [diff] [blame] | 48 | `echo "#!/usr/bin/env $interp" >${out}.prefix &&` + |
Dan Willemsen | 263dde7 | 2018-11-15 19:15:02 -0800 | [diff] [blame] | 49 | `$mergeParCmd -p --prefix ${out}.prefix -pm $stub $out $srcsZips && ` + |
| 50 | `chmod +x $out && (rm -f $stub; rm -f ${out}.prefix)`, |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 51 | CommandDeps: []string{"$mergeParCmd"}, |
| 52 | }, |
Dan Willemsen | 263dde7 | 2018-11-15 19:15:02 -0800 | [diff] [blame] | 53 | "interp", "main", "template", "stub", "srcsZips") |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 54 | |
| 55 | embeddedPar = pctx.AndroidStaticRule("embeddedPar", |
| 56 | blueprint.RuleParams{ |
Dan Willemsen | 707542f | 2018-11-29 21:39:59 -0800 | [diff] [blame] | 57 | Command: `rm -f $out.main && ` + |
| 58 | `sed 's/ENTRY_POINT/$main/' build/soong/python/scripts/main.py >$out.main &&` + |
| 59 | `$mergeParCmd -p -pm $out.main --prefix $launcher $out $srcsZips && ` + |
| 60 | `chmod +x $out && rm -rf $out.main`, |
| 61 | CommandDeps: []string{"$mergeParCmd", "$parCmd", "build/soong/python/scripts/main.py"}, |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 62 | }, |
Dan Willemsen | 707542f | 2018-11-29 21:39:59 -0800 | [diff] [blame] | 63 | "main", "srcsZips", "launcher") |
Dan Willemsen | 6ca390f | 2019-02-14 23:17:08 -0800 | [diff] [blame] | 64 | |
| 65 | embeddedParNoMain = pctx.AndroidStaticRule("embeddedParNoMain", |
| 66 | blueprint.RuleParams{ |
| 67 | Command: `$mergeParCmd -p --prefix $launcher $out $srcsZips && ` + |
| 68 | `chmod +x $out`, |
| 69 | CommandDeps: []string{"$mergeParCmd"}, |
| 70 | }, |
| 71 | "srcsZips", "launcher") |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 72 | ) |
| 73 | |
| 74 | func init() { |
| 75 | pctx.Import("github.com/google/blueprint/bootstrap") |
Colin Cross | cc0ce80 | 2019-04-02 16:14:11 -0700 | [diff] [blame] | 76 | pctx.Import("android/soong/android") |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 77 | |
| 78 | pctx.HostBinToolVariable("parCmd", "soong_zip") |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 79 | pctx.HostBinToolVariable("mergeParCmd", "merge_zips") |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 80 | } |
| 81 | |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 82 | func registerBuildActionForParFile(ctx android.ModuleContext, embeddedLauncher bool, |
Nan Zhang | cba97e6 | 2018-09-26 15:14:10 -0700 | [diff] [blame] | 83 | launcherPath android.OptionalPath, interpreter, main, binName string, |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 84 | srcsZips android.Paths) android.Path { |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 85 | |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 86 | // .intermediate output path for bin executable. |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 87 | binFile := android.PathForModuleOut(ctx, binName) |
| 88 | |
| 89 | // implicit dependency for parFile build action. |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 90 | implicits := srcsZips |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 91 | |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 92 | if !embeddedLauncher { |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 93 | // the path of stub_template_host.txt from source tree. |
Liz Kammer | dd849a8 | 2020-06-12 16:38:45 -0700 | [diff] [blame] | 94 | template := android.PathForSource(ctx, StubTemplateHost) |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 95 | implicits = append(implicits, template) |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 96 | |
| 97 | // intermediate output path for __main__.py |
| 98 | stub := android.PathForModuleOut(ctx, mainFileName).String() |
| 99 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 100 | ctx.Build(pctx, android.BuildParams{ |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 101 | Rule: hostPar, |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 102 | Description: "host python archive", |
| 103 | Output: binFile, |
| 104 | Implicits: implicits, |
| 105 | Args: map[string]string{ |
Dan Willemsen | 263dde7 | 2018-11-15 19:15:02 -0800 | [diff] [blame] | 106 | "interp": strings.Replace(interpreter, "/", `\/`, -1), |
| 107 | "main": strings.Replace(main, "/", `\/`, -1), |
| 108 | "template": template.String(), |
| 109 | "stub": stub, |
| 110 | "srcsZips": strings.Join(srcsZips.Strings(), " "), |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 111 | }, |
| 112 | }) |
Nan Zhang | cba97e6 | 2018-09-26 15:14:10 -0700 | [diff] [blame] | 113 | } else if launcherPath.Valid() { |
Nan Zhang | 1db8540 | 2017-12-18 13:20:23 -0800 | [diff] [blame] | 114 | // added launcherPath to the implicits Ninja dependencies. |
Nan Zhang | cba97e6 | 2018-09-26 15:14:10 -0700 | [diff] [blame] | 115 | implicits = append(implicits, launcherPath.Path()) |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 116 | |
Dan Willemsen | 6ca390f | 2019-02-14 23:17:08 -0800 | [diff] [blame] | 117 | if main == "" { |
| 118 | ctx.Build(pctx, android.BuildParams{ |
| 119 | Rule: embeddedParNoMain, |
| 120 | Description: "embedded python archive", |
| 121 | Output: binFile, |
| 122 | Implicits: implicits, |
| 123 | Args: map[string]string{ |
| 124 | "srcsZips": strings.Join(srcsZips.Strings(), " "), |
| 125 | "launcher": launcherPath.String(), |
| 126 | }, |
| 127 | }) |
| 128 | } else { |
| 129 | ctx.Build(pctx, android.BuildParams{ |
| 130 | Rule: embeddedPar, |
| 131 | Description: "embedded python archive", |
| 132 | Output: binFile, |
| 133 | Implicits: implicits, |
| 134 | Args: map[string]string{ |
| 135 | "main": strings.Replace(strings.TrimSuffix(main, pyExt), "/", ".", -1), |
| 136 | "srcsZips": strings.Join(srcsZips.Strings(), " "), |
| 137 | "launcher": launcherPath.String(), |
| 138 | }, |
| 139 | }) |
| 140 | } |
Nan Zhang | d4e641b | 2017-07-12 12:55:28 -0700 | [diff] [blame] | 141 | } |
Nan Zhang | db0b9a3 | 2017-02-27 10:12:13 -0800 | [diff] [blame] | 142 | |
| 143 | return binFile |
| 144 | } |