Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1 | // Copyright 2015 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 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 15 | package android |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 16 | |
| 17 | import ( |
Colin Cross | 6e18ca4 | 2015-07-14 18:55:36 -0700 | [diff] [blame] | 18 | "fmt" |
Colin Cross | 6a745c6 | 2015-06-16 16:38:10 -0700 | [diff] [blame] | 19 | "path/filepath" |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 20 | "reflect" |
Colin Cross | 5e6cfbe | 2017-11-03 15:20:35 -0700 | [diff] [blame] | 21 | "sort" |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 22 | "strings" |
| 23 | |
| 24 | "github.com/google/blueprint" |
| 25 | "github.com/google/blueprint/pathtools" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 26 | ) |
| 27 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 28 | // PathContext is the subset of a (Module|Singleton)Context required by the |
| 29 | // Path methods. |
| 30 | type PathContext interface { |
Colin Cross | 294941b | 2017-02-01 14:10:36 -0800 | [diff] [blame] | 31 | Fs() pathtools.FileSystem |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 32 | Config() Config |
Dan Willemsen | 7b310ee | 2015-12-18 15:11:17 -0800 | [diff] [blame] | 33 | AddNinjaFileDeps(deps ...string) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 34 | } |
| 35 | |
Colin Cross | 7f19f37 | 2016-11-01 11:10:25 -0700 | [diff] [blame] | 36 | type PathGlobContext interface { |
| 37 | GlobWithDeps(globPattern string, excludes []string) ([]string, error) |
| 38 | } |
| 39 | |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 40 | var _ PathContext = SingletonContext(nil) |
| 41 | var _ PathContext = ModuleContext(nil) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 42 | |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 43 | type ModuleInstallPathContext interface { |
| 44 | PathContext |
| 45 | |
| 46 | androidBaseContext |
| 47 | |
| 48 | InstallInData() bool |
| 49 | InstallInSanitizerDir() bool |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 50 | InstallInRecovery() bool |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | var _ ModuleInstallPathContext = ModuleContext(nil) |
| 54 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 55 | // errorfContext is the interface containing the Errorf method matching the |
| 56 | // Errorf method in blueprint.SingletonContext. |
| 57 | type errorfContext interface { |
| 58 | Errorf(format string, args ...interface{}) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 59 | } |
| 60 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 61 | var _ errorfContext = blueprint.SingletonContext(nil) |
| 62 | |
| 63 | // moduleErrorf is the interface containing the ModuleErrorf method matching |
| 64 | // the ModuleErrorf method in blueprint.ModuleContext. |
| 65 | type moduleErrorf interface { |
| 66 | ModuleErrorf(format string, args ...interface{}) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 67 | } |
| 68 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 69 | var _ moduleErrorf = blueprint.ModuleContext(nil) |
| 70 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 71 | // reportPathError will register an error with the attached context. It |
| 72 | // attempts ctx.ModuleErrorf for a better error message first, then falls |
| 73 | // back to ctx.Errorf. |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 74 | func reportPathError(ctx PathContext, err error) { |
| 75 | reportPathErrorf(ctx, "%s", err.Error()) |
| 76 | } |
| 77 | |
| 78 | // reportPathErrorf will register an error with the attached context. It |
| 79 | // attempts ctx.ModuleErrorf for a better error message first, then falls |
| 80 | // back to ctx.Errorf. |
| 81 | func reportPathErrorf(ctx PathContext, format string, args ...interface{}) { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 82 | if mctx, ok := ctx.(moduleErrorf); ok { |
| 83 | mctx.ModuleErrorf(format, args...) |
| 84 | } else if ectx, ok := ctx.(errorfContext); ok { |
| 85 | ectx.Errorf(format, args...) |
| 86 | } else { |
| 87 | panic(fmt.Sprintf(format, args...)) |
Colin Cross | f229827 | 2015-05-12 11:36:53 -0700 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 91 | type Path interface { |
| 92 | // Returns the path in string form |
| 93 | String() string |
| 94 | |
Colin Cross | 4f6fc9c | 2016-10-26 10:05:25 -0700 | [diff] [blame] | 95 | // Ext returns the extension of the last element of the path |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 96 | Ext() string |
Colin Cross | 4f6fc9c | 2016-10-26 10:05:25 -0700 | [diff] [blame] | 97 | |
| 98 | // Base returns the last element of the path |
| 99 | Base() string |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 100 | |
| 101 | // Rel returns the portion of the path relative to the directory it was created from. For |
| 102 | // example, Rel on a PathsForModuleSrc would return the path relative to the module source |
Colin Cross | 0db5568 | 2017-12-05 15:36:55 -0800 | [diff] [blame] | 103 | // directory, and OutputPath.Join("foo").Rel() would return "foo". |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 104 | Rel() string |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | // WritablePath is a type of path that can be used as an output for build rules. |
| 108 | type WritablePath interface { |
| 109 | Path |
| 110 | |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 111 | // the writablePath method doesn't directly do anything, |
| 112 | // but it allows a struct to distinguish between whether or not it implements the WritablePath interface |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 113 | writablePath() |
| 114 | } |
| 115 | |
| 116 | type genPathProvider interface { |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 117 | genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 118 | } |
| 119 | type objPathProvider interface { |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 120 | objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 121 | } |
| 122 | type resPathProvider interface { |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 123 | resPathWithName(ctx ModuleContext, name string) ModuleResPath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | // GenPathWithExt derives a new file path in ctx's generated sources directory |
| 127 | // from the current path, but with the new extension. |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 128 | func GenPathWithExt(ctx ModuleContext, subdir string, p Path, ext string) ModuleGenPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 129 | if path, ok := p.(genPathProvider); ok { |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 130 | return path.genPathWithExt(ctx, subdir, ext) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 131 | } |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 132 | reportPathErrorf(ctx, "Tried to create generated file from unsupported path: %s(%s)", reflect.TypeOf(p).Name(), p) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 133 | return PathForModuleGen(ctx) |
| 134 | } |
| 135 | |
| 136 | // ObjPathWithExt derives a new file path in ctx's object directory from the |
| 137 | // current path, but with the new extension. |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 138 | func ObjPathWithExt(ctx ModuleContext, subdir string, p Path, ext string) ModuleObjPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 139 | if path, ok := p.(objPathProvider); ok { |
| 140 | return path.objPathWithExt(ctx, subdir, ext) |
| 141 | } |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 142 | reportPathErrorf(ctx, "Tried to create object file from unsupported path: %s (%s)", reflect.TypeOf(p).Name(), p) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 143 | return PathForModuleObj(ctx) |
| 144 | } |
| 145 | |
| 146 | // ResPathWithName derives a new path in ctx's output resource directory, using |
| 147 | // the current path to create the directory name, and the `name` argument for |
| 148 | // the filename. |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 149 | func ResPathWithName(ctx ModuleContext, p Path, name string) ModuleResPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 150 | if path, ok := p.(resPathProvider); ok { |
| 151 | return path.resPathWithName(ctx, name) |
| 152 | } |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 153 | reportPathErrorf(ctx, "Tried to create res file from unsupported path: %s (%s)", reflect.TypeOf(p).Name(), p) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 154 | return PathForModuleRes(ctx) |
| 155 | } |
| 156 | |
| 157 | // OptionalPath is a container that may or may not contain a valid Path. |
| 158 | type OptionalPath struct { |
| 159 | valid bool |
| 160 | path Path |
| 161 | } |
| 162 | |
| 163 | // OptionalPathForPath returns an OptionalPath containing the path. |
| 164 | func OptionalPathForPath(path Path) OptionalPath { |
| 165 | if path == nil { |
| 166 | return OptionalPath{} |
| 167 | } |
| 168 | return OptionalPath{valid: true, path: path} |
| 169 | } |
| 170 | |
| 171 | // Valid returns whether there is a valid path |
| 172 | func (p OptionalPath) Valid() bool { |
| 173 | return p.valid |
| 174 | } |
| 175 | |
| 176 | // Path returns the Path embedded in this OptionalPath. You must be sure that |
| 177 | // there is a valid path, since this method will panic if there is not. |
| 178 | func (p OptionalPath) Path() Path { |
| 179 | if !p.valid { |
| 180 | panic("Requesting an invalid path") |
| 181 | } |
| 182 | return p.path |
| 183 | } |
| 184 | |
| 185 | // String returns the string version of the Path, or "" if it isn't valid. |
| 186 | func (p OptionalPath) String() string { |
| 187 | if p.valid { |
| 188 | return p.path.String() |
| 189 | } else { |
| 190 | return "" |
Colin Cross | f229827 | 2015-05-12 11:36:53 -0700 | [diff] [blame] | 191 | } |
| 192 | } |
Colin Cross | 6e18ca4 | 2015-07-14 18:55:36 -0700 | [diff] [blame] | 193 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 194 | // Paths is a slice of Path objects, with helpers to operate on the collection. |
| 195 | type Paths []Path |
| 196 | |
| 197 | // PathsForSource returns Paths rooted from SrcDir |
| 198 | func PathsForSource(ctx PathContext, paths []string) Paths { |
| 199 | ret := make(Paths, len(paths)) |
| 200 | for i, path := range paths { |
| 201 | ret[i] = PathForSource(ctx, path) |
| 202 | } |
| 203 | return ret |
| 204 | } |
| 205 | |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 206 | // ExistentPathsForSources returns a list of Paths rooted from SrcDir that are |
Dan Willemsen | 7b310ee | 2015-12-18 15:11:17 -0800 | [diff] [blame] | 207 | // found in the tree. If any are not found, they are omitted from the list, |
| 208 | // and dependencies are added so that we're re-run when they are added. |
Colin Cross | 32f3898 | 2018-02-22 11:47:25 -0800 | [diff] [blame] | 209 | func ExistentPathsForSources(ctx PathContext, paths []string) Paths { |
Dan Willemsen | 7b310ee | 2015-12-18 15:11:17 -0800 | [diff] [blame] | 210 | ret := make(Paths, 0, len(paths)) |
| 211 | for _, path := range paths { |
Colin Cross | 32f3898 | 2018-02-22 11:47:25 -0800 | [diff] [blame] | 212 | p := ExistentPathForSource(ctx, path) |
Dan Willemsen | 7b310ee | 2015-12-18 15:11:17 -0800 | [diff] [blame] | 213 | if p.Valid() { |
| 214 | ret = append(ret, p.Path()) |
| 215 | } |
| 216 | } |
| 217 | return ret |
| 218 | } |
| 219 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 220 | // PathsForModuleSrc returns Paths rooted from the module's local source |
| 221 | // directory |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 222 | func PathsForModuleSrc(ctx ModuleContext, paths []string) Paths { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 223 | ret := make(Paths, len(paths)) |
| 224 | for i, path := range paths { |
| 225 | ret[i] = PathForModuleSrc(ctx, path) |
| 226 | } |
| 227 | return ret |
| 228 | } |
| 229 | |
| 230 | // pathsForModuleSrcFromFullPath returns Paths rooted from the module's local |
| 231 | // source directory, but strip the local source directory from the beginning of |
Dan Willemsen | 540a78c | 2018-02-26 21:50:08 -0800 | [diff] [blame] | 232 | // each string. If incDirs is false, strip paths with a trailing '/' from the list. |
| 233 | func pathsForModuleSrcFromFullPath(ctx ModuleContext, paths []string, incDirs bool) Paths { |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 234 | prefix := filepath.Join(ctx.Config().srcDir, ctx.ModuleDir()) + "/" |
Colin Cross | 0f37af0 | 2017-09-27 17:42:05 -0700 | [diff] [blame] | 235 | if prefix == "./" { |
| 236 | prefix = "" |
| 237 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 238 | ret := make(Paths, 0, len(paths)) |
| 239 | for _, p := range paths { |
Dan Willemsen | 540a78c | 2018-02-26 21:50:08 -0800 | [diff] [blame] | 240 | if !incDirs && strings.HasSuffix(p, "/") { |
| 241 | continue |
| 242 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 243 | path := filepath.Clean(p) |
| 244 | if !strings.HasPrefix(path, prefix) { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 245 | reportPathErrorf(ctx, "Path '%s' is not in module source directory '%s'", p, prefix) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 246 | continue |
| 247 | } |
| 248 | ret = append(ret, PathForModuleSrc(ctx, path[len(prefix):])) |
| 249 | } |
| 250 | return ret |
| 251 | } |
| 252 | |
| 253 | // PathsWithOptionalDefaultForModuleSrc returns Paths rooted from the module's |
| 254 | // local source directory. If none are provided, use the default if it exists. |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 255 | func PathsWithOptionalDefaultForModuleSrc(ctx ModuleContext, input []string, def string) Paths { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 256 | if len(input) > 0 { |
| 257 | return PathsForModuleSrc(ctx, input) |
| 258 | } |
| 259 | // Use Glob so that if the default doesn't exist, a dependency is added so that when it |
| 260 | // is created, we're run again. |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 261 | path := filepath.Join(ctx.Config().srcDir, ctx.ModuleDir(), def) |
Colin Cross | 461b445 | 2018-02-23 09:22:42 -0800 | [diff] [blame] | 262 | return ctx.Glob(path, nil) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | // Strings returns the Paths in string form |
| 266 | func (p Paths) Strings() []string { |
| 267 | if p == nil { |
| 268 | return nil |
| 269 | } |
| 270 | ret := make([]string, len(p)) |
| 271 | for i, path := range p { |
| 272 | ret[i] = path.String() |
| 273 | } |
| 274 | return ret |
| 275 | } |
| 276 | |
Colin Cross | b671544 | 2017-10-24 11:13:31 -0700 | [diff] [blame] | 277 | // FirstUniquePaths returns all unique elements of a Paths, keeping the first copy of each. It |
| 278 | // modifies the Paths slice contents in place, and returns a subslice of the original slice. |
Dan Willemsen | fe92c96 | 2017-08-29 12:28:37 -0700 | [diff] [blame] | 279 | func FirstUniquePaths(list Paths) Paths { |
| 280 | k := 0 |
| 281 | outer: |
| 282 | for i := 0; i < len(list); i++ { |
| 283 | for j := 0; j < k; j++ { |
| 284 | if list[i] == list[j] { |
| 285 | continue outer |
| 286 | } |
| 287 | } |
| 288 | list[k] = list[i] |
| 289 | k++ |
| 290 | } |
| 291 | return list[:k] |
| 292 | } |
| 293 | |
Colin Cross | b671544 | 2017-10-24 11:13:31 -0700 | [diff] [blame] | 294 | // LastUniquePaths returns all unique elements of a Paths, keeping the last copy of each. It |
| 295 | // modifies the Paths slice contents in place, and returns a subslice of the original slice. |
| 296 | func LastUniquePaths(list Paths) Paths { |
| 297 | totalSkip := 0 |
| 298 | for i := len(list) - 1; i >= totalSkip; i-- { |
| 299 | skip := 0 |
| 300 | for j := i - 1; j >= totalSkip; j-- { |
| 301 | if list[i] == list[j] { |
| 302 | skip++ |
| 303 | } else { |
| 304 | list[j+skip] = list[j] |
| 305 | } |
| 306 | } |
| 307 | totalSkip += skip |
| 308 | } |
| 309 | return list[totalSkip:] |
| 310 | } |
| 311 | |
Colin Cross | a140bb0 | 2018-04-17 10:52:26 -0700 | [diff] [blame] | 312 | // ReversePaths returns a copy of a Paths in reverse order. |
| 313 | func ReversePaths(list Paths) Paths { |
| 314 | if list == nil { |
| 315 | return nil |
| 316 | } |
| 317 | ret := make(Paths, len(list)) |
| 318 | for i := range list { |
| 319 | ret[i] = list[len(list)-1-i] |
| 320 | } |
| 321 | return ret |
| 322 | } |
| 323 | |
Jeff Gaston | 294356f | 2017-09-27 17:05:30 -0700 | [diff] [blame] | 324 | func indexPathList(s Path, list []Path) int { |
| 325 | for i, l := range list { |
| 326 | if l == s { |
| 327 | return i |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | return -1 |
| 332 | } |
| 333 | |
| 334 | func inPathList(p Path, list []Path) bool { |
| 335 | return indexPathList(p, list) != -1 |
| 336 | } |
| 337 | |
| 338 | func FilterPathList(list []Path, filter []Path) (remainder []Path, filtered []Path) { |
| 339 | for _, l := range list { |
| 340 | if inPathList(l, filter) { |
| 341 | filtered = append(filtered, l) |
| 342 | } else { |
| 343 | remainder = append(remainder, l) |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | return |
| 348 | } |
| 349 | |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 350 | // HasExt returns true of any of the paths have extension ext, otherwise false |
| 351 | func (p Paths) HasExt(ext string) bool { |
| 352 | for _, path := range p { |
| 353 | if path.Ext() == ext { |
| 354 | return true |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | return false |
| 359 | } |
| 360 | |
| 361 | // FilterByExt returns the subset of the paths that have extension ext |
| 362 | func (p Paths) FilterByExt(ext string) Paths { |
| 363 | ret := make(Paths, 0, len(p)) |
| 364 | for _, path := range p { |
| 365 | if path.Ext() == ext { |
| 366 | ret = append(ret, path) |
| 367 | } |
| 368 | } |
| 369 | return ret |
| 370 | } |
| 371 | |
| 372 | // FilterOutByExt returns the subset of the paths that do not have extension ext |
| 373 | func (p Paths) FilterOutByExt(ext string) Paths { |
| 374 | ret := make(Paths, 0, len(p)) |
| 375 | for _, path := range p { |
| 376 | if path.Ext() != ext { |
| 377 | ret = append(ret, path) |
| 378 | } |
| 379 | } |
| 380 | return ret |
| 381 | } |
| 382 | |
Colin Cross | 5e6cfbe | 2017-11-03 15:20:35 -0700 | [diff] [blame] | 383 | // DirectorySortedPaths is a slice of paths that are sorted such that all files in a directory |
| 384 | // (including subdirectories) are in a contiguous subslice of the list, and can be found in |
| 385 | // O(log(N)) time using a binary search on the directory prefix. |
| 386 | type DirectorySortedPaths Paths |
| 387 | |
| 388 | func PathsToDirectorySortedPaths(paths Paths) DirectorySortedPaths { |
| 389 | ret := append(DirectorySortedPaths(nil), paths...) |
| 390 | sort.Slice(ret, func(i, j int) bool { |
| 391 | return ret[i].String() < ret[j].String() |
| 392 | }) |
| 393 | return ret |
| 394 | } |
| 395 | |
| 396 | // PathsInDirectory returns a subslice of the DirectorySortedPaths as a Paths that contains all entries |
| 397 | // that are in the specified directory and its subdirectories. |
| 398 | func (p DirectorySortedPaths) PathsInDirectory(dir string) Paths { |
| 399 | prefix := filepath.Clean(dir) + "/" |
| 400 | start := sort.Search(len(p), func(i int) bool { |
| 401 | return prefix < p[i].String() |
| 402 | }) |
| 403 | |
| 404 | ret := p[start:] |
| 405 | |
| 406 | end := sort.Search(len(ret), func(i int) bool { |
| 407 | return !strings.HasPrefix(ret[i].String(), prefix) |
| 408 | }) |
| 409 | |
| 410 | ret = ret[:end] |
| 411 | |
| 412 | return Paths(ret) |
| 413 | } |
| 414 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 415 | // WritablePaths is a slice of WritablePaths, used for multiple outputs. |
| 416 | type WritablePaths []WritablePath |
| 417 | |
| 418 | // Strings returns the string forms of the writable paths. |
| 419 | func (p WritablePaths) Strings() []string { |
| 420 | if p == nil { |
| 421 | return nil |
| 422 | } |
| 423 | ret := make([]string, len(p)) |
| 424 | for i, path := range p { |
| 425 | ret[i] = path.String() |
| 426 | } |
| 427 | return ret |
| 428 | } |
| 429 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 430 | // Paths returns the WritablePaths as a Paths |
| 431 | func (p WritablePaths) Paths() Paths { |
| 432 | if p == nil { |
| 433 | return nil |
| 434 | } |
| 435 | ret := make(Paths, len(p)) |
| 436 | for i, path := range p { |
| 437 | ret[i] = path |
| 438 | } |
| 439 | return ret |
| 440 | } |
| 441 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 442 | type basePath struct { |
| 443 | path string |
| 444 | config Config |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 445 | rel string |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | func (p basePath) Ext() string { |
| 449 | return filepath.Ext(p.path) |
| 450 | } |
| 451 | |
Colin Cross | 4f6fc9c | 2016-10-26 10:05:25 -0700 | [diff] [blame] | 452 | func (p basePath) Base() string { |
| 453 | return filepath.Base(p.path) |
| 454 | } |
| 455 | |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 456 | func (p basePath) Rel() string { |
| 457 | if p.rel != "" { |
| 458 | return p.rel |
| 459 | } |
| 460 | return p.path |
| 461 | } |
| 462 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 463 | func (p basePath) String() string { |
| 464 | return p.path |
| 465 | } |
| 466 | |
Colin Cross | 0db5568 | 2017-12-05 15:36:55 -0800 | [diff] [blame] | 467 | func (p basePath) withRel(rel string) basePath { |
| 468 | p.path = filepath.Join(p.path, rel) |
| 469 | p.rel = rel |
| 470 | return p |
| 471 | } |
| 472 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 473 | // SourcePath is a Path representing a file path rooted from SrcDir |
| 474 | type SourcePath struct { |
| 475 | basePath |
| 476 | } |
| 477 | |
| 478 | var _ Path = SourcePath{} |
| 479 | |
Colin Cross | 0db5568 | 2017-12-05 15:36:55 -0800 | [diff] [blame] | 480 | func (p SourcePath) withRel(rel string) SourcePath { |
| 481 | p.basePath = p.basePath.withRel(rel) |
| 482 | return p |
| 483 | } |
| 484 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 485 | // safePathForSource is for paths that we expect are safe -- only for use by go |
| 486 | // code that is embedding ninja variables in paths |
| 487 | func safePathForSource(ctx PathContext, path string) SourcePath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 488 | p, err := validateSafePath(path) |
| 489 | if err != nil { |
| 490 | reportPathError(ctx, err) |
| 491 | } |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 492 | ret := SourcePath{basePath{p, ctx.Config(), ""}} |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 493 | |
| 494 | abs, err := filepath.Abs(ret.String()) |
Colin Cross | 6e18ca4 | 2015-07-14 18:55:36 -0700 | [diff] [blame] | 495 | if err != nil { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 496 | reportPathError(ctx, err) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 497 | return ret |
| 498 | } |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 499 | buildroot, err := filepath.Abs(ctx.Config().buildDir) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 500 | if err != nil { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 501 | reportPathError(ctx, err) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 502 | return ret |
| 503 | } |
| 504 | if strings.HasPrefix(abs, buildroot) { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 505 | reportPathErrorf(ctx, "source path %s is in output", abs) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 506 | return ret |
Colin Cross | 6e18ca4 | 2015-07-14 18:55:36 -0700 | [diff] [blame] | 507 | } |
| 508 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 509 | return ret |
| 510 | } |
| 511 | |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 512 | // pathForSource creates a SourcePath from pathComponents, but does not check that it exists. |
| 513 | func pathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) { |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 514 | p, err := validatePath(pathComponents...) |
| 515 | ret := SourcePath{basePath{p, ctx.Config(), ""}} |
Colin Cross | 94a3210 | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 516 | if err != nil { |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 517 | return ret, err |
Colin Cross | 94a3210 | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 518 | } |
| 519 | |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 520 | abs, err := filepath.Abs(ret.String()) |
| 521 | if err != nil { |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 522 | return ret, err |
Colin Cross | 94a3210 | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 523 | } |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 524 | buildroot, err := filepath.Abs(ctx.Config().buildDir) |
| 525 | if err != nil { |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 526 | return ret, err |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 527 | } |
| 528 | if strings.HasPrefix(abs, buildroot) { |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 529 | return ret, fmt.Errorf("source path %s is in output", abs) |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 530 | } |
| 531 | |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 532 | if pathtools.IsGlob(ret.String()) { |
| 533 | return ret, fmt.Errorf("path may not contain a glob: %s", ret.String()) |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 534 | } |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 535 | |
| 536 | return ret, nil |
| 537 | } |
| 538 | |
| 539 | // existsWithDependencies returns true if the path exists, and adds appropriate dependencies to rerun if the |
| 540 | // path does not exist. |
| 541 | func existsWithDependencies(ctx PathContext, path SourcePath) (exists bool, err error) { |
| 542 | var files []string |
| 543 | |
| 544 | if gctx, ok := ctx.(PathGlobContext); ok { |
| 545 | // Use glob to produce proper dependencies, even though we only want |
| 546 | // a single file. |
| 547 | files, err = gctx.GlobWithDeps(path.String(), nil) |
| 548 | } else { |
| 549 | var deps []string |
| 550 | // We cannot add build statements in this context, so we fall back to |
| 551 | // AddNinjaFileDeps |
| 552 | files, deps, err = pathtools.Glob(path.String(), nil) |
| 553 | ctx.AddNinjaFileDeps(deps...) |
| 554 | } |
| 555 | |
| 556 | if err != nil { |
| 557 | return false, fmt.Errorf("glob: %s", err.Error()) |
| 558 | } |
| 559 | |
| 560 | return len(files) > 0, nil |
| 561 | } |
| 562 | |
| 563 | // PathForSource joins the provided path components and validates that the result |
| 564 | // neither escapes the source dir nor is in the out dir. |
| 565 | // On error, it will return a usable, but invalid SourcePath, and report a ModuleError. |
| 566 | func PathForSource(ctx PathContext, pathComponents ...string) SourcePath { |
| 567 | path, err := pathForSource(ctx, pathComponents...) |
| 568 | if err != nil { |
| 569 | reportPathError(ctx, err) |
| 570 | } |
| 571 | |
| 572 | if modCtx, ok := ctx.(ModuleContext); ok && ctx.Config().AllowMissingDependencies() { |
| 573 | exists, err := existsWithDependencies(ctx, path) |
| 574 | if err != nil { |
| 575 | reportPathError(ctx, err) |
| 576 | } |
| 577 | if !exists { |
| 578 | modCtx.AddMissingDependencies([]string{path.String()}) |
| 579 | } |
| 580 | } else if exists, _, err := ctx.Fs().Exists(path.String()); err != nil { |
| 581 | reportPathErrorf(ctx, "%s: %s", path, err.Error()) |
| 582 | } else if !exists { |
| 583 | reportPathErrorf(ctx, "source path %s does not exist", path) |
| 584 | } |
| 585 | return path |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 586 | } |
| 587 | |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 588 | // ExistentPathForSource returns an OptionalPath with the SourcePath if the |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 589 | // path exists, or an empty OptionalPath if it doesn't exist. Dependencies are added |
| 590 | // so that the ninja file will be regenerated if the state of the path changes. |
Colin Cross | 32f3898 | 2018-02-22 11:47:25 -0800 | [diff] [blame] | 591 | func ExistentPathForSource(ctx PathContext, pathComponents ...string) OptionalPath { |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 592 | path, err := pathForSource(ctx, pathComponents...) |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 593 | if err != nil { |
| 594 | reportPathError(ctx, err) |
| 595 | return OptionalPath{} |
| 596 | } |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 597 | |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 598 | exists, err := existsWithDependencies(ctx, path) |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 599 | if err != nil { |
| 600 | reportPathError(ctx, err) |
| 601 | return OptionalPath{} |
| 602 | } |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 603 | if !exists { |
Colin Cross | c48c143 | 2018-02-23 07:09:01 +0000 | [diff] [blame] | 604 | return OptionalPath{} |
| 605 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 606 | return OptionalPathForPath(path) |
| 607 | } |
| 608 | |
| 609 | func (p SourcePath) String() string { |
| 610 | return filepath.Join(p.config.srcDir, p.path) |
| 611 | } |
| 612 | |
| 613 | // Join creates a new SourcePath with paths... joined with the current path. The |
| 614 | // provided paths... may not use '..' to escape from the current path. |
| 615 | func (p SourcePath) Join(ctx PathContext, paths ...string) SourcePath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 616 | path, err := validatePath(paths...) |
| 617 | if err != nil { |
| 618 | reportPathError(ctx, err) |
| 619 | } |
Colin Cross | 0db5568 | 2017-12-05 15:36:55 -0800 | [diff] [blame] | 620 | return p.withRel(path) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | // OverlayPath returns the overlay for `path' if it exists. This assumes that the |
| 624 | // SourcePath is the path to a resource overlay directory. |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 625 | func (p SourcePath) OverlayPath(ctx ModuleContext, path Path) OptionalPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 626 | var relDir string |
| 627 | if moduleSrcPath, ok := path.(ModuleSrcPath); ok { |
Colin Cross | 7fc17db | 2017-02-01 14:07:55 -0800 | [diff] [blame] | 628 | relDir = moduleSrcPath.path |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 629 | } else if srcPath, ok := path.(SourcePath); ok { |
| 630 | relDir = srcPath.path |
| 631 | } else { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 632 | reportPathErrorf(ctx, "Cannot find relative path for %s(%s)", reflect.TypeOf(path).Name(), path) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 633 | return OptionalPath{} |
| 634 | } |
| 635 | dir := filepath.Join(p.config.srcDir, p.path, relDir) |
| 636 | // Use Glob so that we are run again if the directory is added. |
Colin Cross | 7f19f37 | 2016-11-01 11:10:25 -0700 | [diff] [blame] | 637 | if pathtools.IsGlob(dir) { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 638 | reportPathErrorf(ctx, "Path may not contain a glob: %s", dir) |
Dan Willemsen | 7b310ee | 2015-12-18 15:11:17 -0800 | [diff] [blame] | 639 | } |
Colin Cross | 461b445 | 2018-02-23 09:22:42 -0800 | [diff] [blame] | 640 | paths, err := ctx.GlobWithDeps(dir, nil) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 641 | if err != nil { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 642 | reportPathErrorf(ctx, "glob: %s", err.Error()) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 643 | return OptionalPath{} |
| 644 | } |
| 645 | if len(paths) == 0 { |
| 646 | return OptionalPath{} |
| 647 | } |
| 648 | relPath, err := filepath.Rel(p.config.srcDir, paths[0]) |
| 649 | if err != nil { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 650 | reportPathError(ctx, err) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 651 | return OptionalPath{} |
| 652 | } |
| 653 | return OptionalPathForPath(PathForSource(ctx, relPath)) |
| 654 | } |
| 655 | |
| 656 | // OutputPath is a Path representing a file path rooted from the build directory |
| 657 | type OutputPath struct { |
| 658 | basePath |
| 659 | } |
| 660 | |
Colin Cross | 702e0f8 | 2017-10-18 17:27:54 -0700 | [diff] [blame] | 661 | func (p OutputPath) withRel(rel string) OutputPath { |
Colin Cross | 0db5568 | 2017-12-05 15:36:55 -0800 | [diff] [blame] | 662 | p.basePath = p.basePath.withRel(rel) |
Colin Cross | 702e0f8 | 2017-10-18 17:27:54 -0700 | [diff] [blame] | 663 | return p |
| 664 | } |
| 665 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 666 | var _ Path = OutputPath{} |
| 667 | |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 668 | // PathForOutput joins the provided paths and returns an OutputPath that is |
| 669 | // validated to not escape the build dir. |
| 670 | // On error, it will return a usable, but invalid OutputPath, and report a ModuleError. |
| 671 | func PathForOutput(ctx PathContext, pathComponents ...string) OutputPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 672 | path, err := validatePath(pathComponents...) |
| 673 | if err != nil { |
| 674 | reportPathError(ctx, err) |
| 675 | } |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 676 | return OutputPath{basePath{path, ctx.Config(), ""}} |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | func (p OutputPath) writablePath() {} |
| 680 | |
| 681 | func (p OutputPath) String() string { |
| 682 | return filepath.Join(p.config.buildDir, p.path) |
| 683 | } |
| 684 | |
Colin Cross | a234466 | 2016-03-24 13:14:12 -0700 | [diff] [blame] | 685 | func (p OutputPath) RelPathString() string { |
| 686 | return p.path |
| 687 | } |
| 688 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 689 | // Join creates a new OutputPath with paths... joined with the current path. The |
| 690 | // provided paths... may not use '..' to escape from the current path. |
| 691 | func (p OutputPath) Join(ctx PathContext, paths ...string) OutputPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 692 | path, err := validatePath(paths...) |
| 693 | if err != nil { |
| 694 | reportPathError(ctx, err) |
| 695 | } |
Colin Cross | 0db5568 | 2017-12-05 15:36:55 -0800 | [diff] [blame] | 696 | return p.withRel(path) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | // PathForIntermediates returns an OutputPath representing the top-level |
| 700 | // intermediates directory. |
| 701 | func PathForIntermediates(ctx PathContext, paths ...string) OutputPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 702 | path, err := validatePath(paths...) |
| 703 | if err != nil { |
| 704 | reportPathError(ctx, err) |
| 705 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 706 | return PathForOutput(ctx, ".intermediates", path) |
| 707 | } |
| 708 | |
Dan Willemsen | bc0c509 | 2018-03-10 16:25:53 -0800 | [diff] [blame] | 709 | // DistPath is a Path representing a file path rooted from the dist directory |
| 710 | type DistPath struct { |
| 711 | basePath |
| 712 | } |
| 713 | |
| 714 | func (p DistPath) withRel(rel string) DistPath { |
| 715 | p.basePath = p.basePath.withRel(rel) |
| 716 | return p |
| 717 | } |
| 718 | |
| 719 | var _ Path = DistPath{} |
| 720 | |
| 721 | // PathForDist joins the provided paths and returns a DistPath that is |
| 722 | // validated to not escape the dist dir. |
| 723 | // On error, it will return a usable, but invalid DistPath, and report a ModuleError. |
| 724 | func PathForDist(ctx PathContext, pathComponents ...string) DistPath { |
| 725 | path, err := validatePath(pathComponents...) |
| 726 | if err != nil { |
| 727 | reportPathError(ctx, err) |
| 728 | } |
| 729 | return DistPath{basePath{path, ctx.Config(), ""}} |
| 730 | } |
| 731 | |
| 732 | func (p DistPath) writablePath() {} |
| 733 | |
| 734 | func (p DistPath) Valid() bool { |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 735 | return p.config.productVariables.DistDir != nil && *p.config.productVariables.DistDir != "" |
Dan Willemsen | bc0c509 | 2018-03-10 16:25:53 -0800 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | func (p DistPath) String() string { |
| 739 | if !p.Valid() { |
| 740 | panic("Requesting an invalid path") |
| 741 | } |
Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 742 | return filepath.Join(*p.config.productVariables.DistDir, p.path) |
Dan Willemsen | bc0c509 | 2018-03-10 16:25:53 -0800 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | func (p DistPath) RelPathString() string { |
| 746 | return p.path |
| 747 | } |
| 748 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 749 | // ModuleSrcPath is a Path representing a file rooted from a module's local source dir |
| 750 | type ModuleSrcPath struct { |
Colin Cross | 7fc17db | 2017-02-01 14:07:55 -0800 | [diff] [blame] | 751 | SourcePath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | var _ Path = ModuleSrcPath{} |
| 755 | var _ genPathProvider = ModuleSrcPath{} |
| 756 | var _ objPathProvider = ModuleSrcPath{} |
| 757 | var _ resPathProvider = ModuleSrcPath{} |
| 758 | |
| 759 | // PathForModuleSrc returns a ModuleSrcPath representing the paths... under the |
| 760 | // module's local source directory. |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 761 | func PathForModuleSrc(ctx ModuleContext, paths ...string) ModuleSrcPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 762 | p, err := validatePath(paths...) |
| 763 | if err != nil { |
| 764 | reportPathError(ctx, err) |
| 765 | } |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 766 | |
| 767 | srcPath, err := pathForSource(ctx, ctx.ModuleDir(), p) |
| 768 | if err != nil { |
| 769 | reportPathError(ctx, err) |
| 770 | } |
| 771 | |
| 772 | path := ModuleSrcPath{srcPath} |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 773 | path.basePath.rel = p |
Colin Cross | 192e97a | 2018-02-22 14:21:02 -0800 | [diff] [blame] | 774 | |
| 775 | if exists, _, err := ctx.Fs().Exists(path.String()); err != nil { |
| 776 | reportPathErrorf(ctx, "%s: %s", path, err.Error()) |
| 777 | } else if !exists { |
| 778 | reportPathErrorf(ctx, "module source path %s does not exist", path) |
| 779 | } |
| 780 | |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 781 | return path |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | // OptionalPathForModuleSrc returns an OptionalPath. The OptionalPath contains a |
| 785 | // valid path if p is non-nil. |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 786 | func OptionalPathForModuleSrc(ctx ModuleContext, p *string) OptionalPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 787 | if p == nil { |
| 788 | return OptionalPath{} |
| 789 | } |
| 790 | return OptionalPathForPath(PathForModuleSrc(ctx, *p)) |
| 791 | } |
| 792 | |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 793 | func (p ModuleSrcPath) genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath { |
Colin Cross | 7fc17db | 2017-02-01 14:07:55 -0800 | [diff] [blame] | 794 | return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 795 | } |
| 796 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 797 | func (p ModuleSrcPath) objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath { |
Colin Cross | 7fc17db | 2017-02-01 14:07:55 -0800 | [diff] [blame] | 798 | return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 799 | } |
| 800 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 801 | func (p ModuleSrcPath) resPathWithName(ctx ModuleContext, name string) ModuleResPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 802 | // TODO: Use full directory if the new ctx is not the current ctx? |
| 803 | return PathForModuleRes(ctx, p.path, name) |
| 804 | } |
| 805 | |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 806 | func (p ModuleSrcPath) WithSubDir(ctx ModuleContext, subdir string) ModuleSrcPath { |
| 807 | subdir = PathForModuleSrc(ctx, subdir).String() |
| 808 | var err error |
| 809 | rel, err := filepath.Rel(subdir, p.path) |
| 810 | if err != nil { |
| 811 | ctx.ModuleErrorf("source file %q is not under path %q", p.path, subdir) |
| 812 | return p |
| 813 | } |
| 814 | p.rel = rel |
| 815 | return p |
| 816 | } |
| 817 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 818 | // ModuleOutPath is a Path representing a module's output directory. |
| 819 | type ModuleOutPath struct { |
| 820 | OutputPath |
| 821 | } |
| 822 | |
| 823 | var _ Path = ModuleOutPath{} |
| 824 | |
Colin Cross | 702e0f8 | 2017-10-18 17:27:54 -0700 | [diff] [blame] | 825 | func pathForModule(ctx ModuleContext) OutputPath { |
| 826 | return PathForOutput(ctx, ".intermediates", ctx.ModuleDir(), ctx.ModuleName(), ctx.ModuleSubDir()) |
| 827 | } |
| 828 | |
Logan Chien | 7eefdc4 | 2018-07-11 18:10:41 +0800 | [diff] [blame] | 829 | // PathForVndkRefAbiDump returns an OptionalPath representing the path of the |
| 830 | // reference abi dump for the given module. This is not guaranteed to be valid. |
| 831 | func PathForVndkRefAbiDump(ctx ModuleContext, version, fileName string, |
| 832 | isLlndk, isGzip bool) OptionalPath { |
| 833 | |
Jayant Chowdhary | ac066c6 | 2018-02-20 10:53:31 -0800 | [diff] [blame] | 834 | arches := ctx.DeviceConfig().Arches() |
Logan Chien | 7eefdc4 | 2018-07-11 18:10:41 +0800 | [diff] [blame] | 835 | if len(arches) == 0 { |
| 836 | panic("device build with no primary arch") |
| 837 | } |
Jayant Chowdhary | ac066c6 | 2018-02-20 10:53:31 -0800 | [diff] [blame] | 838 | currentArch := ctx.Arch() |
| 839 | archNameAndVariant := currentArch.ArchType.String() |
| 840 | if currentArch.ArchVariant != "" { |
| 841 | archNameAndVariant += "_" + currentArch.ArchVariant |
| 842 | } |
Logan Chien | 5237bed | 2018-07-11 17:15:57 +0800 | [diff] [blame] | 843 | |
| 844 | var dirName string |
| 845 | if isLlndk { |
| 846 | dirName = "ndk" |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 847 | } else { |
Logan Chien | 5237bed | 2018-07-11 17:15:57 +0800 | [diff] [blame] | 848 | dirName = "vndk" |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 849 | } |
Logan Chien | 5237bed | 2018-07-11 17:15:57 +0800 | [diff] [blame] | 850 | |
Jayant Chowdhary | 34ce67d | 2018-03-08 11:00:50 -0800 | [diff] [blame] | 851 | binderBitness := ctx.DeviceConfig().BinderBitness() |
Logan Chien | 7eefdc4 | 2018-07-11 18:10:41 +0800 | [diff] [blame] | 852 | |
| 853 | var ext string |
| 854 | if isGzip { |
| 855 | ext = ".lsdump.gz" |
| 856 | } else { |
| 857 | ext = ".lsdump" |
| 858 | } |
| 859 | |
| 860 | return ExistentPathForSource(ctx, "prebuilts", "abi-dumps", dirName, |
| 861 | version, binderBitness, archNameAndVariant, "source-based", |
| 862 | fileName+ext) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 863 | } |
| 864 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 865 | // PathForModuleOut returns a Path representing the paths... under the module's |
| 866 | // output directory. |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 867 | func PathForModuleOut(ctx ModuleContext, paths ...string) ModuleOutPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 868 | p, err := validatePath(paths...) |
| 869 | if err != nil { |
| 870 | reportPathError(ctx, err) |
| 871 | } |
Colin Cross | 702e0f8 | 2017-10-18 17:27:54 -0700 | [diff] [blame] | 872 | return ModuleOutPath{ |
| 873 | OutputPath: pathForModule(ctx).withRel(p), |
| 874 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | // ModuleGenPath is a Path representing the 'gen' directory in a module's output |
| 878 | // directory. Mainly used for generated sources. |
| 879 | type ModuleGenPath struct { |
| 880 | ModuleOutPath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 881 | } |
| 882 | |
| 883 | var _ Path = ModuleGenPath{} |
| 884 | var _ genPathProvider = ModuleGenPath{} |
| 885 | var _ objPathProvider = ModuleGenPath{} |
| 886 | |
| 887 | // PathForModuleGen returns a Path representing the paths... under the module's |
| 888 | // `gen' directory. |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 889 | func PathForModuleGen(ctx ModuleContext, paths ...string) ModuleGenPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 890 | p, err := validatePath(paths...) |
| 891 | if err != nil { |
| 892 | reportPathError(ctx, err) |
| 893 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 894 | return ModuleGenPath{ |
Colin Cross | 702e0f8 | 2017-10-18 17:27:54 -0700 | [diff] [blame] | 895 | ModuleOutPath: ModuleOutPath{ |
| 896 | OutputPath: pathForModule(ctx).withRel("gen").withRel(p), |
| 897 | }, |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 898 | } |
| 899 | } |
| 900 | |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 901 | func (p ModuleGenPath) genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 902 | // TODO: make a different path for local vs remote generated files? |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 903 | return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 904 | } |
| 905 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 906 | func (p ModuleGenPath) objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 907 | return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) |
| 908 | } |
| 909 | |
| 910 | // ModuleObjPath is a Path representing the 'obj' directory in a module's output |
| 911 | // directory. Used for compiled objects. |
| 912 | type ModuleObjPath struct { |
| 913 | ModuleOutPath |
| 914 | } |
| 915 | |
| 916 | var _ Path = ModuleObjPath{} |
| 917 | |
| 918 | // PathForModuleObj returns a Path representing the paths... under the module's |
| 919 | // 'obj' directory. |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 920 | func PathForModuleObj(ctx ModuleContext, pathComponents ...string) ModuleObjPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 921 | p, err := validatePath(pathComponents...) |
| 922 | if err != nil { |
| 923 | reportPathError(ctx, err) |
| 924 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 925 | return ModuleObjPath{PathForModuleOut(ctx, "obj", p)} |
| 926 | } |
| 927 | |
| 928 | // ModuleResPath is a a Path representing the 'res' directory in a module's |
| 929 | // output directory. |
| 930 | type ModuleResPath struct { |
| 931 | ModuleOutPath |
| 932 | } |
| 933 | |
| 934 | var _ Path = ModuleResPath{} |
| 935 | |
| 936 | // PathForModuleRes returns a Path representing the paths... under the module's |
| 937 | // 'res' directory. |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 938 | func PathForModuleRes(ctx ModuleContext, pathComponents ...string) ModuleResPath { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 939 | p, err := validatePath(pathComponents...) |
| 940 | if err != nil { |
| 941 | reportPathError(ctx, err) |
| 942 | } |
| 943 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 944 | return ModuleResPath{PathForModuleOut(ctx, "res", p)} |
| 945 | } |
| 946 | |
| 947 | // PathForModuleInstall returns a Path representing the install path for the |
| 948 | // module appended with paths... |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 949 | func PathForModuleInstall(ctx ModuleInstallPathContext, pathComponents ...string) OutputPath { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 950 | var outPaths []string |
| 951 | if ctx.Device() { |
Vishwath Mohan | 87f3b24 | 2017-06-07 12:31:57 -0700 | [diff] [blame] | 952 | var partition string |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 953 | if ctx.InstallInData() { |
Vishwath Mohan | 87f3b24 | 2017-06-07 12:31:57 -0700 | [diff] [blame] | 954 | partition = "data" |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 955 | } else if ctx.InstallInRecovery() { |
Jiyong Park | 2e67431 | 2018-05-29 13:56:37 +0900 | [diff] [blame] | 956 | // the layout of recovery partion is the same as that of system partition |
| 957 | partition = "recovery/root/system" |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 958 | } else if ctx.SocSpecific() { |
Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 959 | partition = ctx.DeviceConfig().VendorPath() |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 960 | } else if ctx.DeviceSpecific() { |
| 961 | partition = ctx.DeviceConfig().OdmPath() |
| 962 | } else if ctx.ProductSpecific() { |
Jaekyun Seok | 5cfbfbb | 2018-01-10 19:00:15 +0900 | [diff] [blame] | 963 | partition = ctx.DeviceConfig().ProductPath() |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 964 | } else if ctx.ProductServicesSpecific() { |
| 965 | partition = ctx.DeviceConfig().ProductServicesPath() |
Vishwath Mohan | 87f3b24 | 2017-06-07 12:31:57 -0700 | [diff] [blame] | 966 | } else { |
| 967 | partition = "system" |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 968 | } |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 969 | |
| 970 | if ctx.InstallInSanitizerDir() { |
| 971 | partition = "data/asan/" + partition |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 972 | } |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 973 | outPaths = []string{"target", "product", ctx.Config().DeviceName(), partition} |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 974 | } else { |
Dan Willemsen | 866b563 | 2017-09-22 12:28:24 -0700 | [diff] [blame] | 975 | switch ctx.Os() { |
| 976 | case Linux: |
| 977 | outPaths = []string{"host", "linux-x86"} |
| 978 | case LinuxBionic: |
| 979 | // TODO: should this be a separate top level, or shared with linux-x86? |
| 980 | outPaths = []string{"host", "linux_bionic-x86"} |
| 981 | default: |
| 982 | outPaths = []string{"host", ctx.Os().String() + "-x86"} |
| 983 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 984 | } |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 985 | if ctx.Debug() { |
| 986 | outPaths = append([]string{"debug"}, outPaths...) |
| 987 | } |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 988 | outPaths = append(outPaths, pathComponents...) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 989 | return PathForOutput(ctx, outPaths...) |
| 990 | } |
| 991 | |
| 992 | // validateSafePath validates a path that we trust (may contain ninja variables). |
Dan Willemsen | 80a7c2a | 2015-12-21 14:57:11 -0800 | [diff] [blame] | 993 | // Ensures that each path component does not attempt to leave its component. |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 994 | func validateSafePath(pathComponents ...string) (string, error) { |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 995 | for _, path := range pathComponents { |
Dan Willemsen | 80a7c2a | 2015-12-21 14:57:11 -0800 | [diff] [blame] | 996 | path := filepath.Clean(path) |
| 997 | if path == ".." || strings.HasPrefix(path, "../") || strings.HasPrefix(path, "/") { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 998 | return "", fmt.Errorf("Path is outside directory: %s", path) |
Dan Willemsen | 80a7c2a | 2015-12-21 14:57:11 -0800 | [diff] [blame] | 999 | } |
| 1000 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1001 | // TODO: filepath.Join isn't necessarily correct with embedded ninja |
| 1002 | // variables. '..' may remove the entire ninja variable, even if it |
| 1003 | // will be expanded to multiple nested directories. |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 1004 | return filepath.Join(pathComponents...), nil |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1005 | } |
| 1006 | |
Dan Willemsen | 80a7c2a | 2015-12-21 14:57:11 -0800 | [diff] [blame] | 1007 | // validatePath validates that a path does not include ninja variables, and that |
| 1008 | // each path component does not attempt to leave its component. Returns a joined |
| 1009 | // version of each path component. |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 1010 | func validatePath(pathComponents ...string) (string, error) { |
Jeff Gaston | 734e380 | 2017-04-10 15:47:24 -0700 | [diff] [blame] | 1011 | for _, path := range pathComponents { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1012 | if strings.Contains(path, "$") { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 1013 | return "", fmt.Errorf("Path contains invalid character($): %s", path) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1014 | } |
| 1015 | } |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 1016 | return validateSafePath(pathComponents...) |
Colin Cross | 6e18ca4 | 2015-07-14 18:55:36 -0700 | [diff] [blame] | 1017 | } |
Colin Cross | 5b52959 | 2017-05-09 13:34:34 -0700 | [diff] [blame] | 1018 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1019 | func PathForPhony(ctx PathContext, phony string) WritablePath { |
| 1020 | if strings.ContainsAny(phony, "$/") { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 1021 | reportPathErrorf(ctx, "Phony target contains invalid character ($ or /): %s", phony) |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1022 | } |
Colin Cross | 74e3fe4 | 2017-12-11 15:51:44 -0800 | [diff] [blame] | 1023 | return PhonyPath{basePath{phony, ctx.Config(), ""}} |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1024 | } |
| 1025 | |
Colin Cross | 74e3fe4 | 2017-12-11 15:51:44 -0800 | [diff] [blame] | 1026 | type PhonyPath struct { |
| 1027 | basePath |
| 1028 | } |
| 1029 | |
| 1030 | func (p PhonyPath) writablePath() {} |
| 1031 | |
| 1032 | var _ Path = PhonyPath{} |
| 1033 | var _ WritablePath = PhonyPath{} |
| 1034 | |
Colin Cross | 5b52959 | 2017-05-09 13:34:34 -0700 | [diff] [blame] | 1035 | type testPath struct { |
| 1036 | basePath |
| 1037 | } |
| 1038 | |
| 1039 | func (p testPath) String() string { |
| 1040 | return p.path |
| 1041 | } |
| 1042 | |
| 1043 | func PathForTesting(paths ...string) Path { |
Colin Cross | 1ccfcc3 | 2018-02-22 13:54:26 -0800 | [diff] [blame] | 1044 | p, err := validateSafePath(paths...) |
| 1045 | if err != nil { |
| 1046 | panic(err) |
| 1047 | } |
Colin Cross | 5b52959 | 2017-05-09 13:34:34 -0700 | [diff] [blame] | 1048 | return testPath{basePath{path: p, rel: p}} |
| 1049 | } |
| 1050 | |
| 1051 | func PathsForTesting(strs []string) Paths { |
| 1052 | p := make(Paths, len(strs)) |
| 1053 | for i, s := range strs { |
| 1054 | p[i] = PathForTesting(s) |
| 1055 | } |
| 1056 | |
| 1057 | return p |
| 1058 | } |