draco-io 0.2.0

Rust IO helpers for Draco geometry compression formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
//! Strict `KHR_draco_mesh_compression` metadata parsing.

use std::collections::BTreeMap;

use serde_json::Value;

use crate::gltf_geometry::{GltfError, Result};

/// Official extension name.
pub const KHR_DRACO_MESH_COMPRESSION: &str = "KHR_draco_mesh_compression";
const MODE_TRIANGLES: u64 = 4;
const MODE_TRIANGLE_STRIP: u64 = 5;

/// Strictly parsed `KHR_draco_mesh_compression` metadata.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct KhrDracoMeshCompression {
    /// Buffer view containing the Draco bitstream.
    pub buffer_view: usize,
    /// glTF semantic to Draco attribute unique ID.
    pub attributes: BTreeMap<String, u32>,
    /// `TRIANGLES` (4) or `TRIANGLE_STRIP` (5).
    pub mode: u32,
    /// Whether the extension is listed in `extensionsRequired`.
    pub required: bool,
}

/// Schema-only extension payload, usable when the surrounding document is owned
/// by another glTF front end.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct KhrDracoExtension {
    pub buffer_view: usize,
    pub attributes: BTreeMap<String, u32>,
}

/// Borrowed KHR declaration consumed by the shared semantic validator.
pub(crate) struct KhrDracoExtensionContract<'a> {
    pub buffer_view: usize,
    pub attributes: &'a BTreeMap<String, u32>,
}

pub(crate) struct KhrDracoPrimitiveContract<'a, A> {
    pub extension: KhrDracoExtensionContract<'a>,
    pub primitive_attributes: A,
    pub indices: Option<usize>,
    pub mode: u32,
    pub extension_used: bool,
    pub extension_required: bool,
    pub buffer_view_count: usize,
}

/// Validate KHR semantics independently of the JSON front end.
///
/// Both the raw-`Value` adapter below and the typed serde reader call this
/// function, so schema parsing can differ without duplicating extension rules.
pub(crate) fn validate_khr_draco_contract<'a, A, F>(
    contract: KhrDracoPrimitiveContract<'_, A>,
    mut accessor_has_fallback: F,
) -> Result<()>
where
    A: Iterator<Item = (&'a str, usize)> + Clone,
    F: FnMut(usize) -> Option<bool>,
{
    let KhrDracoPrimitiveContract {
        extension,
        primitive_attributes,
        indices,
        mode,
        extension_used,
        extension_required,
        buffer_view_count,
    } = contract;
    if !extension_used {
        return Err(GltfError::InvalidGltf(format!(
            "primitive uses {KHR_DRACO_MESH_COMPRESSION} but extensionsUsed does not list it"
        )));
    }
    if extension.buffer_view >= buffer_view_count {
        return Err(GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION}.bufferView {} is out of range",
            extension.buffer_view
        )));
    }
    if extension.attributes.is_empty() {
        return Err(GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION}.attributes must be a non-empty object"
        )));
    }
    if mode != MODE_TRIANGLES as u32 && mode != MODE_TRIANGLE_STRIP as u32 {
        return Err(GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION} permits only TRIANGLES=4 or TRIANGLE_STRIP=5, got {mode}"
        )));
    }

    let mut has_primitive_attribute = false;
    for (semantic, accessor) in primitive_attributes.clone() {
        has_primitive_attribute = true;
        if !extension_required || !extension.attributes.contains_key(semantic) {
            match accessor_has_fallback(accessor) {
                Some(true) => {}
                Some(false) => {
                    return Err(GltfError::InvalidGltf(format!(
                        "{semantic} accessor {accessor} has no fallback data"
                    )));
                }
                None => {
                    return Err(GltfError::InvalidGltf(format!(
                        "accessor {accessor} is out of range"
                    )));
                }
            }
        }
    }
    if !has_primitive_attribute {
        return Err(GltfError::InvalidGltf(
            "primitive.attributes must be a non-empty object".into(),
        ));
    }
    for semantic in extension.attributes.keys() {
        if !primitive_attributes
            .clone()
            .any(|(primitive_semantic, _)| primitive_semantic == semantic)
        {
            return Err(GltfError::InvalidGltf(format!(
                "{KHR_DRACO_MESH_COMPRESSION} semantic {semantic} is not present in primitive.attributes"
            )));
        }
    }
    if let Some(accessor) = indices {
        if !extension_required {
            match accessor_has_fallback(accessor) {
                Some(true) => {}
                Some(false) => {
                    return Err(GltfError::InvalidGltf(format!(
                        "indices accessor {accessor} has no fallback data"
                    )));
                }
                None => {
                    return Err(GltfError::InvalidGltf(format!(
                        "accessor {accessor} is out of range"
                    )));
                }
            }
        }
    }
    Ok(())
}

