// 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 core import ( "context" "errors" "fmt" "github.com/arduino/arduino-cli/arduino/cores" "github.com/arduino/arduino-cli/arduino/cores/packagemanager" "github.com/arduino/arduino-cli/commands" rpc "github.com/arduino/arduino-cli/rpc/commands" ) // PlatformUninstall FIXMEDOC func PlatformUninstall(ctx context.Context, req *rpc.PlatformUninstallReq, taskCB commands.TaskProgressCB) (*rpc.PlatformUninstallResp, error) { pm := commands.GetPackageManager(req.GetInstance().GetId()) if pm == nil { return nil, errors.New("invalid instance") } ref := &packagemanager.PlatformReference{ Package: req.PlatformPackage, PlatformArchitecture: req.Architecture, } if ref.PlatformVersion == nil { platform := pm.FindPlatform(ref) if platform == nil { return nil, fmt.Errorf("platform not found: %s", ref) } platformRelease := pm.GetInstalledPlatformRelease(platform) if platformRelease == nil { return nil, fmt.Errorf("platform not installed: %s", ref) } ref.PlatformVersion = platformRelease.Version } platform, tools, err := pm.FindPlatformReleaseDependencies(ref) if err != nil { return nil, fmt.Errorf("finding platform dependencies: %s", err) } err = uninstallPlatformRelease(pm, platform, taskCB) if err != nil { return nil, err } for _, tool := range tools { if !pm.IsToolRequired(tool) { uninstallToolReleasse(pm, tool, taskCB) } } _, err = commands.Rescan(req.GetInstance().GetId()) if err != nil { return nil, err } return &rpc.PlatformUninstallResp{}, nil } func uninstallPlatformRelease(pm *packagemanager.PackageManager, platformRelease *cores.PlatformRelease, taskCB commands.TaskProgressCB) error { log := pm.Log.WithField("platform", platformRelease) log.Info("Uninstalling platform") taskCB(&rpc.TaskProgress{Name: "Uninstalling " + platformRelease.String()}) if err := pm.UninstallPlatform(platformRelease); err != nil { log.WithError(err).Error("Error uninstalling") return err } log.Info("Platform uninstalled") taskCB(&rpc.TaskProgress{Message: platformRelease.String() + " uninstalled", Completed: true}) return nil } func uninstallToolReleasse(pm *packagemanager.PackageManager, toolRelease *cores.ToolRelease, taskCB commands.TaskProgressCB) error { log := pm.Log.WithField("Tool", toolRelease) log.Info("Uninstalling tool") taskCB(&rpc.TaskProgress{Name: "Uninstalling " + toolRelease.String() + ", tool is no more required"}) if err := pm.UninstallTool(toolRelease); err != nil { log.WithError(err).Error("Error uninstalling") return err } log.Info("Tool uninstalled") taskCB(&rpc.TaskProgress{Message: toolRelease.String() + " uninstalled", Completed: true}) return nil }