cad-editor/crates/ocs_web_worker/src/lib.rs
Hakan Seven 6cafea92bc fix(web): preserve DWG render state
Carry rendering fields omitted by document serialization and normalize block origins before building web caches.
2026-08-11 17:16:46 +03:00

239 lines
8.7 KiB
Rust

use std::io::Cursor;
use std::sync::Arc;
use acadrust::io::dwg::DwgReader;
use acadrust::{DwgReadOptions, DxfReader, DxfReaderConfiguration};
use js_sys::{Function, Uint8Array};
use sha2::{Digest, Sha256};
use wasm_bindgen::prelude::*;
const HASH_MARKER: &str = "\nreport-source-sha256:";
const PROTOCOL_VERSION: u16 = 4;
#[derive(serde::Serialize)]
struct EntityRuntimeFields {
handle: u64,
linetype_handle: Option<u64>,
color_book_handle: Option<u64>,
face_visual_style_handle: Option<u64>,
edge_visual_style_handle: Option<u64>,
material_flags: u8,
material_handle: Option<u64>,
shadow_flags: u8,
plotstyle_flags: u8,
plotstyle_handle: Option<u64>,
entity_mode: Option<u8>,
has_ds_data: bool,
}
/// Parse DWG/DXF on a dedicated browser worker and return a compact serialized
/// document. The main wasm instance only deserializes and installs it, so the
/// expensive bit/handle/object decode never occupies the browser UI thread.
#[wasm_bindgen]
pub fn parse_document(
name: String,
bytes: Uint8Array,
recovery_mode: bool,
initial_error: String,
report_stage: &Function,
) -> Result<Uint8Array, JsValue> {
console_error_panic_hook::set_once();
report_stage.call1(&JsValue::NULL, &JsValue::from_str("copy input"))?;
let bytes: Arc<[u8]> = Arc::from(bytes.to_vec());
report_stage.call1(&JsValue::NULL, &JsValue::from_str("parse document"))?;
let ext = name.rsplit('.').next().unwrap_or_default().to_lowercase();
if !matches!(ext.as_str(), "dwg" | "dxf") {
return encode_result(
Err((format!("Unsupported file format: .{ext}"), None)),
None,
false,
&bytes,
);
}
let outcome_result = match ext.as_str() {
"dwg" => {
if recovery_mode {
DwgReader::from_stream_with_options(
Cursor::new(Arc::clone(&bytes)),
DwgReadOptions::failsafe(),
)
.read_with_stats()
} else {
DwgReader::from_stream(Cursor::new(Arc::clone(&bytes)))
.read_with_stats()
}
}
"dxf" => {
if recovery_mode {
DxfReader::from_reader(Cursor::new(Arc::clone(&bytes)))
.and_then(|reader| {
reader
.with_configuration(DxfReaderConfiguration {
failsafe: true,
..DxfReaderConfiguration::default()
})
.read_with_stats()
})
} else {
DxfReader::from_reader(Cursor::new(Arc::clone(&bytes)))
.and_then(|reader| reader.read_with_stats())
}
}
_ => unreachable!(),
};
let mut outcome = match outcome_result {
Ok(outcome) => outcome,
Err(error) => {
let recoverable_parse_error = !recovery_mode && recoverable_reader_error(&error);
let source_sha256 = recovery_mode.then(|| sha256_document_bytes(&bytes));
return encode_result(
Err((error.to_string(), None)),
source_sha256,
recoverable_parse_error,
&bytes,
);
}
};
if !outcome.stats.has_usable_drawing_data() {
let error = if recovery_mode {
format!(
"initial read failed: {initial_error}; recovery found no usable drawing data"
)
} else {
"initial read returned no source drawing records".to_string()
};
let source_sha256 = recovery_mode.then(|| sha256_document_bytes(&bytes));
return encode_result(
Err((error, Some(outcome.stats))),
source_sha256,
!recovery_mode,
&bytes,
);
}
if !recovery_mode && report_fingerprint_needed(&outcome.stats) {
let message = outcome
.stats
.diagnostics
.first()
.map(|diagnostic| diagnostic.message.clone())
.unwrap_or_else(|| "normal read detected recoverable drawing errors".to_string());
return encode_result(Err((message, Some(outcome.stats))), None, true, &bytes);
}
if recovery_mode {
outcome.document.notifications.notify(
acadrust::notification::NotificationType::Error,
format!("Initial read failed; recovery mode continued: {initial_error}"),
);
acadrust::push_read_diagnostic(
&mut outcome.stats.diagnostics,
acadrust::ReadDiagnostic::new(
"strict-read-failed",
acadrust::ReadStage::RecordStream,
initial_error,
),
);
outcome.stats.recovered_errors = outcome.stats.recovered_errors.saturating_add(1);
}
let source_sha256 = report_fingerprint_needed(&outcome.stats)
.then(|| sha256_document_bytes(&bytes));
report_stage.call1(&JsValue::NULL, &JsValue::from_str("serialize document"))?;
let encoded = encode_result(Ok(outcome), source_sha256, false, &bytes)?;
report_stage.call1(&JsValue::NULL, &JsValue::from_str("copy output"))?;
Ok(encoded)
}
#[wasm_bindgen]
pub fn sha256_document(bytes: Uint8Array) -> String {
sha256_document_bytes(&bytes.to_vec())
}
fn report_fingerprint_needed(stats: &acadrust::ReadStats) -> bool {
stats.recovered() || stats.skipped_source_records > 0 || !stats.stream_completed
}
fn recoverable_reader_error(error: &acadrust::DxfError) -> bool {
matches!(
error,
acadrust::DxfError::Compression(_)
| acadrust::DxfError::Parse(_)
| acadrust::DxfError::InvalidDxfCode(_)
| acadrust::DxfError::InvalidHandle(_)
| acadrust::DxfError::ObjectNotFound(_)
| acadrust::DxfError::InvalidEntityType(_)
| acadrust::DxfError::ChecksumMismatch { .. }
| acadrust::DxfError::InvalidHeader(_)
| acadrust::DxfError::InvalidFormat(_)
| acadrust::DxfError::InvalidSentinel(_)
| acadrust::DxfError::Decompression(_)
| acadrust::DxfError::Encoding(_)
)
}
fn encode_result(
result: Result<acadrust::ReadOutcome, (String, Option<acadrust::ReadStats>)>,
source_sha256: Option<String>,
recoverable_parse_error: bool,
bytes: &[u8],
) -> Result<Uint8Array, JsValue> {
let runtime_fields = result
.as_ref()
.ok()
.map(|outcome| {
outcome
.document
.entities()
.map(|entity| {
let common = entity.common();
EntityRuntimeFields {
handle: common.handle.value(),
linetype_handle: common.linetype_handle.map(|handle| handle.value()),
color_book_handle: common.color_book_handle.map(|handle| handle.value()),
face_visual_style_handle: common
.face_visual_style_handle
.map(|handle| handle.value()),
edge_visual_style_handle: common
.edge_visual_style_handle
.map(|handle| handle.value()),
material_flags: common.material_flags,
material_handle: common.material_handle.map(|handle| handle.value()),
shadow_flags: common.shadow_flags,
plotstyle_flags: common.plotstyle_flags,
plotstyle_handle: common.plotstyle_handle.map(|handle| handle.value()),
entity_mode: common.entity_mode,
has_ds_data: common.has_ds_data,
}
})
.collect::<Vec<_>>()
})
.unwrap_or_default();
let encoded = bincode::serialize(&(
PROTOCOL_VERSION,
result,
source_sha256,
recoverable_parse_error,
runtime_fields,
))
.map_err(|error| worker_error(error.to_string(), bytes, true))?;
Ok(Uint8Array::from(encoded.as_slice()))
}
fn worker_error(error: String, bytes: &[u8], include_fingerprint: bool) -> JsValue {
if include_fingerprint {
JsValue::from_str(&format!(
"{error}{HASH_MARKER}{}",
sha256_document_bytes(bytes)
))
} else {
JsValue::from_str(&error)
}
}
fn sha256_document_bytes(bytes: &[u8]) -> String {
let digest = Sha256::digest(bytes);
let mut output = String::with_capacity(digest.len() * 2);
for byte in digest {
use std::fmt::Write;
let _ = write!(output, "{byte:02x}");
}
output
}