/// Parse the extension object itself, including `additionalProperties: false`.
pub fn parse_khr_draco_extension_value(extension: &Value) -> Result<KhrDracoExtension> {
    let extension = extension.as_object().ok_or_else(|| {
        GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION} value is not an object"
        ))
    })?;
    for key in extension.keys() {
        if key != "bufferView" && key != "attributes" {
            return Err(GltfError::InvalidGltf(format!(
                "unexpected {KHR_DRACO_MESH_COMPRESSION} property {key}"
            )));
        }
    }
    let buffer_view = extension
        .get("bufferView")
        .and_then(Value::as_u64)
        .and_then(|value| u32::try_from(value).ok())
        .map(|value| value as usize)
        .ok_or_else(|| {
            GltfError::InvalidGltf(format!(
                "{KHR_DRACO_MESH_COMPRESSION}.bufferView is not a valid u32 index"
            ))
        })?;
    let extension_attributes = extension
        .get("attributes")
        .and_then(Value::as_object)
        .filter(|attributes| !attributes.is_empty())
        .ok_or_else(|| {
            GltfError::InvalidGltf(format!(
                "{KHR_DRACO_MESH_COMPRESSION}.attributes must be a non-empty object"
            ))
        })?;
    let mut attributes = BTreeMap::new();
    for (semantic, value) in extension_attributes {
        let value = value.as_u64().ok_or_else(|| {
            GltfError::InvalidGltf(format!("Draco unique ID for {semantic} is not an integer"))
        })?;
        let unique_id = u32::try_from(value).map_err(|_| {
            GltfError::InvalidGltf(format!("Draco unique ID for {semantic} exceeds u32"))
        })?;
        attributes.insert(semantic.clone(), unique_id);
    }
    Ok(KhrDracoExtension {
        buffer_view,
        attributes,
    })
}

/// Validate every Draco primitive in a JSON glTF document.
pub fn validate_khr_draco_document(document: &Value) -> Result<()> {
    let used = extension_list(document, "extensionsUsed")?;
    let required = extension_list(document, "extensionsRequired")?;
    if required.contains(&KHR_DRACO_MESH_COMPRESSION) && !used.contains(&KHR_DRACO_MESH_COMPRESSION)
    {
        return Err(GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION} is required but is not listed in extensionsUsed"
        )));
    }
    let Some(meshes) = document.get("meshes") else {
        return Ok(());
    };
    let meshes = meshes
        .as_array()
        .ok_or_else(|| GltfError::InvalidGltf("meshes is not an array".into()))?;
    for mesh in meshes {
        let primitives = mesh
            .get("primitives")
            .and_then(Value::as_array)
            .ok_or_else(|| GltfError::InvalidGltf("mesh.primitives is not an array".into()))?;
        for primitive in primitives {
            parse_khr_draco_mesh_compression(document, primitive)?;
        }
    }
    Ok(())
}

