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
use std::{borrow::Cow, sync::Arc};

use crate::KV;

pub trait Forward {
    fn get_persistent<K: AsRef<str>>(&self, key: K) -> Option<&str>;
    fn get_transient<K: AsRef<str>>(&self, key: K) -> Option<&str>;
    fn get_upstream<K: AsRef<str>>(&self, key: K) -> Option<&str>;

    fn get_all_persistents(&self) -> Option<&Vec<Arc<KV>>>;
    fn get_all_transients(&self) -> Option<&Vec<Arc<KV>>>;
    fn get_all_upstreams(&self) -> Option<&Vec<Arc<KV>>>;

    fn set_persistent<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V,
    );
    fn set_transient<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V,
    );
    fn set_upstream<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V,
    );

    fn strip_rpc_prefix_and_set_persistent<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V,
    );
    fn strip_rpc_prefix_and_set_upstream<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V,
    );

    fn strip_http_prefix_and_set_persistent<
        K: Into<Cow<'static, str>>,
        V: Into<Cow<'static, str>>,
    >(
        &mut self,
        key: K,
        value: V,
    );
    fn strip_http_prefix_and_set_upstream<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V,
    );

    fn del_persistent<K: AsRef<str>>(&mut self, key: K);
    fn del_transient<K: AsRef<str>>(&mut self, key: K);
    fn del_upstream<K: AsRef<str>>(&mut self, key: K);
}