nexosim 1.0.0

A high performance asynchronous compute framework for system simulation.
Documentation
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
// The main simulation protocol.

syntax = "proto3";
package simulation.v1;

import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/empty.proto";

//--------
// Errors 
//--------

enum ErrorCode {
  // Generic errors.
  INTERNAL_ERROR = 0;
  MISSING_ARGUMENT = 1;
  INVALID_TIME = 2;
  INVALID_PERIOD = 3;
  INVALID_DEADLINE = 4;
  INVALID_MESSAGE = 5;
  INVALID_KEY = 6;
  INVALID_TIMEOUT = 7;

  // Bench building and initialization errors.
  BENCH_PANIC = 20;
  BENCH_ERROR = 21;
  BENCH_NOT_BUILT = 22;
  DUPLICATE_EVENT_SOURCE = 23;
  DUPLICATE_QUERY_SOURCE = 24;
  DUPLICATE_EVENT_SINK = 25;
  INVALID_BENCH_CONFIG = 26;
  
  // Simulation runtime error.
  SIMULATION_PANIC = 40;
  SIMULATION_NOT_STARTED = 42;
  SIMULATION_TERMINATED = 43;
  SIMULATION_DEADLOCK = 44;
  SIMULATION_MESSAGE_LOSS = 45;
  SIMULATION_NO_RECIPIENT = 46;
  SIMULATION_TIMEOUT = 47;
  SIMULATION_OUT_OF_SYNC = 48;
  SIMULATION_BAD_QUERY = 49;
  SIMULATION_TIME_OUT_OF_RANGE = 50;
  
  // Monitoring errors.
  EVENT_SOURCE_NOT_FOUND = 60;
  QUERY_SOURCE_NOT_FOUND = 61;
  SINK_NOT_FOUND = 62;
  SINK_TERMINATED = 63;
  SINK_READ_RACE = 64;
  SINK_READ_TIMEOUT = 65;
  INVALID_EVENT_TYPE = 66;
  INVALID_QUERY_TYPE = 67;

  // Serialization error.
  SAVE_ERROR = 80;
  RESTORE_ERROR = 81;
}

message Error {
  ErrorCode code = 1;
  string message = 2;
}


//------------
// Leaf types 
//------------

message Path {
  repeated string segments = 1;
}

message EventSourceSchema {
  Path source = 1;
  string event = 2;
}

message QuerySourceSchema {
  Path source = 1;
  string request = 2;
  string reply = 3;
}

message EventSinkSchema {
  Path sink = 1;
  string event = 2;
}

message EventKey {
  uint64 subkey1 = 1;
  uint64 subkey2 = 2;
}

//----------------------
// Requests and replies
//----------------------

message BuildRequest {
  bytes cfg = 1;
}
message BuildReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message InitRequest {
  google.protobuf.Timestamp time = 1;
}
message InitReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message InitAndRunRequest {
  google.protobuf.Timestamp time = 1;
}
message InitAndRunReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    Error error = 100;
  }
}

message RestoreRequest {
  bytes state = 1;
}
message RestoreReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message RestoreAndRunRequest {
  bytes state = 1;
}
message RestoreAndRunReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    Error error = 100;
  }
}

message TerminateRequest { }
message TerminateReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message HaltRequest {}
message HaltReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message SaveRequest {}
message SaveReply {
  oneof result { // Always returns exactly 1 variant.
    bytes state = 1;
    Error error = 100;
  }
}

message TimeRequest {}
message TimeReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    Error error = 100;
  }
}

message StepRequest {}
message StepReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    Error error = 100;
  }
}

message StepUntilRequest {
  oneof deadline { // Always returns exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    google.protobuf.Duration duration = 2;
  }
}
message StepUntilReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    Error error = 100;
  }
}

message RunRequest {}
message RunReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    Error error = 100;
  }
}

message ListEventSourcesRequest {}
message ListEventSourcesReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned.
  repeated Path sources = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message GetEventSourceSchemasRequest {
  repeated Path sources = 1;
}
message GetEventSourceSchemasReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned.
  repeated EventSourceSchema schemas = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message ListQuerySourcesRequest {}
message ListQuerySourcesReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned
  repeated Path sources = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message GetQuerySourceSchemasRequest {
  repeated Path sources = 1;
}
message GetQuerySourceSchemasReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned.
  repeated QuerySourceSchema schemas = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message ListEventSinksRequest {}
message ListEventSinksReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned.
  repeated Path sinks = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message GetEventSinkSchemasRequest {
  repeated Path sinks = 1;
}
message GetEventSinkSchemasReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned.
  repeated EventSinkSchema schemas = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message InjectEventRequest {
  Path source = 3;
  bytes event = 4;
}
message InjectEventReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message ScheduleEventRequest {
  oneof deadline { // Expects exactly 1 variant.
    google.protobuf.Timestamp time = 1;
    google.protobuf.Duration duration = 2;
  }
  Path source = 3;
  bytes event = 4;
  google.protobuf.Duration period = 5;
  bool with_key = 6;
}
message ScheduleEventReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    EventKey key = 2;
    Error error = 100;
  }
}

message CancelEventRequest {
  EventKey key = 1;
}
message CancelEventReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message ProcessEventRequest {
  Path source = 1;
  bytes event = 2;
}
message ProcessEventReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 1;
    Error error = 100;
  }
}

message ProcessQueryRequest {
  Path source = 1;
  bytes request = 2;
}
message ProcessQueryReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned
  repeated bytes replies = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message TryReadEventsRequest {
  Path sink = 1;
}
message TryReadEventsReply {
  // This field is hoisted because protobuf3 does not support `repeated` within
  // a `oneof`. It is Always empty if an error is returned
  repeated bytes events = 1;
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message ReadEventRequest {
  Path sink = 1;
  google.protobuf.Duration timeout = 2;
}
message ReadEventReply {
  oneof result { // Always returns exactly 1 variant.
    bytes event = 1;
    Error error = 100;
  }
}

message EnableSinkRequest {
  Path sink = 1;
}
message EnableSinkReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

message DisableSinkRequest {
  Path sink = 1;
}
message DisableSinkReply {
  oneof result { // Always returns exactly 1 variant.
    google.protobuf.Empty empty = 10;
    Error error = 100;
  }
}

//---------
// Service
//---------

service Simulation {
  rpc Build(BuildRequest) returns (BuildReply);
  rpc Init(InitRequest) returns (InitReply);
  rpc InitAndRun(InitAndRunRequest) returns (InitAndRunReply);
  rpc Halt(HaltRequest) returns (HaltReply);
  rpc Terminate(TerminateRequest) returns (TerminateReply);
  rpc Save(SaveRequest) returns (SaveReply);
  rpc Restore(RestoreRequest) returns (RestoreReply);
  rpc RestoreAndRun(RestoreAndRunRequest) returns (RestoreAndRunReply);
  rpc Time(TimeRequest) returns (TimeReply);
  rpc Step(StepRequest) returns (StepReply);
  rpc StepUntil(StepUntilRequest) returns (StepUntilReply);
  rpc Run(RunRequest) returns (RunReply);
  rpc ListEventSources(ListEventSourcesRequest) returns (ListEventSourcesReply);
  rpc GetEventSourceSchemas(GetEventSourceSchemasRequest) returns (GetEventSourceSchemasReply);
  rpc ListQuerySources(ListQuerySourcesRequest) returns (ListQuerySourcesReply);
  rpc GetQuerySourceSchemas(GetQuerySourceSchemasRequest) returns (GetQuerySourceSchemasReply);
  rpc ListEventSinks(ListEventSinksRequest) returns (ListEventSinksReply);
  rpc GetEventSinkSchemas(GetEventSinkSchemasRequest) returns (GetEventSinkSchemasReply);
  rpc InjectEvent(InjectEventRequest) returns (InjectEventReply);
  rpc ScheduleEvent(ScheduleEventRequest) returns (ScheduleEventReply);
  rpc CancelEvent(CancelEventRequest) returns (CancelEventReply);
  rpc ProcessEvent(ProcessEventRequest) returns (ProcessEventReply);
  rpc ProcessQuery(ProcessQueryRequest) returns (ProcessQueryReply);
  rpc TryReadEvents(TryReadEventsRequest) returns (TryReadEventsReply);
  rpc ReadEvent(ReadEventRequest) returns (ReadEventReply);
  rpc EnableSink(EnableSinkRequest) returns (EnableSinkReply);
  rpc DisableSink(DisableSinkRequest) returns (DisableSinkReply);
}