neobytes/src/governance-vote.h
Evan Duffield ad5d48dae4 Created nice interface for converting between:
- vote outcomes between string and int
- vote actions between string and int
2016-04-26 11:27:22 -07:00

128 lines
4.0 KiB
C++

// Copyright (c) 2014-2016 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 GOVERANCE_VOTE_H
#define GOVERANCE_VOTE_H
#include "main.h"
#include "sync.h"
#include "net.h"
#include "key.h"
#include "util.h"
#include "base58.h"
#include "masternode.h"
#include <boost/lexical_cast.hpp>
#include "init.h"
using namespace std;
class CBudgetVote;
#define VOTE_OUTCOME_NONE 0
#define VOTE_OUTCOME_YES 1
#define VOTE_OUTCOME_NO 2
#define VOTE_OUTCOME_ABSTAIN 3
// INTENTION OF MASTERNODES REGARDING ITEM
#define VOTE_ACTION_NONE 0 // SIGNAL VARIOUS THINGS TO HAPPEN:
#define VOTE_ACTION_FUNDING 1 // -- fund this object for it's stated amount
#define VOTE_ACTION_VALID 2 // -- this object checks out to sentinel
#define VOTE_ACTION_DELETE 3 // -- this object should be deleted from memory entirely
#define VOTE_ACTION_CLEAR_REGISTERS 4 // -- this object's registers should be cleared (stored elsewhere, e.g. dashdrive)
#define VOTE_ACTION_ENDORSED 5 // -- officially endorsed by the network somehow (delegation)
#define VOTE_ACTION_RELEASE_BOUNTY1 6 // -- release the first bounty associated with this
#define VOTE_ACTION_RELEASE_BOUNTY2 7 // -- second
#define VOTE_ACTION_RELEASE_BOUNTY3 8 // -- third
#define VOTE_ACTION_NOOP1 9 // FOR FURTHER EXPANSION
#define VOTE_ACTION_NOOP2 10 //
#define VOTE_ACTION_NOOP3 11 //
#define VOTE_ACTION_NOOP4 12 //
#define VOTE_ACTION_NOOP5 13 //
#define VOTE_ACTION_NOOP6 14 //
#define VOTE_ACTION_NOOP7 15 //
#define VOTE_ACTION_CUSTOM_START 16 // SENTINEL CUSTOM ACTIONS
#define VOTE_ACTION_CUSTOM_END 35 // 16-35
//
// CBudgetVote - Allow a masternode node to vote and broadcast throughout the network
//
class CBudgetVote
{
//# ----
public:
bool fValid; //if the vote is currently valid / counted
bool fSynced; //if we've sent this to our peers
int nVoteAction; // see VOTE_ACTIONS above
CTxIn vinMasternode;
uint256 nParentHash;
int nVoteOutcome; // see VOTE_OUTCOMES above
int64_t nTime;
std::vector<unsigned char> vchSig;
CBudgetVote();
CBudgetVote(CTxIn vinMasternodeIn, uint256 nParentHashIn, int nVoteActionIn, int nVoteOutcomeIn);
bool Sign(CKey& keyMasternode, CPubKey& pubKeyMasternode);
bool IsValid(bool fSignatureCheck);
void Relay();
std::string GetVoteString() {
std::string ret = "ERROR";
if(nVoteOutcome == VOTE_OUTCOME_NONE) ret = "NONE";
else if(nVoteOutcome == VOTE_OUTCOME_ABSTAIN) ret = "ABSTAIN";
else if(nVoteOutcome == VOTE_OUTCOME_YES) ret = "YES";
else if(nVoteOutcome == VOTE_OUTCOME_NO) ret = "NO";
return ret;
}
uint256 GetHash(){
CHashWriter ss(SER_GETHASH, PROTOCOL_VERSION);
ss << vinMasternode;
ss << nParentHash;
ss << nVoteAction;
ss << nVoteOutcome;
ss << nTime;
return ss.GetHash();
}
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
READWRITE(vinMasternode);
READWRITE(nParentHash);
READWRITE(nVoteOutcome);
READWRITE(nVoteAction);
READWRITE(nTime);
READWRITE(vchSig);
}
};
/**
* 12.1.1 - CGovernanceVoteManager
* -------------------------------
*
Class Structure:
// parent hash vote hash vote
std::map<uint256, std::map<uint256, CBudgetVote> > mapVotes;
GetVote(name, yes_no):
- caching function
- mark last accessed votes
- load serialized files from filesystem if needed
- calc answer
- return result
CacheUnused():
- Cache votes if lastused > 12h/24/48/etc
*/
#endif