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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
use std::ffi;
use std::path::Path;
use url::Url;
use crate::htslib;
use crate::tpool::ThreadPool;
use crate::errors::{Error, Result};
fn path_as_bytes<'a, P: 'a + AsRef<Path>>(path: P, must_exist: bool) -> Result<Vec<u8>> {
if path.as_ref().exists() || !must_exist {
Ok(path
.as_ref()
.to_str()
.ok_or(Error::NonUnicodePath)?
.as_bytes()
.to_owned())
} else {
Err(Error::FileNotFound {
path: path.as_ref().to_owned(),
})
}
}
pub fn is_bgzip<P: AsRef<Path>>(path: P) -> Result<bool, Error> {
let byte_path = path_as_bytes(path, true)?;
let cpath = ffi::CString::new(byte_path).unwrap();
let is_bgzf = unsafe { htslib::bgzf_is_bgzf(cpath.as_ptr()) == 1 };
Ok(is_bgzf)
}
#[derive(Debug)]
pub struct Reader {
inner: *mut htslib::BGZF,
}
impl Reader {
pub fn from_stdin() -> Result<Self, Error> {
Self::new(b"-")
}
pub fn from_path<P: AsRef<Path>>(path: P) -> Result<Self, Error> {
Self::new(&path_as_bytes(path, true)?)
}
pub fn from_url(url: &Url) -> Result<Self, Error> {
Self::new(url.as_str().as_bytes())
}
fn new(path: &[u8]) -> Result<Self, Error> {
let mode = ffi::CString::new("r").unwrap();
let cpath = ffi::CString::new(path).unwrap();
let inner = unsafe { htslib::bgzf_open(cpath.as_ptr(), mode.as_ptr()) };
Ok(Self { inner })
}
pub fn set_thread_pool(&mut self, tpool: &ThreadPool) -> Result<()> {
let b = tpool.handle.borrow_mut();
let r = unsafe {
htslib::bgzf_thread_pool(self.inner, b.inner.pool as *mut _, 0)
};
if r != 0 {
Err(Error::ThreadPool)
} else {
Ok(())
}
}
}
impl std::io::Read for Reader {
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
let nbytes = unsafe {
htslib::bgzf_read(
self.inner,
buf.as_mut_ptr() as *mut libc::c_void,
buf.len() as u64,
)
};
if nbytes < 0 {
Err(std::io::Error::new(
std::io::ErrorKind::Other,
"Can not read",
))
} else {
Ok(nbytes as usize)
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::io::Read;
const FN_PLAIN: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test/bgzip/plain.vcf");
const FN_GZIP: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test/bgzip/gzip.vcf.gz");
const FN_BGZIP: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/test/bgzip/bgzip.vcf.gz");
const CONTENT: &str = include_str!("../../test/bgzip/plain.vcf");
#[test]
fn test_is_bgzip_plain() {
assert!(
!is_bgzip(FN_PLAIN).unwrap(),
"Plain file not detected as BGZIP"
);
assert!(
!is_bgzip(FN_GZIP).unwrap(),
"Zip file not detected as BGZIP"
);
assert!(is_bgzip(FN_BGZIP).unwrap(), "Bgzip file detected as BGZIP");
}
#[test]
fn test_open_plain() {
let r_result = Reader::from_path(FN_PLAIN);
assert!(r_result.is_ok(), "Open plain file with Bgzip reader");
let mut my_content = String::new();
let reading_result = r_result.unwrap().read_to_string(&mut my_content);
assert!(
reading_result.is_ok(),
"Reading plain file into buffer is ok"
);
assert_eq!(
reading_result.unwrap(),
190,
"Reading plain file into buffer is correct size"
);
assert_eq!(
my_content, CONTENT,
"Reading plain file with correct content"
);
}
#[test]
fn test_open_gzip() {
let r_result = Reader::from_path(FN_GZIP);
assert!(r_result.is_ok(), "Open gzip file with Bgzip reader");
let mut my_content = String::new();
let reading_result = r_result.unwrap().read_to_string(&mut my_content);
assert!(
reading_result.is_ok(),
"Reading gzip file into buffer is ok"
);
assert_eq!(
reading_result.unwrap(),
190,
"Reading gzip file into buffer is correct size"
);
assert_eq!(
my_content, CONTENT,
"Reading gzip file with correct content"
);
}
#[test]
fn test_open_bgzip() {
let r_result = Reader::from_path(FN_BGZIP);
assert!(r_result.is_ok(), "Open bgzip file with Bgzip reader");
let mut my_content = String::new();
let reading_result = r_result.unwrap().read_to_string(&mut my_content);
assert!(
reading_result.is_ok(),
"Reading bgzip file into buffer is ok"
);
assert_eq!(
reading_result.unwrap(),
190,
"Reading bgzip file into buffer is correct size"
);
assert_eq!(
my_content, CONTENT,
"Reading bgzip file with correct content"
);
}
#[test]
fn test_set_threadpool() {
let r_result = Reader::from_path(FN_BGZIP);
assert!(r_result.is_ok(), "Open bgzip file with Bgzip reader");
let mut r = r_result.unwrap();
let tpool_result = ThreadPool::new(5);
assert!(tpool_result.is_ok(), "Creating thread pool");
let tpool = tpool_result.unwrap();
let set_result = r.set_thread_pool(&tpool);
assert_eq!(set_result, Ok(()), "Setting thread pool okay");
let mut my_content = String::new();
let reading_result = r.read_to_string(&mut my_content);
assert!(
reading_result.is_ok(),
"Reading bgzip file into buffer is ok - using a threadpool"
);
assert_eq!(
reading_result.unwrap(),
190,
"Reading bgzip file into buffer is correct size using a threadpool"
);
assert_eq!(
my_content, CONTENT,
"Reading bgzip file with correct content using a threadpool"
);
}
}