blob: 1494688f0e702785056877b680ed6c3c1b271be4 [file] [log] [blame]
Dan Willemsen1e704462016-08-21 15:17:17 -07001// 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
15package build
16
17import (
Dan Willemsen29f88272017-02-18 18:12:41 -080018 "bufio"
Dan Willemsen1e704462016-08-21 15:17:17 -070019 "crypto/md5"
20 "fmt"
Dan Willemsen29f88272017-02-18 18:12:41 -080021 "io"
Dan Willemsen1e704462016-08-21 15:17:17 -070022 "io/ioutil"
Dan Willemsen1e704462016-08-21 15:17:17 -070023 "path/filepath"
Dan Willemsen29f88272017-02-18 18:12:41 -080024 "regexp"
Dan Willemsen1e704462016-08-21 15:17:17 -070025 "strconv"
26 "strings"
27)
28
29var spaceSlashReplacer = strings.NewReplacer("/", "_", " ", "_")
30
31// genKatiSuffix creates a suffix for kati-generated files so that we can cache
32// them based on their inputs. So this should encode all common changes to Kati
33// inputs. Currently that includes the TARGET_PRODUCT, kati-processed command
34// line arguments, and the directories specified by mm/mmm.
35func genKatiSuffix(ctx Context, config Config) {
36 katiSuffix := "-" + config.TargetProduct()
37 if args := config.KatiArgs(); len(args) > 0 {
38 katiSuffix += "-" + spaceSlashReplacer.Replace(strings.Join(args, "_"))
39 }
40 if oneShot, ok := config.Environment().Get("ONE_SHOT_MAKEFILE"); ok {
41 katiSuffix += "-" + spaceSlashReplacer.Replace(oneShot)
42 }
43
44 // If the suffix is too long, replace it with a md5 hash and write a
45 // file that contains the original suffix.
46 if len(katiSuffix) > 64 {
47 shortSuffix := "-" + fmt.Sprintf("%x", md5.Sum([]byte(katiSuffix)))
48 config.SetKatiSuffix(shortSuffix)
49
50 ctx.Verbosef("Kati ninja suffix too long: %q", katiSuffix)
51 ctx.Verbosef("Replacing with: %q", shortSuffix)
52
53 if err := ioutil.WriteFile(strings.TrimSuffix(config.KatiNinjaFile(), "ninja")+"suf", []byte(katiSuffix), 0777); err != nil {
54 ctx.Println("Error writing suffix file:", err)
55 }
56 } else {
57 config.SetKatiSuffix(katiSuffix)
58 }
59}
60
61func runKati(ctx Context, config Config) {
Dan Willemsen59fdf962017-07-24 22:26:54 -070062 genKatiSuffix(ctx, config)
63
64 runKatiCleanSpec(ctx, config)
65
Dan Willemsend9f6fa22016-08-21 15:17:17 -070066 ctx.BeginTrace("kati")
67 defer ctx.EndTrace()
68
Dan Willemsenf173d592017-04-27 14:28:00 -070069 executable := config.PrebuiltBuildTool("ckati")
Dan Willemsen1e704462016-08-21 15:17:17 -070070 args := []string{
71 "--ninja",
72 "--ninja_dir=" + config.OutDir(),
73 "--ninja_suffix=" + config.KatiSuffix(),
74 "--regen",
75 "--ignore_optional_include=" + filepath.Join(config.OutDir(), "%.P"),
76 "--detect_android_echo",
Dan Willemsenc38d3662017-02-24 10:53:23 -080077 "--color_warnings",
78 "--gen_all_targets",
Dan Willemsen418420e2017-05-30 14:07:45 -070079 "--werror_find_emulator",
Dan Willemsend368d6f2018-06-15 21:53:18 -070080 "--no_builtin_rules",
81 "--werror_suffix_rules",
Dan Willemsen75d2c172017-10-12 20:46:34 -070082 "--kati_stats",
Dan Willemsenb2e6c2e2017-07-13 17:24:44 -070083 "-f", "build/make/core/main.mk",
Dan Willemsen1e704462016-08-21 15:17:17 -070084 }
85
Dan Willemsenfa42f3c2018-06-15 21:54:47 -070086 // PDK builds still uses a few implicit rules
87 if !config.IsPdkBuild() {
88 args = append(args, "--warn_implicit_rules")
89 }
90
Dan Willemsen3d60b112018-04-04 22:25:56 -070091 if !config.BuildBrokenDupRules() {
92 args = append(args, "--werror_overriding_commands")
93 }
94
Dan Willemsen1e704462016-08-21 15:17:17 -070095 if !config.Environment().IsFalse("KATI_EMULATE_FIND") {
96 args = append(args, "--use_find_emulator")
97 }
98
Dan Willemsen1e704462016-08-21 15:17:17 -070099 args = append(args, config.KatiArgs()...)
100
101 args = append(args,
Dan Willemsen1e704462016-08-21 15:17:17 -0700102 "BUILDING_WITH_NINJA=true",
103 "SOONG_ANDROID_MK="+config.SoongAndroidMk(),
Dan Willemsen6ab79db2018-05-02 00:06:28 -0700104 "SOONG_MAKEVARS_MK="+config.SoongMakeVarsMk(),
105 "TARGET_DEVICE_DIR="+config.TargetDeviceDir())
Dan Willemsen1e704462016-08-21 15:17:17 -0700106
107 if config.UseGoma() {
108 args = append(args, "-j"+strconv.Itoa(config.Parallel()))
109 }
110
Dan Willemsen269a8c72017-05-03 17:15:47 -0700111 cmd := Command(ctx, config, "ckati", executable, args...)
112 cmd.Sandbox = katiSandbox
Dan Willemsen29f88272017-02-18 18:12:41 -0800113 pipe, err := cmd.StdoutPipe()
114 if err != nil {
115 ctx.Fatalln("Error getting output pipe for ckati:", err)
116 }
117 cmd.Stderr = cmd.Stdout
118
Dan Willemsen269a8c72017-05-03 17:15:47 -0700119 cmd.StartOrFatal()
Dan Willemsen29f88272017-02-18 18:12:41 -0800120 katiRewriteOutput(ctx, pipe)
Dan Willemsen269a8c72017-05-03 17:15:47 -0700121 cmd.WaitOrFatal()
Dan Willemsen1e704462016-08-21 15:17:17 -0700122}
Dan Willemsen29f88272017-02-18 18:12:41 -0800123
124var katiIncludeRe = regexp.MustCompile(`^(\[\d+/\d+] )?including [^ ]+ ...$`)
Dan Willemsen75d2c172017-10-12 20:46:34 -0700125var katiLogRe = regexp.MustCompile(`^\*kati\*: `)
Dan Willemsen29f88272017-02-18 18:12:41 -0800126
127func katiRewriteOutput(ctx Context, pipe io.ReadCloser) {
128 haveBlankLine := true
129 smartTerminal := ctx.IsTerminal()
Dan Willemsen0c518512018-01-09 02:09:52 -0800130 errSmartTerminal := ctx.IsErrTerminal()
Dan Willemsen29f88272017-02-18 18:12:41 -0800131
132 scanner := bufio.NewScanner(pipe)
133 for scanner.Scan() {
134 line := scanner.Text()
135 verbose := katiIncludeRe.MatchString(line)
136
Dan Willemsen75d2c172017-10-12 20:46:34 -0700137 // Only put kati debug/stat lines in our verbose log
138 if katiLogRe.MatchString(line) {
139 ctx.Verbose(line)
140 continue
141 }
142
Dan Willemsen29f88272017-02-18 18:12:41 -0800143 // For verbose lines, write them on the current line without a newline,
144 // then overwrite them if the next thing we're printing is another
145 // verbose line.
146 if smartTerminal && verbose {
147 // Limit line width to the terminal width, otherwise we'll wrap onto
148 // another line and we won't delete the previous line.
149 //
150 // Run this on every line in case the window has been resized while
151 // we're printing. This could be optimized to only re-run when we
152 // get SIGWINCH if it ever becomes too time consuming.
153 if max, ok := termWidth(ctx.Stdout()); ok {
154 if len(line) > max {
155 // Just do a max. Ninja elides the middle, but that's
156 // more complicated and these lines aren't that important.
157 line = line[:max]
158 }
159 }
160
161 // Move to the beginning on the line, print the output, then clear
162 // the rest of the line.
163 fmt.Fprint(ctx.Stdout(), "\r", line, "\x1b[K")
164 haveBlankLine = false
165 continue
166 } else if smartTerminal && !haveBlankLine {
167 // If we've previously written a verbose message, send a newline to save
168 // that message instead of overwriting it.
169 fmt.Fprintln(ctx.Stdout())
170 haveBlankLine = true
Dan Willemsen0c518512018-01-09 02:09:52 -0800171 } else if !errSmartTerminal {
Dan Willemsen29f88272017-02-18 18:12:41 -0800172 // Most editors display these as garbage, so strip them out.
173 line = string(stripAnsiEscapes([]byte(line)))
174 }
175
176 // Assume that non-verbose lines are important enough for stderr
177 fmt.Fprintln(ctx.Stderr(), line)
178 }
179
180 // Save our last verbose line.
181 if !haveBlankLine {
182 fmt.Fprintln(ctx.Stdout())
183 }
Dan Willemsend9429e62018-03-06 22:03:55 -0800184
185 if err := scanner.Err(); err != nil {
186 ctx.Println("Error from kati parser:", err)
187 io.Copy(ctx.Stderr(), pipe)
188 }
Dan Willemsen29f88272017-02-18 18:12:41 -0800189}
Dan Willemsen59fdf962017-07-24 22:26:54 -0700190
191func runKatiCleanSpec(ctx Context, config Config) {
192 ctx.BeginTrace("kati cleanspec")
193 defer ctx.EndTrace()
194
195 executable := config.PrebuiltBuildTool("ckati")
196 args := []string{
197 "--ninja",
198 "--ninja_dir=" + config.OutDir(),
199 "--ninja_suffix=" + config.KatiSuffix() + "-cleanspec",
200 "--regen",
201 "--detect_android_echo",
202 "--color_warnings",
203 "--gen_all_targets",
204 "--werror_find_emulator",
Dan Willemsen3d60b112018-04-04 22:25:56 -0700205 "--werror_overriding_commands",
Dan Willemsen59fdf962017-07-24 22:26:54 -0700206 "--use_find_emulator",
Dan Willemsen81759842018-05-01 23:34:56 -0700207 "--kati_stats",
Dan Willemsen59fdf962017-07-24 22:26:54 -0700208 "-f", "build/make/core/cleanbuild.mk",
209 "BUILDING_WITH_NINJA=true",
210 "SOONG_MAKEVARS_MK=" + config.SoongMakeVarsMk(),
Dan Willemsen6ab79db2018-05-02 00:06:28 -0700211 "TARGET_DEVICE_DIR=" + config.TargetDeviceDir(),
Dan Willemsen59fdf962017-07-24 22:26:54 -0700212 }
213
214 cmd := Command(ctx, config, "ckati", executable, args...)
215 cmd.Sandbox = katiCleanSpecSandbox
Dan Willemsen81759842018-05-01 23:34:56 -0700216 pipe, err := cmd.StdoutPipe()
217 if err != nil {
218 ctx.Fatalln("Error getting output pipe for ckati:", err)
219 }
220 cmd.Stderr = cmd.Stdout
Dan Willemsen59fdf962017-07-24 22:26:54 -0700221
Dan Willemsen81759842018-05-01 23:34:56 -0700222 cmd.StartOrFatal()
223 katiRewriteOutput(ctx, pipe)
224 cmd.WaitOrFatal()
Dan Willemsen59fdf962017-07-24 22:26:54 -0700225}