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
use faiss_sys::*;
use std::error::Error as StdError;
use std::ffi::CStr;
use std::fmt;
use std::os::raw::c_int;
pub type Result<T> = ::std::result::Result<T, Error>;
#[derive(Debug, Clone, PartialEq)]
pub enum Error {
Native(NativeError),
BadCast,
IndexDescription,
BadFilePath,
ParameterName,
GpuResourcesMatch,
}
impl fmt::Display for Error {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::Native(e) => write!(fmt, "Native faiss error: {}", e.msg),
Error::BadCast => fmt.write_str("Invalid index type cast"),
Error::IndexDescription => fmt.write_str("Invalid index description"),
Error::BadFilePath => fmt.write_str("Invalid file path"),
Error::ParameterName => fmt.write_str("Invalid parameter name of index"),
Error::GpuResourcesMatch => {
fmt.write_str("Number of GPU resources and devices do not match")
}
}
}
}
impl StdError for Error {
fn source(&self) -> Option<&(dyn StdError + 'static)> {
if let Error::Native(err) = self {
Some(err)
} else {
None
}
}
}
#[derive(Debug, Clone, PartialEq)]
pub struct NativeError {
code: c_int,
msg: String,
}
impl NativeError {
pub fn code(&self) -> c_int {
self.code
}
pub fn msg(&self) -> &str {
&self.msg
}
}
impl NativeError {
pub(crate) fn from_last_error(code: c_int) -> Self {
unsafe {
let e: *const _ = faiss_get_last_error();
assert!(!e.is_null());
let cstr = CStr::from_ptr(e);
let msg: String = cstr.to_string_lossy().into_owned();
NativeError { code, msg }
}
}
}
impl fmt::Display for NativeError {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.write_str(&self.msg)
}
}
impl StdError for NativeError {
fn description(&self) -> &str {
&self.msg
}
}
impl From<NativeError> for Error {
fn from(e: NativeError) -> Self {
Error::Native(e)
}
}