wacore-binary 0.5.0

Binary data and constants for WhatsApp protocol
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
use std::io::Write;

use crate::{
    BinaryError, Node, NodeRef, Result,
    decoder::Decoder,
    encoder::{Encoder, build_marshaled_node_plan, build_marshaled_node_ref_plan},
    node::{NodeContent, NodeContentRef},
};

const DEFAULT_MARSHAL_CAPACITY: usize = 1024;
const AUTO_RESERVE_ATTRS_THRESHOLD: usize = 24;
const AUTO_RESERVE_CHILDREN_THRESHOLD: usize = 64;
const AUTO_RESERVE_SCALAR_THRESHOLD: usize = 8 * 1024;
const AUTO_CHILD_SAMPLE_LIMIT: usize = 32;
const AUTO_MAX_HINT_CAPACITY: usize = 512 * 1024;
const AUTO_ATTR_ESTIMATE: usize = 24;
const AUTO_CHILD_ESTIMATE: usize = 96;
const AUTO_GRANDCHILD_ESTIMATE: usize = 40;

pub fn unmarshal_ref(data: &[u8]) -> Result<NodeRef<'_>> {
    let mut decoder = Decoder::new(data);
    let node = decoder.read_node_ref()?;

    if decoder.is_finished() {
        Ok(node)
    } else {
        Err(BinaryError::LeftoverData(decoder.bytes_left()))
    }
}

pub fn marshal_to(node: &Node, writer: &mut impl Write) -> Result<()> {
    let mut encoder = Encoder::new(writer)?;
    encoder.write_node(node)?;
    Ok(())
}

/// Serialize an owned node directly into a `Vec<u8>` using the fast vec writer path.
pub fn marshal_to_vec(node: &Node, output: &mut Vec<u8>) -> Result<()> {
    let mut encoder = Encoder::new_vec(output)?;
    encoder.write_node(node)?;
    Ok(())
}

pub fn marshal(node: &Node) -> Result<Vec<u8>> {
    let mut payload = Vec::with_capacity(DEFAULT_MARSHAL_CAPACITY);
    marshal_to_vec(node, &mut payload)?;
    Ok(payload)
}

/// Serialize a `Node` using a conservative auto strategy.
///
/// This keeps the fast one-pass path for typical payloads and only uses
/// a lightweight preallocation hint for obviously larger payload shapes.
pub fn marshal_auto(node: &Node) -> Result<Vec<u8>> {
    if should_auto_reserve_node(node) {
        marshal_with_capacity(node, estimate_capacity_node(node))
    } else {
        marshal(node)
    }
}

/// Serialize a `Node` using a two-pass strategy:
/// 1) compute exact encoded size
/// 2) write directly into a fixed-size output buffer
///
/// This avoids output buffer growth/copies and can be beneficial for large/variable payloads.
pub fn marshal_exact(node: &Node) -> Result<Vec<u8>> {
    let plan = build_marshaled_node_plan(node);
    let mut payload = vec![0; plan.size];
    let mut encoder = Encoder::new_slice(payload.as_mut_slice(), Some(&plan.hints))?;
    encoder.write_node(node)?;
    let written = encoder.bytes_written();
    debug_assert_eq!(written, payload.len(), "plan size mismatch for Node");
    payload.truncate(written);
    Ok(payload)
}

/// Zero-copy serialization of a `NodeRef` directly into a writer.
/// This avoids the allocation overhead of converting to an owned `Node` first.
pub fn marshal_ref_to(node: &NodeRef<'_>, writer: &mut impl Write) -> Result<()> {
    let mut encoder = Encoder::new(writer)?;
    encoder.write_node(node)?;
    Ok(())
}

/// Serialize a borrowed node directly into a `Vec<u8>` using the fast vec writer path.
pub fn marshal_ref_to_vec(node: &NodeRef<'_>, output: &mut Vec<u8>) -> Result<()> {
    let mut encoder = Encoder::new_vec(output)?;
    encoder.write_node(node)?;
    Ok(())
}

