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
use std::ffi::CStr;
use std::fmt;
use super::stream::SBStream;
use sys;
pub struct SBFileSpec {
pub raw: sys::SBFileSpecRef,
}
impl SBFileSpec {
pub fn wrap(raw: sys::SBFileSpecRef) -> SBFileSpec {
SBFileSpec { raw: raw }
}
pub fn maybe_wrap(raw: sys::SBFileSpecRef) -> Option<SBFileSpec> {
if unsafe { sys::SBFileSpecIsValid(raw) != 0 } {
Some(SBFileSpec { raw: raw })
} else {
None
}
}
pub fn is_valid(&self) -> bool {
unsafe { sys::SBFileSpecIsValid(self.raw) != 0 }
}
pub fn exists(&self) -> bool {
unsafe { sys::SBFileSpecExists(self.raw) != 0 }
}
pub fn filename(&self) -> &str {
unsafe {
match CStr::from_ptr(sys::SBFileSpecGetFilename(self.raw)).to_str() {
Ok(s) => s,
_ => panic!("Invalid string?"),
}
}
}
pub fn directory(&self) -> &str {
unsafe {
match CStr::from_ptr(sys::SBFileSpecGetDirectory(self.raw)).to_str() {
Ok(s) => s,
_ => panic!("Invalid string?"),
}
}
}
}
impl fmt::Debug for SBFileSpec {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let stream = SBStream::new();
unsafe { sys::SBFileSpecGetDescription(self.raw, stream.raw) };
write!(fmt, "SBFileSpec {{ {} }}", stream.data())
}
}
impl Drop for SBFileSpec {
fn drop(&mut self) {
unsafe { sys::DisposeSBFileSpec(self.raw) };
}
}
#[cfg(feature = "graphql")]
graphql_object!(SBFileSpec: super::debugger::SBDebugger | &self | {
field is_valid() -> bool {
self.is_valid()
}
field exists() -> bool {
self.exists()
}
field filename() -> &str {
self.filename()
}
field directory() -> &str {
self.directory()
}
});