mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 11:58:41 +00:00
### Benchmark `yarn workspace @affine/server-native bench` ``` ┌─────────┬────────────┬─────────┬────────────────────┬──────────┬─────────┐ │ (index) │ Task Name │ ops/sec │ Average Time (ns) │ Margin │ Samples │ ├─────────┼────────────┼─────────┼────────────────────┼──────────┼─────────┤ │ 0 │ 'tiktoken' │ '5' │ 176932518.76000002 │ '±4.71%' │ 100 │ │ 1 │ 'native' │ '16' │ 61041597.51000003 │ '±0.60%' │ 100 │ └─────────┴────────────┴─────────┴────────────────────┴──────────┴─────────┘ ```
51 lines
1.1 KiB
Rust
51 lines
1.1 KiB
Rust
#![deny(clippy::all)]
|
|
|
|
pub mod file_type;
|
|
pub mod hashcash;
|
|
pub mod tiktoken;
|
|
|
|
use std::fmt::{Debug, Display};
|
|
|
|
use napi::{bindgen_prelude::*, Error, Result, Status};
|
|
use y_octo::Doc;
|
|
|
|
#[cfg(not(target_arch = "arm"))]
|
|
#[global_allocator]
|
|
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
#[macro_use]
|
|
extern crate napi_derive;
|
|
|
|
fn map_err_inner<T, E: Display + Debug>(v: std::result::Result<T, E>, status: Status) -> Result<T> {
|
|
match v {
|
|
Ok(val) => Ok(val),
|
|
Err(e) => {
|
|
dbg!(&e);
|
|
Err(Error::new(status, e.to_string()))
|
|
}
|
|
}
|
|
}
|
|
|
|
macro_rules! map_err {
|
|
($val: expr) => {
|
|
map_err_inner($val, Status::GenericFailure)
|
|
};
|
|
($val: expr, $stauts: ident) => {
|
|
map_err_inner($val, $stauts)
|
|
};
|
|
}
|
|
|
|
/// 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_err!(doc.apply_update_from_binary_v1(update.as_ref()))?;
|
|
}
|
|
|
|
let buf = map_err!(doc.encode_update_v1())?;
|
|
|
|
Ok(buf.into())
|
|
}
|