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
#[cfg(all(feature = "fs", not(target_arch = "wasm32")))]
mod fs;
#[cfg(all(feature = "fs", not(target_arch = "wasm32")))]
pub use self::fs::*;
#[cfg(all(feature = "reqwest", not(target_arch = "wasm32")))]
mod reqwest;
#[cfg(all(feature = "reqwest", not(target_arch = "wasm32")))]
pub use self::reqwest::*;
#[cfg(all(feature = "fetch", target_arch = "wasm32"))]
mod fetch;
#[cfg(all(feature = "fetch", target_arch = "wasm32"))]
pub use self::fetch::*;
use {
crate::sync::{BoxFuture, Ptr, Send, Sync},
alloc::vec::Vec,
core::fmt::{self, Debug, Display},
};
pub enum SourceError {
NotFound,
#[cfg(all(not(feature = "std"), not(feature = "sync")))]
Error(Ptr<dyn Display>),
#[cfg(all(not(feature = "std"), not(not(feature = "sync"))))]
Error(Ptr<dyn Display + Send + Sync>),
#[cfg(all(feature = "std", not(feature = "sync")))]
Error(Ptr<dyn std::error::Error>),
#[cfg(all(feature = "std", feature = "sync"))]
Error(Ptr<dyn std::error::Error + Send + Sync>),
}
impl Debug for SourceError {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
SourceError::NotFound => fmt.write_str("SourceError::NotFound"),
SourceError::Error(err) => write!(fmt, "SourceError::Error({})", err),
}
}
}
impl Display for SourceError {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
SourceError::NotFound => fmt.write_str("Asset not found"),
SourceError::Error(err) => write!(fmt, "Source error: {}", err),
}
}
}
#[cfg(feature = "std")]
impl std::error::Error for SourceError {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
SourceError::NotFound => None,
SourceError::Error(err) => Some(&**err),
}
}
}
pub trait Source<K: ?Sized>: Send + Sync + 'static {
fn read(&self, key: &K) -> BoxFuture<'_, Result<Vec<u8>, SourceError>>;
}