forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage_manager.go
601 lines (538 loc) · 19.2 KB
/
package_manager.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
// 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 packagemanager
import (
"fmt"
"net/url"
"path"
"strings"
"github.com/arduino/arduino-cli/arduino/cores"
"github.com/arduino/arduino-cli/arduino/cores/packageindex"
"github.com/arduino/arduino-cli/arduino/discovery/discoverymanager"
"github.com/arduino/arduino-cli/i18n"
paths "github.com/arduino/go-paths-helper"
properties "github.com/arduino/go-properties-orderedmap"
"github.com/sirupsen/logrus"
semver "go.bug.st/relaxed-semver"
)
// PackageManager defines the superior oracle which understands all about
// Arduino Packages, how to parse them, download, and so on.
//
// The manager also keeps track of the status of the Packages (their Platform Releases, actually)
// installed in the system.
type PackageManager struct {
Log logrus.FieldLogger
Packages cores.Packages
IndexDir *paths.Path
PackagesDir *paths.Path
DownloadDir *paths.Path
TempDir *paths.Path
CustomGlobalProperties *properties.Map
discoveryManager *discoverymanager.DiscoveryManager
userAgent string
}
var tr = i18n.Tr
// NewPackageManager returns a new instance of the PackageManager
func NewPackageManager(indexDir, packagesDir, downloadDir, tempDir *paths.Path, userAgent string) *PackageManager {
return &PackageManager{
Log: logrus.StandardLogger(),
Packages: cores.NewPackages(),
IndexDir: indexDir,
PackagesDir: packagesDir,
DownloadDir: downloadDir,
TempDir: tempDir,
CustomGlobalProperties: properties.NewMap(),
discoveryManager: discoverymanager.New(),
userAgent: userAgent,
}
}
// GetEnvVarsForSpawnedProcess produces a set of environment variables that
// must be sent to all processes spawned from the arduino-cli.
func (pm *PackageManager) GetEnvVarsForSpawnedProcess() []string {
if pm == nil {
return nil
}
return []string{
"ARDUINO_USER_AGENT=" + pm.userAgent,
}
}
// Clear resets the PackageManager to its initial state
func (pm *PackageManager) Clear() {
pm.Packages = cores.NewPackages()
pm.CustomGlobalProperties = properties.NewMap()
pm.discoveryManager.Clear()
}
// DiscoveryManager returns the DiscoveryManager in use by this PackageManager
func (pm *PackageManager) DiscoveryManager() *discoverymanager.DiscoveryManager {
return pm.discoveryManager
}
// FindPlatformReleaseProvidingBoardsWithVidPid FIXMEDOC
func (pm *PackageManager) FindPlatformReleaseProvidingBoardsWithVidPid(vid, pid string) []*cores.PlatformRelease {
res := []*cores.PlatformRelease{}
for _, targetPackage := range pm.Packages {
for _, targetPlatform := range targetPackage.Platforms {
platformRelease := targetPlatform.GetLatestRelease()
if platformRelease == nil {
continue
}
for _, boardManifest := range platformRelease.BoardsManifest {
if boardManifest.HasUsbID(vid, pid) {
res = append(res, platformRelease)
break
}
}
}
}
return res
}
// FindBoardsWithVidPid FIXMEDOC
func (pm *PackageManager) FindBoardsWithVidPid(vid, pid string) []*cores.Board {
res := []*cores.Board{}
for _, targetPackage := range pm.Packages {
for _, targetPlatform := range targetPackage.Platforms {
if platform := pm.GetInstalledPlatformRelease(targetPlatform); platform != nil {
for _, board := range platform.Boards {
if board.HasUsbID(vid, pid) {
res = append(res, board)
}
}
}
}
}
return res
}
// FindBoardsWithID FIXMEDOC
func (pm *PackageManager) FindBoardsWithID(id string) []*cores.Board {
res := []*cores.Board{}
for _, targetPackage := range pm.Packages {
for _, targetPlatform := range targetPackage.Platforms {
if platform := pm.GetInstalledPlatformRelease(targetPlatform); platform != nil {
for _, board := range platform.Boards {
if board.BoardID == id {
res = append(res, board)
}
}
}
}
}
return res
}
// FindBoardWithFQBN returns the board identified by the fqbn, or an error
func (pm *PackageManager) FindBoardWithFQBN(fqbnIn string) (*cores.Board, error) {
fqbn, err := cores.ParseFQBN(fqbnIn)
if err != nil {
return nil, fmt.Errorf(tr("parsing fqbn: %s"), err)
}
_, _, board, _, _, err := pm.ResolveFQBN(fqbn)
return board, err
}
// ResolveFQBN returns, in order:
//
// - the Package pointed by the fqbn
//
// - the PlatformRelease pointed by the fqbn
//
// - the Board pointed by the fqbn
//
// - the build properties for the board considering also the
// configuration part of the fqbn
//
// - the PlatformRelease to be used for the build (if the board
// requires a 3rd party core it may be different from the
// PlatformRelease pointed by the fqbn)
//
// - an error if any of the above is not found
//
// In case of error the partial results found in the meantime are
// returned together with the error.
func (pm *PackageManager) ResolveFQBN(fqbn *cores.FQBN) (
*cores.Package, *cores.PlatformRelease, *cores.Board,
*properties.Map, *cores.PlatformRelease, error) {
// Find package
targetPackage := pm.Packages[fqbn.Package]
if targetPackage == nil {
return nil, nil, nil, nil, nil,
fmt.Errorf(tr("unknown package %s"), fqbn.Package)
}
// Find platform
platform := targetPackage.Platforms[fqbn.PlatformArch]
if platform == nil {
return targetPackage, nil, nil, nil, nil,
fmt.Errorf(tr("unknown platform %s:%s"), targetPackage, fqbn.PlatformArch)
}
platformRelease := pm.GetInstalledPlatformRelease(platform)
if platformRelease == nil {
return targetPackage, nil, nil, nil, nil,
fmt.Errorf(tr("platform %s is not installed"), platform)
}
// Find board
board := platformRelease.Boards[fqbn.BoardID]
if board == nil {
return targetPackage, platformRelease, nil, nil, nil,
fmt.Errorf(tr("board %s not found"), fqbn.StringWithoutConfig())
}
buildProperties, err := board.GetBuildProperties(fqbn.Configs)
if err != nil {
return targetPackage, platformRelease, board, nil, nil,
fmt.Errorf(tr("getting build properties for board %[1]s: %[2]s"), board, err)
}
// Determine the platform used for the build (in case the board refers
// to a core contained in another platform)
buildPlatformRelease := platformRelease
coreParts := strings.Split(buildProperties.Get("build.core"), ":")
if len(coreParts) > 1 {
referredPackage := coreParts[0]
buildPackage := pm.Packages[referredPackage]
if buildPackage == nil {
return targetPackage, platformRelease, board, buildProperties, nil,
fmt.Errorf(tr("missing package %[1]s referenced by board %[2]s"), referredPackage, fqbn)
}
buildPlatform := buildPackage.Platforms[fqbn.PlatformArch]
if buildPlatform == nil {
return targetPackage, platformRelease, board, buildProperties, nil,
fmt.Errorf(tr("missing platform %[1]s:%[2]s referenced by board %[3]s"), referredPackage, fqbn.PlatformArch, fqbn)
}
buildPlatformRelease = pm.GetInstalledPlatformRelease(buildPlatform)
if buildPlatformRelease == nil {
return targetPackage, platformRelease, board, buildProperties, nil,
fmt.Errorf(tr("missing platform release %[1]s:%[2]s referenced by board %[3]s"), referredPackage, fqbn.PlatformArch, fqbn)
}
}
// No errors... phew!
return targetPackage, platformRelease, board, buildProperties, buildPlatformRelease, nil
}
// LoadPackageIndex loads a package index by looking up the local cached file from the specified URL
func (pm *PackageManager) LoadPackageIndex(URL *url.URL) error {
indexPath := pm.IndexDir.Join(path.Base(URL.Path))
index, err := packageindex.LoadIndex(indexPath)
if err != nil {
return fmt.Errorf(tr("loading json index file %[1]s: %[2]s"), indexPath, err)
}
for _, p := range index.Packages {
p.URL = URL.String()
}
index.MergeIntoPackages(pm.Packages)
return nil
}
// LoadPackageIndexFromFile load a package index from the specified file
func (pm *PackageManager) LoadPackageIndexFromFile(indexPath *paths.Path) (*packageindex.Index, error) {
index, err := packageindex.LoadIndex(indexPath)
if err != nil {
return nil, fmt.Errorf(tr("loading json index file %[1]s: %[2]s"), indexPath, err)
}
index.MergeIntoPackages(pm.Packages)
return index, nil
}
// Package looks for the Package with the given name, returning a structure
// able to perform further operations on that given resource
func (pm *PackageManager) Package(name string) *PackageActions {
//TODO: perhaps these 2 structure should be merged? cores.Packages vs pkgmgr??
var err error
thePackage := pm.Packages[name]
if thePackage == nil {
err = fmt.Errorf(tr("package '%s' not found"), name)
}
return &PackageActions{
aPackage: thePackage,
forwardError: err,
}
}
// Actions that can be done on a Package
// PackageActions defines what actions can be performed on the specific Package
// It serves as a status container for the fluent APIs
type PackageActions struct {
aPackage *cores.Package
forwardError error
}
// Tool looks for the Tool with the given name, returning a structure
// able to perform further operations on that given resource
func (pa *PackageActions) Tool(name string) *ToolActions {
var tool *cores.Tool
err := pa.forwardError
if err == nil {
tool = pa.aPackage.Tools[name]
if tool == nil {
err = fmt.Errorf(tr("tool '%[1]s' not found in package '%[2]s'"), name, pa.aPackage.Name)
}
}
return &ToolActions{
tool: tool,
forwardError: err,
}
}
// END -- Actions that can be done on a Package
// Actions that can be done on a Tool
// ToolActions defines what actions can be performed on the specific Tool
// It serves as a status container for the fluent APIs
type ToolActions struct {
tool *cores.Tool
forwardError error
}
// Get returns the final representation of the Tool
func (ta *ToolActions) Get() (*cores.Tool, error) {
err := ta.forwardError
if err == nil {
return ta.tool, nil
}
return nil, err
}
// IsInstalled checks whether any release of the Tool is installed in the system
func (ta *ToolActions) IsInstalled() (bool, error) {
if ta.forwardError != nil {
return false, ta.forwardError
}
for _, release := range ta.tool.Releases {
if release.IsInstalled() {
return true, nil
}
}
return false, nil
}
// Release FIXMEDOC
func (ta *ToolActions) Release(version *semver.RelaxedVersion) *ToolReleaseActions {
if ta.forwardError != nil {
return &ToolReleaseActions{forwardError: ta.forwardError}
}
release := ta.tool.FindReleaseWithRelaxedVersion(version)
if release == nil {
return &ToolReleaseActions{forwardError: fmt.Errorf(tr("release %[1]s not found for tool %[2]s"), version, ta.tool.String())}
}
return &ToolReleaseActions{release: release}
}
// END -- Actions that can be done on a Tool
// ToolReleaseActions defines what actions can be performed on the specific ToolRelease
// It serves as a status container for the fluent APIs
type ToolReleaseActions struct {
release *cores.ToolRelease
forwardError error
}
// Get FIXMEDOC
func (tr *ToolReleaseActions) Get() (*cores.ToolRelease, error) {
if tr.forwardError != nil {
return nil, tr.forwardError
}
return tr.release, nil
}
// GetInstalledPlatformRelease returns the PlatformRelease installed (it is chosen)
func (pm *PackageManager) GetInstalledPlatformRelease(platform *cores.Platform) *cores.PlatformRelease {
releases := platform.GetAllInstalled()
if len(releases) == 0 {
return nil
}
debug := func(msg string, pl *cores.PlatformRelease) {
pm.Log.WithField("bundle", pl.IsIDEBundled).
WithField("version", pl.Version).
WithField("managed", pm.IsManagedPlatformRelease(pl)).
Debugf("%s: %s", msg, pl)
}
best := releases[0]
bestIsManaged := pm.IsManagedPlatformRelease(best)
debug("current best", best)
for _, candidate := range releases[1:] {
candidateIsManaged := pm.IsManagedPlatformRelease(candidate)
debug("candidate", candidate)
// TODO: Disentangle this algorithm and make it more straightforward
if bestIsManaged == candidateIsManaged {
if best.IsIDEBundled == candidate.IsIDEBundled {
if candidate.Version.GreaterThan(best.Version) {
best = candidate
}
}
if best.IsIDEBundled && !candidate.IsIDEBundled {
best = candidate
}
}
if !bestIsManaged && candidateIsManaged {
best = candidate
bestIsManaged = true
}
debug("current best", best)
}
return best
}
// GetAllInstalledToolsReleases FIXMEDOC
func (pm *PackageManager) GetAllInstalledToolsReleases() []*cores.ToolRelease {
tools := []*cores.ToolRelease{}
for _, targetPackage := range pm.Packages {
for _, tool := range targetPackage.Tools {
for _, release := range tool.Releases {
if release.IsInstalled() {
tools = append(tools, release)
}
}
}
}
return tools
}
// InstalledPlatformReleases returns all installed PlatformReleases. This function is
// useful to range all PlatformReleases in for loops.
func (pm *PackageManager) InstalledPlatformReleases() []*cores.PlatformRelease {
platforms := []*cores.PlatformRelease{}
for _, targetPackage := range pm.Packages {
for _, platform := range targetPackage.Platforms {
for _, release := range platform.GetAllInstalled() {
platforms = append(platforms, release)
}
}
}
return platforms
}
// InstalledBoards returns all installed Boards. This function is useful to range
// all Boards in for loops.
func (pm *PackageManager) InstalledBoards() []*cores.Board {
boards := []*cores.Board{}
for _, targetPackage := range pm.Packages {
for _, platform := range targetPackage.Platforms {
for _, release := range platform.GetAllInstalled() {
for _, board := range release.Boards {
boards = append(boards, board)
}
}
}
}
return boards
}
// FindToolsRequiredFromPlatformRelease returns a list of ToolReleases needed by the specified PlatformRelease.
// If a ToolRelease is not found return an error
func (pm *PackageManager) FindToolsRequiredFromPlatformRelease(platform *cores.PlatformRelease) ([]*cores.ToolRelease, error) {
pm.Log.Infof("Searching tools required for platform %s", platform)
// maps "PACKAGER:TOOL" => ToolRelease
foundTools := map[string]*cores.ToolRelease{}
// A Platform may not specify required tools (because it's a platform that comes from a
// user/hardware dir without a package_index.json) then add all available tools
for _, targetPackage := range pm.Packages {
for _, tool := range targetPackage.Tools {
rel := tool.GetLatestInstalled()
if rel != nil {
foundTools[rel.Tool.Name] = rel
}
}
}
// replace the default tools above with the specific required by the current platform
requiredTools := []*cores.ToolRelease{}
platform.ToolDependencies.Sort()
for _, toolDep := range platform.ToolDependencies {
pm.Log.WithField("tool", toolDep).Infof("Required tool")
tool := pm.FindToolDependency(toolDep)
if tool == nil {
return nil, fmt.Errorf(tr("tool release not found: %s"), toolDep)
}
requiredTools = append(requiredTools, tool)
delete(foundTools, tool.Tool.Name)
}
platform.DiscoveryDependencies.Sort()
for _, discoveryDep := range platform.DiscoveryDependencies {
pm.Log.WithField("discovery", discoveryDep).Infof("Required discovery")
tool := pm.FindDiscoveryDependency(discoveryDep)
if tool == nil {
return nil, fmt.Errorf(tr("discovery release not found: %s"), discoveryDep)
}
requiredTools = append(requiredTools, tool)
delete(foundTools, tool.Tool.Name)
}
platform.MonitorDependencies.Sort()
for _, monitorDep := range platform.MonitorDependencies {
pm.Log.WithField("monitor", monitorDep).Infof("Required monitor")
tool := pm.FindMonitorDependency(monitorDep)
if tool == nil {
return nil, fmt.Errorf(tr("monitor release not found: %s"), monitorDep)
}
requiredTools = append(requiredTools, tool)
delete(foundTools, tool.Tool.Name)
}
for _, toolRel := range foundTools {
requiredTools = append(requiredTools, toolRel)
}
return requiredTools, nil
}
// GetTool searches for tool in all packages and platforms.
func (pm *PackageManager) GetTool(toolID string) *cores.Tool {
split := strings.Split(toolID, ":")
if len(split) != 2 {
return nil
}
if pack, ok := pm.Packages[split[0]]; !ok {
return nil
} else if tool, ok := pack.Tools[split[1]]; !ok {
return nil
} else {
return tool
}
}
// FindToolsRequiredForBoard FIXMEDOC
func (pm *PackageManager) FindToolsRequiredForBoard(board *cores.Board) ([]*cores.ToolRelease, error) {
pm.Log.Infof("Searching tools required for board %s", board)
// core := board.Properties["build.core"]
platform := board.PlatformRelease
// maps "PACKAGER:TOOL" => ToolRelease
foundTools := map[string]*cores.ToolRelease{}
// a Platform may not specify required tools (because it's a platform that comes from a
// user/hardware dir without a package_index.json) then add all available tools
for _, targetPackage := range pm.Packages {
for _, tool := range targetPackage.Tools {
rel := tool.GetLatestInstalled()
if rel != nil {
foundTools[rel.Tool.Name] = rel
}
}
}
// replace the default tools above with the specific required by the current platform
requiredTools := []*cores.ToolRelease{}
platform.ToolDependencies.Sort()
for _, toolDep := range platform.ToolDependencies {
pm.Log.WithField("tool", toolDep).Infof("Required tool")
tool := pm.FindToolDependency(toolDep)
if tool == nil {
return nil, fmt.Errorf(tr("tool release not found: %s"), toolDep)
}
requiredTools = append(requiredTools, tool)
delete(foundTools, tool.Tool.Name)
}
for _, toolRel := range foundTools {
requiredTools = append(requiredTools, toolRel)
}
return requiredTools, nil
}
// FindToolDependency returns the ToolRelease referenced by the ToolDependency or nil if
// the referenced tool doesn't exists.
func (pm *PackageManager) FindToolDependency(dep *cores.ToolDependency) *cores.ToolRelease {
toolRelease, err := pm.Package(dep.ToolPackager).Tool(dep.ToolName).Release(dep.ToolVersion).Get()
if err != nil {
return nil
}
return toolRelease
}
// FindDiscoveryDependency returns the ToolRelease referenced by the DiscoveryDepenency or nil if
// the referenced discovery doesn't exists.
func (pm *PackageManager) FindDiscoveryDependency(discovery *cores.DiscoveryDependency) *cores.ToolRelease {
if pack := pm.Packages[discovery.Packager]; pack == nil {
return nil
} else if toolRelease := pack.Tools[discovery.Name]; toolRelease == nil {
return nil
} else {
return toolRelease.GetLatestInstalled()
}
}
// FindMonitorDependency returns the ToolRelease referenced by the MonitorDepenency or nil if
// the referenced monitor doesn't exists.
func (pm *PackageManager) FindMonitorDependency(discovery *cores.MonitorDependency) *cores.ToolRelease {
if pack := pm.Packages[discovery.Packager]; pack == nil {
return nil
} else if toolRelease := pack.Tools[discovery.Name]; toolRelease == nil {
return nil
} else {
return toolRelease.GetLatestInstalled()
}
}