blob: f357ca7b7835e0c57a381ee154c68cc2afe4b5f7 [file] [log] [blame]
Jeff Gaston088e29e2017-11-29 16:47:17 -08001// 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 android
16
17import (
Jeff Gaston5c3886d2017-11-30 16:46:47 -080018 "errors"
Jeff Gaston088e29e2017-11-29 16:47:17 -080019 "fmt"
20 "path/filepath"
21 "sort"
22 "strconv"
23 "strings"
24 "sync"
Jeff Gaston088e29e2017-11-29 16:47:17 -080025
26 "github.com/google/blueprint"
27)
28
Jeff Gaston088e29e2017-11-29 16:47:17 -080029func init() {
Paul Duffin4fbfb592021-07-09 16:47:38 +010030 registerNamespaceBuildComponents(InitRegistrationContext)
31}
32
33func registerNamespaceBuildComponents(ctx RegistrationContext) {
34 ctx.RegisterModuleType("soong_namespace", NamespaceFactory)
Jeff Gaston088e29e2017-11-29 16:47:17 -080035}
36
37// threadsafe sorted list
38type sortedNamespaces struct {
39 lock sync.Mutex
40 items []*Namespace
41 sorted bool
42}
43
44func (s *sortedNamespaces) add(namespace *Namespace) {
45 s.lock.Lock()
46 defer s.lock.Unlock()
47 if s.sorted {
48 panic("It is not supported to call sortedNamespaces.add() after sortedNamespaces.sortedItems()")
49 }
50 s.items = append(s.items, namespace)
51}
52
53func (s *sortedNamespaces) sortedItems() []*Namespace {
54 s.lock.Lock()
55 defer s.lock.Unlock()
56 if !s.sorted {
57 less := func(i int, j int) bool {
58 return s.items[i].Path < s.items[j].Path
59 }
60 sort.Slice(s.items, less)
61 s.sorted = true
62 }
63 return s.items
64}
65
Jeff Gastonb274ed32017-12-01 17:10:33 -080066func (s *sortedNamespaces) index(namespace *Namespace) int {
67 for i, candidate := range s.sortedItems() {
68 if namespace == candidate {
69 return i
70 }
71 }
72 return -1
73}
74
Jeff Gaston088e29e2017-11-29 16:47:17 -080075// A NameResolver implements blueprint.NameInterface, and implements the logic to
76// find a module from namespaces based on a query string.
Usta Shresthac725f472022-01-11 02:44:21 -050077// A query string can be a module name or can be "//namespace_path:module_path"
Jeff Gaston088e29e2017-11-29 16:47:17 -080078type NameResolver struct {
79 rootNamespace *Namespace
80
81 // id counter for atomic.AddInt32
Jeff Gastonb274ed32017-12-01 17:10:33 -080082 nextNamespaceId int32
Jeff Gaston088e29e2017-11-29 16:47:17 -080083
84 // All namespaces, without duplicates.
85 sortedNamespaces sortedNamespaces
86
87 // Map from dir to namespace. Will have duplicates if two dirs are part of the same namespace.
88 namespacesByDir sync.Map // if generics were supported, this would be sync.Map[string]*Namespace
89
90 // func telling whether to export a namespace to Kati
91 namespaceExportFilter func(*Namespace) bool
92}
93
Paul Duffin3f7bf9f2022-11-08 12:21:15 +000094// NameResolverConfig provides the subset of the Config interface needed by the
95// NewNameResolver function.
96type NameResolverConfig interface {
97 // ExportedNamespaces is the list of namespaces that Soong must export to
98 // make.
99 ExportedNamespaces() []string
100}
101
102func NewNameResolver(config NameResolverConfig) *NameResolver {
103 namespacePathsToExport := make(map[string]bool)
104
105 for _, namespaceName := range config.ExportedNamespaces() {
106 namespacePathsToExport[namespaceName] = true
107 }
108
109 namespacePathsToExport["."] = true // always export the root namespace
110
111 namespaceExportFilter := func(namespace *Namespace) bool {
112 return namespacePathsToExport[namespace.Path]
113 }
114
Jeff Gaston088e29e2017-11-29 16:47:17 -0800115 r := &NameResolver{
Dan Willemsen59339a22018-07-22 21:18:45 -0700116 namespacesByDir: sync.Map{},
Jeff Gaston088e29e2017-11-29 16:47:17 -0800117 namespaceExportFilter: namespaceExportFilter,
118 }
119 r.rootNamespace = r.newNamespace(".")
120 r.rootNamespace.visibleNamespaces = []*Namespace{r.rootNamespace}
121 r.addNamespace(r.rootNamespace)
122
123 return r
124}
125
126func (r *NameResolver) newNamespace(path string) *Namespace {
127 namespace := NewNamespace(path)
128
129 namespace.exportToKati = r.namespaceExportFilter(namespace)
130
Jeff Gaston088e29e2017-11-29 16:47:17 -0800131 return namespace
132}
133
Jeff Gaston5c3886d2017-11-30 16:46:47 -0800134func (r *NameResolver) addNewNamespaceForModule(module *NamespaceModule, path string) error {
135 fileName := filepath.Base(path)
136 if fileName != "Android.bp" {
137 return errors.New("A namespace may only be declared in a file named Android.bp")
138 }
139 dir := filepath.Dir(path)
140
Jeff Gaston088e29e2017-11-29 16:47:17 -0800141 namespace := r.newNamespace(dir)
142 module.namespace = namespace
143 module.resolver = r
144 namespace.importedNamespaceNames = module.properties.Imports
145 return r.addNamespace(namespace)
146}
147
148func (r *NameResolver) addNamespace(namespace *Namespace) (err error) {
149 existingNamespace, exists := r.namespaceAt(namespace.Path)
150 if exists {
151 if existingNamespace.Path == namespace.Path {
152 return fmt.Errorf("namespace %v already exists", namespace.Path)
153 } else {
154 // It would probably confuse readers if namespaces were declared anywhere but
155 // the top of the file, so we forbid declaring namespaces after anything else.
156 return fmt.Errorf("a namespace must be the first module in the file")
157 }
158 }
159 r.sortedNamespaces.add(namespace)
160
161 r.namespacesByDir.Store(namespace.Path, namespace)
162 return nil
163}
164
165// non-recursive check for namespace
166func (r *NameResolver) namespaceAt(path string) (namespace *Namespace, found bool) {
167 mapVal, found := r.namespacesByDir.Load(path)
168 if !found {
169 return nil, false
170 }
171 return mapVal.(*Namespace), true
172}
173
174// recursive search upward for a namespace
175func (r *NameResolver) findNamespace(path string) (namespace *Namespace) {
176 namespace, found := r.namespaceAt(path)
177 if found {
178 return namespace
179 }
180 parentDir := filepath.Dir(path)
181 if parentDir == path {
182 return nil
183 }
184 namespace = r.findNamespace(parentDir)
185 r.namespacesByDir.Store(path, namespace)
186 return namespace
187}
188
Colin Crossa6389e92022-06-22 16:44:07 -0700189// A NamespacelessModule can never be looked up by name. It must still implement Name(), and the name
190// still has to be unique.
191type NamespacelessModule interface {
192 Namespaceless()
Colin Cross9d34f352019-11-22 16:03:51 -0800193}
194
Jeff Gaston088e29e2017-11-29 16:47:17 -0800195func (r *NameResolver) NewModule(ctx blueprint.NamespaceContext, moduleGroup blueprint.ModuleGroup, module blueprint.Module) (namespace blueprint.Namespace, errs []error) {
196 // if this module is a namespace, then save it to our list of namespaces
197 newNamespace, ok := module.(*NamespaceModule)
198 if ok {
Jeff Gaston5c3886d2017-11-30 16:46:47 -0800199 err := r.addNewNamespaceForModule(newNamespace, ctx.ModulePath())
Jeff Gaston088e29e2017-11-29 16:47:17 -0800200 if err != nil {
201 return nil, []error{err}
202 }
203 return nil, nil
204 }
205
Colin Crossa6389e92022-06-22 16:44:07 -0700206 if _, ok := module.(NamespacelessModule); ok {
Colin Cross9d34f352019-11-22 16:03:51 -0800207 return nil, nil
208 }
209
Jeff Gaston088e29e2017-11-29 16:47:17 -0800210 // if this module is not a namespace, then save it into the appropriate namespace
211 ns := r.findNamespaceFromCtx(ctx)
212
213 _, errs = ns.moduleContainer.NewModule(ctx, moduleGroup, module)
214 if len(errs) > 0 {
215 return nil, errs
216 }
217
218 amod, ok := module.(Module)
219 if ok {
220 // inform the module whether its namespace is one that we want to export to Make
221 amod.base().commonProperties.NamespaceExportedToMake = ns.exportToKati
Colin Cross31a738b2019-12-30 18:45:15 -0800222 amod.base().commonProperties.DebugName = module.Name()
Jeff Gaston088e29e2017-11-29 16:47:17 -0800223 }
224
225 return ns, nil
226}
227
Sam Delmerico98a73292023-02-21 11:50:29 -0500228func (r *NameResolver) NewSkippedModule(ctx blueprint.NamespaceContext, name string, skipInfo blueprint.SkippedModuleInfo) {
229 r.rootNamespace.moduleContainer.NewSkippedModule(ctx, name, skipInfo)
230}
231
Jeff Gaston088e29e2017-11-29 16:47:17 -0800232func (r *NameResolver) AllModules() []blueprint.ModuleGroup {
233 childLists := [][]blueprint.ModuleGroup{}
234 totalCount := 0
235 for _, namespace := range r.sortedNamespaces.sortedItems() {
236 newModules := namespace.moduleContainer.AllModules()
237 totalCount += len(newModules)
238 childLists = append(childLists, newModules)
239 }
240
241 allModules := make([]blueprint.ModuleGroup, 0, totalCount)
242 for _, childList := range childLists {
243 allModules = append(allModules, childList...)
244 }
245 return allModules
246}
247
248// parses a fully-qualified path (like "//namespace_path:module_name") into a namespace name and a
249// module name
250func (r *NameResolver) parseFullyQualifiedName(name string) (namespaceName string, moduleName string, ok bool) {
Paul Duffin2e61fa62019-03-28 14:10:57 +0000251 if !strings.HasPrefix(name, "//") {
Jeff Gaston088e29e2017-11-29 16:47:17 -0800252 return "", "", false
253 }
Paul Duffin2e61fa62019-03-28 14:10:57 +0000254 name = strings.TrimPrefix(name, "//")
255 components := strings.Split(name, ":")
Jeff Gaston088e29e2017-11-29 16:47:17 -0800256 if len(components) != 2 {
257 return "", "", false
258 }
259 return components[0], components[1], true
260
261}
262
Bob Badour38620ed2020-12-17 16:30:00 -0800263func (r *NameResolver) getNamespacesToSearchForModule(sourceNamespace blueprint.Namespace) (searchOrder []*Namespace) {
264 ns, ok := sourceNamespace.(*Namespace)
265 if !ok || ns.visibleNamespaces == nil {
Colin Crosscd84b4e2019-06-14 11:26:09 -0700266 // When handling dependencies before namespaceMutator, assume they are non-Soong Blueprint modules and give
267 // access to all namespaces.
268 return r.sortedNamespaces.sortedItems()
269 }
Bob Badour38620ed2020-12-17 16:30:00 -0800270 return ns.visibleNamespaces
Jeff Gaston088e29e2017-11-29 16:47:17 -0800271}
272
273func (r *NameResolver) ModuleFromName(name string, namespace blueprint.Namespace) (group blueprint.ModuleGroup, found bool) {
274 // handle fully qualified references like "//namespace_path:module_name"
275 nsName, moduleName, isAbs := r.parseFullyQualifiedName(name)
276 if isAbs {
277 namespace, found := r.namespaceAt(nsName)
278 if !found {
279 return blueprint.ModuleGroup{}, false
280 }
281 container := namespace.moduleContainer
282 return container.ModuleFromName(moduleName, nil)
283 }
Bob Badour38620ed2020-12-17 16:30:00 -0800284 for _, candidate := range r.getNamespacesToSearchForModule(namespace) {
Jeff Gaston088e29e2017-11-29 16:47:17 -0800285 group, found = candidate.moduleContainer.ModuleFromName(name, nil)
286 if found {
287 return group, true
288 }
289 }
290 return blueprint.ModuleGroup{}, false
291
292}
293
294func (r *NameResolver) Rename(oldName string, newName string, namespace blueprint.Namespace) []error {
Colin Crosseafb10c2018-04-16 13:58:10 -0700295 return namespace.(*Namespace).moduleContainer.Rename(oldName, newName, namespace)
Jeff Gaston088e29e2017-11-29 16:47:17 -0800296}
297
298// resolve each element of namespace.importedNamespaceNames and put the result in namespace.visibleNamespaces
299func (r *NameResolver) FindNamespaceImports(namespace *Namespace) (err error) {
300 namespace.visibleNamespaces = make([]*Namespace, 0, 2+len(namespace.importedNamespaceNames))
301 // search itself first
302 namespace.visibleNamespaces = append(namespace.visibleNamespaces, namespace)
303 // search its imports next
304 for _, name := range namespace.importedNamespaceNames {
305 imp, ok := r.namespaceAt(name)
306 if !ok {
Sam Delmerico98a73292023-02-21 11:50:29 -0500307 return fmt.Errorf("namespace %v does not exist; Some necessary modules may have been skipped by Soong. Check if PRODUCT_SOURCE_ROOT_DIRS is pruning necessary Android.bp files.", name)
Jeff Gaston088e29e2017-11-29 16:47:17 -0800308 }
309 namespace.visibleNamespaces = append(namespace.visibleNamespaces, imp)
310 }
311 // search the root namespace last
312 namespace.visibleNamespaces = append(namespace.visibleNamespaces, r.rootNamespace)
313 return nil
314}
315
Jeff Gastonb274ed32017-12-01 17:10:33 -0800316func (r *NameResolver) chooseId(namespace *Namespace) {
317 id := r.sortedNamespaces.index(namespace)
318 if id < 0 {
319 panic(fmt.Sprintf("Namespace not found: %v\n", namespace.id))
320 }
321 namespace.id = strconv.Itoa(id)
322}
323
Jeff Gaston088e29e2017-11-29 16:47:17 -0800324func (r *NameResolver) MissingDependencyError(depender string, dependerNamespace blueprint.Namespace, depName string) (err error) {
325 text := fmt.Sprintf("%q depends on undefined module %q", depender, depName)
326
327 _, _, isAbs := r.parseFullyQualifiedName(depName)
328 if isAbs {
329 // if the user gave a fully-qualified name, we don't need to look for other
330 // modules that they might have been referring to
331 return fmt.Errorf(text)
332 }
333
334 // determine which namespaces the module can be found in
335 foundInNamespaces := []string{}
336 for _, namespace := range r.sortedNamespaces.sortedItems() {
337 _, found := namespace.moduleContainer.ModuleFromName(depName, nil)
338 if found {
339 foundInNamespaces = append(foundInNamespaces, namespace.Path)
340 }
341 }
342 if len(foundInNamespaces) > 0 {
343 // determine which namespaces are visible to dependerNamespace
344 dependerNs := dependerNamespace.(*Namespace)
345 searched := r.getNamespacesToSearchForModule(dependerNs)
346 importedNames := []string{}
347 for _, ns := range searched {
348 importedNames = append(importedNames, ns.Path)
349 }
350 text += fmt.Sprintf("\nModule %q is defined in namespace %q which can read these %v namespaces: %q", depender, dependerNs.Path, len(importedNames), importedNames)
351 text += fmt.Sprintf("\nModule %q can be found in these namespaces: %q", depName, foundInNamespaces)
352 }
353
354 return fmt.Errorf(text)
355}
356
357func (r *NameResolver) GetNamespace(ctx blueprint.NamespaceContext) blueprint.Namespace {
358 return r.findNamespaceFromCtx(ctx)
359}
360
361func (r *NameResolver) findNamespaceFromCtx(ctx blueprint.NamespaceContext) *Namespace {
Jeff Gaston5c3886d2017-11-30 16:46:47 -0800362 return r.findNamespace(filepath.Dir(ctx.ModulePath()))
Jeff Gaston088e29e2017-11-29 16:47:17 -0800363}
364
Jeff Gastonb274ed32017-12-01 17:10:33 -0800365func (r *NameResolver) UniqueName(ctx blueprint.NamespaceContext, name string) (unique string) {
366 prefix := r.findNamespaceFromCtx(ctx).id
367 if prefix != "" {
368 prefix = prefix + "-"
369 }
370 return prefix + name
371}
372
Jeff Gaston088e29e2017-11-29 16:47:17 -0800373var _ blueprint.NameInterface = (*NameResolver)(nil)
374
375type Namespace struct {
376 blueprint.NamespaceMarker
377 Path string
378
379 // names of namespaces listed as imports by this namespace
380 importedNamespaceNames []string
381 // all namespaces that should be searched when a module in this namespace declares a dependency
382 visibleNamespaces []*Namespace
383
384 id string
385
386 exportToKati bool
387
388 moduleContainer blueprint.NameInterface
389}
390
391func NewNamespace(path string) *Namespace {
392 return &Namespace{Path: path, moduleContainer: blueprint.NewSimpleNameInterface()}
393}
394
395var _ blueprint.Namespace = (*Namespace)(nil)
396
Patrice Arruda64765aa2019-03-13 09:36:46 -0700397type namespaceProperties struct {
398 // a list of namespaces that contain modules that will be referenced
399 // by modules in this namespace.
400 Imports []string `android:"path"`
401}
402
Jeff Gaston088e29e2017-11-29 16:47:17 -0800403type NamespaceModule struct {
404 ModuleBase
405
406 namespace *Namespace
407 resolver *NameResolver
408
Patrice Arruda64765aa2019-03-13 09:36:46 -0700409 properties namespaceProperties
Jeff Gaston088e29e2017-11-29 16:47:17 -0800410}
411
Jeff Gaston088e29e2017-11-29 16:47:17 -0800412func (n *NamespaceModule) GenerateAndroidBuildActions(ctx ModuleContext) {
413}
414
415func (n *NamespaceModule) GenerateBuildActions(ctx blueprint.ModuleContext) {
416}
417
418func (n *NamespaceModule) Name() (name string) {
419 return *n.nameProperties.Name
420}
421
Patrice Arruda64765aa2019-03-13 09:36:46 -0700422// soong_namespace provides a scope to modules in an Android.bp file to prevent
423// module name conflicts with other defined modules in different Android.bp
424// files. Once soong_namespace has been defined in an Android.bp file, the
425// namespacing is applied to all modules that follow the soong_namespace in
426// the current Android.bp file, as well as modules defined in Android.bp files
427// in subdirectories. An Android.bp file in a subdirectory can define its own
428// soong_namespace which is applied to all its modules and as well as modules
429// defined in subdirectories Android.bp files. Modules in a soong_namespace are
430// visible to Make by listing the namespace path in PRODUCT_SOONG_NAMESPACES
431// make variable in a makefile.
Jeff Gaston088e29e2017-11-29 16:47:17 -0800432func NamespaceFactory() Module {
433 module := &NamespaceModule{}
434
435 name := "soong_namespace"
436 module.nameProperties.Name = &name
437
438 module.AddProperties(&module.properties)
439 return module
440}
441
442func RegisterNamespaceMutator(ctx RegisterMutatorsContext) {
Jeff Gastonb274ed32017-12-01 17:10:33 -0800443 ctx.BottomUp("namespace_deps", namespaceMutator).Parallel()
Jeff Gaston088e29e2017-11-29 16:47:17 -0800444}
445
Jeff Gastonb274ed32017-12-01 17:10:33 -0800446func namespaceMutator(ctx BottomUpMutatorContext) {
Jeff Gaston088e29e2017-11-29 16:47:17 -0800447 module, ok := ctx.Module().(*NamespaceModule)
448 if ok {
449 err := module.resolver.FindNamespaceImports(module.namespace)
450 if err != nil {
451 ctx.ModuleErrorf(err.Error())
452 }
Jeff Gastonb274ed32017-12-01 17:10:33 -0800453
454 module.resolver.chooseId(module.namespace)
Jeff Gaston088e29e2017-11-29 16:47:17 -0800455 }
456}