// 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" "os" "sort" "strings" "github.com/arduino/arduino-cli/cli/errorcodes" "github.com/arduino/arduino-cli/cli/feedback" "github.com/arduino/arduino-cli/cli/instance" "github.com/arduino/arduino-cli/cli/output" "github.com/arduino/arduino-cli/commands" "github.com/arduino/arduino-cli/commands/core" rpc "github.com/arduino/arduino-cli/rpc/commands" "github.com/arduino/arduino-cli/table" "github.com/sirupsen/logrus" "github.com/spf13/cobra" ) var ( allVersions bool ) func initSearchCommand() *cobra.Command { searchCommand := &cobra.Command{ Use: "search ", Short: "Search for a core in Boards Manager.", Long: "Search for a core in Boards Manager using the specified keywords.", Example: " " + os.Args[0] + " core search MKRZero -a -v", Args: cobra.ArbitraryArgs, Run: runSearchCommand, } searchCommand.Flags().BoolVarP(&allVersions, "all", "a", false, "Show all available core versions.") return searchCommand } func runSearchCommand(cmd *cobra.Command, args []string) { inst, err := instance.CreateInstance() if err != nil { feedback.Errorf("Error searching for platforms: %v", err) os.Exit(errorcodes.ErrGeneric) } _, err = commands.UpdateIndex(context.Background(), &rpc.UpdateIndexReq{ Instance: inst, }, output.ProgressBar()) if err != nil { feedback.Errorf("Error updating index: %v", err) os.Exit(errorcodes.ErrGeneric) } arguments := strings.ToLower(strings.Join(args, " ")) logrus.Infof("Executing `arduino core search` with args: '%s'", arguments) resp, err := core.PlatformSearch(inst.GetId(), arguments, allVersions) if err != nil { feedback.Errorf("Error searching for platforms: %v", err) os.Exit(errorcodes.ErrGeneric) } coreslist := resp.GetSearchOutput() feedback.PrintResult(searchResults{coreslist}) } // output from this command requires special formatting, let's create a dedicated // feedback.Result implementation type searchResults struct { platforms []*rpc.Platform } func (sr searchResults) Data() interface{} { return sr.platforms } func (sr searchResults) String() string { if len(sr.platforms) > 0 { t := table.New() t.SetHeader("ID", "Version", "Name") sort.Slice(sr.platforms, func(i, j int) bool { return sr.platforms[i].ID < sr.platforms[j].ID }) for _, item := range sr.platforms { t.AddRow(item.GetID(), item.GetLatest(), item.GetName()) } return t.Render() } return "No platforms matching your search." }