forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibrariesmanager.go
252 lines (228 loc) · 7.82 KB
/
librariesmanager.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// 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 librariesmanager
import (
"fmt"
"os"
"github.com/arduino/arduino-cli/arduino/cores"
"github.com/arduino/arduino-cli/arduino/libraries"
"github.com/arduino/arduino-cli/arduino/libraries/librariesindex"
"github.com/arduino/arduino-cli/arduino/utils"
paths "github.com/arduino/go-paths-helper"
"github.com/pmylund/sortutil"
"github.com/sirupsen/logrus"
semver "go.bug.st/relaxed-semver"
)
// LibrariesManager keeps the current status of the libraries in the system
// (the list of libraries, revisions, installed paths, etc.)
type LibrariesManager struct {
LibrariesDir []*LibrariesDir
Libraries map[string]*LibraryAlternatives `json:"libraries"`
Index *librariesindex.Index
IndexFile *paths.Path
IndexFileSignature *paths.Path
DownloadsDir *paths.Path
}
// LibrariesDir is a directory containing libraries
type LibrariesDir struct {
Path *paths.Path
Location libraries.LibraryLocation
PlatformRelease *cores.PlatformRelease
}
// LibraryAlternatives is a list of different versions of the same library
// installed in the system
type LibraryAlternatives struct {
Alternatives libraries.List
}
// Add adds a library to the alternatives
func (alts *LibraryAlternatives) Add(library *libraries.Library) {
if len(alts.Alternatives) > 0 && alts.Alternatives[0].Name != library.Name {
panic(fmt.Sprintf("the library name is different from the set (%s != %s)", alts.Alternatives[0].Name, library.Name))
}
alts.Alternatives = append(alts.Alternatives, library)
}
// Remove removes the library from the alternatives
func (alts *LibraryAlternatives) Remove(library *libraries.Library) {
for i, lib := range alts.Alternatives {
if lib == library {
alts.Alternatives = append(alts.Alternatives[:i], alts.Alternatives[i+1:]...)
return
}
}
}
// FindVersion returns the library mathching the provided version or nil if not found
func (alts *LibraryAlternatives) FindVersion(version *semver.Version) *libraries.Library {
for _, lib := range alts.Alternatives {
if lib.Version.Equal(version) {
return lib
}
}
return nil
}
// Names returns an array with all the names of the installed libraries.
func (lm LibrariesManager) Names() []string {
res := make([]string, len(lm.Libraries))
i := 0
for n := range lm.Libraries {
res[i] = n
i++
}
sortutil.CiAsc(res)
return res
}
// NewLibraryManager creates a new library manager
func NewLibraryManager(indexDir *paths.Path, downloadsDir *paths.Path) *LibrariesManager {
var indexFile, indexFileSignature *paths.Path
if indexDir != nil {
indexFile = indexDir.Join("library_index.json")
indexFileSignature = indexDir.Join("library_index.json.sig")
}
return &LibrariesManager{
Libraries: map[string]*LibraryAlternatives{},
IndexFile: indexFile,
IndexFileSignature: indexFileSignature,
DownloadsDir: downloadsDir,
Index: librariesindex.EmptyIndex,
}
}
// LoadIndex reads a library_index.json from a file and returns
// the corresponding Index structure.
func (lm *LibrariesManager) LoadIndex() error {
index, err := librariesindex.LoadIndex(lm.IndexFile)
if err != nil {
lm.Index = librariesindex.EmptyIndex
return err
}
lm.Index = index
return nil
}
// AddLibrariesDir adds path to the list of directories
// to scan when searching for libraries. If a path is already
// in the list it is ignored.
func (lm *LibrariesManager) AddLibrariesDir(path *paths.Path, location libraries.LibraryLocation) {
for _, dir := range lm.LibrariesDir {
if dir.Path.EquivalentTo(path) {
return
}
}
logrus.WithField("dir", path).WithField("location", location.String()).Info("Adding libraries dir")
lm.LibrariesDir = append(lm.LibrariesDir, &LibrariesDir{
Path: path,
Location: location,
})
}
// AddPlatformReleaseLibrariesDir add the libraries directory in the
// specified PlatformRelease to the list of directories to scan when
// searching for libraries.
func (lm *LibrariesManager) AddPlatformReleaseLibrariesDir(plaftormRelease *cores.PlatformRelease, location libraries.LibraryLocation) {
path := plaftormRelease.GetLibrariesDir()
if path == nil {
return
}
for _, dir := range lm.LibrariesDir {
if dir.Path.EquivalentTo(path) {
return
}
}
logrus.WithField("dir", path).WithField("location", location.String()).Info("Adding libraries dir")
lm.LibrariesDir = append(lm.LibrariesDir, &LibrariesDir{
Path: path,
Location: location,
PlatformRelease: plaftormRelease,
})
}
// RescanLibraries reload all installed libraries in the system.
func (lm *LibrariesManager) RescanLibraries() error {
for _, dir := range lm.LibrariesDir {
if err := lm.LoadLibrariesFromDir(dir); err != nil {
return fmt.Errorf("loading libs from %s: %s", dir.Path, err)
}
}
return nil
}
func (lm *LibrariesManager) getUserLibrariesDir() *paths.Path {
for _, dir := range lm.LibrariesDir {
if dir.Location == libraries.User {
return dir.Path
}
}
return nil
}
// LoadLibrariesFromDir loads all libraries in the given directory. Returns
// nil if the directory doesn't exists.
func (lm *LibrariesManager) LoadLibrariesFromDir(librariesDir *LibrariesDir) error {
subDirs, err := librariesDir.Path.ReadDir()
if os.IsNotExist(err) {
return nil
}
if err != nil {
return fmt.Errorf("reading dir %s: %s", librariesDir.Path, err)
}
subDirs.FilterDirs()
subDirs.FilterOutHiddenFiles()
for _, subDir := range subDirs {
library, err := libraries.Load(subDir, librariesDir.Location)
if err != nil {
return fmt.Errorf("loading library from %s: %s", subDir, err)
}
library.ContainerPlatform = librariesDir.PlatformRelease
alternatives, ok := lm.Libraries[library.Name]
if !ok {
alternatives = &LibraryAlternatives{}
lm.Libraries[library.Name] = alternatives
}
alternatives.Add(library)
}
return nil
}
// LoadLibraryFromDir loads one single library from the libRootDir.
// libRootDir must point to the root of a valid library.
// An error is returned if the path doesn't exist or loading of the library fails.
func (lm *LibrariesManager) LoadLibraryFromDir(libRootDir *paths.Path, location libraries.LibraryLocation) error {
if libRootDir.NotExist() {
return fmt.Errorf("library path does not exist: %s", libRootDir)
}
library, err := libraries.Load(libRootDir, location)
if err != nil {
return fmt.Errorf("loading library from %s: %s", libRootDir, err)
}
alternatives, ok := lm.Libraries[library.Name]
if !ok {
alternatives = &LibraryAlternatives{}
lm.Libraries[library.Name] = alternatives
}
alternatives.Add(library)
return nil
}
// FindByReference return the installed library matching the Reference
// name and version or, if the version is nil, the library installed
// in the User folder.
func (lm *LibrariesManager) FindByReference(libRef *librariesindex.Reference) *libraries.Library {
saneName := utils.SanitizeName(libRef.Name)
alternatives, have := lm.Libraries[saneName]
if !have {
return nil
}
// TODO: Move "search into user" into another method...
if libRef.Version == nil {
for _, candidate := range alternatives.Alternatives {
if candidate.Location == libraries.User {
return candidate
}
}
return nil
}
return alternatives.FindVersion(libRef.Version)
}