-
Notifications
You must be signed in to change notification settings - Fork 31
/
Agent.cpp
100 lines (73 loc) · 2.67 KB
/
Agent.cpp
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
/*
Copyright (C) 2018-2019 SKALE Labs
This file is part of skale-consensus.
skale-consensus is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
skale-consensus 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with skale-consensus. If not, see <https://www.gnu.org/licenses/>.
@file Agent.cpp
@author Stan Kladko
@date 2018
*/
#include "Agent.h"
#include "SkaleCommon.h"
#include "Log.h"
#include "node/Node.h"
#include "chains/Schain.h"
#include "network/Sockets.h"
#include "crypto/ConsensusBLSSigShare.h"
#include <utils/Time.h>
void Agent::notifyAllConditionVariables() {
messageCond.notify_all();
for ( auto&& item : queueCond ) {
item.second->notify_all();
}
}
Schain* Agent::getSchain() const {
CHECK_STATE( sChain );
return sChain;
}
Agent::Agent( Schain& _sChain, bool _isServer, bool _dontRegister )
: isServer( _isServer ), sChain( &_sChain ) {
if ( _dontRegister )
return;
sChain->getNode()->registerAgent( this );
}
Agent::Agent() {} // empty constructor is used by tests}
ptr< Node > Agent::getNode() {
return getSchain()->getNode();
}
void Agent::waitOnGlobalStartBarrier() {
if ( isServer )
getSchain()->getNode()->waitOnGlobalServerStartBarrier( this );
else
getSchain()->getNode()->waitOnGlobalClientStartBarrier();
}
Agent::~Agent() {}
ptr< GlobalThreadRegistry > Agent::getThreadRegistry() {
return sChain->getNode()->getConsensusEngine()->getThreadRegistry();
}
void Agent::logConnectionRefused( ConnectionRefusedException& _e, schain_index _index ) {
auto logException = true;
auto currentTime = Time::getCurrentTimeMs();
LOCK( lastConnectionRefusedLogTimeLock );
if ( lastConnectionRefusedLogTime.find( _index ) != lastConnectionRefusedLogTime.end() ) {
auto time = lastConnectionRefusedLogTime[_index];
if ( ( currentTime - time ) > CONNECTION_REFUSED_LOG_INTERVAL_MS ) {
lastConnectionRefusedLogTime[_index] = currentTime;
} else {
logException = false;
}
} else {
lastConnectionRefusedLogTime[_index] = currentTime;
}
if ( logException ) {
SkaleException::logNested( ( const exception& ) _e );
}
}