Skip to main content

brep_kernel/abi/
handles.rs

1use super::*;
2
3#[wasm_bindgen]
4pub struct WasmNurbsCurve {
5    pub(crate) curve: NurbsCurve,
6}
7
8#[wasm_bindgen]
9pub struct WasmNurbsSurface {
10    pub(crate) surface: NurbsSurface,
11}
12
13/// A solid encoded as one flat `Float64Array` plus a tiny JSON side channel
14/// for face/edge names — the zero-JSON result path for topology-heavy ops.
15/// Getters consume the buffers (each may be read once) to avoid double copies.
16#[wasm_bindgen]
17pub struct WasmSolidBuffer {
18    pub(crate) data: Vec<f64>,
19    pub(crate) names_json: String,
20    pub(crate) metadata_json: String,
21}
22
23#[wasm_bindgen]
24impl WasmSolidBuffer {
25    pub fn take_data(&mut self) -> Vec<f64> {
26        std::mem::take(&mut self.data)
27    }
28
29    pub fn names_json(&self) -> String {
30        self.names_json.clone()
31    }
32
33    /// Operation-specific extras (e.g. offset-shell face images); "{}" when
34    /// the operation has none.
35    pub fn metadata_json(&self) -> String {
36        self.metadata_json.clone()
37    }
38}
39
40pub(crate) fn solid_buffer(solid: &BrepSolid, metadata_json: String) -> Result<WasmSolidBuffer, JsValue> {
41    let (data, names) = encode_solid(solid).map_err(javascript_error)?;
42    Ok(WasmSolidBuffer {
43        data,
44        names_json: serde_json::to_string(&names)
45            .map_err(|error| javascript_error(error.to_string()))?,
46        metadata_json,
47    })
48}
49
50/// Tessellation output as typed arrays; getters consume the buffers.
51#[wasm_bindgen]
52pub struct WasmMeshBuffers {
53    pub(crate) positions: Vec<f64>,
54    pub(crate) normals: Vec<f64>,
55    pub(crate) indices: Vec<u32>,
56    pub(crate) face_ids: Vec<u32>,
57}
58
59#[wasm_bindgen]
60impl WasmMeshBuffers {
61    pub fn take_positions(&mut self) -> Vec<f64> {
62        std::mem::take(&mut self.positions)
63    }
64
65    pub fn take_normals(&mut self) -> Vec<f64> {
66        std::mem::take(&mut self.normals)
67    }
68
69    pub fn take_indices(&mut self) -> Vec<u32> {
70        std::mem::take(&mut self.indices)
71    }
72
73    pub fn take_face_ids(&mut self) -> Vec<u32> {
74        std::mem::take(&mut self.face_ids)
75    }
76}
77
78// ---------------------------------------------------------------------------
79// Persistent solid handle registry (Rust-pipeline migration, Stage 1).
80//
81// Keeps resident BrepSolids in the (single-threaded) main-thread wasm instance,
82// keyed by an opaque u32 handle, so ops consume/produce handles instead of
83// re-serializing the full topology across the wasm boundary on every call. The host pulls only
84// tessellation / mass-props / names across the boundary, and only when it needs
85// them — this is the foundation that eliminates the per-op round-trip (see
86//   the Rust pipeline-migration design, Stage 1).
87//
88// Handle lifetime is EXPLICIT: register_* mints a handle, free_solid drops it.
89// The wasm32 heap has a 4 GB ceiling and heavy solids are MB-scale resident, so
90// callers MUST free handles they no longer need. register_* keeps full arena +
91// validate (external / first-crossing ingest); kernel-produced results from the
92// *_handle ops are trusted (no double-validate — the kernel just built them).
93// ---------------------------------------------------------------------------
94thread_local! {
95    static SOLID_REGISTRY: std::cell::RefCell<SolidRegistry> =
96        std::cell::RefCell::new(SolidRegistry::new());
97}
98
99pub(crate) struct SolidRegistry {
100    pub(crate) next: u32,
101    pub(crate) solids: std::collections::HashMap<u32, BrepSolid>,
102}
103
104impl SolidRegistry {
105    fn new() -> Self {
106        Self {
107            next: 1,
108            solids: std::collections::HashMap::new(),
109        }
110    }
111    fn insert(&mut self, solid: BrepSolid) -> u32 {
112        let handle = self.next;
113        self.next = self.next.wrapping_add(1).max(1);
114        self.solids.insert(handle, solid);
115        handle
116    }
117}
118
119pub(crate) fn register_solid_value(solid: BrepSolid) -> u32 {
120    SOLID_REGISTRY.with(|registry| registry.borrow_mut().insert(solid))
121}
122
123/// Run `f` against a resident solid by handle (immutable borrow).
124pub(crate) fn with_registered_solid<T>(
125    handle: u32,
126    f: impl FnOnce(&BrepSolid) -> Result<T, JsValue>,
127) -> Result<T, JsValue> {
128    SOLID_REGISTRY.with(|registry| {
129        let registry = registry.borrow();
130        let solid = registry
131            .solids
132            .get(&handle)
133            .ok_or_else(|| javascript_error(format!("unknown solid handle {handle}")))?;
134        f(solid)
135    })
136}
137
138/// `String`-error sibling of [`with_registered_solid`] for the Rust feature
139/// pipeline, which stays JsValue-free internally (JsValue only at the wasm
140/// boundary; the host test target cannot run JsValue error paths). Short borrow:
141/// never hold the registry across a feature execution.
142pub(crate) fn with_registered_solid_str<T>(
143    handle: u32,
144    f: impl FnOnce(&BrepSolid) -> Result<T, String>,
145) -> Result<T, String> {
146    SOLID_REGISTRY.with(|registry| {
147        let registry = registry.borrow();
148        let solid = registry
149            .solids
150            .get(&handle)
151            .ok_or_else(|| format!("unknown solid handle {handle}"))?;
152        f(solid)
153    })
154}
155
156/// Run `f` against two resident solids in a single short borrow (the boolean /
157/// two-operand op shape). The error type follows `f` (a typed `KernelRefusal`
158/// from the boolean, or the `String` a stringly caller still uses) so the
159/// feature pipeline stays JsValue-free; an unknown handle is an `InvalidInput`
160/// refusal converted into that type. Never held across a feature execution (the RefCell would fight
161/// a re-entrant borrow otherwise).
162pub(crate) fn with_two_registered_solids<T, E: From<crate::KernelRefusal>>(
163    a: u32,
164    b: u32,
165    f: impl FnOnce(&BrepSolid, &BrepSolid) -> Result<T, E>,
166) -> Result<T, E> {
167    SOLID_REGISTRY.with(|registry| {
168        let registry = registry.borrow();
169        let handle = |id: u32| -> Result<&BrepSolid, E> {
170            registry.solids.get(&id).ok_or_else(|| {
171                crate::KernelRefusal::input(
172                    crate::KernelStage::Collect,
173                    "solid_handle",
174                    format!("unknown solid handle {id}"),
175                )
176                .into()
177            })
178        };
179        let sa = handle(a)?;
180        let sb = handle(b)?;
181        f(sa, sb)
182    })
183}
184
185/// Replace a resident solid's CONTENT under its EXISTING handle. The component
186/// re-pose lane (`feature_pipeline::component::update_component_transform`)
187/// mutates geometry in place so the handle — which the SceneMap, the history
188/// cache, and the display layer all hold — stays valid; a rigid re-pose keeps
189/// every topology id and name, so nothing keyed by them moves. Errors on an
190/// unknown handle (never silently mints one).
191pub(crate) fn replace_registered_solid(handle: u32, solid: BrepSolid) -> Result<(), String> {
192    SOLID_REGISTRY.with(|registry| {
193        let mut registry = registry.borrow_mut();
194        match registry.solids.get_mut(&handle) {
195            Some(slot) => {
196                *slot = solid;
197                Ok(())
198            }
199            None => Err(format!("unknown solid handle {handle}")),
200        }
201    })
202}
203
204/// Drop a resident solid by handle (feature-pipeline-internal, `pub(crate)`
205/// sibling of the wasm `free_solid`). No-op if the handle is unknown. Callers
206/// MUST free handles they no longer need — the wasm32 heap has a 4 GB ceiling.
207pub(crate) fn free_registered_solid(handle: u32) {
208    SOLID_REGISTRY.with(|registry| {
209        registry.borrow_mut().solids.remove(&handle);
210    });
211}
212
213/// Ingest a solid from the flat f64 codec into the resident registry (arena +
214/// validate kept — external / first-crossing ingest). Returns an opaque handle.
215#[wasm_bindgen]
216pub fn register_solid_buffer(data: &[f64], names_json: &str) -> Result<u32, JsValue> {
217    let solid = decode_solid_buffer(data, names_json)?;
218    let solid = validate_imported_solid(solid, "register_solid_buffer")?;
219    Ok(register_solid_value(solid))
220}
221
222/// Ingest a solid from JSON into the resident registry (arena + validate kept).
223#[wasm_bindgen]
224pub fn register_solid_json(solid_json: &str) -> Result<u32, JsValue> {
225    let solid: BrepSolid =
226        serde_json::from_str(solid_json).map_err(|error| javascript_error(error.to_string()))?;
227    let solid = validate_imported_solid(solid, "register_solid_json")?;
228    Ok(register_solid_value(solid))
229}
230
231/// Drop a resident solid. No-op if the handle is unknown.
232#[wasm_bindgen]
233pub fn free_solid(handle: u32) {
234    SOLID_REGISTRY.with(|registry| {
235        registry.borrow_mut().solids.remove(&handle);
236    });
237}
238
239/// A clone of a resident solid, for native tooling that needs the topology
240/// itself (the case-replay diagnostics, probes): the feature pipeline's results
241/// only ever hand out handles. Native only — topology never crosses the wasm
242/// boundary. Short borrow; the clone is the caller's.
243pub fn registered_solid_clone(handle: u32) -> Result<BrepSolid, String> {
244    with_registered_solid_str(handle, |solid| Ok(solid.clone()))
245}
246
247/// Number of resident solids (diagnostics / handle-leak detection).
248#[wasm_bindgen]
249pub fn registered_solid_count() -> usize {
250    SOLID_REGISTRY.with(|registry| registry.borrow().solids.len())
251}
252
253/// Boolean of two resident solids -> a NEW resident handle. The result never
254/// crosses the boundary as topology; only its handle is returned. Kernel-produced
255/// result is trusted (no double-validate).
256#[wasm_bindgen]
257pub fn boolean_handle(
258    a: u32,
259    b: u32,
260    operation: &str,
261    tolerance: f64,
262    merge_coplanar_faces: bool,
263) -> Result<u32, JsValue> {
264    let operation = match operation {
265        "union" => BooleanOperation::Union,
266        "intersect" => BooleanOperation::Intersect,
267        "subtract" => BooleanOperation::Subtract,
268        _ => return Err(javascript_error("unknown boolean operation".into())),
269    };
270    let result = SOLID_REGISTRY.with(|registry| {
271        let registry = registry.borrow();
272        let sa = registry
273            .solids
274            .get(&a)
275            .ok_or_else(|| javascript_error(format!("unknown solid handle {a}")))?;
276        let sb = registry
277            .solids
278            .get(&b)
279            .ok_or_else(|| javascript_error(format!("unknown solid handle {b}")))?;
280        boolean_operation(
281            sa,
282            sb,
283            operation,
284            &BooleanOptions {
285                tolerance,
286                merge_coplanar_faces,
287                ..BooleanOptions::default()
288            },
289        )
290        .map_err(crate::abi::geometry::javascript_refusal)
291    })?;
292    Ok(register_solid_value(result))
293}
294
295/// Tessellate a resident solid to watertight mesh buffers (the buffers cross the
296/// boundary; the solid does not).
297#[wasm_bindgen]
298pub fn tessellate_handle(handle: u32, chord_tolerance: f64) -> Result<WasmMeshBuffers, JsValue> {
299    with_registered_solid(handle, |solid| {
300        let mesh = tessellate_brep_watertight(solid, chord_tolerance).map_err(javascript_error)?;
301        Ok(WasmMeshBuffers {
302            positions: mesh.positions,
303            normals: mesh.normals,
304            indices: mesh.indices,
305            face_ids: mesh.face_ids,
306        })
307    })
308}
309
310/// Analytic mass properties of a resident solid (a handful of scalars).
311#[wasm_bindgen]
312pub fn mass_properties_handle(handle: u32) -> Result<String, JsValue> {
313    with_registered_solid(handle, |solid| {
314        let properties = solid_mass_properties(solid).map_err(javascript_error)?;
315        serde_json::to_string(&properties).map_err(|error| javascript_error(error.to_string()))
316    })
317}
318
319/// Rigid/affine transform of a resident solid -> a NEW resident handle (Stage 1b;
320/// unblocks Transform/Pattern/bakeTransform from the legacy serialize lane). The
321/// result never crosses the boundary as topology. Kernel-produced, so trusted.
322#[wasm_bindgen]
323pub fn transform_handle(
324    handle: u32,
325    matrix: &[f64],
326    reverse_orientation: bool,
327) -> Result<u32, JsValue> {
328    let matrix: [f64; 16] = matrix
329        .try_into()
330        .map_err(|_| javascript_error("transform matrix must contain 16 values".into()))?;
331    let transform = AffineTransform::new(matrix).map_err(javascript_error)?;
332    let result = with_registered_solid(handle, |solid| {
333        transform_brep(solid, transform, reverse_orientation).map_err(javascript_error)
334    })?;
335    Ok(register_solid_value(result))
336}
337
338/// The resident solid's face id -> name map (Stage 1b; lets the host rebuild its
339/// selection/name index from a handle without materializing the full graph).
340#[wasm_bindgen]
341pub fn face_names_handle(handle: u32) -> Result<String, JsValue> {
342    with_registered_solid(handle, |solid| {
343        let mut map: Vec<(u64, Option<String>)> = Vec::new();
344        for shell in &solid.shells {
345            for face in &shell.faces {
346                map.push((face.id, face.name.clone()));
347            }
348        }
349        serde_json::to_string(&map).map_err(|error| javascript_error(error.to_string()))
350    })
351}
352
353// ===========================================================================
354// Native in-process display accessors (brep-render). Plain pub fns — NOT
355// #[wasm_bindgen] — so they add nothing to the wasm export surface; the native
356// renderer links the kernel as an rlib and reads display data with no JSON or
357// typed-array boundary.
358// ===========================================================================
359
360/// Native sibling of [`boolean_handle`] (String errors — constructing a
361/// `JsValue` error panics off-wasm): boolean of two RESIDENT solids → a NEW
362/// resident handle, operands untouched. The assembly interference check's
363/// non-destructive INTERSECT lane; callers free the result handle when done.
364pub fn boolean_handle_native(
365    a: u32,
366    b: u32,
367    operation: BooleanOperation,
368    options: &BooleanOptions,
369) -> Result<u32, String> {
370    let result =
371        with_two_registered_solids(a, b, |sa, sb| boolean_operation(sa, sb, operation, options))?;
372    Ok(register_solid_value(result))
373}