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
use std::fmt;
use super::address::SBAddress;
use super::filespec::SBFileSpec;
use super::stream::SBStream;
use sys;
pub struct SBLineEntry {
pub raw: sys::SBLineEntryRef,
}
impl SBLineEntry {
pub fn wrap(raw: sys::SBLineEntryRef) -> SBLineEntry {
SBLineEntry { raw: raw }
}
pub fn maybe_wrap(raw: sys::SBLineEntryRef) -> Option<SBLineEntry> {
if unsafe { sys::SBLineEntryIsValid(raw) != 0 } {
Some(SBLineEntry { raw: raw })
} else {
None
}
}
pub fn is_valid(&self) -> bool {
unsafe { sys::SBLineEntryIsValid(self.raw) != 0 }
}
pub fn start_address(&self) -> SBAddress {
SBAddress::wrap(unsafe { sys::SBLineEntryGetStartAddress(self.raw) })
}
pub fn end_address(&self) -> SBAddress {
SBAddress::wrap(unsafe { sys::SBLineEntryGetEndAddress(self.raw) })
}
pub fn filespec(&self) -> SBFileSpec {
SBFileSpec::wrap(unsafe { sys::SBLineEntryGetFileSpec(self.raw) })
}
pub fn line(&self) -> u32 {
unsafe { sys::SBLineEntryGetLine(self.raw) }
}
pub fn column(&self) -> u32 {
unsafe { sys::SBLineEntryGetColumn(self.raw) }
}
}
impl fmt::Debug for SBLineEntry {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let stream = SBStream::new();
unsafe { sys::SBLineEntryGetDescription(self.raw, stream.raw) };
write!(fmt, "SBLineEntry {{ {} }}", stream.data())
}
}
impl Drop for SBLineEntry {
fn drop(&mut self) {
unsafe { sys::DisposeSBLineEntry(self.raw) };
}
}
#[cfg(feature = "graphql")]
graphql_object!(SBLineEntry: super::debugger::SBDebugger | &self | {
field is_valid() -> bool {
self.is_valid()
}
field start_address() -> SBAddress {
self.start_address()
}
field end_address() -> SBAddress {
self.end_address()
}
field filespec() -> SBFileSpec {
self.filespec()
}
field line() -> i64 {
self.line() as i64
}
field column() -> i64 {
self.column() as i64
}
});