-
-
Notifications
You must be signed in to change notification settings - Fork 398
/
Copy pathcommands.proto
283 lines (219 loc) · 9.53 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
// 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;
option go_package = "github.com/arduino/arduino-cli/rpc/commands";
import "commands/common.proto";
import "commands/board.proto";
import "commands/compile.proto";
import "commands/core.proto";
import "commands/upload.proto";
import "commands/lib.proto";
// The main Arduino Platform Service
service ArduinoCore {
// BOOTSTRAP COMMANDS
//-------------------
// Start a new instance of the Arduino Core Service
rpc Init(InitReq) returns (stream InitResp) {}
// Destroy an instance of the Arduino Core Service
rpc Destroy(DestroyReq) returns (DestroyResp) {}
// Rescan instance of the Arduino Core Service
rpc Rescan(RescanReq) returns (RescanResp) {}
// Update package index of the Arduino Core Service
rpc UpdateIndex(UpdateIndexReq) returns (stream UpdateIndexResp) {}
// Update libraries index
rpc UpdateLibrariesIndex(UpdateLibrariesIndexReq) returns (stream UpdateLibrariesIndexResp) {}
// Update packages indexes for both Cores and Libraries
rpc UpdateCoreLibrariesIndex(UpdateCoreLibrariesIndexReq) returns (stream UpdateCoreLibrariesIndexResp) {}
// Outdated returns a message with a list of outdated Cores and Libraries
rpc Outdated(OutdatedReq) returns (OutdatedResp) {}
// Upgrade both Cores and Libraries
rpc Upgrade(UpgradeReq) returns (stream UpgradeResp) {}
// Get the version of Arduino CLI in use.
rpc Version(VersionReq) returns (VersionResp) {}
// Returns all files composing a Sketch
rpc LoadSketch(LoadSketchReq) returns (LoadSketchResp) {}
// Creates a zip file containing all files of specified Sketch
rpc ArchiveSketch(ArchiveSketchReq) returns (ArchiveSketchResp) {}
// BOARD COMMANDS
// --------------
// Requests details about a board
rpc BoardDetails(BoardDetailsReq) returns (BoardDetailsResp);
// 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(BoardAttachReq) returns (stream BoardAttachResp);
// List the boards currently connected to the computer.
rpc BoardList(BoardListReq) returns (BoardListResp);
// List all the boards provided by installed platforms.
rpc BoardListAll(BoardListAllReq) returns (BoardListAllResp);
// List boards connection and disconnected events.
rpc BoardListWatch(stream BoardListWatchReq) returns (stream BoardListWatchResp);
// Compile an Arduino sketch.
rpc Compile(CompileReq) returns (stream CompileResp);
// Download and install a platform and its tool dependencies.
rpc PlatformInstall(PlatformInstallReq) returns (stream PlatformInstallResp);
// Download a platform and its tool dependencies to the `staging/packages`
// subdirectory of the data directory.
rpc PlatformDownload(PlatformDownloadReq) returns (stream PlatformDownloadResp);
// Uninstall a platform as well as its tool dependencies that are not used by
// other installed platforms.
rpc PlatformUninstall(PlatformUninstallReq) returns (stream PlatformUninstallResp);
// Upgrade an installed platform to the latest version.
rpc PlatformUpgrade(PlatformUpgradeReq) returns (stream PlatformUpgradeResp);
// Upload a compiled sketch to a board.
rpc Upload(UploadReq) returns (stream UploadResp);
// Upload a compiled sketch to a board using a programmer.
rpc UploadUsingProgrammer(UploadUsingProgrammerReq) returns (stream UploadUsingProgrammerResp);
// List programmers available for a board.
rpc ListProgrammersAvailableForUpload(ListProgrammersAvailableForUploadReq) returns (ListProgrammersAvailableForUploadResp);
// Burn bootloader to a board.
rpc BurnBootloader(BurnBootloaderReq) returns (stream BurnBootloaderResp);
// Search for a platform in the platforms indexes.
rpc PlatformSearch(PlatformSearchReq) returns (PlatformSearchResp);
// List all installed platforms.
rpc PlatformList(PlatformListReq) returns (PlatformListResp);
// Download the archive file of an Arduino library in the libraries index to
// the staging directory.
rpc LibraryDownload(LibraryDownloadReq) returns (stream LibraryDownloadResp);
// Download and install an Arduino library from the libraries index.
rpc LibraryInstall(LibraryInstallReq) returns (stream LibraryInstallResp);
// Install a library from a Zip File
rpc ZipLibraryInstall(ZipLibraryInstallReq) returns (stream ZipLibraryInstallResp);
// Download and install a library from a git url
rpc GitLibraryInstall(GitLibraryInstallReq) returns (stream GitLibraryInstallResp);
// Uninstall an Arduino library.
rpc LibraryUninstall(LibraryUninstallReq) returns (stream LibraryUninstallResp);
// Upgrade all installed Arduino libraries to the newest version available.
rpc LibraryUpgradeAll(LibraryUpgradeAllReq) returns (stream LibraryUpgradeAllResp);
// List the recursive dependencies of a library, as defined by the `depends`
// field of the library.properties files.
rpc LibraryResolveDependencies(LibraryResolveDependenciesReq) returns (LibraryResolveDependenciesResp);
// Search the Arduino libraries index for libraries.
rpc LibrarySearch(LibrarySearchReq) returns (LibrarySearchResp);
// List the installed libraries.
rpc LibraryList(LibraryListReq) returns (LibraryListResp);
}
message InitReq {
// Start a Arduino Core Service instance that will provide only Library
// Manager functionality.
bool library_manager_only = 2;
}
message InitResp {
// An Arduino Core Service instance.
Instance instance = 1;
// Error messages related to any problems encountered while parsing the
// platforms index files.
repeated string platforms_index_errors = 2;
// Error message if a problem was encountered while parsing the libraries
// index file.
string libraries_index_error = 3;
// Progress of the downloads of platforms and libraries index files.
DownloadProgress download_progress = 4;
// Describes the current stage of the initialization.
TaskProgress task_progress = 5;
}
message DestroyReq {
// The Arduino Core Service instance to destroy.
Instance instance = 1;
}
message DestroyResp {}
message RescanReq {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message RescanResp {
// Error messages related to any problems encountered while parsing the
// platforms index file.
repeated string platforms_index_errors = 1;
// Error message if a problem was encountered while parsing the libraries
// index file.
string libraries_index_error = 2;
}
message UpdateIndexReq {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message UpdateIndexResp {
// Progress of the platforms index download.
DownloadProgress download_progress = 1;
}
message UpdateLibrariesIndexReq {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message UpdateLibrariesIndexResp {
// Progress of the libraries index download.
DownloadProgress download_progress = 1;
}
message UpdateCoreLibrariesIndexReq {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message UpdateCoreLibrariesIndexResp {
// Progress of the index download.
DownloadProgress download_progress = 1;
}
message OutdatedReq {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
}
message OutdatedResp {
// List of installed libraries that can be updated.
repeated InstalledLibrary outdated_library = 1;
// List of installed cores that can be updated.
repeated Platform outdated_platform = 2;
}
message UpgradeReq {
// Arduino Core Service instance from the Init response.
Instance instance = 1;
// Set to true to not run (eventual) post install scripts
bool skipPostInstall = 2;
}
message UpgradeResp {
// 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 VersionReq {}
message VersionResp {
// The version of Arduino CLI in use.
string version = 1;
}
message LoadSketchReq {
// 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 LoadSketchResp {
// 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;
}
message ArchiveSketchReq{
// 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 ArchiveSketchResp { }