1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- use crate::errors::DocResult;
- use flowy_derive::ProtoBuf;
- use flowy_ot::core::Delta;
- #[derive(ProtoBuf, Default, Debug, Clone)]
- pub struct CreateDocParams {
- #[pb(index = 1)]
- pub id: String,
- #[pb(index = 2)]
- pub data: String,
- }
- impl CreateDocParams {
- pub fn new(id: &str, data: String) -> Self {
- Self {
- id: id.to_owned(),
- data,
- }
- }
- }
- #[derive(ProtoBuf, Default, Debug, Clone, Eq, PartialEq)]
- pub struct Doc {
- #[pb(index = 1)]
- pub id: String,
- #[pb(index = 2)]
- pub data: String,
- #[pb(index = 3)]
- pub rev_id: i64,
- #[pb(index = 4)]
- pub base_rev_id: i64,
- }
- impl Doc {
- pub fn delta(&self) -> DocResult<Delta> {
- let delta = Delta::from_bytes(&self.data)?;
- Ok(delta)
- }
- }
- #[derive(ProtoBuf, Default, Debug, Clone)]
- pub struct UpdateDocParams {
- #[pb(index = 1)]
- pub doc_id: String,
- #[pb(index = 2)]
- pub data: String,
- #[pb(index = 3)]
- pub rev_id: i64,
- }
- #[derive(ProtoBuf, Default, Debug, Clone)]
- pub struct DocDelta {
- #[pb(index = 1)]
- pub doc_id: String,
- #[pb(index = 2)]
- pub data: String, // Delta
- }
- #[derive(ProtoBuf, Default, Debug, Clone)]
- pub struct NewDocUser {
- #[pb(index = 1)]
- pub user_id: String,
- #[pb(index = 2)]
- pub rev_id: i64,
- #[pb(index = 3)]
- pub doc_id: String,
- }
- #[derive(ProtoBuf, Default, Debug, Clone)]
- pub struct QueryDocParams {
- #[pb(index = 1)]
- pub doc_id: String,
- }
- impl std::convert::From<String> for QueryDocParams {
- fn from(doc_id: String) -> Self { QueryDocParams { doc_id } }
- }
|