Просмотр исходного кода

aml: update to `bitvec v1.0.1` as `funty v1.2` has been yanked

Fixes #133

This currently just patches our use of `bitvec` in `aml`, but I wonder if
this could be done more ergomically by actually exposing our use of `BitVec`
to represent buffers and their fields in `aml` (i.e. use it as the actual
representation of `AmlValue::Buffer`?) Maybe need to read the spec for the
exact behaviour of fields etc. to see if this would work well.
Isaac Woods 2 лет назад
Родитель
Сommit
b2931f402f
2 измененных файлов с 6 добавлено и 4 удалено
  1. 1 1
      aml/Cargo.toml
  2. 5 3
      aml/src/value.rs

+ 1 - 1
aml/Cargo.toml

@@ -13,5 +13,5 @@ edition = "2018"
 log = "0.4"
 bit_field = "0.10"
 byteorder = { version = "1", default-features = false }
-bitvec = { version = "0.22.3", default-features = false, features = ["alloc", "atomic"] }
+bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "atomic"] }
 spinning_top = "0.2.4"

+ 5 - 3
aml/src/value.rs

@@ -517,7 +517,9 @@ impl AmlValue {
             let bitslice = inner_data.view_bits::<bitvec::order::Lsb0>();
             let bits = &bitslice[offset..(offset + length)];
             if length > 64 {
-                Ok(AmlValue::Buffer(Arc::new(spinning_top::Spinlock::new(bits.as_raw_slice().to_vec()))))
+                let mut bitvec = bits.to_bitvec();
+                bitvec.set_uninitialized(false);
+                Ok(AmlValue::Buffer(Arc::new(spinning_top::Spinlock::new(bitvec.into_vec()))))
             } else {
                 let mut value = 0u64;
                 value.view_bits_mut::<bitvec::order::Lsb0>()[0..length].clone_from_bitslice(bits);
@@ -549,7 +551,7 @@ impl AmlValue {
                     bitslice[offset..(offset + bits_to_copy)]
                         .copy_from_bitslice(&value.to_le_bytes().view_bits()[..(bits_to_copy as usize)]);
                     // Zero extend to the end of the buffer field
-                    bitslice[(offset + bits_to_copy)..(offset + length)].set_all(false);
+                    bitslice[(offset + bits_to_copy)..(offset + length)].fill(false);
                     Ok(())
                 }
                 AmlValue::Boolean(value) => {
@@ -569,7 +571,7 @@ impl AmlValue {
                     bitslice[offset..(offset + bits_to_copy)]
                         .copy_from_bitslice(&value_data.view_bits()[..(bits_to_copy as usize)]);
                     // Zero extend to the end of the buffer field
-                    bitslice[(offset + bits_to_copy)..(offset + length)].set_all(false);
+                    bitslice[(offset + bits_to_copy)..(offset + length)].fill(false);
                     Ok(())
                 }
                 _ => Err(AmlError::TypeCannotBeWrittenToBufferField(value.type_of())),