浏览代码

Merge pull request #9 from 4e554c4c/moduleiter

Added ModuleIter, .gitignore change
Philipp Oppermann 8 年之前
父节点
当前提交
cb11143667
共有 4 个文件被更改,包括 51 次插入33 次删除
  1. 1 0
      .gitignore
  2. 30 0
      src/header.rs
  3. 5 33
      src/lib.rs
  4. 15 0
      src/module.rs

+ 1 - 0
.gitignore

@@ -1,2 +1,3 @@
 target
 Cargo.lock
+*.swp

+ 30 - 0
src/header.rs

@@ -0,0 +1,30 @@
+#[repr(C)]
+pub struct Tag {
+    pub typ: u32,
+    pub size: u32,
+    // tag specific fields
+}
+
+pub struct TagIter {
+    pub current: *const Tag,
+}
+
+impl Iterator for TagIter {
+    type Item = &'static Tag;
+
+    fn next(&mut self) -> Option<&'static Tag> {
+        match unsafe{&*self.current} {
+            &Tag{typ:0, size:8} => None, // end tag
+            tag => {
+                // go to next tag
+                let mut tag_addr = self.current as usize;
+                tag_addr += tag.size as usize;
+                tag_addr = ((tag_addr-1) & !0x7) + 0x8; //align at 8 byte
+                self.current = tag_addr as *const _;
+
+                Some(tag)
+            },
+        }
+    }
+}
+

+ 5 - 33
src/lib.rs

@@ -1,14 +1,16 @@
 #![no_std]
 
+use header::{Tag, TagIter};
 pub use boot_loader_name::BootLoaderNameTag;
 pub use elf_sections::{ElfSectionsTag, ElfSection, ElfSectionIter, ElfSectionType, ElfSectionFlags};
 pub use elf_sections::{ELF_SECTION_WRITABLE, ELF_SECTION_ALLOCATED, ELF_SECTION_EXECUTABLE};
 pub use memory_map::{MemoryMapTag, MemoryArea, MemoryAreaIter};
-pub use module::{ModuleTag};
+pub use module::{ModuleTag, ModuleIter};
 
 #[macro_use]
 extern crate bitflags;
 
+mod header;
 mod boot_loader_name;
 mod elf_sections;
 mod memory_map;
@@ -44,8 +46,8 @@ impl BootInformation {
         self.get_tag(6).map(|tag| unsafe{&*(tag as *const Tag as *const MemoryMapTag)})
     }
 
-    pub fn module_tag(&self) -> Option<&'static ModuleTag> {
-        self.get_tag(3).map(|tag| unsafe{&*(tag as *const Tag as *const ModuleTag)})
+    pub fn module_tags(&self) -> ModuleIter {
+        ModuleIter{ iter: self.tags() }
     }
 
     pub fn boot_loader_name_tag(&self) -> Option<&'static BootLoaderNameTag> {
@@ -70,33 +72,3 @@ impl BootInformation {
         TagIter{current: &self.first_tag as *const _}
     }
 }
-
-#[repr(C)]
-struct Tag {
-    typ: u32,
-    size: u32,
-    // tag specific fields
-}
-
-struct TagIter {
-    current: *const Tag,
-}
-
-impl Iterator for TagIter {
-    type Item = &'static Tag;
-
-    fn next(&mut self) -> Option<&'static Tag> {
-        match unsafe{&*self.current} {
-            &Tag{typ:0, size:8} => None, // end tag
-            tag => {
-                // go to next tag
-                let mut tag_addr = self.current as usize;
-                tag_addr += tag.size as usize;
-                tag_addr = ((tag_addr-1) & !0x7) + 0x8; //align at 8 byte
-                self.current = tag_addr as *const _;
-
-                Some(tag)
-            },
-        }
-    }
-}

+ 15 - 0
src/module.rs

@@ -1,3 +1,5 @@
+use header::{Tag, TagIter};
+
 #[repr(packed)]
 #[derive(Debug)]
 pub struct ModuleTag {
@@ -29,3 +31,16 @@ impl ModuleTag {
         self.mod_end
     }
 }
+
+pub struct ModuleIter {
+    pub iter: TagIter,
+}
+
+impl Iterator for ModuleIter {
+    type Item = &'static ModuleTag;
+
+    fn next(&mut self) -> Option<&'static ModuleTag> {
+        self.iter.find(|x| x.typ == 3)
+            .map(|tag| unsafe{&*(tag as *const Tag as *const ModuleTag)})
+    }
+}