/// Zero-copy serialization of a `NodeRef` to a new `Vec<u8>`.
/// Prefer `marshal_ref_to` with a reusable buffer for best performance.
pub fn marshal_ref(node: &NodeRef<'_>) -> Result<Vec<u8>> {
    let mut payload = Vec::with_capacity(DEFAULT_MARSHAL_CAPACITY);
    marshal_ref_to_vec(node, &mut payload)?;
    Ok(payload)
}

/// Serialize a `NodeRef` using the same conservative auto strategy as `marshal_auto`.
pub fn marshal_ref_auto(node: &NodeRef<'_>) -> Result<Vec<u8>> {
    if should_auto_reserve_node_ref(node) {
        marshal_ref_with_capacity(node, estimate_capacity_node_ref(node))
    } else {
        marshal_ref(node)
    }
}

/// Serialize a `NodeRef` using a two-pass exact-size strategy.
///
/// This avoids output buffer growth/copies and preserves zero-copy input semantics.
pub fn marshal_ref_exact(node: &NodeRef<'_>) -> Result<Vec<u8>> {
    let plan = build_marshaled_node_ref_plan(node);
    let mut payload = vec![0; plan.size];
    let mut encoder = Encoder::new_slice(payload.as_mut_slice(), Some(&plan.hints))?;
    encoder.write_node(node)?;
    let written = encoder.bytes_written();
    debug_assert_eq!(written, payload.len(), "plan size mismatch for NodeRef");
    payload.truncate(written);
    Ok(payload)
}

#[inline]
fn marshal_with_capacity(node: &Node, capacity: usize) -> Result<Vec<u8>> {
    let mut payload = Vec::with_capacity(capacity);
    marshal_to_vec(node, &mut payload)?;
    Ok(payload)
}

#[inline]
fn marshal_ref_with_capacity(node: &NodeRef<'_>, capacity: usize) -> Result<Vec<u8>> {
    let mut payload = Vec::with_capacity(capacity);
    marshal_ref_to_vec(node, &mut payload)?;
    Ok(payload)
}

#[inline]
fn should_auto_reserve_node(node: &Node) -> bool {
    if node.attrs.len() >= AUTO_RESERVE_ATTRS_THRESHOLD {
        return true;
    }

    match &node.content {
        Some(NodeContent::Bytes(bytes)) => bytes.len() >= AUTO_RESERVE_SCALAR_THRESHOLD,
        Some(NodeContent::String(text)) => text.len() >= AUTO_RESERVE_SCALAR_THRESHOLD,
        Some(NodeContent::Nodes(children)) => children.len() >= AUTO_RESERVE_CHILDREN_THRESHOLD,
        None => false,
    }
}

#[inline]
fn should_auto_reserve_node_ref(node: &NodeRef<'_>) -> bool {
    if node.attrs.len() >= AUTO_RESERVE_ATTRS_THRESHOLD {
        return true;
    }

    match node.content.as_deref() {
        Some(NodeContentRef::Bytes(bytes)) => bytes.len() >= AUTO_RESERVE_SCALAR_THRESHOLD,
        Some(NodeContentRef::String(text)) => text.len() >= AUTO_RESERVE_SCALAR_THRESHOLD,
        Some(NodeContentRef::Nodes(children)) => children.len() >= AUTO_RESERVE_CHILDREN_THRESHOLD,
        None => false,
    }
}

