Skip to content

Commit

Permalink
[breaking] Updated gRPC Platform API (#2357)
Browse files Browse the repository at this point in the history
* Updated gRPC Pltform API, regenerated API

* Adapted cores.Platform and PlatformRelease to the new gRPC API

* Fixed search_test.go

* Removed gRPC PlatformList command

* Other adaptation of platform structures

* Adapt arguuments completion to use PlatformSearch instead of PlatformList

* Adapt 'core list' to use PlatformSearch instead of PlatformList

* Adapt 'core upgrade' command to use PlatformSearch instead of PlatformList

* Adapted some integration tests

* Fix integreation test

* apply changes to search vidpid

* Better handling of 'core list' results

* Better handling of 'core search' results

* Better handling of 'core outdated' results

* add 'orderedmap' data structure

* Made orderedmap more generic

* fix regression on 'ParseReference'

* wip: fix 'core' integrationtests

* wip: fix 'core' sorting tests

* fix regression which skipped mannually instaled core in core list

* wip: add more 'core' integration tests

* regression: all flag takes precedence above updatable in core list

* lint: ignore unexported-return (revive)

* license: regenerate and add missin headers

* tests: fix 'board' integrations

* fix: regression not showing manually installed platform in 'core list'

* wip: add test to orderedmap

* add more orderdmap tests

* orderdmap: add json tests

* update DOCS

* apply CR suggestions

* fix proto numeration

* docs: update to release 0.36.0

---------

Co-authored-by: Alessio Perugini <alessioper.98@gmail.com>
  • Loading branch information
cmaglie and alessio-perugini committed Oct 23, 2023
1 parent eb8f2f2 commit ad5dacc
Show file tree
Hide file tree
Showing 41 changed files with 2,329 additions and 1,315 deletions.
1 change: 0 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ linters-settings:
- name: redefines-builtin-id
- name: superfluous-else
- name: time-naming
- name: unexported-return
- name: unreachable-code
- name: var-declaration
- name: defer
Expand Down
12 changes: 7 additions & 5 deletions arduino/cores/cores.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,13 @@ import (

// Platform represents a platform package.
type Platform struct {
Architecture string // The name of the architecture of this package.
Name string
Category string
Architecture string // The name of the architecture of this package.
Releases map[semver.NormalizedString]*PlatformRelease // The Releases of this platform, labeled by version.
Package *Package `json:"-"`
ManuallyInstalled bool // true if the Platform has been installed without the CLI
Deprecated bool // true if the Platform has been deprecated
Deprecated bool // true if the latest PlatformRelease of this Platform has been deprecated
Indexed bool // true if the Platform has been indexed from additional-urls
Latest *semver.Version `json:"-"`
}

// PlatformReleaseHelp represents the help URL for this Platform release
Expand All @@ -54,12 +53,15 @@ type PlatformReleaseHelp struct {

// PlatformRelease represents a release of a plaform package.
type PlatformRelease struct {
Name string
Category string
Resource *resources.DownloadResource
Version *semver.Version
BoardsManifest []*BoardManifest
ToolDependencies ToolDependencies
DiscoveryDependencies DiscoveryDependencies
MonitorDependencies MonitorDependencies
Deprecated bool
Help PlatformReleaseHelp `json:"-"`
Platform *Platform `json:"-"`
Properties *properties.Map `json:"-"`
Expand Down Expand Up @@ -407,7 +409,7 @@ func (release *PlatformRelease) MarshalJSON() ([]byte, error) {
ID: release.Platform.String(),
Installed: release.Version.String(),
Latest: latestStr,
Name: release.Platform.Name,
Name: release.Name,
})
}

Expand Down
20 changes: 9 additions & 11 deletions arduino/cores/packageindex/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,11 @@ func IndexFromPlatformRelease(pr *cores.PlatformRelease) Index {
URL: pr.Platform.Package.URL,
Email: pr.Platform.Package.Email,
Platforms: []*indexPlatformRelease{{
Name: pr.Platform.Name,
Name: pr.Name,
Architecture: pr.Platform.Architecture,
Version: pr.Version,
Deprecated: pr.Platform.Deprecated,
Category: pr.Platform.Category,
Deprecated: pr.Deprecated,
Category: pr.Category,
URL: pr.Resource.URL,
ArchiveFileName: pr.Resource.ArchiveFileName,
Checksum: pr.Resource.Checksum,
Expand Down Expand Up @@ -263,18 +263,13 @@ func (inPackage indexPackage) extractPackageIn(outPackages cores.Packages, trust

func (inPlatformRelease indexPlatformRelease) extractPlatformIn(outPackage *cores.Package, trusted bool, isInstallJSON bool) error {
outPlatform := outPackage.GetOrCreatePlatform(inPlatformRelease.Architecture)
// FIXME: shall we use the Name and Category of the latest release? or maybe move Name and Category in PlatformRelease?
outPlatform.Name = inPlatformRelease.Name
outPlatform.Category = inPlatformRelease.Category
// If the variable `isInstallJSON` is false it means that the index we're reading is coming from the additional-urls.
// Therefore, the `outPlatform.Indexed` will be set at `true`.
outPlatform.Indexed = outPlatform.Indexed || !isInstallJSON

// If the Platform is installed before deprecation installed.json file does not include "deprecated" field.
// The installed.json is read during loading phase of an installed Platform, if the deprecated field is not found
// the package_index.json field would be overwritten and the deprecation info would be lost.
// This check prevents that behaviour.
if !outPlatform.Deprecated {
// If the latest platform release is deprecated, then deprecate the whole platform.
if outPlatform.Latest == nil || outPlatform.Latest.LessThan(inPlatformRelease.Version) {
outPlatform.Latest = inPlatformRelease.Version
outPlatform.Deprecated = inPlatformRelease.Deprecated
}

Expand All @@ -283,6 +278,8 @@ func (inPlatformRelease indexPlatformRelease) extractPlatformIn(outPackage *core
return fmt.Errorf(tr("invalid platform archive size: %s"), err)
}
outPlatformRelease := outPlatform.GetOrCreateRelease(inPlatformRelease.Version)
outPlatformRelease.Name = inPlatformRelease.Name
outPlatformRelease.Category = inPlatformRelease.Category
outPlatformRelease.IsTrusted = trusted
outPlatformRelease.Resource = &resources.DownloadResource{
ArchiveFileName: inPlatformRelease.ArchiveFileName,
Expand All @@ -296,6 +293,7 @@ func (inPlatformRelease indexPlatformRelease) extractPlatformIn(outPackage *core
outPlatformRelease.ToolDependencies = inPlatformRelease.extractToolDependencies()
outPlatformRelease.DiscoveryDependencies = inPlatformRelease.extractDiscoveryDependencies()
outPlatformRelease.MonitorDependencies = inPlatformRelease.extractMonitorDependencies()
outPlatformRelease.Deprecated = inPlatformRelease.Deprecated
return nil
}

Expand Down
5 changes: 2 additions & 3 deletions arduino/cores/packageindex/index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,10 @@ func TestIndexFromPlatformRelease(t *testing.T) {
Name: "serial-monitor",
},
},
Name: "Arduino AVR Boards",
Category: "Arduino",
Platform: &cores.Platform{
Name: "Arduino AVR Boards",
Architecture: "avr",
Category: "Arduino",

Package: &cores.Package{
Name: "arduino",
Maintainer: "Arduino",
Expand Down
6 changes: 3 additions & 3 deletions arduino/cores/packagemanager/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,14 +323,14 @@ func (pm *Builder) loadPlatformRelease(platform *cores.PlatformRelease, path *pa
platform.Properties.Set("pluggable_monitor.required.serial", "builtin:serial-monitor")
}

if platform.Platform.Name == "" {
if platform.Name == "" {
if name, ok := platform.Properties.GetOk("name"); ok {
platform.Platform.Name = name
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)
platform.Name = fmt.Sprintf("%s-%s", platform.Platform.Package.Name, platform.Platform.Architecture)
}
}

Expand Down
6 changes: 3 additions & 3 deletions arduino/cores/packagemanager/package_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ func (pme *Explorer) GetCustomGlobalProperties() *properties.Map {
}

// FindPlatformReleaseProvidingBoardsWithVidPid FIXMEDOC
func (pme *Explorer) FindPlatformReleaseProvidingBoardsWithVidPid(vid, pid string) []*cores.PlatformRelease {
res := []*cores.PlatformRelease{}
func (pme *Explorer) FindPlatformReleaseProvidingBoardsWithVidPid(vid, pid string) []*cores.Platform {
res := []*cores.Platform{}
for _, targetPackage := range pme.packages {
for _, targetPlatform := range targetPackage.Platforms {
platformRelease := targetPlatform.GetLatestRelease()
Expand All @@ -202,7 +202,7 @@ func (pme *Explorer) FindPlatformReleaseProvidingBoardsWithVidPid(vid, pid strin
}
for _, boardManifest := range platformRelease.BoardsManifest {
if boardManifest.HasUsbID(vid, pid) {
res = append(res, platformRelease)
res = append(res, targetPlatform)
break
}
}
Expand Down
2 changes: 1 addition & 1 deletion arduino/cores/packagemanager/profiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (pmb *Builder) LoadHardwareForProfile(p *sketch.Profile, installMissing boo
logrus.WithField("platform", platformRef).WithError(err).Debugf("Error loading platform for profile")
} else {
platformReleases = append(platformReleases, platformRelease)
indexURLs[platformRelease.Platform.Name] = platformRef.PlatformIndexURL
indexURLs[platformRelease.Name] = platformRef.PlatformIndexURL
logrus.WithField("platform", platformRef).Debugf("Loaded platform for profile")
}
}
Expand Down
24 changes: 2 additions & 22 deletions client_example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,6 @@ func main() {
log.Println("calling PlatformInstall(arduino:samd@1.6.19)")
callPlatformInstall(client, instance)

// Now list the installed platforms to double check previous installation
// went right.
log.Println("calling PlatformList()")
callPlatformList(client, instance)

// Upgrade the installed platform to the latest version.
log.Println("calling PlatformUpgrade(arduino:samd)")
callPlatformUpgrade(client, instance)
Expand Down Expand Up @@ -420,7 +415,7 @@ func callPlatformSearch(client rpc.ArduinoCoreServiceClient, instance *rpc.Insta
for _, plat := range platforms {
// We only print ID and version of the platforms found but you can look
// at the definition for the rpc.Platform struct for more fields.
log.Printf("Search result: %+v - %+v", plat.GetId(), plat.GetLatest())
log.Printf("Search result: %+v - %+v", plat.GetMetadata().GetId(), plat.GetLatestVersion())
}
}

Expand Down Expand Up @@ -464,21 +459,6 @@ func callPlatformInstall(client rpc.ArduinoCoreServiceClient, instance *rpc.Inst
}
}

func callPlatformList(client rpc.ArduinoCoreServiceClient, instance *rpc.Instance) {
listResp, err := client.PlatformList(context.Background(),
&rpc.PlatformListRequest{Instance: instance})

if err != nil {
log.Fatalf("List error: %s", err)
}

for _, plat := range listResp.GetInstalledPlatforms() {
// We only print ID and version of the installed platforms but you can look
// at the definition for the rpc.Platform struct for more fields.
log.Printf("Installed platform: %s - %s", plat.GetId(), plat.GetInstalled())
}
}

func callPlatformUpgrade(client rpc.ArduinoCoreServiceClient, instance *rpc.Instance) {
upgradeRespStream, err := client.PlatformUpgrade(context.Background(),
&rpc.PlatformUpgradeRequest{
Expand Down Expand Up @@ -546,7 +526,7 @@ func callBoardSearch(client rpc.ArduinoCoreServiceClient, instance *rpc.Instance
}

for _, board := range res.Boards {
log.Printf("Board Name: %s, Board Platform: %s\n", board.Name, board.Platform.Id)
log.Printf("Board Name: %s, Board Platform: %s\n", board.Name, board.Platform.Metadata.Id)
}
}

Expand Down
30 changes: 15 additions & 15 deletions commands/board/details.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func Details(ctx context.Context, req *rpc.BoardDetailsRequest) (*rpc.BoardDetai
return nil, &arduino.InvalidFQBNError{Cause: err}
}

boardPackage, boardPlatform, board, boardProperties, boardRefPlatform, err := pme.ResolveFQBN(fqbn)
boardPackage, boardPlatformRelease, board, boardProperties, boardRefPlatform, err := pme.ResolveFQBN(fqbn)
if err != nil {
return nil, &arduino.UnknownFQBNError{Cause: err}
}
Expand All @@ -65,11 +65,11 @@ func Details(ctx context.Context, req *rpc.BoardDetailsRequest) (*rpc.BoardDetai
}

details.DebuggingSupported = boardProperties.ContainsKey("debug.executable") ||
boardPlatform.Properties.ContainsKey("debug.executable") ||
boardPlatformRelease.Properties.ContainsKey("debug.executable") ||
(boardRefPlatform != nil && boardRefPlatform.Properties.ContainsKey("debug.executable")) ||
// HOTFIX: Remove me when the `arduino:samd` core is updated
boardPlatform.String() == "arduino:samd@1.8.9" ||
boardPlatform.String() == "arduino:samd@1.8.8"
boardPlatformRelease.String() == "arduino:samd@1.8.9" ||
boardPlatformRelease.String() == "arduino:samd@1.8.8"

details.Package = &rpc.Package{
Name: boardPackage.Name,
Expand All @@ -81,16 +81,16 @@ func Details(ctx context.Context, req *rpc.BoardDetailsRequest) (*rpc.BoardDetai
}

details.Platform = &rpc.BoardPlatform{
Architecture: boardPlatform.Platform.Architecture,
Category: boardPlatform.Platform.Category,
Name: boardPlatform.Platform.Name,
Architecture: boardPlatformRelease.Platform.Architecture,
Category: boardPlatformRelease.Category,
Name: boardPlatformRelease.Name,
}

if boardPlatform.Resource != nil {
details.Platform.Url = boardPlatform.Resource.URL
details.Platform.ArchiveFilename = boardPlatform.Resource.ArchiveFileName
details.Platform.Checksum = boardPlatform.Resource.Checksum
details.Platform.Size = boardPlatform.Resource.Size
if boardPlatformRelease.Resource != nil {
details.Platform.Url = boardPlatformRelease.Resource.URL
details.Platform.ArchiveFilename = boardPlatformRelease.Resource.ArchiveFileName
details.Platform.Checksum = boardPlatformRelease.Resource.Checksum
details.Platform.Size = boardPlatformRelease.Resource.Size
}

details.ConfigOptions = []*rpc.ConfigOption{}
Expand Down Expand Up @@ -118,7 +118,7 @@ func Details(ctx context.Context, req *rpc.BoardDetailsRequest) (*rpc.BoardDetai
}

details.ToolsDependencies = []*rpc.ToolsDependencies{}
for _, tool := range boardPlatform.ToolDependencies {
for _, tool := range boardPlatformRelease.ToolDependencies {
toolRelease := pme.FindToolDependency(tool)
var systems []*rpc.Systems
if toolRelease != nil {
Expand All @@ -141,9 +141,9 @@ func Details(ctx context.Context, req *rpc.BoardDetailsRequest) (*rpc.BoardDetai
}

details.Programmers = []*rpc.Programmer{}
for id, p := range boardPlatform.Programmers {
for id, p := range boardPlatformRelease.Programmers {
details.Programmers = append(details.Programmers, &rpc.Programmer{
Platform: boardPlatform.Platform.Name,
Platform: boardPlatformRelease.Name,
Id: id,
Name: p.Name,
})
Expand Down
6 changes: 4 additions & 2 deletions commands/board/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ func identify(pme *packagemanager.Explorer, port *discovery.Port) ([]*rpc.BoardL

// We need the Platform maintaner for sorting so we set it here
platform := &rpc.Platform{
Maintainer: board.PlatformRelease.Platform.Package.Maintainer,
Metadata: &rpc.PlatformMetadata{
Maintainer: board.PlatformRelease.Platform.Package.Maintainer,
},
}
boards = append(boards, &rpc.BoardListItem{
Name: board.Name(),
Expand Down Expand Up @@ -185,7 +187,7 @@ func identify(pme *packagemanager.Explorer, port *discovery.Port) ([]*rpc.BoardL

// Put Arduino boards before others in case there are non Arduino boards with identical VID:PID combination
sort.SliceStable(boards, func(i, j int) bool {
if boards[i].Platform.Maintainer == "Arduino" && boards[j].Platform.Maintainer != "Arduino" {
if boards[i].Platform.Metadata.Maintainer == "Arduino" && boards[j].Platform.Metadata.Maintainer != "Arduino" {
return true
}
return false
Expand Down
22 changes: 4 additions & 18 deletions commands/board/listall.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/arduino/arduino-cli/arduino"
"github.com/arduino/arduino-cli/arduino/cores"
"github.com/arduino/arduino-cli/arduino/utils"
"github.com/arduino/arduino-cli/commands"
"github.com/arduino/arduino-cli/commands/internal/instances"
rpc "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1"
)
Expand All @@ -46,29 +47,14 @@ func ListAll(ctx context.Context, req *rpc.BoardListAllRequest) (*rpc.BoardListA
continue
}

installedVersion := installedPlatformRelease.Version.String()

latestVersion := ""
if latestPlatformRelease := platform.GetLatestRelease(); latestPlatformRelease != nil {
latestVersion = latestPlatformRelease.Version.String()
}

rpcPlatform := &rpc.Platform{
Id: platform.String(),
Installed: installedVersion,
Latest: latestVersion,
Name: platform.Name,
Maintainer: platform.Package.Maintainer,
Website: platform.Package.WebsiteURL,
Email: platform.Package.Email,
ManuallyInstalled: platform.ManuallyInstalled,
Indexed: platform.Indexed,
MissingMetadata: !installedPlatformRelease.HasMetadata(),
Metadata: commands.PlatformToRPCPlatformMetadata(platform),
Release: commands.PlatformReleaseToRPC(installedPlatformRelease),
}

toTest := []string{
platform.String(),
platform.Name,
installedPlatformRelease.Name,
platform.Architecture,
targetPackage.Name,
targetPackage.Maintainer,
Expand Down

0 comments on commit ad5dacc

Please sign in to comment.