forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommands.proto
309 lines (241 loc) · 10.3 KB
/
commands.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
// 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 [email protected].
syntax = "proto3";
package cc.arduino.cli.commands.v1;
option go_package = "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1;commands";
import "google/rpc/status.proto";
import "cc/arduino/cli/commands/v1/common.proto";
import "cc/arduino/cli/commands/v1/board.proto";
import "cc/arduino/cli/commands/v1/compile.proto";
import "cc/arduino/cli/commands/v1/core.proto";
import "cc/arduino/cli/commands/v1/monitor.proto";
import "cc/arduino/cli/commands/v1/upload.proto";
import "cc/arduino/cli/commands/v1/lib.proto";
// The main Arduino Platform service API
service ArduinoCoreService {
// BOOTSTRAP COMMANDS
//-------------------
// Create a new Arduino Core instance
rpc Create(CreateRequest) returns (CreateResponse) {}
// Initializes an existing Arduino Core instance by loading platforms and
// libraries
rpc Init(InitRequest) returns (stream InitResponse) {}
// Destroy an instance of the Arduino Core Service
rpc Destroy(DestroyRequest) returns (DestroyResponse) {}
// Update package index of the Arduino Core Service
rpc UpdateIndex(UpdateIndexRequest) returns (stream UpdateIndexResponse) {}
// Update libraries index
rpc UpdateLibrariesIndex(UpdateLibrariesIndexRequest)
returns (stream UpdateLibrariesIndexResponse) {}
// Update packages indexes for both Cores and Libraries
rpc UpdateCoreLibrariesIndex(UpdateCoreLibrariesIndexRequest)
returns (stream UpdateCoreLibrariesIndexResponse) {}
// Outdated returns a message with a list of outdated Cores and Libraries
rpc Outdated(OutdatedRequest) returns (OutdatedResponse) {}
// Upgrade both Cores and Libraries
rpc Upgrade(UpgradeRequest) returns (stream UpgradeResponse) {}
// Get the version of Arduino CLI in use.
rpc Version(VersionRequest) returns (VersionResponse) {}
// Returns all files composing a Sketch
rpc LoadSketch(LoadSketchRequest) returns (LoadSketchResponse) {}
// Creates a zip file containing all files of specified Sketch
rpc ArchiveSketch(ArchiveSketchRequest) returns (ArchiveSketchResponse) {}
// BOARD COMMANDS
// --------------
// Requests details about a board
rpc BoardDetails(BoardDetailsRequest) returns (BoardDetailsResponse);
// Attach a board to a sketch. When the `fqbn` field of a request is not
// provided, the FQBN of the attached board will be used.
rpc BoardAttach(BoardAttachRequest) returns (stream BoardAttachResponse);
// List the boards currently connected to the computer.
rpc BoardList(BoardListRequest) returns (BoardListResponse);
// List all the boards provided by installed platforms.
rpc BoardListAll(BoardListAllRequest) returns (BoardListAllResponse);
// Search boards in installed and not installed Platforms.
rpc BoardSearch(BoardSearchRequest) returns (BoardSearchResponse);
// List boards connection and disconnected events.
rpc BoardListWatch(stream BoardListWatchRequest)
returns (stream BoardListWatchResponse);
// Compile an Arduino sketch.
rpc Compile(CompileRequest) returns (stream CompileResponse);
// Download and install a platform and its tool dependencies.
rpc PlatformInstall(PlatformInstallRequest)
returns (stream PlatformInstallResponse);
// Download a platform and its tool dependencies to the `staging/packages`
// subdirectory of the data directory.
rpc PlatformDownload(PlatformDownloadRequest)
returns (stream PlatformDownloadResponse);
// Uninstall a platform as well as its tool dependencies that are not used by
// other installed platforms.
rpc PlatformUninstall(PlatformUninstallRequest)
returns (stream PlatformUninstallResponse);
// Upgrade an installed platform to the latest version.
rpc PlatformUpgrade(PlatformUpgradeRequest)
returns (stream PlatformUpgradeResponse);
// Upload a compiled sketch to a board.
rpc Upload(UploadRequest) returns (stream UploadResponse);
// Upload a compiled sketch to a board using a programmer.
rpc UploadUsingProgrammer(UploadUsingProgrammerRequest)
returns (stream UploadUsingProgrammerResponse);
// List programmers available for a board.
rpc ListProgrammersAvailableForUpload(
ListProgrammersAvailableForUploadRequest)
returns (ListProgrammersAvailableForUploadResponse);
// Burn bootloader to a board.
rpc BurnBootloader(BurnBootloaderRequest)
returns (stream BurnBootloaderResponse);
// Search for a platform in the platforms indexes.
rpc PlatformSearch(PlatformSearchRequest) returns (PlatformSearchResponse);
// List all installed platforms.
rpc PlatformList(PlatformListRequest) returns (PlatformListResponse);
// Download the archive file of an Arduino library in the libraries index to
// the staging directory.
rpc LibraryDownload(LibraryDownloadRequest)
returns (stream LibraryDownloadResponse);
// Download and install an Arduino library from the libraries index.
rpc LibraryInstall(LibraryInstallRequest)
returns (stream LibraryInstallResponse);
// Install a library from a Zip File
rpc ZipLibraryInstall(ZipLibraryInstallRequest)
returns (stream ZipLibraryInstallResponse);
// Download and install a library from a git url
rpc GitLibraryInstall(GitLibraryInstallRequest)
returns (stream GitLibraryInstallResponse);
// Uninstall an Arduino library.
rpc LibraryUninstall(LibraryUninstallRequest)
returns (stream LibraryUninstallResponse);
// Upgrade all installed Arduino libraries to the newest version available.
rpc LibraryUpgradeAll(LibraryUpgradeAllRequest)
returns (stream LibraryUpgradeAllResponse);
// List the recursive dependencies of a library, as defined by the `depends`
// field of the library.properties files.
rpc LibraryResolveDependencies(LibraryResolveDependenciesRequest)
returns (LibraryResolveDependenciesResponse);
// Search the Arduino libraries index for libraries.
rpc LibrarySearch(LibrarySearchRequest) returns (LibrarySearchResponse);
// List the installed libraries.
rpc LibraryList(LibraryListRequest) returns (LibraryListResponse);
// Open a monitor connection to a board port
rpc Monitor(stream MonitorRequest) returns (stream MonitorResponse);
// Returns the parameters that can be set in the MonitorRequest calls
rpc EnumerateMonitorPortSettings(EnumerateMonitorPortSettingsRequest)
returns (EnumerateMonitorPortSettingsResponse);
}
message CreateRequest {}
message CreateResponse {
// An Arduino Core instance.
Instance instance = 1;
}
message InitRequest {
// An Arduino Core instance.
Instance instance = 1;
}
message InitResponse {
message Progress {
// Progress of the downloads of platforms and libraries index files.
DownloadProgress download_progress = 1;
// Describes the current stage of the initialization.
TaskProgress task_progress = 2;
}
oneof message {
Progress init_progress = 1;
google.rpc.Status error = 2;
}
}
message DestroyRequest {
// The Arduino Core Service instance to destroy.
Instance instance = 1;
}
message DestroyResponse {}
message UpdateIndexRequest {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message UpdateIndexResponse {
// Progress of the platforms index download.
DownloadProgress download_progress = 1;
}
message UpdateLibrariesIndexRequest {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message UpdateLibrariesIndexResponse {
// Progress of the libraries index download.
DownloadProgress download_progress = 1;
}
message UpdateCoreLibrariesIndexRequest {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message UpdateCoreLibrariesIndexResponse {
// Progress of the index download.
DownloadProgress download_progress = 1;
}
message OutdatedRequest {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message OutdatedResponse {
// List of installed libraries that can be updated.
repeated InstalledLibrary outdated_libraries = 1;
// List of installed cores that can be updated.
repeated Platform outdated_platforms = 2;
}
message UpgradeRequest {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
// Set to true to not run (eventual) post install scripts
bool skip_post_install = 2;
}
message UpgradeResponse {
// Progress of the downloads of the platforms and libraries files.
DownloadProgress progress = 1;
// Description of the current stage of the upgrade.
TaskProgress task_progress = 2;
}
message VersionRequest {}
message VersionResponse {
// The version of Arduino CLI in use.
string version = 1;
}
message LoadSketchRequest {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
// Absolute path to single sketch file or a sketch folder
string sketch_path = 2;
}
message LoadSketchResponse {
// Absolute path to a main sketch files
string main_file = 1;
// Absolute path to folder that contains main_file
string location_path = 2;
// List of absolute paths to other sketch files
repeated string other_sketch_files = 3;
// List of absolute paths to additional sketch files
repeated string additional_files = 4;
// List of absolute paths to supported files in the sketch root folder, main
// file excluded
repeated string root_folder_files = 5;
}
message ArchiveSketchRequest {
// Absolute path to Sketch file or folder containing Sketch file
string sketch_path = 1;
// Absolute path to archive that will be created or folder that will contain
// it
string archive_path = 2;
// Specifies if build directory should be included in the archive
bool include_build_dir = 3;
}
message ArchiveSketchResponse {}