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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use std::ffi::{CStr, CString};
use std::fmt;
use super::data::SBData;
use super::stream::SBStream;
use super::target::SBTarget;
use sys;
#[allow(missing_docs)]
pub struct SBSection {
pub raw: sys::SBSectionRef,
}
impl SBSection {
pub fn wrap(raw: sys::SBSectionRef) -> SBSection {
SBSection { raw: raw }
}
pub fn maybe_wrap(raw: sys::SBSectionRef) -> Option<SBSection> {
if unsafe { sys::SBSectionIsValid(raw) != 0 } {
Some(SBSection { raw: raw })
} else {
None
}
}
pub fn is_valid(&self) -> bool {
unsafe { sys::SBSectionIsValid(self.raw) != 0 }
}
pub fn name(&self) -> &str {
unsafe {
match CStr::from_ptr(sys::SBSectionGetName(self.raw)).to_str() {
Ok(s) => s,
_ => panic!("Invalid string?"),
}
}
}
pub fn parent(&self) -> Option<SBSection> {
SBSection::maybe_wrap(unsafe { sys::SBSectionGetParent(self.raw) })
}
#[allow(missing_docs)]
pub fn find_subsection(&self, name: &str) -> Option<SBSection> {
let name = CString::new(name).unwrap();
SBSection::maybe_wrap(unsafe {
sys::SBSectionFindSubSection(self.raw, name.as_ptr())
})
}
pub fn subsections(&self) -> SBSectionSubSectionIter {
SBSectionSubSectionIter {
section: self,
idx: 0,
}
}
#[allow(missing_docs)]
pub fn file_address(&self) -> u64 {
unsafe { sys::SBSectionGetFileAddress(self.raw) }
}
#[allow(missing_docs)]
pub fn load_address(&self, target: &SBTarget) -> u64 {
unsafe { sys::SBSectionGetLoadAddress(self.raw, target.raw) }
}
#[allow(missing_docs)]
pub fn byte_size(&self) -> u64 {
unsafe { sys::SBSectionGetByteSize(self.raw) }
}
#[allow(missing_docs)]
pub fn file_offset(&self) -> u64 {
unsafe { sys::SBSectionGetFileOffset(self.raw) }
}
#[allow(missing_docs)]
pub fn file_byte_size(&self) -> u64 {
unsafe { sys::SBSectionGetFileByteSize(self.raw) }
}
#[allow(missing_docs)]
pub fn section_data(&self) -> SBData {
SBData::wrap(unsafe { sys::SBSectionGetSectionData(self.raw) })
}
#[allow(missing_docs)]
pub fn section_data_slice(&self, offset: u64, size: u64) -> SBData {
SBData::wrap(unsafe {
sys::SBSectionGetSectionData2(self.raw, offset, size)
})
}
#[allow(missing_docs)]
pub fn section_type(&self) -> sys::SectionType {
unsafe { sys::SBSectionGetSectionType(self.raw) }
}
#[allow(missing_docs)]
pub fn target_byte_size(&self) -> u32 {
unsafe { sys::SBSectionGetTargetByteSize(self.raw) }
}
}
pub struct SBSectionSubSectionIter<'d> {
section: &'d SBSection,
idx: usize,
}
impl<'d> Iterator for SBSectionSubSectionIter<'d> {
type Item = SBSection;
fn next(&mut self) -> Option<SBSection> {
if self.idx < unsafe { sys::SBSectionGetNumSubSections(self.section.raw) as usize } {
let r = Some(SBSection::wrap(unsafe {
sys::SBSectionGetSubSectionAtIndex(self.section.raw, self.idx)
}));
self.idx += 1;
r
} else {
None
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
let sz = unsafe { sys::SBSectionGetNumSubSections(self.section.raw) } as usize;
(sz - self.idx, Some(sz))
}
}
impl fmt::Debug for SBSection {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let stream = SBStream::new();
unsafe { sys::SBSectionGetDescription(self.raw, stream.raw) };
write!(fmt, "SBSection {{ {} }}", stream.data())
}
}
impl Drop for SBSection {
fn drop(&mut self) {
unsafe { sys::DisposeSBSection(self.raw) };
}
}
#[cfg(feature = "graphql")]
graphql_object!(SBSection: super::debugger::SBDebugger | &self | {
field is_valid() -> bool {
self.is_valid()
}
field name() -> &str {
self.name()
}
field subsections() -> Vec<SBSection> {
self.subsections().collect()
}
field file_address() -> i64 {
self.file_address() as i64
}
field byte_size() -> i64 {
self.byte_size() as i64
}
field file_offset() -> i64 {
self.file_offset() as i64
}
field file_byte_size() -> i64 {
self.file_byte_size() as i64
}
field target_byte_size() -> i64 {
self.target_byte_size() as i64
}
});