#[inline]
fn estimate_capacity_node(node: &Node) -> usize {
    let mut estimate = DEFAULT_MARSHAL_CAPACITY + 16;
    estimate += node.tag.len();
    estimate += node.attrs.len() * AUTO_ATTR_ESTIMATE;

    match &node.content {
        Some(NodeContent::Bytes(bytes)) => {
            estimate += bytes.len() + 8;
        }
        Some(NodeContent::String(text)) => {
            estimate += text.len() + 8;
        }
        Some(NodeContent::Nodes(children)) => {
            estimate += children.len() * AUTO_CHILD_ESTIMATE;
            for child in children.iter().take(AUTO_CHILD_SAMPLE_LIMIT) {
                estimate += child.tag.len() + child.attrs.len() * AUTO_ATTR_ESTIMATE;
                match &child.content {
                    Some(NodeContent::Bytes(bytes)) => estimate += bytes.len() + 8,
                    Some(NodeContent::String(text)) => estimate += text.len() + 8,
                    Some(NodeContent::Nodes(grand_children)) => {
                        estimate += grand_children.len() * AUTO_GRANDCHILD_ESTIMATE;
                    }
                    None => {}
                }
                if estimate >= AUTO_MAX_HINT_CAPACITY {
                    return AUTO_MAX_HINT_CAPACITY;
                }
            }
        }
        None => {}
    }

    estimate.clamp(DEFAULT_MARSHAL_CAPACITY, AUTO_MAX_HINT_CAPACITY)
}

