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
use std::fmt;
use super::filespec::SBFileSpec;
use super::stream::SBStream;
use sys;
pub struct SBFileSpecList {
pub raw: sys::SBFileSpecListRef,
}
impl SBFileSpecList {
pub fn new() -> SBFileSpecList {
SBFileSpecList::wrap(unsafe { sys::CreateSBFileSpecList() })
}
pub fn wrap(raw: sys::SBFileSpecListRef) -> SBFileSpecList {
SBFileSpecList { raw: raw }
}
#[allow(missing_docs)]
pub fn append(&self, file: &SBFileSpec) {
unsafe { sys::SBFileSpecListAppend(self.raw, file.raw) };
}
#[allow(missing_docs)]
pub fn append_if_unique(&self, file: &SBFileSpec) {
unsafe { sys::SBFileSpecListAppendIfUnique(self.raw, file.raw) };
}
pub fn is_empty(&self) -> bool {
unsafe { sys::SBFileSpecListGetSize(self.raw) == 0 }
}
pub fn clear(&self) {
unsafe { sys::SBFileSpecListClear(self.raw) };
}
pub fn iter(&self) -> SBFileSpecListIter {
SBFileSpecListIter {
filespec_list: self,
idx: 0,
}
}
}
impl fmt::Debug for SBFileSpecList {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let stream = SBStream::new();
unsafe { sys::SBFileSpecListGetDescription(self.raw, stream.raw) };
write!(fmt, "SBFileSpecList {{ {} }}", stream.data())
}
}
impl Default for SBFileSpecList {
fn default() -> Self {
Self::new()
}
}
impl Drop for SBFileSpecList {
fn drop(&mut self) {
unsafe { sys::DisposeSBFileSpecList(self.raw) };
}
}
pub struct SBFileSpecListIter<'d> {
filespec_list: &'d SBFileSpecList,
idx: usize,
}
impl<'d> Iterator for SBFileSpecListIter<'d> {
type Item = SBFileSpec;
fn next(&mut self) -> Option<SBFileSpec> {
if self.idx < unsafe { sys::SBFileSpecListGetSize(self.filespec_list.raw) as usize } {
let r = SBFileSpec::wrap(unsafe {
sys::SBFileSpecListGetFileSpecAtIndex(self.filespec_list.raw, self.idx as u32)
});
self.idx += 1;
Some(r)
} else {
None
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
let sz = unsafe { sys::SBFileSpecListGetSize(self.filespec_list.raw) } as usize;
(sz - self.idx, Some(sz))
}
}