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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
use action::{Action, ActionWrapper, AgentReduceFn};
use agent::chain_store::ChainStore;
use context::Context;
use holochain_cas_implementations::cas::file::FilesystemStorage;
use holochain_core_types::{
cas::{
content::{Address, AddressableContent, Content},
storage::ContentAddressableStorage,
},
chain_header::ChainHeader,
entry::Entry,
error::HolochainError,
json::ToJson,
keys::Keys,
signature::Signature,
time::Iso8601,
};
use serde_json;
use std::{collections::HashMap, sync::Arc};
#[derive(Clone, Debug, PartialEq)]
pub struct AgentState {
keys: Option<Keys>,
actions: HashMap<ActionWrapper, ActionResponse>,
chain: ChainStore<FilesystemStorage>,
top_chain_header: Option<ChainHeader>,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct AgentStateSnapshot {
top_chain_header: ChainHeader,
}
impl AgentStateSnapshot {
pub fn top_chain_header(&self) -> &ChainHeader {
&self.top_chain_header
}
}
impl AgentState {
pub fn new(chain: ChainStore<FilesystemStorage>) -> AgentState {
AgentState {
keys: None,
actions: HashMap::new(),
chain,
top_chain_header: None,
}
}
pub fn new_with_top_chain_header(
chain: ChainStore<FilesystemStorage>,
chain_header: ChainHeader,
) -> AgentState {
AgentState {
keys: None,
actions: HashMap::new(),
chain,
top_chain_header: Some(chain_header),
}
}
pub fn keys(&self) -> Option<Keys> {
self.keys.clone()
}
pub fn actions(&self) -> HashMap<ActionWrapper, ActionResponse> {
self.actions.clone()
}
pub fn chain(&self) -> ChainStore<FilesystemStorage> {
self.chain.clone()
}
pub fn top_chain_header(&self) -> Option<ChainHeader> {
self.top_chain_header.clone()
}
}
impl AgentStateSnapshot {
pub fn new(chain_header: ChainHeader) -> AgentStateSnapshot {
AgentStateSnapshot {
top_chain_header: chain_header,
}
}
pub fn from_json_str(header_str: &str) -> serde_json::Result<Self> {
serde_json::from_str(header_str)
}
}
impl ToJson for AgentStateSnapshot {
fn to_json(&self) -> Result<String, HolochainError> {
Ok(serde_json::to_string(self)?)
}
}
impl AddressableContent for AgentStateSnapshot {
fn content(&self) -> Content {
self.to_json()
.expect("could not Jsonify ChainHeader as Content")
}
fn from_content(content: &Content) -> Self {
AgentStateSnapshot::from_json_str(content)
.expect("could not read Json as valid ChainHeader Content")
}
fn address(&self) -> Address {
Address::from("AgentState")
}
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub enum ActionResponse {
Commit(Result<Address, HolochainError>),
GetEntry(Option<Entry>),
GetLinks(Result<Vec<Address>, HolochainError>),
LinkEntries(Result<Entry, HolochainError>),
}
impl ToJson for ActionResponse {
fn to_json(&self) -> Result<String, HolochainError> {
match self {
ActionResponse::Commit(result) => match result {
Ok(entry_address) => Ok(format!("{{\"address\":\"{}\"}}", entry_address)),
Err(err) => Ok((*err).to_json()?),
},
ActionResponse::GetEntry(result) => match result {
Some(entry) => Ok(entry.to_json()?),
None => Ok("".to_string()),
},
ActionResponse::GetLinks(result) => match result {
Ok(hash_list) => Ok(json!(hash_list).to_string()),
Err(err) => Ok((*err).to_json()?),
},
ActionResponse::LinkEntries(result) => match result {
Ok(entry) => Ok(format!("{{\"address\":\"{}\"}}", entry.address())),
Err(err) => Ok((*err).to_json()?),
},
}
}
}
pub fn create_new_chain_header(entry: &Entry, agent_state: &AgentState) -> ChainHeader {
ChainHeader::new(
&entry.entry_type(),
&entry.address(),
&Signature::from(""),
&agent_state
.top_chain_header
.clone()
.and_then(|chain_header| Some(chain_header.address())),
&agent_state
.chain()
.iter_type(&agent_state.top_chain_header, &entry.entry_type())
.nth(0)
.and_then(|chain_header| Some(chain_header.address())),
&Iso8601::from(""),
)
}
fn reduce_commit_entry(
_context: Arc<Context>,
state: &mut AgentState,
action_wrapper: &ActionWrapper,
) {
let action = action_wrapper.action();
let entry = unwrap_to!(action => Action::Commit);
let chain_header = create_new_chain_header(&entry, state);
fn response(
state: &mut AgentState,
entry: &Entry,
chain_header: &ChainHeader,
) -> Result<Address, HolochainError> {
state.chain.content_storage().add(entry)?;
state.chain.content_storage().add(chain_header)?;
Ok(entry.address())
}
let result = response(state, &entry, &chain_header);
state.top_chain_header = Some(chain_header);
let con = _context.clone();
#[allow(unused_must_use)]
con.state().map(|global_state_lock| {
let persis_lock = _context.clone().persister.clone();
let persister = &mut *persis_lock.lock().unwrap();
persister.save(global_state_lock.clone());
});
state
.actions
.insert(action_wrapper.clone(), ActionResponse::Commit(result));
}
fn reduce_get_entry(
_context: Arc<Context>,
state: &mut AgentState,
action_wrapper: &ActionWrapper,
) {
let action = action_wrapper.action();
let address = unwrap_to!(action => Action::GetEntry);
let result = state
.chain()
.content_storage()
.fetch(&address)
.expect("could not fetch from CAS");
state.actions.insert(
action_wrapper.clone(),
ActionResponse::GetEntry(result.clone()),
);
}
fn resolve_reducer(action_wrapper: &ActionWrapper) -> Option<AgentReduceFn> {
match action_wrapper.action() {
Action::Commit(_) => Some(reduce_commit_entry),
Action::GetEntry(_) => Some(reduce_get_entry),
_ => None,
}
}
pub fn reduce(
context: Arc<Context>,
old_state: Arc<AgentState>,
action_wrapper: &ActionWrapper,
) -> Arc<AgentState> {
let handler = resolve_reducer(action_wrapper);
match handler {
Some(f) => {
let mut new_state: AgentState = (*old_state).clone();
f(context, &mut new_state, &action_wrapper);
Arc::new(new_state)
}
None => old_state,
}
}
#[cfg(test)]
pub mod tests {
extern crate tempfile;
use self::tempfile::tempdir;
use super::{
reduce_commit_entry, reduce_get_entry, ActionResponse, AgentState, AgentStateSnapshot,
};
use action::tests::{test_action_wrapper_commit, test_action_wrapper_get};
use agent::chain_store::{tests::test_chain_store, ChainStore};
use holochain_cas_implementations::cas::file::FilesystemStorage;
use holochain_core_types::{
cas::content::AddressableContent,
chain_header::test_chain_header,
entry::{test_entry, test_entry_address},
error::HolochainError,
json::ToJson,
};
use instance::tests::test_context;
use serde_json;
use std::{collections::HashMap, sync::Arc};
pub fn test_agent_state() -> AgentState {
AgentState::new(test_chain_store())
}
pub fn test_action_response_commit() -> ActionResponse {
ActionResponse::Commit(Ok(test_entry_address()))
}
pub fn test_action_response_get() -> ActionResponse {
ActionResponse::GetEntry(Some(test_entry()))
}
#[test]
fn agent_state_new() {
test_agent_state();
}
#[test]
fn agent_state_keys() {
assert_eq!(None, test_agent_state().keys());
}
#[test]
fn agent_state_actions() {
assert_eq!(HashMap::new(), test_agent_state().actions());
}
#[test]
fn test_reduce_commit_entry() {
let mut state = test_agent_state();
let action_wrapper = test_action_wrapper_commit();
reduce_commit_entry(test_context("bob"), &mut state, &action_wrapper);
assert_eq!(
state.actions().get(&action_wrapper),
Some(&test_action_response_commit()),
);
}
#[test]
fn test_reduce_get_entry() {
let mut state = test_agent_state();
let context = test_context("foo");
let aw1 = test_action_wrapper_get();
reduce_get_entry(Arc::clone(&context), &mut state, &aw1);
assert_eq!(
state.actions().get(&aw1),
Some(&ActionResponse::GetEntry(None)),
);
reduce_commit_entry(
Arc::clone(&context),
&mut state,
&test_action_wrapper_commit(),
);
let aw2 = test_action_wrapper_get();
reduce_get_entry(Arc::clone(&context), &mut state, &aw2);
assert_eq!(state.actions().get(&aw2), Some(&test_action_response_get()),);
}
#[test]
fn test_commit_response_to_json() {
assert_eq!(
format!("{{\"address\":\"{}\"}}", test_entry_address()),
ActionResponse::Commit(Ok(test_entry_address()))
.to_json()
.unwrap(),
);
assert_eq!(
"{\"error\":\"some error\"}",
ActionResponse::Commit(Err(HolochainError::new("some error")))
.to_json()
.unwrap(),
);
}
#[test]
fn test_get_response_to_json() {
assert_eq!(
"{\"value\":\"test entry value\",\"entry_type\":{\"App\":\"testEntryType\"}}",
ActionResponse::GetEntry(Some(test_entry().clone()))
.to_json()
.unwrap(),
);
assert_eq!("", ActionResponse::GetEntry(None).to_json().unwrap());
}
#[test]
fn test_get_links_response_to_json() {
assert_eq!(
format!("[\"{}\"]", test_entry_address()),
ActionResponse::GetLinks(Ok(vec![test_entry().address()]))
.to_json()
.unwrap(),
);
assert_eq!(
"{\"error\":\"some error\"}",
ActionResponse::GetLinks(Err(HolochainError::new("some error")))
.to_json()
.unwrap(),
);
}
#[test]
pub fn serialize_round_trip_agent_state() {
let header = test_chain_header();
let agent_snap = AgentStateSnapshot::new(header);
let json = serde_json::to_string(&agent_snap).unwrap();
let agent_from_json: AgentStateSnapshot = serde_json::from_str(&json).unwrap();
assert_eq!(agent_snap.address(), agent_from_json.address());
}
#[test]
fn test_link_entries_response_to_json() {
assert_eq!(
format!("{{\"address\":\"{}\"}}", test_entry_address()),
ActionResponse::LinkEntries(Ok(test_entry()))
.to_json()
.unwrap(),
);
assert_eq!(
"{\"error\":\"some error\"}",
ActionResponse::LinkEntries(Err(HolochainError::new("some error")))
.to_json()
.unwrap(),
);
}
}