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
#[macro_export]
#[cfg(debug_assertions)]
macro_rules! static_resources_initialize {
( $resources:expr, $($name:expr, $path:expr), * $(,)* ) => {
use std::fs;
$(
$resources.register_resource_file($name, $path).unwrap();
)*
};
}
#[macro_export]
#[cfg(not(debug_assertions))]
macro_rules! static_resources_initialize {
( $resources:expr, $($name:expr, $path:expr), * $(,)* ) => {
use std::fs;
$(
$resources.register_resource_static($name, concat!(env!("CARGO_MANIFEST_DIR"), "/", $path), include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/", $path)));
)*
};
}
#[macro_export]
macro_rules! static_response {
( $name:expr ) => {
{
use ::rocket_include_static_resources::{StaticResponse, EtagIfNoneMatch};
StaticResponse::build(
EtagIfNoneMatch {
etag: None
},
None,
$name,
)
}
};
( $etag_if_none_match:expr, $name:expr ) => {
{
use ::rocket_include_static_resources::{StaticResponse, EtagIfNoneMatch};
StaticResponse::build(
$etag_if_none_match,
None,
$name,
)
}
};
}