protocol_block.rs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* This file is part of DarkFi (https://dark.fi)
  2. *
  3. * Copyright (C) 2020-2023 Dyne.org foundation
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. use async_std::sync::Arc;
  19. use async_trait::async_trait;
  20. use log::debug;
  21. use smol::Executor;
  22. use url::Url;
  23. use crate::{
  24. blockchain::BlockInfo,
  25. impl_p2p_message,
  26. net::{
  27. ChannelPtr, Message, MessageSubscription, P2pPtr, ProtocolBase, ProtocolBasePtr,
  28. ProtocolJobsManager, ProtocolJobsManagerPtr,
  29. },
  30. validator::ValidatorPtr,
  31. Result,
  32. };
  33. impl_p2p_message!(BlockInfo, "block");
  34. pub struct ProtocolBlock {
  35. block_sub: MessageSubscription<BlockInfo>,
  36. jobsman: ProtocolJobsManagerPtr,
  37. validator: ValidatorPtr,
  38. p2p: P2pPtr,
  39. channel_address: Url,
  40. }
  41. impl ProtocolBlock {
  42. pub async fn init(
  43. channel: ChannelPtr,
  44. validator: ValidatorPtr,
  45. p2p: P2pPtr,
  46. ) -> Result<ProtocolBasePtr> {
  47. debug!(
  48. target: "validator::protocol_block::init",
  49. "Adding ProtocolBlock to the protocol registry"
  50. );
  51. let msg_subsystem = channel.message_subsystem();
  52. msg_subsystem.add_dispatch::<BlockInfo>().await;
  53. let block_sub = channel.subscribe_msg::<BlockInfo>().await?;
  54. Ok(Arc::new(Self {
  55. block_sub,
  56. jobsman: ProtocolJobsManager::new("BlockProtocol", channel.clone()),
  57. validator,
  58. p2p,
  59. channel_address: channel.address().clone(),
  60. }))
  61. }
  62. async fn handle_receive_block(self: Arc<Self>) -> Result<()> {
  63. debug!(target: "consensus::protocol_block::handle_receive_block", "START");
  64. let exclude_list = vec![self.channel_address.clone()];
  65. loop {
  66. let block = match self.block_sub.receive().await {
  67. Ok(v) => v,
  68. Err(e) => {
  69. debug!(
  70. target: "validator::protocol_block::handle_receive_block",
  71. "recv fail: {}",
  72. e
  73. );
  74. continue
  75. }
  76. };
  77. // Check if node has finished syncing its blockchain
  78. if !self.validator.read().await.synced {
  79. debug!(
  80. target: "validator::protocol_block::handle_receive_block",
  81. "Node still syncing blockchain, skipping..."
  82. );
  83. continue
  84. }
  85. // TODO: consensus participants should skip this
  86. // as they already have the blocks added
  87. let block_copy = (*block).clone();
  88. match self.validator.write().await.append_block(&block_copy).await {
  89. Ok(()) => self.p2p.broadcast_with_exclude(&block_copy, &exclude_list).await,
  90. Err(e) => {
  91. debug!(
  92. target: "validator::protocol_block::handle_receive_block",
  93. "append_block fail: {}",
  94. e
  95. );
  96. }
  97. };
  98. }
  99. }
  100. }
  101. #[async_trait]
  102. impl ProtocolBase for ProtocolBlock {
  103. async fn start(self: Arc<Self>, executor: Arc<Executor<'_>>) -> Result<()> {
  104. debug!(target: "validator::protocol_block::start", "START");
  105. self.jobsman.clone().start(executor.clone());
  106. self.jobsman.clone().spawn(self.clone().handle_receive_block(), executor.clone()).await;
  107. debug!(target: "validator::protocol_block::start", "END");
  108. Ok(())
  109. }
  110. fn name(&self) -> &'static str {
  111. "ProtocolBlock"
  112. }
  113. }