aboutsummaryrefslogtreecommitdiffstats
path: root/src/metadata_msgs.proto
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-10-28 13:18:10 -0700
committerBryan Newbold <bnewbold@robocracy.org>2017-10-28 13:18:15 -0700
commit83d3ee0196af0b2c0b9bea1c945c794d4f84ae93 (patch)
treed936cc106529a3ff8f68ffa0d7bbb6d78f0888b0 /src/metadata_msgs.proto
parentcfc039aedb9acf4a67e316675f044aa765c3d7fc (diff)
downloadgeniza-83d3ee0196af0b2c0b9bea1c945c794d4f84ae93.tar.gz
geniza-83d3ee0196af0b2c0b9bea1c945c794d4f84ae93.zip
rename protobuf files/modules; add Node type
Also specify the protobuf syntax version (2)
Diffstat (limited to 'src/metadata_msgs.proto')
-rw-r--r--src/metadata_msgs.proto33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/metadata_msgs.proto b/src/metadata_msgs.proto
new file mode 100644
index 0000000..8de4949
--- /dev/null
+++ b/src/metadata_msgs.proto
@@ -0,0 +1,33 @@
+syntax = "proto2";
+
+// File copied from: https://github.com/mafintosh/hyperdrive/blob/master/lib/messages.js
+// Copyright (c) 2015 Mathias Buus
+// MIT License (MIT)
+
+
+message Index {
+ required string type = 1;
+ optional bytes content = 2;
+}
+
+message Stat {
+ required uint32 mode = 1;
+ optional uint32 uid = 2;
+ optional uint32 gid = 3;
+ optional uint64 size = 4;
+ optional uint64 blocks = 5;
+ optional uint64 offset = 6;
+ optional uint64 byteOffset = 7;
+ optional uint64 mtime = 8;
+ optional uint64 ctime = 9;
+}
+
+// File copied from: https://github.com/mafintosh/append-tree/blob/master/schema.proto
+// Copyright (c) 2015 Mathias Buus
+// MIT License (MIT)
+
+message Node {
+ required string name = 1;
+ optional bytes value = 2;
+ optional bytes paths = 3;
+}