forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolve_library.go
77 lines (65 loc) · 2.63 KB
/
resolve_library.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// This file is part of arduino-cli.
//
// Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of arduino-cli.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to [email protected].
package builder
import (
"fmt"
"github.com/arduino/arduino-cli/arduino/libraries"
"github.com/arduino/arduino-cli/legacy/builder/types"
)
func ResolveLibrary(ctx *types.Context, header string) (*libraries.Library, bool) {
resolver := ctx.LibrariesResolver
importedLibraries := ctx.ImportedLibraries
candidates := resolver.AlternativesFor(header)
if ctx.Verbose {
ctx.Info(tr("Alternatives for %[1]s: %[2]s", header, candidates))
ctx.Info(fmt.Sprintf("ResolveLibrary(%s)", header))
ctx.Info(fmt.Sprintf(" -> %s: %s", tr("candidates"), candidates))
}
if candidates == nil || len(candidates) == 0 {
return nil, false
}
for _, candidate := range candidates {
if importedLibraries.Contains(candidate) {
return nil, true
}
}
selected := resolver.ResolveFor(header, ctx.TargetPlatform.Platform.Architecture)
if alreadyImported := importedLibraries.FindByName(selected.Name); alreadyImported != nil {
// Certain libraries might have the same name but be different.
// This usually happens when the user includes two or more custom libraries that have
// different header name but are stored in a parent folder with identical name, like
// ./libraries1/Lib/lib1.h and ./libraries2/Lib/lib2.h
// Without this check the library resolution would be stuck in a loop.
// This behaviour has been reported in this issue:
// https://github.com/arduino/arduino-cli/issues/973
if selected == alreadyImported {
selected = alreadyImported
}
}
ctx.LibrariesResolutionResults[header] = types.LibraryResolutionResult{
Library: selected,
NotUsedLibraries: filterOutLibraryFrom(candidates, selected),
}
return selected, false
}
func filterOutLibraryFrom(libs libraries.List, libraryToRemove *libraries.Library) libraries.List {
filteredOutLibraries := []*libraries.Library{}
for _, lib := range libs {
if lib != libraryToRemove {
filteredOutLibraries = append(filteredOutLibraries, lib)
}
}
return filteredOutLibraries
}