| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 1 | // Copyright 2018 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 java | 
|  | 16 |  | 
|  | 17 | import ( | 
|  | 18 | "path/filepath" | 
|  | 19 | "strings" | 
|  | 20 |  | 
|  | 21 | "android/soong/android" | 
|  | 22 | ) | 
|  | 23 |  | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 24 | var androidResourceIgnoreFilenames = []string{ | 
|  | 25 | ".svn", | 
|  | 26 | ".git", | 
|  | 27 | ".ds_store", | 
|  | 28 | "*.scc", | 
|  | 29 | ".*", | 
|  | 30 | "CVS", | 
|  | 31 | "thumbs.db", | 
|  | 32 | "picasa.ini", | 
|  | 33 | "*~", | 
|  | 34 | } | 
|  | 35 |  | 
| Colin Cross | c20dc85 | 2020-11-10 12:27:45 -0800 | [diff] [blame] | 36 | // androidResourceGlob returns the list of files in the given directory, using the standard | 
|  | 37 | // exclusion patterns for Android resources. | 
| Romain Jobredeaux | 1282c42 | 2021-10-29 10:52:59 -0400 | [diff] [blame] | 38 | func androidResourceGlob(ctx android.EarlyModuleContext, dir android.Path) android.Paths { | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 39 | return ctx.GlobFiles(filepath.Join(dir.String(), "**/*"), androidResourceIgnoreFilenames) | 
|  | 40 | } | 
|  | 41 |  | 
| Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 42 | type overlayType int | 
|  | 43 |  | 
|  | 44 | const ( | 
|  | 45 | device overlayType = iota + 1 | 
|  | 46 | product | 
|  | 47 | ) | 
|  | 48 |  | 
|  | 49 | type rroDir struct { | 
|  | 50 | path        android.Path | 
|  | 51 | overlayType overlayType | 
|  | 52 | } | 
|  | 53 |  | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 54 | type overlayGlobResult struct { | 
| Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 55 | dir         string | 
|  | 56 | paths       android.DirectorySortedPaths | 
|  | 57 | overlayType overlayType | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 58 | } | 
|  | 59 |  | 
| Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 60 | var overlayDataKey = android.NewOnceKey("overlayDataKey") | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 61 |  | 
|  | 62 | type globbedResourceDir struct { | 
|  | 63 | dir   android.Path | 
|  | 64 | files android.Paths | 
|  | 65 | } | 
|  | 66 |  | 
| Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 67 | func overlayResourceGlob(ctx android.ModuleContext, a *aapt, dir android.Path) (res []globbedResourceDir, | 
| Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 68 | rroDirs []rroDir) { | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 69 |  | 
| Cole Faust | 9bef674 | 2023-11-01 15:29:09 -0700 | [diff] [blame] | 70 | overlayData := ctx.Config().Once(overlayDataKey, func() interface{} { | 
|  | 71 | var overlayData []overlayGlobResult | 
|  | 72 |  | 
|  | 73 | appendOverlayData := func(overlayDirs []string, t overlayType) { | 
|  | 74 | for i := range overlayDirs { | 
|  | 75 | // Iterate backwards through the list of overlay directories so that the later, lower-priority | 
|  | 76 | // directories in the list show up earlier in the command line to aapt2. | 
|  | 77 | overlay := overlayDirs[len(overlayDirs)-1-i] | 
|  | 78 | var result overlayGlobResult | 
|  | 79 | result.dir = overlay | 
|  | 80 | result.overlayType = t | 
|  | 81 |  | 
|  | 82 | files, err := ctx.GlobWithDeps(filepath.Join(overlay, "**/*"), androidResourceIgnoreFilenames) | 
|  | 83 | if err != nil { | 
|  | 84 | ctx.ModuleErrorf("failed to glob resource dir %q: %s", overlay, err.Error()) | 
|  | 85 | continue | 
|  | 86 | } | 
|  | 87 | var paths android.Paths | 
|  | 88 | for _, f := range files { | 
|  | 89 | if !strings.HasSuffix(f, "/") { | 
|  | 90 | paths = append(paths, android.PathForSource(ctx, f)) | 
|  | 91 | } | 
|  | 92 | } | 
|  | 93 | result.paths = android.PathsToDirectorySortedPaths(paths) | 
|  | 94 | overlayData = append(overlayData, result) | 
|  | 95 | } | 
|  | 96 | } | 
|  | 97 |  | 
|  | 98 | appendOverlayData(ctx.Config().DeviceResourceOverlays(), device) | 
|  | 99 | appendOverlayData(ctx.Config().ProductResourceOverlays(), product) | 
|  | 100 | return overlayData | 
|  | 101 | }).([]overlayGlobResult) | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 102 |  | 
|  | 103 | // Runtime resource overlays (RRO) may be turned on by the product config for some modules | 
| Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 104 | rroEnabled := a.IsRROEnforced(ctx) | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 105 |  | 
|  | 106 | for _, data := range overlayData { | 
|  | 107 | files := data.paths.PathsInDirectory(filepath.Join(data.dir, dir.String())) | 
|  | 108 | if len(files) > 0 { | 
|  | 109 | overlayModuleDir := android.PathForSource(ctx, data.dir, dir.String()) | 
| Anton Hansson | 94c93f3 | 2019-01-30 16:03:37 +0000 | [diff] [blame] | 110 |  | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 111 | // If enforce RRO is enabled for this module and this overlay is not in the | 
|  | 112 | // exclusion list, ignore the overlay.  The list of ignored overlays will be | 
|  | 113 | // passed to Make to be turned into an RRO package. | 
| Anton Hansson | 94c93f3 | 2019-01-30 16:03:37 +0000 | [diff] [blame] | 114 | if rroEnabled && !ctx.Config().EnforceRROExcludedOverlay(overlayModuleDir.String()) { | 
| Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 115 | rroDirs = append(rroDirs, rroDir{overlayModuleDir, data.overlayType}) | 
| Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 116 | } else { | 
|  | 117 | res = append(res, globbedResourceDir{ | 
|  | 118 | dir:   overlayModuleDir, | 
|  | 119 | files: files, | 
|  | 120 | }) | 
|  | 121 | } | 
|  | 122 | } | 
|  | 123 | } | 
|  | 124 |  | 
|  | 125 | return res, rroDirs | 
|  | 126 | } |