|
@@ -24,24 +24,31 @@
|
|
// const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_22_1;
|
|
// const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_22_1;
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
#[derive(PartialEq,Clone,Default)]
|
|
-pub struct WsDocumentData {
|
|
|
|
|
|
+pub struct DocumentWSData {
|
|
// message fields
|
|
// message fields
|
|
pub doc_id: ::std::string::String,
|
|
pub doc_id: ::std::string::String,
|
|
- pub ty: WsDocumentDataType,
|
|
|
|
|
|
+ pub ty: DocumentWSDataType,
|
|
pub data: ::std::vec::Vec<u8>,
|
|
pub data: ::std::vec::Vec<u8>,
|
|
|
|
+ // message oneof groups
|
|
|
|
+ pub one_of_id: ::std::option::Option<DocumentWSData_oneof_one_of_id>,
|
|
// special fields
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
}
|
|
|
|
|
|
-impl<'a> ::std::default::Default for &'a WsDocumentData {
|
|
|
|
- fn default() -> &'a WsDocumentData {
|
|
|
|
- <WsDocumentData as ::protobuf::Message>::default_instance()
|
|
|
|
|
|
+impl<'a> ::std::default::Default for &'a DocumentWSData {
|
|
|
|
+ fn default() -> &'a DocumentWSData {
|
|
|
|
+ <DocumentWSData as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-impl WsDocumentData {
|
|
|
|
- pub fn new() -> WsDocumentData {
|
|
|
|
|
|
+#[derive(Clone,PartialEq,Debug)]
|
|
|
|
+pub enum DocumentWSData_oneof_one_of_id {
|
|
|
|
+ id(i64),
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl DocumentWSData {
|
|
|
|
+ pub fn new() -> DocumentWSData {
|
|
::std::default::Default::default()
|
|
::std::default::Default::default()
|
|
}
|
|
}
|
|
|
|
|
|
@@ -71,18 +78,18 @@ impl WsDocumentData {
|
|
::std::mem::replace(&mut self.doc_id, ::std::string::String::new())
|
|
::std::mem::replace(&mut self.doc_id, ::std::string::String::new())
|
|
}
|
|
}
|
|
|
|
|
|
- // .WsDocumentDataType ty = 2;
|
|
|
|
|
|
+ // .DocumentWSDataType ty = 2;
|
|
|
|
|
|
|
|
|
|
- pub fn get_ty(&self) -> WsDocumentDataType {
|
|
|
|
|
|
+ pub fn get_ty(&self) -> DocumentWSDataType {
|
|
self.ty
|
|
self.ty
|
|
}
|
|
}
|
|
pub fn clear_ty(&mut self) {
|
|
pub fn clear_ty(&mut self) {
|
|
- self.ty = WsDocumentDataType::Acked;
|
|
|
|
|
|
+ self.ty = DocumentWSDataType::Acked;
|
|
}
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
// Param is passed by value, moved
|
|
- pub fn set_ty(&mut self, v: WsDocumentDataType) {
|
|
|
|
|
|
+ pub fn set_ty(&mut self, v: DocumentWSDataType) {
|
|
self.ty = v;
|
|
self.ty = v;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -111,9 +118,34 @@ impl WsDocumentData {
|
|
pub fn take_data(&mut self) -> ::std::vec::Vec<u8> {
|
|
pub fn take_data(&mut self) -> ::std::vec::Vec<u8> {
|
|
::std::mem::replace(&mut self.data, ::std::vec::Vec::new())
|
|
::std::mem::replace(&mut self.data, ::std::vec::Vec::new())
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ // int64 id = 4;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ pub fn get_id(&self) -> i64 {
|
|
|
|
+ match self.one_of_id {
|
|
|
|
+ ::std::option::Option::Some(DocumentWSData_oneof_one_of_id::id(v)) => v,
|
|
|
|
+ _ => 0,
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ pub fn clear_id(&mut self) {
|
|
|
|
+ self.one_of_id = ::std::option::Option::None;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ pub fn has_id(&self) -> bool {
|
|
|
|
+ match self.one_of_id {
|
|
|
|
+ ::std::option::Option::Some(DocumentWSData_oneof_one_of_id::id(..)) => true,
|
|
|
|
+ _ => false,
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Param is passed by value, moved
|
|
|
|
+ pub fn set_id(&mut self, v: i64) {
|
|
|
|
+ self.one_of_id = ::std::option::Option::Some(DocumentWSData_oneof_one_of_id::id(v))
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for WsDocumentData {
|
|
|
|
|
|
+impl ::protobuf::Message for DocumentWSData {
|
|
fn is_initialized(&self) -> bool {
|
|
fn is_initialized(&self) -> bool {
|
|
true
|
|
true
|
|
}
|
|
}
|
|
@@ -131,6 +163,12 @@ impl ::protobuf::Message for WsDocumentData {
|
|
3 => {
|
|
3 => {
|
|
::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.data)?;
|
|
::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.data)?;
|
|
},
|
|
},
|
|
|
|
+ 4 => {
|
|
|
|
+ if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
|
+ return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
|
+ }
|
|
|
|
+ self.one_of_id = ::std::option::Option::Some(DocumentWSData_oneof_one_of_id::id(is.read_int64()?));
|
|
|
|
+ },
|
|
_ => {
|
|
_ => {
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
},
|
|
},
|
|
@@ -146,12 +184,19 @@ impl ::protobuf::Message for WsDocumentData {
|
|
if !self.doc_id.is_empty() {
|
|
if !self.doc_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(1, &self.doc_id);
|
|
my_size += ::protobuf::rt::string_size(1, &self.doc_id);
|
|
}
|
|
}
|
|
- if self.ty != WsDocumentDataType::Acked {
|
|
|
|
|
|
+ if self.ty != DocumentWSDataType::Acked {
|
|
my_size += ::protobuf::rt::enum_size(2, self.ty);
|
|
my_size += ::protobuf::rt::enum_size(2, self.ty);
|
|
}
|
|
}
|
|
if !self.data.is_empty() {
|
|
if !self.data.is_empty() {
|
|
my_size += ::protobuf::rt::bytes_size(3, &self.data);
|
|
my_size += ::protobuf::rt::bytes_size(3, &self.data);
|
|
}
|
|
}
|
|
|
|
+ if let ::std::option::Option::Some(ref v) = self.one_of_id {
|
|
|
|
+ match v {
|
|
|
|
+ &DocumentWSData_oneof_one_of_id::id(v) => {
|
|
|
|
+ my_size += ::protobuf::rt::value_size(4, v, ::protobuf::wire_format::WireTypeVarint);
|
|
|
|
+ },
|
|
|
|
+ };
|
|
|
|
+ }
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
self.cached_size.set(my_size);
|
|
self.cached_size.set(my_size);
|
|
my_size
|
|
my_size
|
|
@@ -161,12 +206,19 @@ impl ::protobuf::Message for WsDocumentData {
|
|
if !self.doc_id.is_empty() {
|
|
if !self.doc_id.is_empty() {
|
|
os.write_string(1, &self.doc_id)?;
|
|
os.write_string(1, &self.doc_id)?;
|
|
}
|
|
}
|
|
- if self.ty != WsDocumentDataType::Acked {
|
|
|
|
|
|
+ if self.ty != DocumentWSDataType::Acked {
|
|
os.write_enum(2, ::protobuf::ProtobufEnum::value(&self.ty))?;
|
|
os.write_enum(2, ::protobuf::ProtobufEnum::value(&self.ty))?;
|
|
}
|
|
}
|
|
if !self.data.is_empty() {
|
|
if !self.data.is_empty() {
|
|
os.write_bytes(3, &self.data)?;
|
|
os.write_bytes(3, &self.data)?;
|
|
}
|
|
}
|
|
|
|
+ if let ::std::option::Option::Some(ref v) = self.one_of_id {
|
|
|
|
+ match v {
|
|
|
|
+ &DocumentWSData_oneof_one_of_id::id(v) => {
|
|
|
|
+ os.write_int64(4, v)?;
|
|
|
|
+ },
|
|
|
|
+ };
|
|
|
|
+ }
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
::std::result::Result::Ok(())
|
|
::std::result::Result::Ok(())
|
|
}
|
|
}
|
|
@@ -197,8 +249,8 @@ impl ::protobuf::Message for WsDocumentData {
|
|
Self::descriptor_static()
|
|
Self::descriptor_static()
|
|
}
|
|
}
|
|
|
|
|
|
- fn new() -> WsDocumentData {
|
|
|
|
- WsDocumentData::new()
|
|
|
|
|
|
+ fn new() -> DocumentWSData {
|
|
|
|
+ DocumentWSData::new()
|
|
}
|
|
}
|
|
|
|
|
|
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
@@ -207,49 +259,55 @@ impl ::protobuf::Message for WsDocumentData {
|
|
let mut fields = ::std::vec::Vec::new();
|
|
let mut fields = ::std::vec::Vec::new();
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"doc_id",
|
|
"doc_id",
|
|
- |m: &WsDocumentData| { &m.doc_id },
|
|
|
|
- |m: &mut WsDocumentData| { &mut m.doc_id },
|
|
|
|
|
|
+ |m: &DocumentWSData| { &m.doc_id },
|
|
|
|
+ |m: &mut DocumentWSData| { &mut m.doc_id },
|
|
));
|
|
));
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<WsDocumentDataType>>(
|
|
|
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<DocumentWSDataType>>(
|
|
"ty",
|
|
"ty",
|
|
- |m: &WsDocumentData| { &m.ty },
|
|
|
|
- |m: &mut WsDocumentData| { &mut m.ty },
|
|
|
|
|
|
+ |m: &DocumentWSData| { &m.ty },
|
|
|
|
+ |m: &mut DocumentWSData| { &mut m.ty },
|
|
));
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
"data",
|
|
"data",
|
|
- |m: &WsDocumentData| { &m.data },
|
|
|
|
- |m: &mut WsDocumentData| { &mut m.data },
|
|
|
|
|
|
+ |m: &DocumentWSData| { &m.data },
|
|
|
|
+ |m: &mut DocumentWSData| { &mut m.data },
|
|
|
|
+ ));
|
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_singular_i64_accessor::<_>(
|
|
|
|
+ "id",
|
|
|
|
+ DocumentWSData::has_id,
|
|
|
|
+ DocumentWSData::get_id,
|
|
));
|
|
));
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<WsDocumentData>(
|
|
|
|
- "WsDocumentData",
|
|
|
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<DocumentWSData>(
|
|
|
|
+ "DocumentWSData",
|
|
fields,
|
|
fields,
|
|
file_descriptor_proto()
|
|
file_descriptor_proto()
|
|
)
|
|
)
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static WsDocumentData {
|
|
|
|
- static instance: ::protobuf::rt::LazyV2<WsDocumentData> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
- instance.get(WsDocumentData::new)
|
|
|
|
|
|
+ fn default_instance() -> &'static DocumentWSData {
|
|
|
|
+ static instance: ::protobuf::rt::LazyV2<DocumentWSData> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
+ instance.get(DocumentWSData::new)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for WsDocumentData {
|
|
|
|
|
|
+impl ::protobuf::Clear for DocumentWSData {
|
|
fn clear(&mut self) {
|
|
fn clear(&mut self) {
|
|
self.doc_id.clear();
|
|
self.doc_id.clear();
|
|
- self.ty = WsDocumentDataType::Acked;
|
|
|
|
|
|
+ self.ty = DocumentWSDataType::Acked;
|
|
self.data.clear();
|
|
self.data.clear();
|
|
|
|
+ self.one_of_id = ::std::option::Option::None;
|
|
self.unknown_fields.clear();
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for WsDocumentData {
|
|
|
|
|
|
+impl ::std::fmt::Debug for DocumentWSData {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for WsDocumentData {
|
|
|
|
|
|
+impl ::protobuf::reflect::ProtobufValue for DocumentWSData {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
@@ -492,34 +550,34 @@ impl ::protobuf::reflect::ProtobufValue for DocumentConnected {
|
|
}
|
|
}
|
|
|
|
|
|
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
|
|
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
|
|
-pub enum WsDocumentDataType {
|
|
|
|
|
|
+pub enum DocumentWSDataType {
|
|
Acked = 0,
|
|
Acked = 0,
|
|
PushRev = 1,
|
|
PushRev = 1,
|
|
PullRev = 2,
|
|
PullRev = 2,
|
|
UserConnect = 3,
|
|
UserConnect = 3,
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::protobuf::ProtobufEnum for WsDocumentDataType {
|
|
|
|
|
|
+impl ::protobuf::ProtobufEnum for DocumentWSDataType {
|
|
fn value(&self) -> i32 {
|
|
fn value(&self) -> i32 {
|
|
*self as i32
|
|
*self as i32
|
|
}
|
|
}
|
|
|
|
|
|
- fn from_i32(value: i32) -> ::std::option::Option<WsDocumentDataType> {
|
|
|
|
|
|
+ fn from_i32(value: i32) -> ::std::option::Option<DocumentWSDataType> {
|
|
match value {
|
|
match value {
|
|
- 0 => ::std::option::Option::Some(WsDocumentDataType::Acked),
|
|
|
|
- 1 => ::std::option::Option::Some(WsDocumentDataType::PushRev),
|
|
|
|
- 2 => ::std::option::Option::Some(WsDocumentDataType::PullRev),
|
|
|
|
- 3 => ::std::option::Option::Some(WsDocumentDataType::UserConnect),
|
|
|
|
|
|
+ 0 => ::std::option::Option::Some(DocumentWSDataType::Acked),
|
|
|
|
+ 1 => ::std::option::Option::Some(DocumentWSDataType::PushRev),
|
|
|
|
+ 2 => ::std::option::Option::Some(DocumentWSDataType::PullRev),
|
|
|
|
+ 3 => ::std::option::Option::Some(DocumentWSDataType::UserConnect),
|
|
_ => ::std::option::Option::None
|
|
_ => ::std::option::Option::None
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
fn values() -> &'static [Self] {
|
|
fn values() -> &'static [Self] {
|
|
- static values: &'static [WsDocumentDataType] = &[
|
|
|
|
- WsDocumentDataType::Acked,
|
|
|
|
- WsDocumentDataType::PushRev,
|
|
|
|
- WsDocumentDataType::PullRev,
|
|
|
|
- WsDocumentDataType::UserConnect,
|
|
|
|
|
|
+ static values: &'static [DocumentWSDataType] = &[
|
|
|
|
+ DocumentWSDataType::Acked,
|
|
|
|
+ DocumentWSDataType::PushRev,
|
|
|
|
+ DocumentWSDataType::PullRev,
|
|
|
|
+ DocumentWSDataType::UserConnect,
|
|
];
|
|
];
|
|
values
|
|
values
|
|
}
|
|
}
|
|
@@ -527,63 +585,68 @@ impl ::protobuf::ProtobufEnum for WsDocumentDataType {
|
|
fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor {
|
|
fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor {
|
|
static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::EnumDescriptor> = ::protobuf::rt::LazyV2::INIT;
|
|
static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::EnumDescriptor> = ::protobuf::rt::LazyV2::INIT;
|
|
descriptor.get(|| {
|
|
descriptor.get(|| {
|
|
- ::protobuf::reflect::EnumDescriptor::new_pb_name::<WsDocumentDataType>("WsDocumentDataType", file_descriptor_proto())
|
|
|
|
|
|
+ ::protobuf::reflect::EnumDescriptor::new_pb_name::<DocumentWSDataType>("DocumentWSDataType", file_descriptor_proto())
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::std::marker::Copy for WsDocumentDataType {
|
|
|
|
|
|
+impl ::std::marker::Copy for DocumentWSDataType {
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::std::default::Default for WsDocumentDataType {
|
|
|
|
|
|
+impl ::std::default::Default for DocumentWSDataType {
|
|
fn default() -> Self {
|
|
fn default() -> Self {
|
|
- WsDocumentDataType::Acked
|
|
|
|
|
|
+ DocumentWSDataType::Acked
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for WsDocumentDataType {
|
|
|
|
|
|
+impl ::protobuf::reflect::ProtobufValue for DocumentWSDataType {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Enum(::protobuf::ProtobufEnum::descriptor(self))
|
|
::protobuf::reflect::ReflectValueRef::Enum(::protobuf::ProtobufEnum::descriptor(self))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
- \n\x08ws.proto\"`\n\x0eWsDocumentData\x12\x15\n\x06doc_id\x18\x01\x20\
|
|
|
|
- \x01(\tR\x05docId\x12#\n\x02ty\x18\x02\x20\x01(\x0e2\x13.WsDocumentDataT\
|
|
|
|
- ypeR\x02ty\x12\x12\n\x04data\x18\x03\x20\x01(\x0cR\x04data\"Z\n\x11Docum\
|
|
|
|
- entConnected\x12\x17\n\x07user_id\x18\x01\x20\x01(\tR\x06userId\x12\x15\
|
|
|
|
- \n\x06doc_id\x18\x02\x20\x01(\tR\x05docId\x12\x15\n\x06rev_id\x18\x03\
|
|
|
|
- \x20\x01(\x03R\x05revId*J\n\x12WsDocumentDataType\x12\t\n\x05Acked\x10\0\
|
|
|
|
- \x12\x0b\n\x07PushRev\x10\x01\x12\x0b\n\x07PullRev\x10\x02\x12\x0f\n\x0b\
|
|
|
|
- UserConnect\x10\x03J\xc8\x04\n\x06\x12\x04\0\0\x11\x01\n\x08\n\x01\x0c\
|
|
|
|
- \x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x06\x01\n\n\n\x03\x04\0\
|
|
|
|
- \x01\x12\x03\x02\x08\x16\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\x04\x16\n\
|
|
|
|
- \x0c\n\x05\x04\0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\n\x05\x04\0\x02\0\x01\
|
|
|
|
- \x12\x03\x03\x0b\x11\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x14\x15\n\
|
|
|
|
- \x0b\n\x04\x04\0\x02\x01\x12\x03\x04\x04\x1e\n\x0c\n\x05\x04\0\x02\x01\
|
|
|
|
- \x06\x12\x03\x04\x04\x16\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\x04\x17\
|
|
|
|
- \x19\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x04\x1c\x1d\n\x0b\n\x04\x04\0\
|
|
|
|
- \x02\x02\x12\x03\x05\x04\x13\n\x0c\n\x05\x04\0\x02\x02\x05\x12\x03\x05\
|
|
|
|
- \x04\t\n\x0c\n\x05\x04\0\x02\x02\x01\x12\x03\x05\n\x0e\n\x0c\n\x05\x04\0\
|
|
|
|
- \x02\x02\x03\x12\x03\x05\x11\x12\n\n\n\x02\x04\x01\x12\x04\x07\0\x0b\x01\
|
|
|
|
- \n\n\n\x03\x04\x01\x01\x12\x03\x07\x08\x19\n\x0b\n\x04\x04\x01\x02\0\x12\
|
|
|
|
- \x03\x08\x04\x17\n\x0c\n\x05\x04\x01\x02\0\x05\x12\x03\x08\x04\n\n\x0c\n\
|
|
|
|
- \x05\x04\x01\x02\0\x01\x12\x03\x08\x0b\x12\n\x0c\n\x05\x04\x01\x02\0\x03\
|
|
|
|
- \x12\x03\x08\x15\x16\n\x0b\n\x04\x04\x01\x02\x01\x12\x03\t\x04\x16\n\x0c\
|
|
|
|
- \n\x05\x04\x01\x02\x01\x05\x12\x03\t\x04\n\n\x0c\n\x05\x04\x01\x02\x01\
|
|
|
|
- \x01\x12\x03\t\x0b\x11\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03\t\x14\x15\
|
|
|
|
- \n\x0b\n\x04\x04\x01\x02\x02\x12\x03\n\x04\x15\n\x0c\n\x05\x04\x01\x02\
|
|
|
|
- \x02\x05\x12\x03\n\x04\t\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03\n\n\x10\
|
|
|
|
- \n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03\n\x13\x14\n\n\n\x02\x05\0\x12\
|
|
|
|
- \x04\x0c\0\x11\x01\n\n\n\x03\x05\0\x01\x12\x03\x0c\x05\x17\n\x0b\n\x04\
|
|
|
|
- \x05\0\x02\0\x12\x03\r\x04\x0e\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\r\x04\
|
|
|
|
- \t\n\x0c\n\x05\x05\0\x02\0\x02\x12\x03\r\x0c\r\n\x0b\n\x04\x05\0\x02\x01\
|
|
|
|
- \x12\x03\x0e\x04\x10\n\x0c\n\x05\x05\0\x02\x01\x01\x12\x03\x0e\x04\x0b\n\
|
|
|
|
- \x0c\n\x05\x05\0\x02\x01\x02\x12\x03\x0e\x0e\x0f\n\x0b\n\x04\x05\0\x02\
|
|
|
|
- \x02\x12\x03\x0f\x04\x10\n\x0c\n\x05\x05\0\x02\x02\x01\x12\x03\x0f\x04\
|
|
|
|
- \x0b\n\x0c\n\x05\x05\0\x02\x02\x02\x12\x03\x0f\x0e\x0f\n\x0b\n\x04\x05\0\
|
|
|
|
- \x02\x03\x12\x03\x10\x04\x14\n\x0c\n\x05\x05\0\x02\x03\x01\x12\x03\x10\
|
|
|
|
- \x04\x0f\n\x0c\n\x05\x05\0\x02\x03\x02\x12\x03\x10\x12\x13b\x06proto3\
|
|
|
|
|
|
+ \n\x08ws.proto\"\x7f\n\x0eDocumentWSData\x12\x15\n\x06doc_id\x18\x01\x20\
|
|
|
|
+ \x01(\tR\x05docId\x12#\n\x02ty\x18\x02\x20\x01(\x0e2\x13.DocumentWSDataT\
|
|
|
|
+ ypeR\x02ty\x12\x12\n\x04data\x18\x03\x20\x01(\x0cR\x04data\x12\x10\n\x02\
|
|
|
|
+ id\x18\x04\x20\x01(\x03H\0R\x02idB\x0b\n\tone_of_id\"Z\n\x11DocumentConn\
|
|
|
|
+ ected\x12\x17\n\x07user_id\x18\x01\x20\x01(\tR\x06userId\x12\x15\n\x06do\
|
|
|
|
+ c_id\x18\x02\x20\x01(\tR\x05docId\x12\x15\n\x06rev_id\x18\x03\x20\x01(\
|
|
|
|
+ \x03R\x05revId*J\n\x12DocumentWSDataType\x12\t\n\x05Acked\x10\0\x12\x0b\
|
|
|
|
+ \n\x07PushRev\x10\x01\x12\x0b\n\x07PullRev\x10\x02\x12\x0f\n\x0bUserConn\
|
|
|
|
+ ect\x10\x03J\x9a\x05\n\x06\x12\x04\0\0\x12\x01\n\x08\n\x01\x0c\x12\x03\0\
|
|
|
|
+ \0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x07\x01\n\n\n\x03\x04\0\x01\x12\x03\
|
|
|
|
+ \x02\x08\x16\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\x04\x16\n\x0c\n\x05\x04\
|
|
|
|
+ \0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\n\x05\x04\0\x02\0\x01\x12\x03\x03\
|
|
|
|
+ \x0b\x11\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x14\x15\n\x0b\n\x04\x04\
|
|
|
|
+ \0\x02\x01\x12\x03\x04\x04\x1e\n\x0c\n\x05\x04\0\x02\x01\x06\x12\x03\x04\
|
|
|
|
+ \x04\x16\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\x04\x17\x19\n\x0c\n\x05\
|
|
|
|
+ \x04\0\x02\x01\x03\x12\x03\x04\x1c\x1d\n\x0b\n\x04\x04\0\x02\x02\x12\x03\
|
|
|
|
+ \x05\x04\x13\n\x0c\n\x05\x04\0\x02\x02\x05\x12\x03\x05\x04\t\n\x0c\n\x05\
|
|
|
|
+ \x04\0\x02\x02\x01\x12\x03\x05\n\x0e\n\x0c\n\x05\x04\0\x02\x02\x03\x12\
|
|
|
|
+ \x03\x05\x11\x12\n\x0b\n\x04\x04\0\x08\0\x12\x03\x06\x04%\n\x0c\n\x05\
|
|
|
|
+ \x04\0\x08\0\x01\x12\x03\x06\n\x13\n\x0b\n\x04\x04\0\x02\x03\x12\x03\x06\
|
|
|
|
+ \x16#\n\x0c\n\x05\x04\0\x02\x03\x05\x12\x03\x06\x16\x1b\n\x0c\n\x05\x04\
|
|
|
|
+ \0\x02\x03\x01\x12\x03\x06\x1c\x1e\n\x0c\n\x05\x04\0\x02\x03\x03\x12\x03\
|
|
|
|
+ \x06!\"\n\n\n\x02\x04\x01\x12\x04\x08\0\x0c\x01\n\n\n\x03\x04\x01\x01\
|
|
|
|
+ \x12\x03\x08\x08\x19\n\x0b\n\x04\x04\x01\x02\0\x12\x03\t\x04\x17\n\x0c\n\
|
|
|
|
+ \x05\x04\x01\x02\0\x05\x12\x03\t\x04\n\n\x0c\n\x05\x04\x01\x02\0\x01\x12\
|
|
|
|
+ \x03\t\x0b\x12\n\x0c\n\x05\x04\x01\x02\0\x03\x12\x03\t\x15\x16\n\x0b\n\
|
|
|
|
+ \x04\x04\x01\x02\x01\x12\x03\n\x04\x16\n\x0c\n\x05\x04\x01\x02\x01\x05\
|
|
|
|
+ \x12\x03\n\x04\n\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03\n\x0b\x11\n\x0c\
|
|
|
|
+ \n\x05\x04\x01\x02\x01\x03\x12\x03\n\x14\x15\n\x0b\n\x04\x04\x01\x02\x02\
|
|
|
|
+ \x12\x03\x0b\x04\x15\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03\x0b\x04\t\n\
|
|
|
|
+ \x0c\n\x05\x04\x01\x02\x02\x01\x12\x03\x0b\n\x10\n\x0c\n\x05\x04\x01\x02\
|
|
|
|
+ \x02\x03\x12\x03\x0b\x13\x14\n\n\n\x02\x05\0\x12\x04\r\0\x12\x01\n\n\n\
|
|
|
|
+ \x03\x05\0\x01\x12\x03\r\x05\x17\n\x0b\n\x04\x05\0\x02\0\x12\x03\x0e\x04\
|
|
|
|
+ \x0e\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\x0e\x04\t\n\x0c\n\x05\x05\0\x02\
|
|
|
|
+ \0\x02\x12\x03\x0e\x0c\r\n\x0b\n\x04\x05\0\x02\x01\x12\x03\x0f\x04\x10\n\
|
|
|
|
+ \x0c\n\x05\x05\0\x02\x01\x01\x12\x03\x0f\x04\x0b\n\x0c\n\x05\x05\0\x02\
|
|
|
|
+ \x01\x02\x12\x03\x0f\x0e\x0f\n\x0b\n\x04\x05\0\x02\x02\x12\x03\x10\x04\
|
|
|
|
+ \x10\n\x0c\n\x05\x05\0\x02\x02\x01\x12\x03\x10\x04\x0b\n\x0c\n\x05\x05\0\
|
|
|
|
+ \x02\x02\x02\x12\x03\x10\x0e\x0f\n\x0b\n\x04\x05\0\x02\x03\x12\x03\x11\
|
|
|
|
+ \x04\x14\n\x0c\n\x05\x05\0\x02\x03\x01\x12\x03\x11\x04\x0f\n\x0c\n\x05\
|
|
|
|
+ \x05\0\x02\x03\x02\x12\x03\x11\x12\x13b\x06proto3\
|
|
";
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|