Skip to content
Snippets Groups Projects
Commit 0fca8d3d authored by Steven Murray's avatar Steven Murray
Browse files

Updated EOS protobuf definitions in EOS-CTA interface.pdf

parent 8309a6d3
Branches
Tags
No related merge requests found
No preview for this file type
......@@ -264,7 +264,7 @@ syntax = "proto3";
package eos.wfe;
message id {
sfixed n = 1; // identity number
fixed64 n = 1; // identity number
string name = 2; // identity name
}
......@@ -314,7 +314,7 @@ message service {
message workflow {
string event = 1; //< event
string queue = 2; //< queue
string workflow = 3; //< workflow
string wfname = 3; //< workflow
string vpath = 4; //< vpath
service instance = 5; //< instance information
fixed64 timestamp = 6; //< event timestamp
......@@ -329,18 +329,18 @@ message notification {
}
message xattr {
enum Operation { GET = 0; ADD = 1; SET = 2; DELETE = 3 }
fixed64 fid = 1; //< file id
map<string, string> xattr = 2 //< xattribute map
operation op = 3; //< operation to execute for this xattr map
enum Operation { GET = 0; ADD = 1; SET = 2; DELETE = 3;}
fixed64 fid = 1; //< file id
map<string, string> xattrs = 2; //< xattribute map
Operation op = 3; //< operation to execute for this xattr map
}
message tapereplica {
enum Status { OFFTAPE = 0; ONTAPE = 1; ONTAPESAVE = 2}
fixed64 fid = 1; //< file id
Status status = 2; //< state state for file ID
fixed64 size = 3; //< File size as recorded on tape for cross check
checkum cks = 4; //< File checksum as computer while writing to tape
enum Status { OFFTAPE = 0; ONTAPE = 1; ONTAPESAVE = 2;}
fixed64 fid = 1; //< file id
Status status = 2; //< state state for file ID
fixed64 size = 3; //< File size as recorded on tape for cross check
checksum cks = 4; //< File checksum as computer while writing to tape
}
\end{lstlisting}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment