mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-05 03:25:10 +08:00
56 lines
1.4 KiB
Rust
56 lines
1.4 KiB
Rust
#![deny(clippy::all)]
|
|
|
|
mod utils;
|
|
|
|
pub mod doc;
|
|
pub mod doc_loader;
|
|
pub mod file_type;
|
|
pub mod hashcash;
|
|
pub mod html_sanitize;
|
|
pub mod tiktoken;
|
|
|
|
use affine_common::napi_utils::map_napi_err;
|
|
use napi::{Result, Status, bindgen_prelude::*};
|
|
use y_octo::Doc;
|
|
|
|
#[cfg(not(target_arch = "arm"))]
|
|
#[global_allocator]
|
|
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
#[macro_use]
|
|
extern crate napi_derive;
|
|
|
|
/// Merge updates in form like `Y.applyUpdate(doc, update)` way and return the
|
|
/// result binary.
|
|
#[napi(catch_unwind)]
|
|
pub fn merge_updates_in_apply_way(updates: Vec<Buffer>) -> Result<Buffer> {
|
|
let mut doc = Doc::default();
|
|
for update in updates {
|
|
map_napi_err(doc.apply_update_from_binary_v1(update.as_ref()), Status::GenericFailure)?;
|
|
}
|
|
|
|
let buf = map_napi_err(doc.encode_update_v1(), Status::GenericFailure)?;
|
|
|
|
Ok(buf.into())
|
|
}
|
|
|
|
#[napi]
|
|
pub const AFFINE_PRO_PUBLIC_KEY: Option<&'static str> = std::option_env!("AFFINE_PRO_PUBLIC_KEY");
|
|
|
|
#[napi]
|
|
pub const AFFINE_PRO_LICENSE_AES_KEY: Option<&'static str> = std::option_env!("AFFINE_PRO_LICENSE_AES_KEY");
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn merge_updates_reports_generic_failure() {
|
|
let err = match merge_updates_in_apply_way(vec![Buffer::from(vec![0])]) {
|
|
Ok(_) => panic!("expected error"),
|
|
Err(err) => err,
|
|
};
|
|
assert_eq!(err.status, Status::GenericFailure);
|
|
}
|
|
}
|