Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gRPC interface to CLI settings #521

Merged
merged 5 commits into from
Dec 19, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 41 additions & 0 deletions rpc/settings/settings.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// This file is part of arduino-cli.
//
// Copyright 2019 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.

syntax = "proto3";

package cc.arduino.cli.settings;

option go_package = "github.com/arduino/arduino-cli/rpc/settings";

service Settings {
rpc GetAll(GetAllRequest) returns (AllSettings);
rpc SetAll(AllSettings) returns (SetAllResponse);
rpc GetValue(GetValueRequest) returns (Value);
rpc SetValue(Value) returns (SetValueResponse);
}

message AllSettings {
string jsonData = 1;
}

message Value {
string key = 1;
string jsonData = 2;
}

message GetAllRequest {}
message GetValueRequest { string key = 1; }
message SetAllResponse {}
message SetValueResponse {}