#[inline]
fn estimate_capacity_node_ref(node: &NodeRef<'_>) -> usize {
    let mut estimate = DEFAULT_MARSHAL_CAPACITY + 16;
    estimate += node.tag.len();
    estimate += node.attrs.len() * AUTO_ATTR_ESTIMATE;

    match node.content.as_deref() {
        Some(NodeContentRef::Bytes(bytes)) => {
            estimate += bytes.len() + 8;
        }
        Some(NodeContentRef::String(text)) => {
            estimate += text.len() + 8;
        }
        Some(NodeContentRef::Nodes(children)) => {
            estimate += children.len() * AUTO_CHILD_ESTIMATE;
            for child in children.iter().take(AUTO_CHILD_SAMPLE_LIMIT) {
                estimate += child.tag.len() + child.attrs.len() * AUTO_ATTR_ESTIMATE;
                match child.content.as_deref() {
                    Some(NodeContentRef::Bytes(bytes)) => estimate += bytes.len() + 8,
                    Some(NodeContentRef::String(text)) => estimate += text.len() + 8,
                    Some(NodeContentRef::Nodes(grand_children)) => {
                        estimate += grand_children.len() * AUTO_GRANDCHILD_ESTIMATE;
                    }
                    None => {}
                }
                if estimate >= AUTO_MAX_HINT_CAPACITY {
                    return AUTO_MAX_HINT_CAPACITY;
                }
            }
        }
        None => {}
    }

    estimate.clamp(DEFAULT_MARSHAL_CAPACITY, AUTO_MAX_HINT_CAPACITY)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::jid::Jid;
    use crate::node::{Attrs, NodeContent, NodeValue};

    type TestResult = crate::error::Result<()>;

    fn fixture_node() -> Node {
        let mut attrs = Attrs::with_capacity(4);
        attrs.push("id".to_string(), "ABC123");
        attrs.push("to".to_string(), "123456789@s.whatsapp.net");
        attrs.push(
            "participant".to_string(),
            NodeValue::Jid("15551234567@s.whatsapp.net".parse::<Jid>().unwrap()),
        );
        attrs.push("hex".to_string(), "DEADBEEF");

        let child = Node::new(
            "item",
            Attrs::new(),
            Some(NodeContent::Bytes(vec![1, 2, 3, 4, 5, 6, 7, 8])),
        );

        Node::new(
            "message",
            attrs,
            Some(NodeContent::Nodes(vec![
                child,
                Node::new(
                    "text",
                    Attrs::new(),
                    Some(NodeContent::String("hello".repeat(40))),
                ),
            ])),
        )
    }

    fn large_binary_fixture() -> Node {
        Node::new(
            "message",
            Attrs::new(),
            Some(NodeContent::Bytes(vec![
                0xAB;
                AUTO_RESERVE_SCALAR_THRESHOLD + 2048
            ])),
        )
    }

    #[test]
    fn test_marshaled_node_size_matches_output() -> TestResult {
        let node = fixture_node();
        let plan = build_marshaled_node_plan(&node);
        let payload = marshal(&node)?;
        assert_eq!(payload.len(), plan.size);
        Ok(())
    }

    #[test]
    fn test_marshaled_node_ref_size_matches_output() -> TestResult {
        let node = fixture_node();
        let node_ref = node.as_node_ref();
        let plan = build_marshaled_node_ref_plan(&node_ref);
        let payload = marshal_ref(&node_ref)?;
        assert_eq!(payload.len(), plan.size);
        Ok(())
    }

    #[test]
    fn test_marshal_matches_marshal_to_bytes() -> TestResult {
        let node = fixture_node();

        let payload_alloc = marshal(&node)?;

        let mut payload_writer = Vec::new();
        marshal_to(&node, &mut payload_writer)?;

        assert_eq!(payload_alloc, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_ref_matches_marshal_ref_to_bytes() -> TestResult {
        let node = fixture_node();
        let node_ref = node.as_node_ref();

        let payload_alloc = marshal_ref(&node_ref)?;

        let mut payload_writer = Vec::new();
        marshal_ref_to(&node_ref, &mut payload_writer)?;

        assert_eq!(payload_alloc, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_to_vec_matches_marshal_to() -> TestResult {
        let node = fixture_node();

        let mut payload_vec_writer = Vec::new();
        marshal_to_vec(&node, &mut payload_vec_writer)?;

        let mut payload_writer = Vec::new();
        marshal_to(&node, &mut payload_writer)?;

        assert_eq!(payload_vec_writer, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_ref_to_vec_matches_marshal_ref_to() -> TestResult {
        let node = fixture_node();
        let node_ref = node.as_node_ref();

        let mut payload_vec_writer = Vec::new();
        marshal_ref_to_vec(&node_ref, &mut payload_vec_writer)?;

        let mut payload_writer = Vec::new();
        marshal_ref_to(&node_ref, &mut payload_writer)?;

        assert_eq!(payload_vec_writer, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_exact_matches_marshal_to_bytes() -> TestResult {
        let node = fixture_node();

        let payload_exact = marshal_exact(&node)?;

        let mut payload_writer = Vec::new();
        marshal_to(&node, &mut payload_writer)?;

        assert_eq!(payload_exact, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_ref_exact_matches_marshal_ref_to_bytes() -> TestResult {
        let node = fixture_node();
        let node_ref = node.as_node_ref();

        let payload_exact = marshal_ref_exact(&node_ref)?;

        let mut payload_writer = Vec::new();
        marshal_ref_to(&node_ref, &mut payload_writer)?;

        assert_eq!(payload_exact, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_auto_matches_marshal_to_bytes() -> TestResult {
        let node = fixture_node();
        let payload_auto = marshal_auto(&node)?;

        let mut payload_writer = Vec::new();
        marshal_to(&node, &mut payload_writer)?;

        assert_eq!(payload_auto, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_ref_auto_matches_marshal_ref_to_bytes() -> TestResult {
        let node = fixture_node();
        let node_ref = node.as_node_ref();
        let payload_auto = marshal_ref_auto(&node_ref)?;

        let mut payload_writer = Vec::new();
        marshal_ref_to(&node_ref, &mut payload_writer)?;

        assert_eq!(payload_auto, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_auto_large_binary_matches_marshal_to_bytes() -> TestResult {
        let node = large_binary_fixture();
        let payload_auto = marshal_auto(&node)?;

        let mut payload_writer = Vec::new();
        marshal_to(&node, &mut payload_writer)?;

        assert_eq!(payload_auto, payload_writer);
        Ok(())
    }

    #[test]
    fn test_marshal_ref_auto_large_binary_matches_marshal_ref_to_bytes() -> TestResult {
        let node = large_binary_fixture();
        let node_ref = node.as_node_ref();
        let payload_auto = marshal_ref_auto(&node_ref)?;

        let mut payload_writer = Vec::new();
        marshal_ref_to(&node_ref, &mut payload_writer)?;

        assert_eq!(payload_auto, payload_writer);
        Ok(())
    }
}