/// Parse and validate one primitive's extension against its document.
pub fn parse_khr_draco_mesh_compression(
    document: &Value,
    primitive: &Value,
) -> Result<Option<KhrDracoMeshCompression>> {
    let Some(extensions_value) = primitive.get("extensions") else {
        return Ok(None);
    };
    let extensions = extensions_value
        .as_object()
        .ok_or_else(|| GltfError::InvalidGltf("primitive.extensions is not an object".into()))?;
    let Some(extension) = extensions.get(KHR_DRACO_MESH_COMPRESSION) else {
        return Ok(None);
    };

    let used = extension_list(document, "extensionsUsed")?;
    let required = extension_list(document, "extensionsRequired")?;
    if required.contains(&KHR_DRACO_MESH_COMPRESSION) && !used.contains(&KHR_DRACO_MESH_COMPRESSION)
    {
        return Err(GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION} is required but is not listed in extensionsUsed"
        )));
    }
    if !used.contains(&KHR_DRACO_MESH_COMPRESSION) {
        return Err(GltfError::InvalidGltf(format!(
            "primitive uses {KHR_DRACO_MESH_COMPRESSION} but extensionsUsed does not list it"
        )));
    }
    let required = required.contains(&KHR_DRACO_MESH_COMPRESSION);
    let parsed_extension = parse_khr_draco_extension_value(extension)?;
    let buffer_view = parsed_extension.buffer_view;
    let buffer_views = document
        .get("bufferViews")
        .and_then(Value::as_array)
        .ok_or_else(|| GltfError::InvalidGltf("missing bufferViews array".into()))?;
    if buffer_view >= buffer_views.len() {
        return Err(GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION}.bufferView {buffer_view} is out of range"
        )));
    }
    let primitive_attributes = primitive
        .get("attributes")
        .and_then(Value::as_object)
        .filter(|attributes| !attributes.is_empty())
        .ok_or_else(|| {
            GltfError::InvalidGltf("primitive.attributes must be a non-empty object".into())
        })?;

    let attributes = parsed_extension.attributes;
    for semantic in attributes.keys() {
        if !primitive_attributes.contains_key(semantic) {
            return Err(GltfError::InvalidGltf(format!(
                "{KHR_DRACO_MESH_COMPRESSION} semantic {semantic} is not present in primitive.attributes"
            )));
        }
    }

    let mode_u64 = primitive
        .get("mode")
        .map(|mode| {
            mode.as_u64()
                .ok_or_else(|| GltfError::InvalidGltf("primitive.mode is not an integer".into()))
        })
        .transpose()?
        .unwrap_or(MODE_TRIANGLES);
    if mode_u64 != MODE_TRIANGLES && mode_u64 != MODE_TRIANGLE_STRIP {
        return Err(GltfError::InvalidGltf(format!(
            "{KHR_DRACO_MESH_COMPRESSION} permits only TRIANGLES=4 or TRIANGLE_STRIP=5, got {mode_u64}"
        )));
    }
    let mode = u32::try_from(mode_u64)
        .map_err(|_| GltfError::InvalidGltf("primitive.mode exceeds u32".into()))?;

    let accessors = document
        .get("accessors")
        .and_then(Value::as_array)
        .ok_or_else(|| GltfError::InvalidGltf("missing accessors array".into()))?;
    for (semantic, accessor_value) in primitive_attributes {
        let accessor = json_index(accessor_value, "attribute accessor")?;
        let has_compressed_value = attributes.contains_key(semantic);
        if !required || !has_compressed_value {
            require_accessor_fallback(accessors, accessor, semantic)?;
        }
    }
    let indices = primitive
        .get("indices")
        .map(|indices| json_index(indices, "indices accessor"))
        .transpose()?;
    if let Some(accessor) = indices {
        if !required {
            require_accessor_fallback(accessors, accessor, "indices")?;
        }
    }

    let mut contract_attributes = Vec::new();
    contract_attributes
        .try_reserve_exact(primitive_attributes.len())
        .map_err(|_| {
            GltfError::ResourceLimitExceeded("KHR primitive attribute allocation failed".into())
        })?;
    for (semantic, accessor) in primitive_attributes {
        contract_attributes.push((
            semantic.as_str(),
            json_index(accessor, "attribute accessor")?,
        ));
    }
    validate_khr_draco_contract(
        KhrDracoPrimitiveContract {
            extension: KhrDracoExtensionContract {
                buffer_view,
                attributes: &attributes,
            },
            primitive_attributes: contract_attributes.iter().copied(),
            indices,
            mode,
            extension_used: true,
            extension_required: required,
            buffer_view_count: buffer_views.len(),
        },
        |accessor| {
            accessors
                .get(accessor)
                .and_then(Value::as_object)
                .map(|accessor| {
                    accessor.contains_key("bufferView") || accessor.contains_key("sparse")
                })
        },
    )?;

    Ok(Some(KhrDracoMeshCompression {
        buffer_view,
        attributes,
        mode,
        required,
    }))
}

