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},
};

/// Error type for `Source`s.
pub enum SourceError {
    /// File not found in the source.
    NotFound,

    /// Custom source error.
    #[cfg(all(not(feature = "std"), not(feature = "sync")))]
    Error(Ptr<dyn Display>),

    /// Custom source error.
    #[cfg(all(not(feature = "std"), not(not(feature = "sync"))))]
    Error(Ptr<dyn Display + Send + Sync>),

    /// Custom source error.
    #[cfg(all(feature = "std", not(feature = "sync")))]
    Error(Ptr<dyn std::error::Error>),

    /// Custom source 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),
        }
    }
}

/// Asset data source.
pub trait Source<K: ?Sized>: Send + Sync + 'static {
    /// Reads asset asynchronously.
    /// Returns async bytes on success.
    /// Otherwise returns error `E` describing occurred problem.
    fn read(&self, key: &K) -> BoxFuture<'_, Result<Vec<u8>, SourceError>>;
}