-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prepare version 5.8.8-alpha-1
- Loading branch information
Showing
61 changed files
with
11,755 additions
and
64,011 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
syntax = "proto3"; | ||
|
||
package google.protobuf; | ||
|
||
import "google/protobuf/source_context.proto"; | ||
import "google/protobuf/type.proto"; | ||
|
||
message Api { | ||
|
||
string name = 1; | ||
repeated Method methods = 2; | ||
repeated Option options = 3; | ||
string version = 4; | ||
SourceContext source_context = 5; | ||
repeated Mixin mixins = 6; | ||
Syntax syntax = 7; | ||
} | ||
|
||
message Method { | ||
|
||
string name = 1; | ||
string request_type_url = 2; | ||
bool request_streaming = 3; | ||
string response_type_url = 4; | ||
bool response_streaming = 5; | ||
repeated Option options = 6; | ||
Syntax syntax = 7; | ||
} | ||
|
||
message Mixin { | ||
|
||
string name = 1; | ||
string root = 2; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
syntax = "proto2"; | ||
|
||
option java_package = "org.yamcs.cmdhistory.protobuf"; | ||
|
||
import "yamcs/protobuf/yamcs.proto"; | ||
|
||
message AssignmentInfo { | ||
repeated Assignment assignment = 1; | ||
} | ||
|
||
message Assignment { | ||
optional string name = 1; | ||
optional yamcs.protobuf.Value value = 2; | ||
optional bool userInput = 3; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
syntax = "proto2"; | ||
|
||
option java_package = "org.yamcs.yarch.protobuf"; | ||
|
||
import "yamcs/protobuf/yamcs.proto"; | ||
import "yamcs/protobuf/events/events.proto"; | ||
import "yamcs/protobuf/pvalue/pvalue.proto"; | ||
import "yamcs/protobuf/mdb/mdb.proto"; | ||
|
||
|
||
//this message has been copied in Yamcs 5 from pvalue.proto | ||
// and is used when storing parameter values in tables (ParameterValueColumnSerializer.java). | ||
// | ||
// if the name of the parameter is the same with the column name, it is not stored. | ||
// For compatiblity with Yamcs 4, the protobuf field numbers are kept unchanged | ||
message ParameterValue { | ||
optional string name = 1; | ||
optional yamcs.protobuf.Value rawValue = 2; | ||
optional yamcs.protobuf.Value engValue = 3; | ||
optional int64 acquisitionTime = 4; | ||
optional int64 generationTime = 5; | ||
optional yamcs.protobuf.pvalue.AcquisitionStatus acquisitionStatus = 6; | ||
optional bool processingStatus = 7; | ||
optional yamcs.protobuf.pvalue.MonitoringResult monitoringResult = 8; | ||
optional yamcs.protobuf.pvalue.RangeCondition rangeCondition = 9; | ||
|
||
// Context-dependent ranges | ||
repeated yamcs.protobuf.mdb.AlarmRange alarmRange = 25; | ||
|
||
// How long (in milliseconds) this parameter value is valid | ||
// Note that there is an option when subscribing to parameters to get | ||
// updated when the parameter values expire. | ||
optional int64 expireMillis = 26; | ||
} | ||
|
||
message Event { | ||
optional string source = 1; | ||
optional int64 generationTime = 2; | ||
optional int64 receptionTime = 3; | ||
optional int32 seqNumber = 4; | ||
optional string type = 5; | ||
required string message = 6; | ||
optional yamcs.protobuf.events.Event.EventSeverity severity = 7[default=INFO]; | ||
|
||
// Set by API when event was posted by a user | ||
optional string createdBy = 10; | ||
|
||
// Additional properties | ||
map<string, string> extra = 11; | ||
} | ||
|
||
enum ProtoDataType { | ||
//error in replay | ||
DT_ERROR = 1; | ||
|
||
//the replay status has changed (e.g. stopped or closed) the body contains a ReplayStatus | ||
STATE_CHANGE = 2; | ||
|
||
TM_PACKET = 3; | ||
PP = 4; | ||
EVENT = 5; | ||
ARCHIVE_INDEX = 6; | ||
ARCHIVE_TAG = 7; | ||
PARAMETER = 8; | ||
CMD_HISTORY = 9; | ||
} |
Oops, something went wrong.