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
//! Types for agents chain activity

use holo_hash::AgentPubKey;
use holo_hash::HeaderHash;
use holochain_serialized_bytes::prelude::*;
use holochain_zome_types::prelude::*;

#[derive(Clone, Debug, PartialEq, serde::Serialize, serde::Deserialize, SerializedBytes)]
/// An agents chain elements returned from a agent_activity_query
pub struct AgentActivityResponse<T = SignedHeaderHashed> {
    /// The agent this activity is for
    pub agent: AgentPubKey,
    /// Valid headers on this chain.
    pub valid_activity: ChainItems<T>,
    /// Headers that were rejected by the agent activity
    /// authority and therefor invalidate the chain.
    pub rejected_activity: ChainItems<T>,
    /// The status of this chain.
    pub status: ChainStatus,
    /// The highest chain header that has
    /// been observed by this authority.
    pub highest_observed: Option<HighestObserved>,
}

holochain_serial!(AgentActivityResponse<HeaderHash>);

impl<A> AgentActivityResponse<A> {
    /// Convert an empty response to a different type.
    pub fn from_empty<B>(other: AgentActivityResponse<B>) -> Self {
        let convert_activity = |items: &ChainItems<B>| match items {
            ChainItems::Full(_) => ChainItems::Full(Vec::with_capacity(0)),
            ChainItems::Hashes(_) => ChainItems::Hashes(Vec::with_capacity(0)),
            ChainItems::NotRequested => ChainItems::NotRequested,
        };
        AgentActivityResponse {
            agent: other.agent,
            valid_activity: convert_activity(&other.valid_activity),
            rejected_activity: convert_activity(&other.rejected_activity),
            status: ChainStatus::Empty,
            highest_observed: other.highest_observed,
        }
    }

    /// Convert an status only response to a different type.
    pub fn status_only<B>(other: AgentActivityResponse<B>) -> Self {
        AgentActivityResponse {
            agent: other.agent,
            valid_activity: ChainItems::NotRequested,
            rejected_activity: ChainItems::NotRequested,
            status: ChainStatus::Empty,
            highest_observed: other.highest_observed,
        }
    }

    /// Convert an hashes only response to a different type.
    pub fn hashes_only<B>(other: AgentActivityResponse<B>) -> Self {
        let convert_activity = |items: ChainItems<B>| match items {
            ChainItems::Full(_) => ChainItems::Full(Vec::with_capacity(0)),
            ChainItems::Hashes(h) => ChainItems::Hashes(h),
            ChainItems::NotRequested => ChainItems::NotRequested,
        };
        AgentActivityResponse {
            agent: other.agent,
            valid_activity: convert_activity(other.valid_activity),
            rejected_activity: convert_activity(other.rejected_activity),
            status: other.status,
            highest_observed: other.highest_observed,
        }
    }
}

#[derive(Clone, Debug, PartialEq, serde::Serialize, serde::Deserialize, SerializedBytes)]
/// The type of agent activity returned in this request
pub enum ChainItems<T = SignedHeaderHashed> {
    /// The full headers
    Full(Vec<T>),
    /// Just the hashes
    Hashes(Vec<(u32, HeaderHash)>),
    /// Activity was not requested
    NotRequested,
}

impl From<AgentActivityResponse<Element>> for holochain_zome_types::query::AgentActivity {
    fn from(a: AgentActivityResponse<Element>) -> Self {
        let valid_activity = match a.valid_activity {
            ChainItems::Full(elements) => elements
                .into_iter()
                .map(|el| (el.header().header_seq(), el.header_address().clone()))
                .collect(),
            ChainItems::Hashes(h) => h,
            ChainItems::NotRequested => Vec::new(),
        };
        let rejected_activity = match a.rejected_activity {
            ChainItems::Full(elements) => elements
                .into_iter()
                .map(|el| (el.header().header_seq(), el.header_address().clone()))
                .collect(),
            ChainItems::Hashes(h) => h,
            ChainItems::NotRequested => Vec::new(),
        };
        Self {
            valid_activity,
            rejected_activity,
            status: a.status,
            highest_observed: a.highest_observed,
            warrants: Vec::with_capacity(0),
        }
    }
}