forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage_manager.go
829 lines (745 loc) · 28.6 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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
// 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"
"os"
"path"
"path/filepath"
"strconv"
"strings"
"sync"
"time"
"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/arduino/sketch"
"github.com/arduino/arduino-cli/i18n"
paths "github.com/arduino/go-paths-helper"
properties "github.com/arduino/go-properties-orderedmap"
"github.com/arduino/go-timeutils"
"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 {
packagesLock sync.RWMutex // Protects packages and packagesCustomGlobalProperties
packages cores.Packages
packagesCustomGlobalProperties *properties.Map
log logrus.FieldLogger
IndexDir *paths.Path
PackagesDir *paths.Path
DownloadDir *paths.Path
tempDir *paths.Path
profile *sketch.Profile
discoveryManager *discoverymanager.DiscoveryManager
userAgent string
}
// Builder is used to create a new PackageManager. The builder
// has methods to load platforms and tools to actually build the PackageManager.
// Once the PackageManager is built, it cannot be changed anymore.
type Builder PackageManager
// Explorer is used to query the PackageManager. When used it holds
// a read-only lock on the PackageManager that must be released when the
// job is completed.
type Explorer PackageManager
var tr = i18n.Tr
// NewBuilder returns a new Builder
func NewBuilder(indexDir, packagesDir, downloadDir, tempDir *paths.Path, userAgent string) *Builder {
return &Builder{
log: logrus.StandardLogger(),
packages: cores.NewPackages(),
IndexDir: indexDir,
PackagesDir: packagesDir,
DownloadDir: downloadDir,
tempDir: tempDir,
packagesCustomGlobalProperties: properties.NewMap(),
discoveryManager: discoverymanager.New(),
userAgent: userAgent,
}
}
// BuildIntoExistingPackageManager will overwrite the given PackageManager instead
// of building a new one.
func (pmb *Builder) BuildIntoExistingPackageManager(target *PackageManager) {
target.packagesLock.Lock()
defer target.packagesLock.Unlock()
target.log = pmb.log
target.packages = pmb.packages
target.IndexDir = pmb.IndexDir
target.PackagesDir = pmb.PackagesDir
target.DownloadDir = pmb.DownloadDir
target.tempDir = pmb.tempDir
target.packagesCustomGlobalProperties = pmb.packagesCustomGlobalProperties
target.profile = pmb.profile
target.discoveryManager.Clear()
target.discoveryManager.AddAllDiscoveriesFrom(pmb.discoveryManager)
target.userAgent = pmb.userAgent
}
// Build builds a new PackageManager.
func (pmb *Builder) Build() *PackageManager {
return &PackageManager{
log: pmb.log,
packages: pmb.packages,
IndexDir: pmb.IndexDir,
PackagesDir: pmb.PackagesDir,
DownloadDir: pmb.DownloadDir,
tempDir: pmb.tempDir,
packagesCustomGlobalProperties: pmb.packagesCustomGlobalProperties,
profile: pmb.profile,
discoveryManager: pmb.discoveryManager,
userAgent: pmb.userAgent,
}
}
// NewBuilder creates a Builder with the same configuration
// of this PackageManager. A "commit" function callback is returned: calling
// this function will make the builder write the new configuration into this
// PackageManager.
func (pm *PackageManager) NewBuilder() (builder *Builder, commit func()) {
pmb := NewBuilder(pm.IndexDir, pm.PackagesDir, pm.DownloadDir, pm.tempDir, pm.userAgent)
return pmb, func() {
pmb.BuildIntoExistingPackageManager(pm)
}
}
// NewExplorer creates an Explorer for this PackageManager.
// The Explorer will keep a read-lock on the underlying PackageManager,
// the user must call the "release" callback function to release the lock
// when the Explorer is no more needed.
func (pm *PackageManager) NewExplorer() (explorer *Explorer, release func()) {
pm.packagesLock.RLock()
return &Explorer{
log: pm.log,
packages: pm.packages,
IndexDir: pm.IndexDir,
PackagesDir: pm.PackagesDir,
DownloadDir: pm.DownloadDir,
tempDir: pm.tempDir,
packagesCustomGlobalProperties: pm.packagesCustomGlobalProperties,
profile: pm.profile,
discoveryManager: pm.discoveryManager,
userAgent: pm.userAgent,
}, pm.packagesLock.RUnlock
}
// GetProfile returns the active profile for this package manager, or nil if no profile is selected.
func (pme *Explorer) GetProfile() *sketch.Profile {
return pme.profile
}
// GetEnvVarsForSpawnedProcess produces a set of environment variables that
// must be sent to all processes spawned from the arduino-cli.
func (pme *Explorer) GetEnvVarsForSpawnedProcess() []string {
if pme == nil {
return nil
}
return []string{
"ARDUINO_USER_AGENT=" + pme.userAgent,
}
}
// DiscoveryManager returns the DiscoveryManager in use by this PackageManager
func (pme *Explorer) DiscoveryManager() *discoverymanager.DiscoveryManager {
return pme.discoveryManager
}
// GetOrCreatePackage returns the specified Package or creates an empty one
// filling all the cross-references
func (pmb *Builder) GetOrCreatePackage(packager string) *cores.Package {
return pmb.packages.GetOrCreatePackage(packager)
}
// GetPackages returns the internal packages structure for direct usage.
// Deprecated: do not access packages directly, but use specific Explorer methods when possible.
func (pme *Explorer) GetPackages() cores.Packages {
return pme.packages
}
// GetCustomGlobalProperties returns the user defined custom global
// properties for installed platforms.
func (pme *Explorer) GetCustomGlobalProperties() *properties.Map {
return pme.packagesCustomGlobalProperties
}
// FindPlatformReleaseProvidingBoardsWithVidPid FIXMEDOC
func (pme *Explorer) FindPlatformReleaseProvidingBoardsWithVidPid(vid, pid string) []*cores.PlatformRelease {
res := []*cores.PlatformRelease{}
for _, targetPackage := range pme.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 (pme *Explorer) FindBoardsWithVidPid(vid, pid string) []*cores.Board {
res := []*cores.Board{}
for _, targetPackage := range pme.packages {
for _, targetPlatform := range targetPackage.Platforms {
if platform := pme.GetInstalledPlatformRelease(targetPlatform); platform != nil {
for _, board := range platform.Boards {
if board.HasUsbID(vid, pid) {
res = append(res, board)
}
}
}
}
}
return res
}
// FindBoardsWithID FIXMEDOC
func (pme *Explorer) FindBoardsWithID(id string) []*cores.Board {
res := []*cores.Board{}
for _, targetPackage := range pme.packages {
for _, targetPlatform := range targetPackage.Platforms {
if platform := pme.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 (pme *Explorer) 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 := pme.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 (pme *Explorer) ResolveFQBN(fqbn *cores.FQBN) (
*cores.Package, *cores.PlatformRelease, *cores.Board,
*properties.Map, *cores.PlatformRelease, error) {
// Find package
targetPackage := pme.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)
}
boardPlatformRelease := pme.GetInstalledPlatformRelease(platform)
if boardPlatformRelease == nil {
return targetPackage, nil, nil, nil, nil,
fmt.Errorf(tr("platform %s is not installed"), platform)
}
// Find board
board := boardPlatformRelease.Boards[fqbn.BoardID]
if board == nil {
return targetPackage, boardPlatformRelease, nil, nil, nil,
fmt.Errorf(tr("board %s not found"), fqbn.StringWithoutConfig())
}
boardBuildProperties, err := board.GetBuildProperties(fqbn.Configs)
if err != nil {
return targetPackage, boardPlatformRelease, board, nil, nil,
fmt.Errorf(tr("getting build properties for board %[1]s: %[2]s"), board, err)
}
// Determine the platform used for the build and the variant (in case the board refers
// to a core contained in another platform)
core, corePlatformRelease, variant, variantPlatformRelease, err := pme.determineReferencedPlatformRelease(boardBuildProperties, boardPlatformRelease, fqbn)
if err != nil {
return targetPackage, boardPlatformRelease, board, nil, nil, err
}
// Create the build properties map by overlaying the properties of the
// referenced platform propeties, the board platform properties and the
// board specific properties.
buildProperties := properties.NewMap()
buildProperties.Merge(variantPlatformRelease.Properties)
buildProperties.Merge(corePlatformRelease.Properties)
buildProperties.Merge(boardPlatformRelease.Properties)
buildProperties.Merge(boardBuildProperties)
// Add runtime build properties
buildProperties.Merge(boardPlatformRelease.RuntimeProperties())
buildProperties.SetPath("build.core.path", corePlatformRelease.InstallDir.Join("cores", core))
buildProperties.SetPath("build.system.path", corePlatformRelease.InstallDir.Join("system"))
buildProperties.Set("build.variant.path", "")
if variant != "" {
buildProperties.SetPath("build.variant.path", variantPlatformRelease.InstallDir.Join("variants", variant))
}
for _, tool := range pme.GetAllInstalledToolsReleases() {
buildProperties.Merge(tool.RuntimeProperties())
}
requiredTools, err := pme.FindToolsRequiredForBuild(boardPlatformRelease, corePlatformRelease)
if err != nil {
return targetPackage, boardPlatformRelease, board, buildProperties, corePlatformRelease, err
}
for _, tool := range requiredTools {
buildProperties.Merge(tool.RuntimeProperties())
}
now := time.Now()
buildProperties.Set("extra.time.utc", strconv.FormatInt(now.Unix(), 10))
buildProperties.Set("extra.time.local", strconv.FormatInt(timeutils.LocalUnix(now), 10))
buildProperties.Set("extra.time.zone", strconv.Itoa(timeutils.TimezoneOffsetNoDST(now)))
buildProperties.Set("extra.time.dst", strconv.Itoa(timeutils.DaylightSavingsOffset(now)))
if !buildProperties.ContainsKey("runtime.ide.path") {
if ex, err := os.Executable(); err == nil {
buildProperties.Set("runtime.ide.path", filepath.Dir(ex))
} else {
buildProperties.Set("runtime.ide.path", "")
}
}
buildProperties.Set("runtime.os", properties.GetOSSuffix())
buildProperties.Set("build.library_discovery_phase", "0")
// Deprecated properties
buildProperties.Set("tools.avrdude.path", "{runtime.tools.avrdude.path}")
buildProperties.Set("ide_version", "10607")
buildProperties.Set("runtime.ide.version", "10607")
if !buildProperties.ContainsKey("software") {
buildProperties.Set("software", "ARDUINO")
}
buildProperties.Merge(pme.GetCustomGlobalProperties())
return targetPackage, boardPlatformRelease, board, buildProperties, corePlatformRelease, nil
}
func (pme *Explorer) determineReferencedPlatformRelease(boardBuildProperties *properties.Map, boardPlatformRelease *cores.PlatformRelease, fqbn *cores.FQBN) (string, *cores.PlatformRelease, string, *cores.PlatformRelease, error) {
core := boardBuildProperties.Get("build.core")
referredCore := ""
if split := strings.Split(core, ":"); len(split) > 1 {
referredCore, core = split[0], split[1]
}
variant := boardBuildProperties.Get("build.variant")
referredVariant := ""
if split := strings.Split(variant, ":"); len(split) > 1 {
referredVariant, variant = split[0], split[1]
}
// core and variant cannot refer to two different platforms
if referredCore != "" && referredVariant != "" && referredCore != referredVariant {
return "", nil, "", nil,
fmt.Errorf(tr("'build.core' and 'build.variant' refer to different platforms: %[1]s and %[2]s"), referredCore+":"+core, referredVariant+":"+variant)
}
// extract the referred platform
var referredPlatformRelease *cores.PlatformRelease
referredPackageName := referredCore
if referredPackageName == "" {
referredPackageName = referredVariant
}
if referredPackageName != "" {
referredPackage := pme.packages[referredPackageName]
if referredPackage == nil {
return "", nil, "", nil,
fmt.Errorf(tr("missing package %[1]s referenced by board %[2]s"), referredPackageName, fqbn)
}
referredPlatform := referredPackage.Platforms[fqbn.PlatformArch]
if referredPlatform == nil {
return "", nil, "", nil,
fmt.Errorf(tr("missing platform %[1]s:%[2]s referenced by board %[3]s"), referredPackageName, fqbn.PlatformArch, fqbn)
}
referredPlatformRelease = pme.GetInstalledPlatformRelease(referredPlatform)
if referredPlatformRelease == nil {
return "", nil, "", nil,
fmt.Errorf(tr("missing platform release %[1]s:%[2]s referenced by board %[3]s"), referredPackageName, fqbn.PlatformArch, fqbn)
}
}
corePlatformRelease := boardPlatformRelease
if referredCore != "" {
corePlatformRelease = referredPlatformRelease
}
variantPlatformRelease := boardPlatformRelease
if referredVariant != "" {
variantPlatformRelease = referredPlatformRelease
}
return core, corePlatformRelease, variant, variantPlatformRelease, nil
}
// LoadPackageIndex loads a package index by looking up the local cached file from the specified URL
func (pmb *Builder) LoadPackageIndex(URL *url.URL) error {
indexFileName := path.Base(URL.Path)
if strings.HasSuffix(indexFileName, ".tar.bz2") {
indexFileName = strings.TrimSuffix(indexFileName, ".tar.bz2") + ".json"
}
indexPath := pmb.IndexDir.Join(indexFileName)
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(pmb.packages)
return nil
}
// LoadPackageIndexFromFile load a package index from the specified file
func (pmb *Builder) 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(pmb.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 (pme *Explorer) Package(name string) *PackageActions {
//TODO: perhaps these 2 structure should be merged? cores.Packages vs pkgmgr??
var err error
thePackage := pme.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 (pme *Explorer) GetInstalledPlatformRelease(platform *cores.Platform) *cores.PlatformRelease {
releases := platform.GetAllInstalled()
if len(releases) == 0 {
return nil
}
debug := func(msg string, pl *cores.PlatformRelease) {
pme.log.WithField("bundle", pl.IsIDEBundled).
WithField("version", pl.Version).
WithField("managed", pme.IsManagedPlatformRelease(pl)).
Debugf("%s: %s", msg, pl)
}
best := releases[0]
bestIsManaged := pme.IsManagedPlatformRelease(best)
debug("current best", best)
for _, candidate := range releases[1:] {
candidateIsManaged := pme.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 (pme *Explorer) GetAllInstalledToolsReleases() []*cores.ToolRelease {
tools := []*cores.ToolRelease{}
for _, targetPackage := range pme.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 (pme *Explorer) InstalledPlatformReleases() []*cores.PlatformRelease {
platforms := []*cores.PlatformRelease{}
for _, targetPackage := range pme.packages {
for _, platform := range targetPackage.Platforms {
platforms = append(platforms, platform.GetAllInstalled()...)
}
}
return platforms
}
// InstalledBoards returns all installed Boards. This function is useful to range
// all Boards in for loops.
func (pme *Explorer) InstalledBoards() []*cores.Board {
boards := []*cores.Board{}
for _, targetPackage := range pme.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 (pme *Explorer) FindToolsRequiredFromPlatformRelease(platform *cores.PlatformRelease) ([]*cores.ToolRelease, error) {
pme.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 pme.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 {
pme.log.WithField("tool", toolDep).Infof("Required tool")
tool := pme.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 {
pme.log.WithField("discovery", discoveryDep).Infof("Required discovery")
tool := pme.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 {
pme.log.WithField("monitor", monitorDep).Infof("Required monitor")
tool := pme.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 (pme *Explorer) GetTool(toolID string) *cores.Tool {
split := strings.Split(toolID, ":")
if len(split) != 2 {
return nil
}
if pack, ok := pme.packages[split[0]]; !ok {
return nil
} else if tool, ok := pack.Tools[split[1]]; !ok {
return nil
} else {
return tool
}
}
// FindToolsRequiredForBuild returns the list of ToolReleases needed to build for the specified
// plaftorm. The buildPlatform may be different depending on the selected board.
func (pme *Explorer) FindToolsRequiredForBuild(platform, buildPlatform *cores.PlatformRelease) ([]*cores.ToolRelease, error) {
// maps tool name => all available ToolRelease
allToolsAlternatives := map[string][]*cores.ToolRelease{}
for _, tool := range pme.GetAllInstalledToolsReleases() {
alternatives := allToolsAlternatives[tool.Tool.Name]
alternatives = append(alternatives, tool)
allToolsAlternatives[tool.Tool.Name] = alternatives
}
// selectBest select the tool with best matching, applying the following rules
// in order of priority:
// - the tool comes from the requested packager
// - the tool comes from the build platform packager
// - the tool has the greatest version
// - the tool packager comes first in alphabetic order
packagerPriority := map[string]int{}
packagerPriority[platform.Platform.Package.Name] = 2
if buildPlatform != nil {
packagerPriority[buildPlatform.Platform.Package.Name] = 1
}
selectBest := func(tools []*cores.ToolRelease) *cores.ToolRelease {
selected := tools[0]
for _, tool := range tools[1:] {
if packagerPriority[tool.Tool.Package.Name] != packagerPriority[selected.Tool.Package.Name] {
if packagerPriority[tool.Tool.Package.Name] > packagerPriority[selected.Tool.Package.Name] {
selected = tool
}
continue
}
if !tool.Version.Equal(selected.Version) {
if tool.Version.GreaterThan(selected.Version) {
selected = tool
}
continue
}
if tool.Tool.Package.Name < selected.Tool.Package.Name {
selected = tool
}
}
return selected
}
// First select the specific tools required by the current platform
requiredTools := []*cores.ToolRelease{}
// The Sorting of the tool dependencies is required because some platforms may depends
// on more than one version of the same tool. For example adafruit:samd has both
// [email protected] and [email protected]. To allow the runtime property
// {runtime.tools.bossac.path} to be correctly set to the 1.8.0 version we must ensure
// that the returned array is sorted by version.
platform.ToolDependencies.Sort()
for _, toolDep := range platform.ToolDependencies {
pme.log.WithField("tool", toolDep).Infof("Required tool")
tool := pme.FindToolDependency(toolDep)
if tool == nil {
return nil, fmt.Errorf(tr("tool release not found: %s"), toolDep)
}
requiredTools = append(requiredTools, tool)
delete(allToolsAlternatives, tool.Tool.Name)
}
// Since a Platform may not specify the required tools (because it's a platform that comes
// from a user/hardware dir without a package_index.json) then add all available tools giving
// priority to tools coming from the same packager or referenced packager
for _, tools := range allToolsAlternatives {
tool := selectBest(tools)
requiredTools = append(requiredTools, tool)
}
return requiredTools, nil
}
// FindToolDependency returns the ToolRelease referenced by the ToolDependency or nil if
// the referenced tool doesn't exists.
func (pme *Explorer) FindToolDependency(dep *cores.ToolDependency) *cores.ToolRelease {
toolRelease, err := pme.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 (pme *Explorer) FindDiscoveryDependency(discovery *cores.DiscoveryDependency) *cores.ToolRelease {
if pack := pme.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 (pme *Explorer) FindMonitorDependency(discovery *cores.MonitorDependency) *cores.ToolRelease {
if pack := pme.packages[discovery.Packager]; pack == nil {
return nil
} else if toolRelease := pack.Tools[discovery.Name]; toolRelease == nil {
return nil
} else {
return toolRelease.GetLatestInstalled()
}
}