fn extension_list<'a>(document: &'a Value, name: &str) -> Result<Vec<&'a str>> {
    let Some(value) = document.get(name) else {
        return Ok(Vec::new());
    };
    let values = value
        .as_array()
        .ok_or_else(|| GltfError::InvalidGltf(format!("{name} is not an array")))?;
    let mut extensions = Vec::new();
    extensions
        .try_reserve_exact(values.len())
        .map_err(|_| GltfError::ResourceLimitExceeded(format!("{name} allocation failed")))?;
    for value in values {
        extensions.push(
            value
                .as_str()
                .ok_or_else(|| GltfError::InvalidGltf(format!("{name} contains a non-string")))?,
        );
    }
    Ok(extensions)
}

fn json_index(value: &Value, label: &str) -> Result<usize> {
    value
        .as_u64()
        .and_then(|value| usize::try_from(value).ok())
        .ok_or_else(|| GltfError::InvalidGltf(format!("{label} is not a valid index")))
}

fn require_accessor_fallback(accessors: &[Value], index: usize, label: &str) -> Result<()> {
    let accessor = accessors
        .get(index)
        .and_then(Value::as_object)
        .ok_or_else(|| GltfError::InvalidGltf(format!("accessor {index} is out of range")))?;
    if !accessor.contains_key("bufferView") && !accessor.contains_key("sparse") {
        return Err(GltfError::InvalidGltf(format!(
            "{label} accessor {index} has no fallback data"
        )));
    }
    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;

    fn base() -> Value {
        serde_json::json!({
            "asset": {"version": "2.0"},
            "extensionsUsed": [KHR_DRACO_MESH_COMPRESSION],
            "extensionsRequired": [KHR_DRACO_MESH_COMPRESSION],
            "buffers": [{"byteLength": 4}],
            "bufferViews": [{"buffer": 0, "byteLength": 4}],
            "accessors": [{"componentType": 5126, "count": 3, "type": "VEC3"}],
            "meshes": [{"primitives": [{
                "attributes": {"POSITION": 0},
                "extensions": {KHR_DRACO_MESH_COMPRESSION: {
                    "bufferView": 0,
                    "attributes": {"POSITION": 20}
                }}
            }]}]
        })
    }

    #[test]
    fn accepts_u32_unique_ids_and_rejects_larger_values() {
        let mut document = base();
        let primitive = &document["meshes"][0]["primitives"][0];
        let parsed = parse_khr_draco_mesh_compression(&document, primitive)
            .unwrap()
            .unwrap();
        assert_eq!(parsed.attributes["POSITION"], 20);

        document["meshes"][0]["primitives"][0]["extensions"][KHR_DRACO_MESH_COMPRESSION]
            ["attributes"]["POSITION"] = Value::from(u64::from(u32::MAX) + 1);
        let primitive = &document["meshes"][0]["primitives"][0];
        assert!(parse_khr_draco_mesh_compression(&document, primitive).is_err());
    }
}