#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(unused_imports)]
#![allow(unknown_lints)]
#![allow(clippy::all)]
#![cfg_attr(rustfmt, rustfmt_skip)]
use quick_protobuf::{MessageInfo, MessageRead, MessageWrite, BytesReader, Writer, WriterBackend, Result};
use quick_protobuf::sizeofs::*;
use super::*;
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Debug, Default, PartialEq, Clone)]
pub struct User {
pub name: String,
}
impl<'a> MessageRead<'a> for User {
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self> {
let mut msg = Self::default();
while !r.is_eof() {
match r.next_tag(bytes) {
Ok(10) => msg.name = r.read_string(bytes)?.to_owned(),
Ok(t) => { r.read_unknown(bytes, t)?; }
Err(e) => return Err(e),
}
}
Ok(msg)
}
}
impl MessageWrite for User {
fn get_size(&self) -> usize {
0
+ if self.name == String::default() { 0 } else { 1 + sizeof_len((&self.name).len()) }
}
fn write_message<W: WriterBackend>(&self, w: &mut Writer<W>) -> Result<()> {
if self.name != String::default() { w.write_with_tag(10, |w| w.write_string(&**&self.name))?; }
Ok(())
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Debug, Default, PartialEq, Clone)]
pub struct Cell {
pub id: u32,
pub content: String,
pub locked: bool,
}
impl<'a> MessageRead<'a> for Cell {
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self> {
let mut msg = Self::default();
while !r.is_eof() {
match r.next_tag(bytes) {
Ok(8) => msg.id = r.read_uint32(bytes)?,
Ok(18) => msg.content = r.read_string(bytes)?.to_owned(),
Ok(24) => msg.locked = r.read_bool(bytes)?,
Ok(t) => { r.read_unknown(bytes, t)?; }
Err(e) => return Err(e),
}
}
Ok(msg)
}
}
impl MessageWrite for Cell {
fn get_size(&self) -> usize {
0
+ if self.id == 0u32 { 0 } else { 1 + sizeof_varint(*(&self.id) as u64) }
+ if self.content == String::default() { 0 } else { 1 + sizeof_len((&self.content).len()) }
+ if self.locked == false { 0 } else { 1 + sizeof_varint(*(&self.locked) as u64) }
}
fn write_message<W: WriterBackend>(&self, w: &mut Writer<W>) -> Result<()> {
if self.id != 0u32 { w.write_with_tag(8, |w| w.write_uint32(*&self.id))?; }
if self.content != String::default() { w.write_with_tag(18, |w| w.write_string(&**&self.content))?; }
if self.locked != false { w.write_with_tag(24, |w| w.write_bool(*&self.locked))?; }
Ok(())
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Debug, Default, PartialEq, Clone)]
pub struct CellInput {
pub pressed: bool,
}
impl<'a> MessageRead<'a> for CellInput {
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self> {
let mut msg = Self::default();
while !r.is_eof() {
match r.next_tag(bytes) {
Ok(8) => msg.pressed = r.read_bool(bytes)?,
Ok(t) => { r.read_unknown(bytes, t)?; }
Err(e) => return Err(e),
}
}
Ok(msg)
}
}
impl MessageWrite for CellInput {
fn get_size(&self) -> usize {
0
+ if self.pressed == false { 0 } else { 1 + sizeof_varint(*(&self.pressed) as u64) }
}
fn write_message<W: WriterBackend>(&self, w: &mut Writer<W>) -> Result<()> {
if self.pressed != false { w.write_with_tag(8, |w| w.write_bool(*&self.pressed))?; }
Ok(())
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Debug, Default, PartialEq, Clone)]
pub struct TableState {
pub users: Vec<User>,
pub cells: Vec<Cell>,
}
impl<'a> MessageRead<'a> for TableState {
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self> {
let mut msg = Self::default();
while !r.is_eof() {
match r.next_tag(bytes) {
Ok(10) => msg.users.push(r.read_message::<User>(bytes)?),
Ok(18) => msg.cells.push(r.read_message::<Cell>(bytes)?),
Ok(t) => { r.read_unknown(bytes, t)?; }
Err(e) => return Err(e),
}
}
Ok(msg)
}
}
impl MessageWrite for TableState {
fn get_size(&self) -> usize {
0
+ self.users.iter().map(|s| 1 + sizeof_len((s).get_size())).sum::<usize>()
+ self.cells.iter().map(|s| 1 + sizeof_len((s).get_size())).sum::<usize>()
}
fn write_message<W: WriterBackend>(&self, w: &mut Writer<W>) -> Result<()> {
for s in &self.users { w.write_with_tag(10, |w| w.write_message(s))?; }
for s in &self.cells { w.write_with_tag(18, |w| w.write_message(s))?; }
Ok(())
}
}