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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
// This file is part of Parity Ethereum.

// Parity Ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Parity Ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Parity Ethereum.  If not, see <http://www.gnu.org/licenses/>.

//! Address Book Store

use std::{
    collections::HashMap,
    fmt, fs, hash, ops,
    path::{Path, PathBuf},
};

use cfxkey::Address;
use log::{trace, warn};

use crate::AccountMeta;

/// Disk-backed map from Address to String. Uses JSON.
pub struct AddressBook {
    cache: DiskMap<Address, AccountMeta>,
}

impl AddressBook {
    /// Creates new address book at given directory.
    pub fn new(path: &Path) -> Self {
        let mut r = AddressBook {
            cache: DiskMap::new(path, "address_book.json"),
        };
        r.cache.revert(AccountMeta::read);
        r
    }

    /// Creates transient address book (no changes are saved to disk).
    pub fn transient() -> Self {
        AddressBook {
            cache: DiskMap::transient(),
        }
    }

    /// Get the address book.
    pub fn get(&self) -> HashMap<Address, AccountMeta> { self.cache.clone() }

    fn save(&self) { self.cache.save(AccountMeta::write) }

    /// Sets new name for given address.
    pub fn set_name(&mut self, a: Address, name: String) {
        {
            let x = self.cache.entry(a).or_insert_with(|| AccountMeta {
                name: Default::default(),
                meta: "{}".to_owned(),
                uuid: None,
            });
            x.name = name;
        }
        self.save();
    }

    /// Sets new meta for given address.
    pub fn set_meta(&mut self, a: Address, meta: String) {
        {
            let x = self.cache.entry(a).or_insert_with(|| AccountMeta {
                name: "Anonymous".to_owned(),
                meta: Default::default(),
                uuid: None,
            });
            x.meta = meta;
        }
        self.save();
    }

    /// Removes an entry
    pub fn remove(&mut self, a: Address) {
        self.cache.remove(&a);
        self.save();
    }
}

/// Disk-serializable HashMap
#[derive(Debug)]
struct DiskMap<K: hash::Hash + Eq, V> {
    path: PathBuf,
    cache: HashMap<K, V>,
    transient: bool,
}

impl<K: hash::Hash + Eq, V> ops::Deref for DiskMap<K, V> {
    type Target = HashMap<K, V>;

    fn deref(&self) -> &Self::Target { &self.cache }
}

impl<K: hash::Hash + Eq, V> ops::DerefMut for DiskMap<K, V> {
    fn deref_mut(&mut self) -> &mut Self::Target { &mut self.cache }
}

impl<K: hash::Hash + Eq, V> DiskMap<K, V> {
    pub fn new(path: &Path, file_name: &str) -> Self {
        let mut path = path.to_owned();
        path.push(file_name);
        trace!(target: "diskmap", "path={:?}", path);
        DiskMap {
            path,
            cache: HashMap::new(),
            transient: false,
        }
    }

    pub fn transient() -> Self {
        let mut map = DiskMap::new(&PathBuf::new(), "diskmap.json");
        map.transient = true;
        map
    }

    fn revert<F, E>(&mut self, read: F)
    where
        F: Fn(fs::File) -> Result<HashMap<K, V>, E>,
        E: fmt::Display,
    {
        if self.transient {
            return;
        }
        trace!(target: "diskmap", "revert {:?}", self.path);
        let _ = fs::File::open(self.path.clone())
			.map_err(|e| trace!(target: "diskmap", "Couldn't open disk map: {}", e))
			.and_then(|f| read(f).map_err(|e| warn!(target: "diskmap", "Couldn't read disk map at: {:?} {}", self.path, e)))
			.and_then(|m| {
				self.cache = m;
				Ok(())
			});
    }

    fn save<F, E>(&self, write: F)
    where
        F: Fn(&HashMap<K, V>, &mut fs::File) -> Result<(), E>,
        E: fmt::Display,
    {
        if self.transient {
            return;
        }
        trace!(target: "diskmap", "save {:?}", self.path);
        let _ = fs::File::create(self.path.clone())
			.map_err(|e| warn!(target: "diskmap", "Couldn't open disk map for writing at: {:?} {}", self.path, e))
			.and_then(|mut f| {
				write(&self.cache, &mut f).map_err(|e| warn!(target: "diskmap", "Couldn't write to disk map at: {:?} {}", self.path, e))
			});
    }
}

#[cfg(test)]
mod tests {
    use super::{Address, AddressBook};
    use crate::account_data::AccountMeta;
    use std::collections::HashMap;
    use tempdir::TempDir;

    #[test]
    fn should_save_and_reload_address_book() {
        let tempdir = TempDir::new("").unwrap();
        let mut b = AddressBook::new(tempdir.path());
        b.set_name(Address::from_low_u64_be(1), "One".to_owned());
        b.set_meta(Address::from_low_u64_be(1), "{1:1}".to_owned());
        let b = AddressBook::new(tempdir.path());
        assert_eq!(
            b.get(),
            vec![(
                Address::from_low_u64_be(1),
                AccountMeta {
                    name: "One".to_owned(),
                    meta: "{1:1}".to_owned(),
                    uuid: None
                }
            )]
            .into_iter()
            .collect::<HashMap<_, _>>()
        );
    }

    #[test]
    fn should_remove_address() {
        let tempdir = TempDir::new("").unwrap();
        let mut b = AddressBook::new(tempdir.path());

        b.set_name(Address::from_low_u64_be(1), "One".to_owned());
        b.set_name(Address::from_low_u64_be(2), "Two".to_owned());
        b.set_name(Address::from_low_u64_be(3), "Three".to_owned());
        b.remove(Address::from_low_u64_be(2));

        let b = AddressBook::new(tempdir.path());
        assert_eq!(
            b.get(),
            vec![
                (
                    Address::from_low_u64_be(1),
                    AccountMeta {
                        name: "One".to_owned(),
                        meta: "{}".to_owned(),
                        uuid: None
                    }
                ),
                (
                    Address::from_low_u64_be(3),
                    AccountMeta {
                        name: "Three".to_owned(),
                        meta: "{}".to_owned(),
                        uuid: None
                    }
                ),
            ]
            .into_iter()
            .collect::<HashMap<_, _>>()
        );
    }
}