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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/qt/clientmodel.h]
pub enum BlockSource {
NONE,
REINDEX,
DISK,
NETWORK
}
/*TODO
crate::bitflags!{
const CONNECTIONS_IN = 1 << 0,
const CONNECTIONS_OUT = 1 << 1,
const CONNECTIONS_ALL = CONNECTIONS_IN.bits | CONNECTIONS_OUT.bits
}
}
*/
/**
| Model for Bitcoin network client.
|
*/
#[Q_OBJECT]
pub struct ClientModel {
base: QObject,
/**
| caches for the best header: hash, number
| of blocks and block time
|
*/
cached_best_header_height: RefCell<Atomic<i32>>,
cached_best_header_time: RefCell<Atomic<i64>>,
cached_num_blocks: RefCell<Atomic<i32>>, // default = { -1 }
cached_tip_mutex: std::sync::Mutex<client_model::CachedTip>,
node: Rc<RefCell<dyn NodeInterface>>,
handler_show_progress: Box<dyn Handler>,
handler_notify_num_connections_changed: Box<dyn Handler>,
handler_notify_network_active_changed: Box<dyn Handler>,
handler_notify_alert_changed: Box<dyn Handler>,
handler_banned_list_changed: Box<dyn Handler>,
handler_notify_block_tip: Box<dyn Handler>,
handler_notify_header_tip: Box<dyn Handler>,
options_model: *mut OptionsModel,
peer_table_model: *mut PeerTableModel,
peer_table_sort_proxy: *mut PeerTableSortProxy, // default = { nullptr }
ban_table_model: *mut BanTableModel,
/**
| A thread to interact with m_node asynchronously
|
*/
thread: *const QThread,
}
pub mod client_model {
use super::*;
pub struct CachedTip {
cached_tip_blocks: u256,
}
}
impl ClientModel {
pub fn node(&self) -> Rc<RefCell<dyn NodeInterface>> {
todo!();
/*
return m_node;
*/
}
#[Q_SIGNAL]
pub fn num_connections_changed(&mut self, count: i32) {
todo!();
/*
*/
}
/**
| Fired when a message should be reported
| to the user
|
*/
pub fn message(&mut self,
title: &String,
message: &String,
style: u32) {
todo!();
/*
*/
}
/**
| Show progress dialog e.g. for verifychain
|
*/
pub fn show_progress(&mut self,
title: &String,
n_progress: i32) {
todo!();
/*
*/
}
}
//-------------------------------------------[.cpp/bitcoin/src/qt/clientmodel.cpp]
lazy_static!{
/*
static int64_t nLastHeaderTipUpdateNotification = 0;
static int64_t nLastBlockTipUpdateNotification = 0;
*/
}
impl Drop for ClientModel {
fn drop(&mut self) {
todo!();
/*
unsubscribeFromCoreSignals();
m_thread->quit();
m_thread->wait();
*/
}
}
impl ClientModel {
pub fn new(
node: Rc<RefCell<dyn NodeInterface>>,
options_model: *mut OptionsModel,
parent: *mut QObject) -> Self {
todo!();
/*
:
QObject(parent),
m_node(node),
optionsModel(_optionsModel),
peerTableModel(nullptr),
banTableModel(nullptr),
m_thread(new QThread(this))
cachedBestHeaderHeight = -1;
cachedBestHeaderTime = -1;
peerTableModel = new PeerTableModel(m_node, this);
m_peer_table_sort_proxy = new PeerTableSortProxy(this);
m_peer_table_sort_proxy->setSourceModel(peerTableModel);
banTableModel = new BanTableModel(m_node, this);
QTimer* timer = new QTimer;
timer->setInterval(MODEL_UPDATE_DELAY);
connect(timer, &QTimer::timeout, [this] {
// no locking required at this point
// the following calls will acquire the required lock
Q_EMIT mempoolSizeChanged(m_node.getMempoolSize(), m_node.getMempoolDynamicUsage());
Q_EMIT bytesChanged(m_node.getTotalBytesRecv(), m_node.getTotalBytesSent());
});
connect(m_thread, &QThread::finished, timer, &QObject::deleteLater);
connect(m_thread, &QThread::started, [timer] { timer->start(); });
// move timer to thread so that polling doesn't disturb main event loop
timer->moveToThread(m_thread);
m_thread->start();
QTimer::singleShot(0, timer, []() {
util::ThreadRename("qt-clientmodl");
});
subscribeToCoreSignals();
*/
}
/**
| Return number of connections, default
| is in- and outbound (total)
|
*/
pub fn get_num_connections(&self, flags: Option<u32>) -> i32 {
//let flags: u32 = flags.unwrap_or(NumConnections::CONNECTIONS_ALL);
todo!();
/*
ConnectionDirection connections = ConnectionDirection::None;
if(flags == NumConnections::CONNECTIONS_IN)
connections = ConnectionDirection::In;
else if (flags == NumConnections::CONNECTIONS_OUT)
connections = ConnectionDirection::Out;
else if (flags == NumConnections::CONNECTIONS_ALL)
connections = ConnectionDirection::Both;
return m_node.getNodeCount(connections);
*/
}
pub fn get_header_tip_height(&self) -> i32 {
todo!();
/*
if (cachedBestHeaderHeight == -1) {
// make sure we initially populate the cache via a cs_main lock
// otherwise we need to wait for a tip update
int height;
int64_t blockTime;
if (m_node.getHeaderTip(height, blockTime)) {
cachedBestHeaderHeight = height;
cachedBestHeaderTime = blockTime;
}
}
return cachedBestHeaderHeight;
*/
}
pub fn get_header_tip_time(&self) -> i64 {
todo!();
/*
if (cachedBestHeaderTime == -1) {
int height;
int64_t blockTime;
if (m_node.getHeaderTip(height, blockTime)) {
cachedBestHeaderHeight = height;
cachedBestHeaderTime = blockTime;
}
}
return cachedBestHeaderTime;
*/
}
pub fn get_num_blocks(&self) -> i32 {
todo!();
/*
if (m_cached_num_blocks == -1) {
m_cached_num_blocks = m_node.getNumBlocks();
}
return m_cached_num_blocks;
*/
}
pub fn get_best_block_hash(&mut self) -> u256 {
todo!();
/*
uint256 tip{
[&]() { LOCK(m_cached_tip_mutex); return m_cached_tip_blocks }()
};
if (!tip.IsNull()) {
return tip;
}
// Lock order must be: first `cs_main`, then `m_cached_tip_mutex`.
// The following will lock `cs_main` (and release it), so we must not
// own `m_cached_tip_mutex` here.
tip = m_node.getBestBlockHash();
LOCK(m_cached_tip_mutex);
// We checked that `m_cached_tip_blocks` is not null above, but then we
// released the mutex `m_cached_tip_mutex`, so it could have changed in the
// meantime. Thus, check again.
if (m_cached_tip_blocks.IsNull()) {
m_cached_tip_blocks = tip;
}
return m_cached_tip_blocks;
*/
}
#[Q_SLOT]
pub fn update_num_connections(&mut self, num_connections: i32) {
todo!();
/*
Q_EMIT numConnectionsChanged(numConnections);
*/
}
pub fn update_network_active(&mut self, network_active: bool) {
todo!();
/*
Q_EMIT networkActiveChanged(networkActive);
*/
}
pub fn update_alert(&mut self) {
todo!();
/*
Q_EMIT alertsChanged(getStatusBarWarnings());
*/
}
/**
| Returns enum BlockSource of the current
| importing/syncing state
|
*/
pub fn get_block_source(&self) -> BlockSource {
todo!();
/*
if (m_node.getReindex())
return BlockSource::REINDEX;
else if (m_node.getImporting())
return BlockSource::DISK;
else if (getNumConnections() > 0)
return BlockSource::NETWORK;
return BlockSource::NONE;
*/
}
/**
| Return warnings to be displayed in status
| bar
|
*/
pub fn get_status_bar_warnings(&self) -> String {
todo!();
/*
return QString::fromStdString(m_node.getWarnings().translated);
*/
}
pub fn get_options_model(&mut self) -> *mut OptionsModel {
todo!();
/*
return optionsModel;
*/
}
pub fn get_peer_table_model(&mut self) -> *mut PeerTableModel {
todo!();
/*
return peerTableModel;
*/
}
pub fn peer_table_sort_proxy(&mut self) -> *mut PeerTableSortProxy {
todo!();
/*
return m_peer_table_sort_proxy;
*/
}
pub fn get_ban_table_model(&mut self) -> *mut BanTableModel {
todo!();
/*
return banTableModel;
*/
}
pub fn format_full_version(&self) -> String {
todo!();
/*
return QString::fromStdString(FormatFullVersion());
*/
}
pub fn format_sub_version(&self) -> String {
todo!();
/*
return QString::fromStdString(strSubVersion);
*/
}
pub fn is_release_version(&self) -> bool {
todo!();
/*
return CLIENT_VERSION_IS_RELEASE;
*/
}
pub fn format_client_startup_time(&self) -> String {
todo!();
/*
return QDateTime::fromSecsSinceEpoch(GetStartupTime()).toString();
*/
}
pub fn data_dir(&self) -> String {
todo!();
/*
return typename gui_util::boostPathToQString(gArgs.GetDataDirNet());
*/
}
pub fn blocks_dir(&self) -> String {
todo!();
/*
return typename gui_util::boostPathToQString(gArgs.GetBlocksDirPath());
*/
}
pub fn update_banlist(&mut self) {
todo!();
/*
banTableModel->refresh();
*/
}
pub fn subscribe_to_core_signals(&mut self) {
todo!();
/*
// Connect signals to client
m_handler_show_progress = m_node.handleShowProgress(std::bind(ShowProgress, this, std::placeholders::_1, std::placeholders::_2));
m_handler_notify_num_connections_changed = m_node.handleNotifyNumConnectionsChanged(std::bind(NotifyNumConnectionsChanged, this, std::placeholders::_1));
m_handler_notify_network_active_changed = m_node.handleNotifyNetworkActiveChanged(std::bind(NotifyNetworkActiveChanged, this, std::placeholders::_1));
m_handler_notify_alert_changed = m_node.handleNotifyAlertChanged(std::bind(NotifyAlertChanged, this));
m_handler_banned_list_changed = m_node.handleBannedListChanged(std::bind(BannedListChanged, this));
m_handler_notify_block_tip = m_node.handleNotifyBlockTip(std::bind(BlockTipChanged, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, false));
m_handler_notify_header_tip = m_node.handleNotifyHeaderTip(std::bind(BlockTipChanged, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, true));
*/
}
pub fn unsubscribe_from_core_signals(&mut self) {
todo!();
/*
// Disconnect signals from client
m_handler_show_progress->disconnect();
m_handler_notify_num_connections_changed->disconnect();
m_handler_notify_network_active_changed->disconnect();
m_handler_notify_alert_changed->disconnect();
m_handler_banned_list_changed->disconnect();
m_handler_notify_block_tip->disconnect();
m_handler_notify_header_tip->disconnect();
*/
}
pub fn get_proxy_info(&self, ip_port: &mut String) -> bool {
todo!();
/*
proxyType ipv4, ipv6;
if (m_node.getProxy((Network) 1, ipv4) && m_node.getProxy((Network) 2, ipv6)) {
ip_port = ipv4.proxy.ToStringIPPort();
return true;
}
return false;
*/
}
}
/**
| Handlers for core signals
|
*/
pub fn show_progress(
clientmodel: *mut ClientModel,
title: &String,
n_progress: i32) {
todo!();
/*
// emits signal "showProgress"
bool invoked = QMetaObject::invokeMethod(clientmodel, "showProgress", QtQueuedConnection,
Q_ARG(QString, QString::fromStdString(title)),
Q_ARG(int, nProgress));
assert(invoked);
*/
}
pub fn notify_num_connections_changed(
clientmodel: *mut ClientModel,
new_num_connections: i32) {
todo!();
/*
// Too noisy: qDebug() << "NotifyNumConnectionsChanged: " + QString::number(newNumConnections);
bool invoked = QMetaObject::invokeMethod(clientmodel, "updateNumConnections", QtQueuedConnection,
Q_ARG(int, newNumConnections));
assert(invoked);
*/
}
pub fn notify_network_active_changed(
clientmodel: *mut ClientModel,
network_active: bool) {
todo!();
/*
bool invoked = QMetaObject::invokeMethod(clientmodel, "updateNetworkActive", QtQueuedConnection,
Q_ARG(bool, networkActive));
assert(invoked);
*/
}
pub fn notify_alert_changed(clientmodel: *mut ClientModel) {
todo!();
/*
qDebug() << "NotifyAlertChanged";
bool invoked = QMetaObject::invokeMethod(clientmodel, "updateAlert", QtQueuedConnection);
assert(invoked);
*/
}
pub fn banned_list_changed(clientmodel: *mut ClientModel) {
todo!();
/*
qDebug() << QString("%1: Requesting update for peer banlist").arg(__func__);
bool invoked = QMetaObject::invokeMethod(clientmodel, "updateBanlist", QtQueuedConnection);
assert(invoked);
*/
}
pub fn block_tip_changed(
clientmodel: *mut ClientModel,
sync_state: SynchronizationState,
tip: BlockTip,
verification_progress: f64,
header: bool) {
todo!();
/*
if (fHeader) {
// cache best headers time and height to reduce future cs_main locks
clientmodel->cachedBestHeaderHeight = tip.block_height;
clientmodel->cachedBestHeaderTime = tip.block_time;
} else {
clientmodel->m_cached_num_blocks = tip.block_height;
[&]() { LOCK(clientmodel->m_cached_tip_mutex); clientmodel->m_cached_tip_blocks = tip.block_hash; }()
;
}
// Throttle GUI notifications about (a) blocks during initial sync, and (b) both blocks and headers during reindex.
const bool throttle = (sync_state != SynchronizationState::POST_INIT && !fHeader) || sync_state == SynchronizationState::INIT_REINDEX;
const int64_t now = throttle ? GetTimeMillis() : 0;
int64_t& nLastUpdateNotification = fHeader ? nLastHeaderTipUpdateNotification : nLastBlockTipUpdateNotification;
if (throttle && now < nLastUpdateNotification + MODEL_UPDATE_DELAY) {
return;
}
bool invoked = QMetaObject::invokeMethod(clientmodel, "numBlocksChanged", QtQueuedConnection,
Q_ARG(int, tip.block_height),
Q_ARG(QDateTime, QDateTime::fromSecsSinceEpoch(tip.block_time)),
Q_ARG(double, verificationProgress),
Q_ARG(bool, fHeader),
Q_ARG(SynchronizationState, sync_state));
assert(invoked);
nLastUpdateNotification = now;
*/
}