Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
6cabab22
Commit
6cabab22
authored
8 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Updated EOS-CTA_interface.pdf
parent
2b0db1ea
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/EOS-CTA_interface.pdf
+0
-0
0 additions, 0 deletions
doc/EOS-CTA_interface.pdf
doc/EOS-CTA_interface.tex
+18
-8
18 additions, 8 deletions
doc/EOS-CTA_interface.tex
with
18 additions
and
8 deletions
doc/EOS-CTA_interface.pdf
+
0
−
0
View file @
6cabab22
No preview for this file type
This diff is collapsed.
Click to expand it.
doc/EOS-CTA_interface.tex
+
18
−
8
View file @
6cabab22
...
...
@@ -264,8 +264,10 @@ syntax = "proto3";
package eos.wfe;
message Id
{
fixed64 n = 1; // identity number
string name = 2; // identity name
fixed64 uid = 1; //< user identity number
string username = 2; //< user name
fixed64 gid = 3; //< group identity number
string groupname = 4; //< group name
}
message Checksum
{
...
...
@@ -312,9 +314,17 @@ message Service {
}
message Workflow
{
string event = 1; //< event
enum EventType
{
NONE = 0;
OPENR = 1;
OPENW = 2;
CLOSER = 3;
CLOSEW = 4;
DELETE = 5;
PREPARE = 6;
}
EventType event = 1; //< event
string queue = 2; //< queue
string wfname = 3; //< workflow
string wfname = 3;
//< workflow
string vpath = 4; //< vpath
Service instance = 5; //< instance information
fixed64 timestamp = 6; //< event timestamp
...
...
@@ -329,14 +339,14 @@ message Notification {
}
message Xattr
{
enum Operation
{
GET =
0
; ADD =
1
; SET =
2
; DELETE =
3
;
}
enum Operation
{
NONE = 0;
GET =
1
; ADD =
2
; SET =
3
; DELETE =
4
;
}
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
;
}
enum Status
{
NONE = 0;
OFFTAPE =
1
; ONTAPE =
2
; ONTAPESAVE =
3
;
}
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
...
...
@@ -344,7 +354,7 @@ message Tapereplica {
}
message Error
{
enum Audience
{
EOSLOG =
0
; ENDUSER =
1
;
}
enum Audience
{
NONE = 0;
EOSLOG =
1
; ENDUSER =
2
;
}
Audience audience = 1; //< The intended audience of the error message
fixed64 code = 2; //< Zero means success, non-zero means error
string message = 3; //< An empty if success, else an error message
...
...
@@ -371,7 +381,7 @@ message Error {
// metadata.
message Wrapper
{
enum Type
{
NONE = 0; ERROR = 1; NOTIFICATION = 2; XATTR = 3; TAPEREPLICA = 4;
}
Type type = 1;
//< Default value is NONE
Type type = 1;
Error error = 2;
Notification notification = 3;
Xattr xattr = 4;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment