summaryrefslogtreecommitdiff
path: root/serde_v8/src/magic/u16string.rs
blob: a75af016be0a05446cafd3fbc26e469cbd286f53 (plain)
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
use std::ops::{Deref, DerefMut};

use serde::Serialize;

pub const NAME: &str = "$__v8_magic_u16string";
pub const FIELD_PTR: &str = "$__v8_magic_u16string_ptr";
pub const FIELD_LEN: &str = "$__v8_magic_u16string_len";

#[derive(Default, PartialEq, Eq)]
pub struct U16String(pub Vec<u16>);

impl U16String {
  pub fn with_zeroes(length: usize) -> U16String {
    U16String(vec![0u16; length])
  }

  pub fn truncate(&mut self, new_length: usize) {
    self.0.truncate(new_length);
    self.0.shrink_to_fit()
  }
}

impl Deref for U16String {
  type Target = [u16];
  fn deref(&self) -> &[u16] {
    self.0.deref()
  }
}

impl DerefMut for U16String {
  fn deref_mut(&mut self) -> &mut [u16] {
    self.0.deref_mut()
  }
}

impl AsRef<[u16]> for U16String {
  fn as_ref(&self) -> &[u16] {
    self.0.as_ref()
  }
}

impl AsMut<[u16]> for U16String {
  fn as_mut(&mut self) -> &mut [u16] {
    self.0.as_mut()
  }
}

impl Serialize for U16String {
  fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
  where
    S: serde::Serializer,
  {
    use serde::ser::SerializeStruct;

    let mut s = serializer.serialize_struct(NAME, 3)?;
    s.serialize_field(FIELD_PTR, &(self.0.as_ptr() as usize))?;
    s.serialize_field(FIELD_LEN, &self.0.len())?;
    s.end()
  }
}

// TODO: Deserialize