Skip to content

Commit b3597a0

Browse files
authoredJan 10, 2025··
Merge pull request #11 from woshiluo/chosen
feat: add chosen, chosen_stdout_path, chosen_stdin_path for Node
2 parents cffb488 + c3e7264 commit b3597a0

8 files changed

+71
-1900
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/target
22
Cargo.lock
3+
*.dts
34

45
# Visual Studio Code configuration files
56
.vscode/

‎examples/bl808.dtb

14 KB
Binary file not shown.

‎examples/cv1812cp_milkv_duo256m_sd.dts

-1,029
This file was deleted.

‎examples/hifive-unmatched-a00.dts

-655
This file was deleted.

‎examples/qemu-virt.dts

-211
This file was deleted.

‎src/de_mut/str_seq.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ impl<'de> Deserialize<'de> for StrSeq<'_> {
4747
}
4848
}
4949

50-
impl StrSeq<'_> {
50+
impl<'de> StrSeq<'de> {
5151
/// 构造一个可访问每个字符串的迭代器。
52-
pub fn iter(&self) -> StrSeqIter {
52+
pub fn iter<'b>(&'b self) -> StrSeqIter<'de> {
5353
StrSeqIter {
5454
data: self.0.cursor.data_on(self.0.dtb),
5555
}

‎src/utils/chosen.rs

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
use crate::buildin::{Node, StrSeq};
2+
3+
impl<'de> Node<'de> {
4+
/// Get node /chosen
5+
#[inline]
6+
pub fn chosen<'b>(&'b self) -> Option<Node<'de>> {
7+
self.find("/chosen")
8+
}
9+
/// Get /chosen/stdin-path
10+
pub fn chosen_stdin_path(&self) -> Option<&'de str> {
11+
let result = self
12+
.chosen()?
13+
.get_prop("stdin-path")?
14+
.deserialize::<StrSeq>()
15+
.iter()
16+
.next()?;
17+
if let Some(pos) = result.find(':') {
18+
Some(result.split_at(pos).0)
19+
} else {
20+
Some(result)
21+
}
22+
}
23+
/// Get /chosen/stdout-path
24+
pub fn chosen_stdout_path(&self) -> Option<&'de str> {
25+
let result = self
26+
.chosen()?
27+
.get_prop("stdout-path")?
28+
.deserialize::<StrSeq>()
29+
.iter()
30+
.next()?;
31+
if let Some(pos) = result.find(':') {
32+
Some(result.split_at(pos).0)
33+
} else {
34+
Some(result)
35+
}
36+
}
37+
}
38+
39+
#[cfg(test)]
40+
mod tests {
41+
use crate::{buildin::Node, from_raw_mut, Dtb, DtbPtr};
42+
43+
const RAW_DEVICE_TREE: &[u8] = include_bytes!("../../examples/bl808.dtb");
44+
const BUFFER_SIZE: usize = RAW_DEVICE_TREE.len();
45+
#[test]
46+
fn test_chosen_stdout() {
47+
#[repr(align(8))]
48+
struct AlignedBuffer {
49+
pub data: [u8; RAW_DEVICE_TREE.len()],
50+
}
51+
let mut aligned_data: Box<AlignedBuffer> = Box::new(AlignedBuffer {
52+
data: [0; BUFFER_SIZE],
53+
});
54+
aligned_data.data[..BUFFER_SIZE].clone_from_slice(RAW_DEVICE_TREE);
55+
let mut slice = aligned_data.data.to_vec();
56+
let ptr = DtbPtr::from_raw(slice.as_mut_ptr()).unwrap();
57+
let dtb = Dtb::from(ptr).share();
58+
59+
let node: Node = from_raw_mut(&dtb).unwrap();
60+
assert!(node.chosen().is_some());
61+
assert_eq!(node.chosen_stdout_path(), Some("serial3"));
62+
}
63+
}

‎src/utils/mod.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
pub mod chosen;
2+
13
use crate::buildin::{Node, StrSeq};
24

3-
impl Node<'_> {
5+
impl<'de> Node<'de> {
46
/// Try to get a node by a full-path.
5-
fn raw_find(&self, path: &str) -> Option<Node> {
7+
fn raw_find<'b>(&'b self, path: &str) -> Option<Node<'de>> {
68
// Direct return root node
79
let mut current_node = Some(self.clone());
810
if path == "/" {
@@ -30,7 +32,7 @@ impl Node<'_> {
3032
current_node
3133
}
3234
/// Try to get a node by path.
33-
pub fn find(&self, path: &str) -> Option<Node> {
35+
pub fn find<'b>(&'b self, path: &str) -> Option<Node<'de>> {
3436
// Direct return root node
3537
let current_node = Some(self.clone());
3638
if path == "/" {

0 commit comments

Comments
 (0)
Please sign in to comment.