e5afd54ce0
* Basic storage stub * New models for new node status api * Route handling * Mounting new routes * Missing selective commit * Moved network monitor related files to separate package * Starting to see some sqlx action * Schema updates * Log statement upon finished migration * Removed old diesel related imports * Converted mixnode cache initialisation into a fairing * Moved cache related functionalities to separate package Also defined staging there * Created run method for validator cache + removed unwrap * Removed old node-status-api types and left bunch of todo placeholders in their place * Fixed managing validatorcache * Status reports are starting to get constructed * Submitting some dummy results to the database * Removing duplicate code for generating reports * Removed statuses older than 48h * Initial attempt at trying to obtain reports for all active nodes * Removed duplicates from the full report * Grabbing uptime history * Updating historical uptimes of active nodes * Updated sqlx-data.json * Removed all placeholder foomp owner values * Changed Layer serde behaviour for easier usage * Extended validator api config * Initial (seems working !) integration with network monitor * Added database path configuration to config * Using ValidatorCache in NetworkMonitor * Flag indicating whether validator cache has been initialised * Introduced a locla-only route for reward script to perform daily chores * Flag to save config to a file * Moved spawning of receiving future to run method rather than new * Removed arguments that dont make sense to be configured via CLI * Removed dead code from config file * More dead code removal * Added validator API to CI * Corrected manifest-path arguments * Constructing network monitor by passing config * Combined validator API CI with the main CI file * Using query_as for NodeStatus * Checking if historical uptimes were already calculated on particular day * Making id field NOT NULL * More query_as! action * Updated sqlx-data.json * Removed unused chrono feature * Renamed the migration file * Changed default validator endpoint to point to local validator * Removing unnecessary clone * More appropriate naming * Removed dead code * Lock file updates * Updated network monitor address in contract code * Don't stage node status api if network monitor is disabled * cargo fmt * Updated all license notices to SPDX
83 lines
2.4 KiB
Rust
83 lines
2.4 KiB
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use std::pin::Pin;
|
|
use std::task::{Context, Poll, Waker};
|
|
use std::time::Duration;
|
|
use tokio::time::Instant;
|
|
use tokio_stream::Stream;
|
|
use tokio_util::time::{delay_queue, DelayQueue};
|
|
|
|
pub use tokio::time::error::Error as TimerError;
|
|
pub use tokio_util::time::delay_queue::Expired;
|
|
pub type QueueKey = delay_queue::Key;
|
|
|
|
/// A variant of tokio's `DelayQueue`, such that its `Stream` implementation will never return a 'None'.
|
|
pub struct NonExhaustiveDelayQueue<T> {
|
|
inner: DelayQueue<T>,
|
|
waker: Option<Waker>,
|
|
}
|
|
|
|
// more methods of underlying DelayQueue will get exposed as we need them
|
|
impl<T> NonExhaustiveDelayQueue<T> {
|
|
pub fn new() -> Self {
|
|
NonExhaustiveDelayQueue {
|
|
inner: DelayQueue::new(),
|
|
waker: None,
|
|
}
|
|
}
|
|
|
|
pub fn insert(&mut self, value: T, timeout: Duration) -> QueueKey {
|
|
let key = self.inner.insert(value, timeout);
|
|
if let Some(waker) = self.waker.take() {
|
|
// we were waiting for an item - wake the executor!
|
|
waker.wake()
|
|
}
|
|
key
|
|
}
|
|
|
|
pub fn insert_at(&mut self, value: T, when: Instant) -> QueueKey {
|
|
let key = self.inner.insert_at(value, when);
|
|
if let Some(waker) = self.waker.take() {
|
|
// we were waiting for an item - wake the executor!
|
|
waker.wake()
|
|
}
|
|
key
|
|
}
|
|
|
|
// TODO: it seems like this one can cause panic in very rare edge cases, however,
|
|
// I can't seem to be able to reproduce it at all.
|
|
pub fn remove(&mut self, key: &QueueKey) -> Expired<T> {
|
|
self.inner.remove(key)
|
|
}
|
|
}
|
|
|
|
impl<T> Default for NonExhaustiveDelayQueue<T> {
|
|
fn default() -> Self {
|
|
NonExhaustiveDelayQueue::new()
|
|
}
|
|
}
|
|
|
|
impl<T> Stream for NonExhaustiveDelayQueue<T> {
|
|
type Item = <DelayQueue<T> as Stream>::Item;
|
|
|
|
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
|
match Pin::new(&mut self.inner).poll_next(cx) {
|
|
Poll::Pending => Poll::Pending,
|
|
Poll::Ready(Some(item)) => Poll::Ready(Some(item)),
|
|
Poll::Ready(None) => {
|
|
// we'll need to keep the waker to notify the executor once we get new item
|
|
self.waker = Some(cx.waker().clone());
|
|
Poll::Pending
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// #[cfg(test)]
|
|
// mod tests {
|
|
// use super::*;
|
|
//
|
|
//
|
|
// }
|