This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plumb Entry notification into plugin manager (#30910)
Plumb entry notification into plugin manager
- Loading branch information
Tyera
authored
Mar 28, 2023
1 parent
1f420f2
commit 9323015
Showing
9 changed files
with
122 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/// Module responsible for notifying plugins about entries | ||
use { | ||
crate::geyser_plugin_manager::GeyserPluginManager, | ||
log::*, | ||
solana_entry::entry::Entry, | ||
solana_geyser_plugin_interface::geyser_plugin_interface::{ | ||
ReplicaEntryInfo, ReplicaEntryInfoVersions, | ||
}, | ||
solana_measure::measure::Measure, | ||
solana_metrics::*, | ||
solana_rpc::entry_notifier_interface::EntryNotifier, | ||
solana_sdk::clock::Slot, | ||
std::sync::{Arc, RwLock}, | ||
}; | ||
|
||
pub(crate) struct EntryNotifierImpl { | ||
plugin_manager: Arc<RwLock<GeyserPluginManager>>, | ||
} | ||
|
||
impl EntryNotifier for EntryNotifierImpl { | ||
fn notify_entry<'a>(&'a self, slot: Slot, index: usize, entry: &'a Entry) { | ||
let mut measure = Measure::start("geyser-plugin-notify_plugins_of_entry_info"); | ||
|
||
let plugin_manager = self.plugin_manager.read().unwrap(); | ||
if plugin_manager.plugins.is_empty() { | ||
return; | ||
} | ||
|
||
let entry_info = Self::build_replica_entry_info(slot, index, entry); | ||
|
||
for plugin in plugin_manager.plugins.iter() { | ||
if !plugin.entry_notifications_enabled() { | ||
continue; | ||
} | ||
match plugin.notify_entry(ReplicaEntryInfoVersions::V0_0_1(&entry_info)) { | ||
Err(err) => { | ||
error!( | ||
"Failed to notify entry, error: ({}) to plugin {}", | ||
err, | ||
plugin.name() | ||
) | ||
} | ||
Ok(_) => { | ||
trace!("Successfully notified entry to plugin {}", plugin.name()); | ||
} | ||
} | ||
} | ||
measure.stop(); | ||
inc_new_counter_debug!( | ||
"geyser-plugin-notify_plugins_of_entry_info-us", | ||
measure.as_us() as usize, | ||
10000, | ||
10000 | ||
); | ||
} | ||
} | ||
|
||
impl EntryNotifierImpl { | ||
pub fn new(plugin_manager: Arc<RwLock<GeyserPluginManager>>) -> Self { | ||
Self { plugin_manager } | ||
} | ||
|
||
fn build_replica_entry_info( | ||
slot: Slot, | ||
index: usize, | ||
entry: &'_ Entry, | ||
) -> ReplicaEntryInfo<'_> { | ||
ReplicaEntryInfo { | ||
slot, | ||
index, | ||
num_hashes: entry.num_hashes, | ||
hash: entry.hash.as_ref(), | ||
executed_transaction_count: entry.transactions.len() as u64, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
use { | ||
solana_entry::entry::Entry, | ||
solana_sdk::clock::Slot, | ||
std::sync::{Arc, RwLock}, | ||
}; | ||
|
||
pub trait EntryNotifier { | ||
fn notify_entry(&self, slot: Slot, index: usize, entry: &Entry); | ||
} | ||
|
||
pub type EntryNotifierLock = Arc<RwLock<dyn EntryNotifier + Sync + Send>>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters