forked from neo-project/neo-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStateStore.cs
179 lines (164 loc) · 6.25 KB
/
StateStore.cs
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
using Akka.Actor;
using Neo.IO;
using Neo.Ledger;
using Neo.Network.P2P.Payloads;
using Neo.Persistence;
using Neo.Plugins.MPT;
using Neo.Plugins.StateService.Network;
using Neo.Plugins.StateService.Verification;
using Neo.SmartContract;
using System;
using System.Collections.Generic;
using System.Threading;
namespace Neo.Plugins.StateService.Storage
{
class StateStore : UntypedActor
{
private readonly StatePlugin system;
private readonly IStore store;
private const int MaxCacheCount = 100;
private readonly Dictionary<uint, StateRoot> cache = new Dictionary<uint, StateRoot>();
private StateSnapshot currentSnapshot;
private StateSnapshot _state_snapshot;
public UInt256 CurrentLocalRootHash => currentSnapshot.CurrentLocalRootHash();
public uint? LocalRootIndex => currentSnapshot.CurrentLocalRootIndex();
public uint? ValidatedRootIndex => currentSnapshot.CurrentValidatedRootIndex();
private static StateStore singleton;
public static StateStore Singleton
{
get
{
while (singleton is null) Thread.Sleep(10);
return singleton;
}
}
public StateStore(StatePlugin system, string path)
{
if (singleton != null) throw new InvalidOperationException(nameof(StateStore));
this.system = system;
this.store = StatePlugin.System.LoadStore(path);
singleton = this;
StatePlugin.System.ActorSystem.EventStream.Subscribe(Self, typeof(Blockchain.RelayResult));
UpdateCurrentSnapshot();
}
public void Dispose()
{
store.Dispose();
}
public StateSnapshot GetSnapshot()
{
return new StateSnapshot(store);
}
public ISnapshot GetStoreSnapshot()
{
return store.GetSnapshot();
}
protected override void OnReceive(object message)
{
switch (message)
{
case StateRoot state_root:
OnNewStateRoot(state_root);
break;
case Blockchain.RelayResult rr:
if (rr.Result == VerifyResult.Succeed && rr.Inventory is ExtensiblePayload payload && payload.Category == StatePlugin.StatePayloadCategory)
OnStatePayload(payload);
break;
default:
break;
}
}
private void OnStatePayload(ExtensiblePayload payload)
{
if (payload.Data.Length == 0) return;
if ((MessageType)payload.Data[0] != MessageType.StateRoot) return;
StateRoot message;
try
{
message = payload.Data.AsSerializable<StateRoot>(1);
}
catch (FormatException)
{
return;
}
OnNewStateRoot(message);
}
private bool OnNewStateRoot(StateRoot state_root)
{
if (state_root?.Witness is null) return false;
if (ValidatedRootIndex != null && state_root.Index <= ValidatedRootIndex) return false;
if (LocalRootIndex is null) throw new InvalidOperationException(nameof(StateStore) + " could not get local root index");
if (LocalRootIndex < state_root.Index && state_root.Index < LocalRootIndex + MaxCacheCount)
{
cache.Add(state_root.Index, state_root);
return true;
}
using var state_snapshot = Singleton.GetSnapshot();
StateRoot local_root = state_snapshot.GetStateRoot(state_root.Index);
if (local_root is null || local_root.Witness != null) return false;
if (!state_root.Verify(StatePlugin.System.Settings, StatePlugin.System.StoreView)) return false;
if (local_root.RootHash != state_root.RootHash) return false;
state_snapshot.AddValidatedStateRoot(state_root);
state_snapshot.Commit();
UpdateCurrentSnapshot();
system.Verifier?.Tell(new VerificationService.ValidatedRootPersisted { Index = state_root.Index });
return true;
}
public void UpdateLocalStateRootSnapshot(uint height, List<DataCache.Trackable> change_set)
{
_state_snapshot = Singleton.GetSnapshot();
foreach (var item in change_set)
{
switch (item.State)
{
case TrackState.Added:
_state_snapshot.Trie.Put(item.Key, item.Item);
break;
case TrackState.Changed:
_state_snapshot.Trie.Put(item.Key, item.Item);
break;
case TrackState.Deleted:
_state_snapshot.Trie.Delete(item.Key);
break;
}
}
UInt256 root_hash = _state_snapshot.Trie.Root.Hash;
StateRoot state_root = new StateRoot
{
Version = StateRoot.CurrentVersion,
Index = height,
RootHash = root_hash,
Witness = null,
};
_state_snapshot.AddLocalStateRoot(state_root);
}
public void UpdateLocalStateRoot(uint height)
{
_state_snapshot?.Commit();
_state_snapshot = null;
UpdateCurrentSnapshot();
system.Verifier?.Tell(new VerificationService.BlockPersisted { Index = height });
CheckValidatedStateRoot(height);
}
private void CheckValidatedStateRoot(uint index)
{
if (cache.TryGetValue(index, out StateRoot state_root))
{
cache.Remove(index);
Self.Tell(state_root);
}
}
private void UpdateCurrentSnapshot()
{
Interlocked.Exchange(ref currentSnapshot, GetSnapshot())?.Dispose();
}
protected override void PostStop()
{
base.PostStop();
}
public static Props Props(StatePlugin system, string path)
{
return Akka.Actor.Props.Create(() => new StateStore(system, path));
}
}
}