forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathloader.go
592 lines (519 loc) · 21.1 KB
/
loader.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
// 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"
"os"
"path/filepath"
"strconv"
"strings"
"github.com/arduino/arduino-cli/arduino/cores"
"github.com/arduino/arduino-cli/configuration"
"github.com/arduino/go-paths-helper"
properties "github.com/arduino/go-properties-orderedmap"
semver "go.bug.st/relaxed-semver"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
// LoadHardware read all plaforms from the configured paths
func (pm *PackageManager) LoadHardware() []*status.Status {
statuses := []*status.Status{}
dirs := configuration.HardwareDirectories(configuration.Settings)
if errs := pm.LoadHardwareFromDirectories(dirs); len(errs) > 0 {
statuses = append(statuses, errs...)
}
dirs = configuration.BundleToolsDirectories(configuration.Settings)
if errs := pm.LoadToolsFromBundleDirectories(dirs); len(errs) > 0 {
statuses = append(statuses, errs...)
}
return statuses
}
// LoadHardwareFromDirectories load plaforms from a set of directories
func (pm *PackageManager) LoadHardwareFromDirectories(hardwarePaths paths.PathList) []*status.Status {
statuses := []*status.Status{}
for _, path := range hardwarePaths {
if errs := pm.LoadHardwareFromDirectory(path); len(errs) > 0 {
statuses = append(statuses, errs...)
}
}
return statuses
}
// LoadHardwareFromDirectory read a plaform from the path passed as parameter
func (pm *PackageManager) LoadHardwareFromDirectory(path *paths.Path) []*status.Status {
pm.Log.Infof("Loading hardware from: %s", path)
statuses := []*status.Status{}
if err := path.ToAbs(); err != nil {
s := status.Newf(codes.FailedPrecondition, "find abs path: %s", err)
return append(statuses, s)
}
if path.IsNotDir() {
s := status.Newf(codes.FailedPrecondition, "%s is not a directory", path)
return append(statuses, s)
}
// Scan subdirs
packagersPaths, err := path.ReadDir()
if err != nil {
s := status.Newf(codes.FailedPrecondition, "reading %s directory: %s", path, err)
return append(statuses, s)
}
packagersPaths.FilterOutHiddenFiles()
packagersPaths.FilterDirs()
// Load custom platform properties if available
// "Global" platform.txt used to overwrite all installed platforms.
// For more info: https://arduino.github.io/arduino-cli/latest/platform-specification/#global-platformtxt
if globalPlatformTxt := path.Join("platform.txt"); globalPlatformTxt.Exist() {
pm.Log.Infof("Loading custom platform properties: %s", globalPlatformTxt)
if p, err := properties.LoadFromPath(globalPlatformTxt); err != nil {
pm.Log.WithError(err).Errorf("Error loading properties.")
} else {
pm.CustomGlobalProperties.Merge(p)
}
}
for _, packagerPath := range packagersPaths {
packager := packagerPath.Base()
// Skip tools, they're not packages and don't contain Platforms
if packager == "tools" {
pm.Log.Infof("Excluding directory: %s", packagerPath)
continue
}
// Follow symlinks
err := packagerPath.FollowSymLink() // ex: .arduino15/packages/arduino/
if err != nil {
s := status.Newf(codes.Internal, "following possible symlink %s: %s", path, err)
statuses = append(statuses, s)
continue
}
// There are two possible package directory structures:
// - PACKAGER/ARCHITECTURE-1/boards.txt... (ex: arduino/avr/...)
// PACKAGER/ARCHITECTURE-2/boards.txt... (ex: arduino/sam/...)
// PACKAGER/ARCHITECTURE-3/boards.txt... (ex: arduino/samd/...)
// or
// - PACKAGER/hardware/ARCHITECTURE-1/VERSION/boards.txt... (ex: arduino/hardware/avr/1.6.15/...)
// PACKAGER/hardware/ARCHITECTURE-2/VERSION/boards.txt... (ex: arduino/hardware/sam/1.6.6/...)
// PACKAGER/hardware/ARCHITECTURE-3/VERSION/boards.txt... (ex: arduino/hardware/samd/1.6.12/...)
// PACKAGER/tools/... (ex: arduino/tools/...)
// in the latter case we just move into "hardware" directory and continue
var architectureParentPath *paths.Path
hardwareSubdirPath := packagerPath.Join("hardware") // ex: .arduino15/packages/arduino/hardware
if hardwareSubdirPath.IsDir() {
// we found the "hardware" directory move down into that
architectureParentPath = hardwareSubdirPath // ex: .arduino15/packages/arduino/
} else {
// we are already at the correct level
architectureParentPath = packagerPath
}
targetPackage := pm.Packages.GetOrCreatePackage(packager)
if errs := pm.loadPlatforms(targetPackage, architectureParentPath); len(errs) > 0 {
statuses = append(statuses, errs...)
}
// Check if we have tools to load, the directory structure is as follows:
// - PACKAGER/tools/TOOL-NAME/TOOL-VERSION/... (ex: arduino/tools/bossac/1.7.0/...)
toolsSubdirPath := packagerPath.Join("tools")
if toolsSubdirPath.IsDir() {
pm.Log.Infof("Checking existence of 'tools' path: %s", toolsSubdirPath)
if errs := pm.loadToolsFromPackage(targetPackage, toolsSubdirPath); len(errs) > 0 {
statuses = append(statuses, errs...)
}
}
}
return statuses
}
// loadPlatforms load plaftorms from the specified directory assuming that they belongs
// to the targetPackage object passed as parameter.
// A list of gRPC Status error is returned for each Platform failed to load.
func (pm *PackageManager) loadPlatforms(targetPackage *cores.Package, packageDir *paths.Path) []*status.Status {
pm.Log.Infof("Loading package %s from: %s", targetPackage.Name, packageDir)
statuses := []*status.Status{}
platformsDirs, err := packageDir.ReadDir()
if err != nil {
s := status.Newf(codes.FailedPrecondition, "reading directory %s: %s", packageDir, err)
return append(statuses, s)
}
// A platform can only be inside a directory, thus we skip everything else.
platformsDirs.FilterDirs()
// Filter out directories like .git and similar things
platformsDirs.FilterOutPrefix(".")
for _, platformPath := range platformsDirs {
// Tools are not a platform
if platformPath.Base() == "tools" {
continue
}
if err := pm.loadPlatform(targetPackage, platformPath); err != nil {
statuses = append(statuses, err)
}
}
return statuses
}
// loadPlatform loads a single platform and all its installed releases given a platformPath.
// platformPath must be a directory.
// Returns a gRPC Status error in case of failures.
func (pm *PackageManager) loadPlatform(targetPackage *cores.Package, platformPath *paths.Path) *status.Status {
// This is not a platform
if platformPath.IsNotDir() {
return status.Newf(codes.NotFound, "path is not a platform directory: %s", platformPath)
}
architecture := platformPath.Base()
// There are two possible platform directory structures:
// - ARCHITECTURE/boards.txt
// - ARCHITECTURE/VERSION/boards.txt
// We identify them by checking where is the bords.txt file
possibleBoardTxtPath := platformPath.Join("boards.txt")
if exist, err := possibleBoardTxtPath.ExistCheck(); err != nil {
return status.Newf(codes.FailedPrecondition, "looking for boards.txt in %s: %s", possibleBoardTxtPath, err)
} else if exist {
// case: ARCHITECTURE/boards.txt
platformTxtPath := platformPath.Join("platform.txt")
platformProperties, err := properties.SafeLoad(platformTxtPath.String())
if err != nil {
return status.Newf(codes.FailedPrecondition, "loading platform.txt: %v", err)
}
version := semver.MustParse(platformProperties.Get("version"))
// Check if package_bundled_index.json exists.
// This is used indirectly by the Java IDE since it's necessary for the arduino-builder
// to find cores bundled with that version of the IDE.
// TODO: This piece of logic MUST be removed as soon as the Java IDE stops using the arduino-builder.
isIDEBundled := false
packageBundledIndexPath := platformPath.Parent().Parent().Join("package_index_bundled.json")
if packageBundledIndexPath.Exist() {
// particular case: ARCHITECTURE/boards.txt with package_bundled_index.json
// this is an unversioned Platform with a package_index_bundled.json that
// gives information about the version and tools needed
// Parse the bundled index and merge to the general index
index, err := pm.LoadPackageIndexFromFile(packageBundledIndexPath)
if err != nil {
return status.Newf(codes.FailedPrecondition, "parsing IDE bundled index: %s", err)
}
// Now export the bundled index in a temporary core.Packages to retrieve the bundled package version
tmp := cores.NewPackages()
index.MergeIntoPackages(tmp)
if tmpPackage := tmp.GetOrCreatePackage(targetPackage.Name); tmpPackage == nil {
pm.Log.Warnf("Can't determine bundle platform version for %s", targetPackage.Name)
} else if tmpPlatform := tmpPackage.GetOrCreatePlatform(architecture); tmpPlatform == nil {
pm.Log.Warnf("Can't determine bundle platform version for %s:%s", targetPackage.Name, architecture)
} else if tmpPlatformRelease := tmpPlatform.GetLatestRelease(); tmpPlatformRelease == nil {
pm.Log.Warnf("Can't determine bundle platform version for %s:%s, no valid release found", targetPackage.Name, architecture)
} else {
version = tmpPlatformRelease.Version
}
isIDEBundled = true
}
platform := targetPackage.GetOrCreatePlatform(architecture)
if !isIDEBundled {
platform.ManuallyInstalled = true
}
release := platform.GetOrCreateRelease(version)
release.IsIDEBundled = isIDEBundled
if isIDEBundled {
pm.Log.Infof("Package is built-in")
}
if err := pm.loadPlatformRelease(release, platformPath); err != nil {
return status.Newf(codes.FailedPrecondition, "loading platform release %s: %s", release, err)
}
pm.Log.WithField("platform", release).Infof("Loaded platform")
} else {
// case: ARCHITECTURE/VERSION/boards.txt
// let's dive into VERSION directories
platform := targetPackage.GetOrCreatePlatform(architecture)
versionDirs, err := platformPath.ReadDir()
if err != nil {
return status.Newf(codes.FailedPrecondition, "reading dir %s: %s", platformPath, err)
}
versionDirs.FilterDirs()
versionDirs.FilterOutHiddenFiles()
for _, versionDir := range versionDirs {
if exist, err := versionDir.Join("boards.txt").ExistCheck(); err != nil {
return status.Newf(codes.FailedPrecondition, "opening boards.txt: %s", err)
} else if !exist {
continue
}
version, err := semver.Parse(versionDir.Base())
if err != nil {
return status.Newf(codes.FailedPrecondition, "invalid version dir %s: %s", versionDir, err)
}
release := platform.GetOrCreateRelease(version)
if err := pm.loadPlatformRelease(release, versionDir); err != nil {
return status.Newf(codes.FailedPrecondition, "loading platform release %s: %s", release, err)
}
pm.Log.WithField("platform", release).Infof("Loaded platform")
}
}
return nil
}
func (pm *PackageManager) loadPlatformRelease(platform *cores.PlatformRelease, path *paths.Path) error {
platform.InstallDir = path
// Some useful paths
installedJSONPath := path.Join("installed.json")
platformTxtPath := path.Join("platform.txt")
platformTxtLocalPath := path.Join("platform.local.txt")
programmersTxtPath := path.Join("programmers.txt")
// If the installed.json file is found load it, this is done to handle the
// case in which the platform's index and its url have been deleted locally,
// if we don't load it some information about the platform is lost
if installedJSONPath.Exist() {
if _, err := pm.LoadPackageIndexFromFile(installedJSONPath); err != nil {
return fmt.Errorf("loading %s: %s", installedJSONPath, err)
}
}
// Create platform properties
platform.Properties = platform.Properties.Clone() // TODO: why CLONE?
if p, err := properties.SafeLoad(platformTxtPath.String()); err == nil {
platform.Properties.Merge(p)
} else {
return fmt.Errorf("loading %s: %s", platformTxtPath, err)
}
if p, err := properties.SafeLoad(platformTxtLocalPath.String()); err == nil {
platform.Properties.Merge(p)
} else {
return fmt.Errorf("loading %s: %s", platformTxtLocalPath, err)
}
if platform.Properties.SubTree("discovery").Size() > 0 {
platform.PluggableDiscoveryAware = true
}
if platform.Platform.Name == "" {
if name, ok := platform.Properties.GetOk("name"); ok {
platform.Platform.Name = name
} else {
// If the platform.txt file doesn't exist for this platform and it's not in any
// package index there is no way of retrieving its name, so we build one using
// the available information, that is the packager name and the architecture.
platform.Platform.Name = fmt.Sprintf("%s-%s", platform.Platform.Package.Name, platform.Platform.Architecture)
}
}
// Create programmers properties
if programmersProperties, err := properties.SafeLoad(programmersTxtPath.String()); err == nil {
for programmerID, programmerProperties := range programmersProperties.FirstLevelOf() {
platform.Programmers[programmerID] = pm.loadProgrammer(programmerProperties)
platform.Programmers[programmerID].PlatformRelease = platform
}
} else {
return err
}
if err := pm.loadBoards(platform); err != nil {
return fmt.Errorf("loading boards: %s", err)
}
return nil
}
func (pm *PackageManager) loadProgrammer(programmerProperties *properties.Map) *cores.Programmer {
return &cores.Programmer{
Name: programmerProperties.Get("name"),
Properties: programmerProperties,
}
}
func (pm *PackageManager) loadBoards(platform *cores.PlatformRelease) error {
if platform.InstallDir == nil {
return fmt.Errorf("platform not installed")
}
boardsTxtPath := platform.InstallDir.Join("boards.txt")
boardsProperties, err := properties.LoadFromPath(boardsTxtPath)
if err != nil {
return err
}
boardsLocalTxtPath := platform.InstallDir.Join("boards.local.txt")
if localProperties, err := properties.SafeLoadFromPath(boardsLocalTxtPath); err == nil {
boardsProperties.Merge(localProperties)
} else {
return err
}
propertiesByBoard := boardsProperties.FirstLevelOf()
if menus, ok := propertiesByBoard["menu"]; ok {
platform.Menus = menus
} else {
platform.Menus = properties.NewMap()
}
if !platform.PluggableDiscoveryAware {
for _, boardProperties := range propertiesByBoard {
convertVidPidIdentificationPropertiesToPluggableDiscovery(boardProperties)
}
}
platform.Menus = propertiesByBoard["menu"]
// This is not a board id so we remove it to correctly
// set all other boards properties
delete(propertiesByBoard, "menu")
skippedBoards := []string{}
for boardID, boardProperties := range propertiesByBoard {
var board *cores.Board
for key := range boardProperties.AsMap() {
if !strings.HasPrefix(key, "menu.") {
continue
}
// Menu keys are formed like this:
// menu.cache.off=false
// menu.cache.on=true
// so we assume that the a second element in the slice exists
menuName := strings.Split(key, ".")[1]
if !platform.Menus.ContainsKey(menuName) {
fqbn := fmt.Sprintf("%s:%s:%s", platform.Platform.Package.Name, platform.Platform.Architecture, boardID)
skippedBoards = append(skippedBoards, fqbn)
goto next_board
}
}
// The board's ID must be available in a board's properties since it can
// be used in all configuration files for several reasons, like setting compilation
// flags depending on the board id.
// For more info:
// https://arduino.github.io/arduino-cli/dev/platform-specification/#global-predefined-properties
boardProperties.Set("_id", boardID)
board = platform.GetOrCreateBoard(boardID)
board.Properties.Merge(boardProperties)
next_board:
}
if len(skippedBoards) > 0 {
return fmt.Errorf("skipping loading of boards %s: malformed custom board options", strings.Join(skippedBoards, ", "))
}
return nil
}
// Converts the old:
//
// - xxx.vid.N
// - xxx.pid.N
//
// properties into pluggable discovery compatible:
//
// - xxx.upload_port.N.vid
// - xxx.upload_port.N.pid
//
func convertVidPidIdentificationPropertiesToPluggableDiscovery(boardProperties *properties.Map) {
n := 0
outputVidPid := func(vid, pid string) {
boardProperties.Set(fmt.Sprintf("upload_port.%d.vid", n), vid)
boardProperties.Set(fmt.Sprintf("upload_port.%d.pid", n), pid)
n++
}
if boardProperties.ContainsKey("vid") && boardProperties.ContainsKey("pid") {
outputVidPid(boardProperties.Get("vid"), boardProperties.Get("pid"))
}
for _, k := range boardProperties.Keys() {
if strings.HasPrefix(k, "vid.") {
idx, err := strconv.ParseUint(k[4:], 10, 64)
if err != nil {
continue
}
vidKey := fmt.Sprintf("vid.%d", idx)
pidKey := fmt.Sprintf("pid.%d", idx)
vid, vidOk := boardProperties.GetOk(vidKey)
pid, pidOk := boardProperties.GetOk(pidKey)
if vidOk && pidOk {
outputVidPid(vid, pid)
}
}
}
}
func (pm *PackageManager) loadToolsFromPackage(targetPackage *cores.Package, toolsPath *paths.Path) []*status.Status {
pm.Log.Infof("Loading tools from dir: %s", toolsPath)
statuses := []*status.Status{}
toolsPaths, err := toolsPath.ReadDir()
if err != nil {
s := status.Newf(codes.FailedPrecondition, "reading directory %s: %s", toolsPath, err)
return append(statuses, s)
}
toolsPaths.FilterDirs()
toolsPaths.FilterOutHiddenFiles()
for _, toolPath := range toolsPaths {
name := toolPath.Base()
tool := targetPackage.GetOrCreateTool(name)
if err = pm.loadToolReleasesFromTool(tool, toolPath); err != nil {
s := status.Newf(codes.FailedPrecondition, "loading tool release in %s: %s", toolPath, err)
statuses = append(statuses, s)
}
}
return statuses
}
func (pm *PackageManager) loadToolReleasesFromTool(tool *cores.Tool, toolPath *paths.Path) error {
toolVersions, err := toolPath.ReadDir()
if err != nil {
return err
}
toolVersions.FilterDirs()
toolVersions.FilterOutHiddenFiles()
for _, versionPath := range toolVersions {
if toolReleasePath, err := versionPath.Abs(); err == nil {
version := semver.ParseRelaxed(versionPath.Base())
release := tool.GetOrCreateRelease(version)
release.InstallDir = toolReleasePath
pm.Log.WithField("tool", release).Infof("Loaded tool")
} else {
return err
}
}
return nil
}
// LoadToolsFromBundleDirectories FIXMEDOC
func (pm *PackageManager) LoadToolsFromBundleDirectories(dirs paths.PathList) []*status.Status {
statuses := []*status.Status{}
for _, dir := range dirs {
if err := pm.LoadToolsFromBundleDirectory(dir); err != nil {
statuses = append(statuses, status.Newf(codes.FailedPrecondition, "loading bundled tools from %s: %s", dir, err))
}
}
return statuses
}
// LoadToolsFromBundleDirectory FIXMEDOC
func (pm *PackageManager) LoadToolsFromBundleDirectory(toolsPath *paths.Path) error {
pm.Log.Infof("Loading tools from bundle dir: %s", toolsPath)
// We scan toolsPath content to find a "builtin_tools_versions.txt", if such file exists
// then the all the tools are available in the same directory, mixed together, and their
// name and version are written in the "builtin_tools_versions.txt" file.
// If no "builtin_tools_versions.txt" is found, then the directory structure is the classic
// TOOLSPATH/TOOL-NAME/TOOL-VERSION and it will be parsed as such and associated to an
// "unnamed" packager.
// TODO: get rid of "builtin_tools_versions.txt"
// Search for builtin_tools_versions.txt
builtinToolsVersionsTxtPath := ""
findBuiltInToolsVersionsTxt := func(currentPath string, info os.FileInfo, err error) error {
if err != nil {
// Ignore errors
return nil
}
if builtinToolsVersionsTxtPath != "" {
return filepath.SkipDir
}
if info.Name() == "builtin_tools_versions.txt" {
builtinToolsVersionsTxtPath = currentPath
return filepath.SkipDir
}
return nil
}
if err := filepath.Walk(toolsPath.String(), findBuiltInToolsVersionsTxt); err != nil {
return fmt.Errorf("searching for builtin_tools_versions.txt in %s: %s", toolsPath, err)
}
if builtinToolsVersionsTxtPath != "" {
// If builtin_tools_versions.txt is found create tools based on the info
// contained in that file
pm.Log.Infof("Found builtin_tools_versions.txt")
toolPath, err := paths.New(builtinToolsVersionsTxtPath).Parent().Abs()
if err != nil {
return fmt.Errorf("getting parent dir of %s: %s", builtinToolsVersionsTxtPath, err)
}
all, err := properties.Load(builtinToolsVersionsTxtPath)
if err != nil {
return fmt.Errorf("reading %s: %s", builtinToolsVersionsTxtPath, err)
}
for packager, toolsData := range all.FirstLevelOf() {
targetPackage := pm.Packages.GetOrCreatePackage(packager)
for toolName, toolVersion := range toolsData.AsMap() {
tool := targetPackage.GetOrCreateTool(toolName)
version := semver.ParseRelaxed(toolVersion)
release := tool.GetOrCreateRelease(version)
release.InstallDir = toolPath
pm.Log.WithField("tool", release).Infof("Loaded tool")
}
}
} else {
// otherwise load the tools inside the unnamed package
unnamedPackage := pm.Packages.GetOrCreatePackage("")
pm.loadToolsFromPackage(unnamedPackage, toolsPath)
}
return nil
}