d946f21bd9
* Split CActiveMasternode into CActiveMasternodeInfo and CLegacyActiveMasternodeManager * Use CKeyID instead of CPubKey whenever possible in masternode code * Rename activeMasternode to activeMasternodeInfo and make it a struct * Rename pubKeyIDXXX to keyIDXXX * Bump SERIALIZATION_VERSION_STRING * Fix build error after rebase * Fix compilation warning/error with clang
87 lines
2.2 KiB
C++
87 lines
2.2 KiB
C++
// Copyright (c) 2014-2017 The Dash Core developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef ACTIVEMASTERNODE_H
|
|
#define ACTIVEMASTERNODE_H
|
|
|
|
#include "chainparams.h"
|
|
#include "key.h"
|
|
#include "net.h"
|
|
#include "primitives/transaction.h"
|
|
|
|
struct CActiveMasternodeInfo;
|
|
class CActiveLegacyMasternodeManager;
|
|
|
|
static const int ACTIVE_MASTERNODE_INITIAL = 0; // initial state
|
|
static const int ACTIVE_MASTERNODE_SYNC_IN_PROCESS = 1;
|
|
static const int ACTIVE_MASTERNODE_INPUT_TOO_NEW = 2;
|
|
static const int ACTIVE_MASTERNODE_NOT_CAPABLE = 3;
|
|
static const int ACTIVE_MASTERNODE_STARTED = 4;
|
|
|
|
extern CActiveMasternodeInfo activeMasternodeInfo;
|
|
extern CActiveLegacyMasternodeManager legacyActiveMasternodeManager;
|
|
|
|
struct CActiveMasternodeInfo {
|
|
// Keys for the active Masternode
|
|
CKeyID keyIDMasternode;
|
|
CKey keyMasternode;
|
|
|
|
// Initialized while registering Masternode
|
|
COutPoint outpoint;
|
|
CService service;
|
|
};
|
|
|
|
// Responsible for activating the Masternode and pinging the network
|
|
class CActiveLegacyMasternodeManager
|
|
{
|
|
public:
|
|
enum masternode_type_enum_t {
|
|
MASTERNODE_UNKNOWN = 0,
|
|
MASTERNODE_REMOTE = 1
|
|
};
|
|
|
|
private:
|
|
// critical section to protect the inner data structures
|
|
mutable CCriticalSection cs;
|
|
|
|
masternode_type_enum_t eType;
|
|
|
|
bool fPingerEnabled;
|
|
|
|
/// Ping Masternode
|
|
bool SendMasternodePing(CConnman& connman);
|
|
|
|
// sentinel ping data
|
|
int64_t nSentinelPingTime;
|
|
uint32_t nSentinelVersion;
|
|
|
|
public:
|
|
int nState; // should be one of ACTIVE_MASTERNODE_XXXX
|
|
std::string strNotCapableReason;
|
|
|
|
|
|
CActiveLegacyMasternodeManager()
|
|
: eType(MASTERNODE_UNKNOWN),
|
|
fPingerEnabled(false),
|
|
nState(ACTIVE_MASTERNODE_INITIAL)
|
|
{}
|
|
|
|
/// Manage state of active Masternode
|
|
void ManageState(CConnman& connman);
|
|
|
|
std::string GetStateString() const;
|
|
std::string GetStatus() const;
|
|
std::string GetTypeString() const;
|
|
|
|
bool UpdateSentinelPing(int version);
|
|
|
|
void DoMaintenance(CConnman &connman) { ManageState(connman); }
|
|
|
|
private:
|
|
void ManageStateInitial(CConnman& connman);
|
|
void ManageStateRemote();
|
|
};
|
|
|
|
#endif
|