// 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 license@arduino.cc. package builder import ( "os" "github.com/arduino/arduino-cli/arduino/libraries" "github.com/arduino/arduino-cli/arduino/libraries/librariesmanager" "github.com/arduino/arduino-cli/arduino/libraries/librariesresolver" "github.com/arduino/arduino-cli/legacy/builder/types" "github.com/pkg/errors" ) type LibrariesLoader struct{} func (s *LibrariesLoader) Run(ctx *types.Context) error { lm := librariesmanager.NewLibraryManager(nil, nil) ctx.LibrariesManager = lm builtInLibrariesFolders := ctx.BuiltInLibrariesDirs if err := builtInLibrariesFolders.ToAbs(); err != nil { return errors.WithStack(err) } for _, folder := range builtInLibrariesFolders { lm.AddLibrariesDir(folder, libraries.IDEBuiltIn) } debugLevel := ctx.DebugLevel logger := ctx.GetLogger() actualPlatform := ctx.ActualPlatform platform := ctx.TargetPlatform if actualPlatform != platform { lm.AddPlatformReleaseLibrariesDir(actualPlatform, libraries.ReferencedPlatformBuiltIn) } lm.AddPlatformReleaseLibrariesDir(platform, libraries.PlatformBuiltIn) librariesFolders := ctx.OtherLibrariesDirs if err := librariesFolders.ToAbs(); err != nil { return errors.WithStack(err) } for _, folder := range librariesFolders { lm.AddLibrariesDir(folder, libraries.User) } if err := lm.RescanLibraries(); err != nil { return errors.WithStack(err) } if debugLevel > 0 { for _, lib := range lm.Libraries { for _, libAlt := range lib.Alternatives { warnings, err := libAlt.Lint() if err != nil { return errors.WithStack(err) } for _, warning := range warnings { logger.Fprintln(os.Stdout, "warn", warning) } } } } resolver := librariesresolver.NewCppResolver() if err := resolver.ScanFromLibrariesManager(lm); err != nil { return errors.WithStack(err) } ctx.LibrariesResolver = resolver return nil }