getblocktemplate: longpolling support
This commit is contained in:
parent
f0fc81a083
commit
ff6a7af154
6 changed files with 82 additions and 1 deletions
|
@ -41,6 +41,8 @@ CCriticalSection cs_main;
|
||||||
map<uint256, CBlockIndex*> mapBlockIndex;
|
map<uint256, CBlockIndex*> mapBlockIndex;
|
||||||
CChain chainActive;
|
CChain chainActive;
|
||||||
int64_t nTimeBestReceived = 0;
|
int64_t nTimeBestReceived = 0;
|
||||||
|
CWaitableCriticalSection csBestBlock;
|
||||||
|
CConditionVariable cvBlockChange;
|
||||||
int nScriptCheckThreads = 0;
|
int nScriptCheckThreads = 0;
|
||||||
bool fImporting = false;
|
bool fImporting = false;
|
||||||
bool fReindex = false;
|
bool fReindex = false;
|
||||||
|
@ -1944,11 +1946,14 @@ void static UpdateTip(CBlockIndex *pindexNew) {
|
||||||
// New best block
|
// New best block
|
||||||
nTimeBestReceived = GetTime();
|
nTimeBestReceived = GetTime();
|
||||||
mempool.AddTransactionsUpdated(1);
|
mempool.AddTransactionsUpdated(1);
|
||||||
|
|
||||||
LogPrintf("UpdateTip: new best=%s height=%d log2_work=%.8g tx=%lu date=%s progress=%f\n",
|
LogPrintf("UpdateTip: new best=%s height=%d log2_work=%.8g tx=%lu date=%s progress=%f\n",
|
||||||
chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), log(chainActive.Tip()->nChainWork.getdouble())/log(2.0), (unsigned long)chainActive.Tip()->nChainTx,
|
chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), log(chainActive.Tip()->nChainWork.getdouble())/log(2.0), (unsigned long)chainActive.Tip()->nChainTx,
|
||||||
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()),
|
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()),
|
||||||
Checkpoints::GuessVerificationProgress(chainActive.Tip()));
|
Checkpoints::GuessVerificationProgress(chainActive.Tip()));
|
||||||
|
|
||||||
|
cvBlockChange.notify_all();
|
||||||
|
|
||||||
// Check the version of the last 100 blocks to see if we need to upgrade:
|
// Check the version of the last 100 blocks to see if we need to upgrade:
|
||||||
if (!fIsInitialDownload)
|
if (!fIsInitialDownload)
|
||||||
{
|
{
|
||||||
|
|
|
@ -87,6 +87,8 @@ extern uint64_t nLastBlockTx;
|
||||||
extern uint64_t nLastBlockSize;
|
extern uint64_t nLastBlockSize;
|
||||||
extern const std::string strMessageMagic;
|
extern const std::string strMessageMagic;
|
||||||
extern int64_t nTimeBestReceived;
|
extern int64_t nTimeBestReceived;
|
||||||
|
extern CWaitableCriticalSection csBestBlock;
|
||||||
|
extern CConditionVariable cvBlockChange;
|
||||||
extern bool fImporting;
|
extern bool fImporting;
|
||||||
extern bool fReindex;
|
extern bool fReindex;
|
||||||
extern bool fBenchmark;
|
extern bool fBenchmark;
|
||||||
|
|
|
@ -324,6 +324,7 @@ Value getblocktemplate(const Array& params, bool fHelp)
|
||||||
);
|
);
|
||||||
|
|
||||||
std::string strMode = "template";
|
std::string strMode = "template";
|
||||||
|
Value lpval = Value::null;
|
||||||
if (params.size() > 0)
|
if (params.size() > 0)
|
||||||
{
|
{
|
||||||
const Object& oparam = params[0].get_obj();
|
const Object& oparam = params[0].get_obj();
|
||||||
|
@ -336,6 +337,7 @@ Value getblocktemplate(const Array& params, bool fHelp)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid mode");
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid mode");
|
||||||
|
lpval = find_value(oparam, "longpollid");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strMode != "template")
|
if (strMode != "template")
|
||||||
|
@ -347,8 +349,63 @@ Value getblocktemplate(const Array& params, bool fHelp)
|
||||||
if (IsInitialBlockDownload())
|
if (IsInitialBlockDownload())
|
||||||
throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Bitcoin is downloading blocks...");
|
throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Bitcoin is downloading blocks...");
|
||||||
|
|
||||||
// Update block
|
|
||||||
static unsigned int nTransactionsUpdatedLast;
|
static unsigned int nTransactionsUpdatedLast;
|
||||||
|
|
||||||
|
if (lpval.type() != null_type)
|
||||||
|
{
|
||||||
|
// Wait to respond until either the best block changes, OR a minute has passed and there are more transactions
|
||||||
|
uint256 hashWatchedChain;
|
||||||
|
boost::system_time checktxtime;
|
||||||
|
unsigned int nTransactionsUpdatedLastLP;
|
||||||
|
|
||||||
|
if (lpval.type() == str_type)
|
||||||
|
{
|
||||||
|
// Format: <hashBestChain><nTransactionsUpdatedLast>
|
||||||
|
std::string lpstr = lpval.get_str();
|
||||||
|
|
||||||
|
hashWatchedChain.SetHex(lpstr.substr(0, 64));
|
||||||
|
nTransactionsUpdatedLastLP = atoi64(lpstr.substr(64));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// NOTE: Spec does not specify behaviour for non-string longpollid, but this makes testing easier
|
||||||
|
hashWatchedChain = chainActive.Tip()->GetBlockHash();
|
||||||
|
nTransactionsUpdatedLastLP = nTransactionsUpdatedLast;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Release the wallet and main lock while waiting
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
|
if(pwalletMain)
|
||||||
|
LEAVE_CRITICAL_SECTION(pwalletMain->cs_wallet);
|
||||||
|
#endif
|
||||||
|
LEAVE_CRITICAL_SECTION(cs_main);
|
||||||
|
{
|
||||||
|
checktxtime = boost::get_system_time() + boost::posix_time::minutes(1);
|
||||||
|
|
||||||
|
boost::unique_lock<boost::mutex> lock(csBestBlock);
|
||||||
|
while (chainActive.Tip()->GetBlockHash() == hashWatchedChain && IsRPCRunning())
|
||||||
|
{
|
||||||
|
if (!cvBlockChange.timed_wait(lock, checktxtime))
|
||||||
|
{
|
||||||
|
// Timeout: Check transactions for update
|
||||||
|
if (mempool.GetTransactionsUpdated() != nTransactionsUpdatedLastLP)
|
||||||
|
break;
|
||||||
|
checktxtime += boost::posix_time::seconds(10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ENTER_CRITICAL_SECTION(cs_main);
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
|
if(pwalletMain)
|
||||||
|
ENTER_CRITICAL_SECTION(pwalletMain->cs_wallet);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (!IsRPCRunning())
|
||||||
|
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Shutting down");
|
||||||
|
// TODO: Maybe recheck connections/IBD and (if something wrong) send an expires-immediately template to stop miners?
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update block
|
||||||
static CBlockIndex* pindexPrev;
|
static CBlockIndex* pindexPrev;
|
||||||
static int64_t nStart;
|
static int64_t nStart;
|
||||||
static CBlockTemplate* pblocktemplate;
|
static CBlockTemplate* pblocktemplate;
|
||||||
|
@ -436,6 +493,7 @@ Value getblocktemplate(const Array& params, bool fHelp)
|
||||||
result.push_back(Pair("transactions", transactions));
|
result.push_back(Pair("transactions", transactions));
|
||||||
result.push_back(Pair("coinbaseaux", aux));
|
result.push_back(Pair("coinbaseaux", aux));
|
||||||
result.push_back(Pair("coinbasevalue", (int64_t)pblock->vtx[0].vout[0].nValue));
|
result.push_back(Pair("coinbasevalue", (int64_t)pblock->vtx[0].vout[0].nValue));
|
||||||
|
result.push_back(Pair("longpollid", chainActive.Tip()->GetBlockHash().GetHex() + i64tostr(nTransactionsUpdatedLast)));
|
||||||
result.push_back(Pair("target", hashTarget.GetHex()));
|
result.push_back(Pair("target", hashTarget.GetHex()));
|
||||||
result.push_back(Pair("mintime", (int64_t)pindexPrev->GetMedianTimePast()+1));
|
result.push_back(Pair("mintime", (int64_t)pindexPrev->GetMedianTimePast()+1));
|
||||||
result.push_back(Pair("mutable", aMutable));
|
result.push_back(Pair("mutable", aMutable));
|
||||||
|
|
|
@ -32,6 +32,7 @@ using namespace std;
|
||||||
|
|
||||||
static std::string strRPCUserColonPass;
|
static std::string strRPCUserColonPass;
|
||||||
|
|
||||||
|
static bool fRPCRunning = false;
|
||||||
// These are created by StartRPCThreads, destroyed in StopRPCThreads
|
// These are created by StartRPCThreads, destroyed in StopRPCThreads
|
||||||
static asio::io_service* rpc_io_service = NULL;
|
static asio::io_service* rpc_io_service = NULL;
|
||||||
static map<string, boost::shared_ptr<deadline_timer> > deadlineTimers;
|
static map<string, boost::shared_ptr<deadline_timer> > deadlineTimers;
|
||||||
|
@ -659,6 +660,7 @@ void StartRPCThreads()
|
||||||
rpc_worker_group = new boost::thread_group();
|
rpc_worker_group = new boost::thread_group();
|
||||||
for (int i = 0; i < GetArg("-rpcthreads", 4); i++)
|
for (int i = 0; i < GetArg("-rpcthreads", 4); i++)
|
||||||
rpc_worker_group->create_thread(boost::bind(&asio::io_service::run, rpc_io_service));
|
rpc_worker_group->create_thread(boost::bind(&asio::io_service::run, rpc_io_service));
|
||||||
|
fRPCRunning = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartDummyRPCThread()
|
void StartDummyRPCThread()
|
||||||
|
@ -671,12 +673,15 @@ void StartDummyRPCThread()
|
||||||
rpc_dummy_work = new asio::io_service::work(*rpc_io_service);
|
rpc_dummy_work = new asio::io_service::work(*rpc_io_service);
|
||||||
rpc_worker_group = new boost::thread_group();
|
rpc_worker_group = new boost::thread_group();
|
||||||
rpc_worker_group->create_thread(boost::bind(&asio::io_service::run, rpc_io_service));
|
rpc_worker_group->create_thread(boost::bind(&asio::io_service::run, rpc_io_service));
|
||||||
|
fRPCRunning = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void StopRPCThreads()
|
void StopRPCThreads()
|
||||||
{
|
{
|
||||||
if (rpc_io_service == NULL) return;
|
if (rpc_io_service == NULL) return;
|
||||||
|
// Set this to false first, so that longpolling loops will exit when woken up
|
||||||
|
fRPCRunning = false;
|
||||||
|
|
||||||
// First, cancel all timers and acceptors
|
// First, cancel all timers and acceptors
|
||||||
// This is not done automatically by ->stop(), and in some cases the destructor of
|
// This is not done automatically by ->stop(), and in some cases the destructor of
|
||||||
|
@ -698,6 +703,7 @@ void StopRPCThreads()
|
||||||
deadlineTimers.clear();
|
deadlineTimers.clear();
|
||||||
|
|
||||||
rpc_io_service->stop();
|
rpc_io_service->stop();
|
||||||
|
cvBlockChange.notify_all();
|
||||||
if (rpc_worker_group != NULL)
|
if (rpc_worker_group != NULL)
|
||||||
rpc_worker_group->join_all();
|
rpc_worker_group->join_all();
|
||||||
delete rpc_dummy_work; rpc_dummy_work = NULL;
|
delete rpc_dummy_work; rpc_dummy_work = NULL;
|
||||||
|
@ -706,6 +712,11 @@ void StopRPCThreads()
|
||||||
delete rpc_io_service; rpc_io_service = NULL;
|
delete rpc_io_service; rpc_io_service = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool IsRPCRunning()
|
||||||
|
{
|
||||||
|
return fRPCRunning;
|
||||||
|
}
|
||||||
|
|
||||||
void RPCRunHandler(const boost::system::error_code& err, boost::function<void(void)> func)
|
void RPCRunHandler(const boost::system::error_code& err, boost::function<void(void)> func)
|
||||||
{
|
{
|
||||||
if (!err)
|
if (!err)
|
||||||
|
|
|
@ -40,6 +40,8 @@ void StartRPCThreads();
|
||||||
void StartDummyRPCThread();
|
void StartDummyRPCThread();
|
||||||
/* Stop RPC threads */
|
/* Stop RPC threads */
|
||||||
void StopRPCThreads();
|
void StopRPCThreads();
|
||||||
|
/* Query whether RPC is running */
|
||||||
|
bool IsRPCRunning();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Type-check arguments; throws JSONRPCError if wrong type given. Does not check that
|
Type-check arguments; throws JSONRPCError if wrong type given. Does not check that
|
||||||
|
|
|
@ -84,6 +84,9 @@ typedef AnnotatedMixin<boost::recursive_mutex> CCriticalSection;
|
||||||
/** Wrapped boost mutex: supports waiting but not recursive locking */
|
/** Wrapped boost mutex: supports waiting but not recursive locking */
|
||||||
typedef AnnotatedMixin<boost::mutex> CWaitableCriticalSection;
|
typedef AnnotatedMixin<boost::mutex> CWaitableCriticalSection;
|
||||||
|
|
||||||
|
/** Just a typedef for boost::condition_variable, can be wrapped later if desired */
|
||||||
|
typedef boost::condition_variable CConditionVariable;
|
||||||
|
|
||||||
#ifdef DEBUG_LOCKORDER
|
#ifdef DEBUG_LOCKORDER
|
||||||
void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false);
|
void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false);
|
||||||
void LeaveCritical();
|
void LeaveCritical();
|
||||||
|
|
Loading…
Add table
Reference in a new issue