header.rs 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. use core::marker::PhantomData;
  2. #[derive(Clone, Copy, Debug)]
  3. #[repr(C)]
  4. pub struct Tag {
  5. pub typ: u32,
  6. pub size: u32,
  7. // tag specific fields
  8. }
  9. #[derive(Clone, Debug)]
  10. pub struct TagIter<'a> {
  11. pub current: *const Tag,
  12. phantom: PhantomData<&'a Tag>,
  13. }
  14. impl<'a> TagIter<'a> {
  15. pub fn new(first: *const Tag) -> Self {
  16. TagIter {
  17. current: first,
  18. phantom: PhantomData,
  19. }
  20. }
  21. }
  22. impl<'a> Iterator for TagIter<'a> {
  23. type Item = &'a Tag;
  24. fn next(&mut self) -> Option<&'a Tag> {
  25. match unsafe{&*self.current} {
  26. &Tag{typ:0, size:8} => None, // end tag
  27. tag => {
  28. // go to next tag
  29. let mut tag_addr = self.current as usize;
  30. tag_addr += ((tag.size + 7) & !7) as usize; //align at 8 byte
  31. self.current = tag_addr as *const _;
  32. Some(tag)
  33. },
  34. }
  35. }
  36. }