Turn DB messages into struct from tuple

master
Edward Shen 2021-07-15 21:44:04 -04:00
parent 8556f37904
commit 54c8fe1cb3
Signed by: edward
GPG Key ID: 19182661E818369F
4 changed files with 40 additions and 19 deletions

4
src/cache/disk.rs vendored
View File

@ -24,7 +24,7 @@ use tracing::{debug, error, info, instrument, warn};
use crate::units::Bytes; use crate::units::Bytes;
use super::{Cache, CacheError, CacheKey, CacheStream, CallbackCache, ImageMetadata}; use super::{Cache, CacheEntry, CacheError, CacheKey, CacheStream, CallbackCache, ImageMetadata};
#[derive(Debug)] #[derive(Debug)]
pub struct DiskCache { pub struct DiskCache {
@ -386,7 +386,7 @@ impl CallbackCache for DiskCache {
key: CacheKey, key: CacheKey,
image: bytes::Bytes, image: bytes::Bytes,
metadata: ImageMetadata, metadata: ImageMetadata,
on_complete: Sender<(CacheKey, bytes::Bytes, ImageMetadata, u64)>, on_complete: Sender<CacheEntry>,
) -> Result<(), CacheError> { ) -> Result<(), CacheError> {
let channel = self.db_update_channel_sender.clone(); let channel = self.db_update_channel_sender.clone();

23
src/cache/fs.rs vendored
View File

@ -39,7 +39,7 @@ use tokio_util::codec::{BytesCodec, FramedRead};
use tracing::{debug, instrument, warn}; use tracing::{debug, instrument, warn};
use super::compat::LegacyImageMetadata; use super::compat::LegacyImageMetadata;
use super::{CacheKey, CacheStream, ImageMetadata, ENCRYPTION_KEY}; use super::{CacheEntry, CacheKey, CacheStream, ImageMetadata, ENCRYPTION_KEY};
/// Attempts to lookup the file on disk, returning a byte stream if it exists. /// Attempts to lookup the file on disk, returning a byte stream if it exists.
/// Note that this could return two types of streams, depending on if the file /// Note that this could return two types of streams, depending on if the file
@ -220,11 +220,11 @@ impl<'a, R: AsyncBufRead> Future for MetadataFuture<'a, R> {
/// that is called with a completed cache entry. /// that is called with a completed cache entry.
pub(super) async fn write_file<Fut, DbCallback>( pub(super) async fn write_file<Fut, DbCallback>(
path: &Path, path: &Path,
cache_key: CacheKey, key: CacheKey,
bytes: Bytes, data: Bytes,
metadata: ImageMetadata, metadata: ImageMetadata,
db_callback: DbCallback, db_callback: DbCallback,
on_complete: Option<Sender<(CacheKey, Bytes, ImageMetadata, u64)>>, on_complete: Option<Sender<CacheEntry>>,
) -> Result<(), std::io::Error> ) -> Result<(), std::io::Error>
where where
Fut: 'static + Send + Sync + Future<Output = ()>, Fut: 'static + Send + Sync + Future<Output = ()>,
@ -254,8 +254,8 @@ where
let mut error = writer.write_all(metadata_string.as_bytes()).await.err(); let mut error = writer.write_all(metadata_string.as_bytes()).await.err();
if error.is_none() { if error.is_none() {
debug!("decrypted write {:x?}", &bytes[..40]); debug!("decrypted write {:x?}", &data[..40]);
error = writer.write_all(&bytes).await.err(); error = writer.write_all(&data).await.err();
} }
if let Some(e) = error { if let Some(e) = error {
@ -270,13 +270,18 @@ where
writer.flush().await?; writer.flush().await?;
debug!("writing to file done"); debug!("writing to file done");
let bytes_written = (metadata_size + bytes.len()) as u64; let on_disk_size = (metadata_size + data.len()) as u64;
tokio::spawn(db_callback(bytes_written)); tokio::spawn(db_callback(on_disk_size));
if let Some(sender) = on_complete { if let Some(sender) = on_complete {
tokio::spawn(async move { tokio::spawn(async move {
sender sender
.send((cache_key, bytes, metadata, bytes_written)) .send(CacheEntry {
key,
data,
metadata,
on_disk_size,
})
.await .await
}); });
} }

20
src/cache/mem.rs vendored
View File

@ -1,7 +1,7 @@
use std::sync::atomic::{AtomicU64, Ordering}; use std::sync::atomic::{AtomicU64, Ordering};
use std::sync::Arc; use std::sync::Arc;
use super::{Cache, CacheKey, CacheStream, CallbackCache, ImageMetadata, MemStream}; use super::{Cache, CacheEntry, CacheKey, CacheStream, CallbackCache, ImageMetadata, MemStream};
use async_trait::async_trait; use async_trait::async_trait;
use bytes::Bytes; use bytes::Bytes;
use futures::FutureExt; use futures::FutureExt;
@ -75,7 +75,7 @@ pub struct MemoryCache<MemoryCacheImpl, ColdCache> {
inner: ColdCache, inner: ColdCache,
cur_mem_size: AtomicU64, cur_mem_size: AtomicU64,
mem_cache: Mutex<MemoryCacheImpl>, mem_cache: Mutex<MemoryCacheImpl>,
master_sender: Sender<(CacheKey, Bytes, ImageMetadata, u64)>, master_sender: Sender<CacheEntry>,
} }
impl<MemoryCacheImpl, ColdCache> MemoryCache<MemoryCacheImpl, ColdCache> impl<MemoryCacheImpl, ColdCache> MemoryCache<MemoryCacheImpl, ColdCache>
@ -105,21 +105,29 @@ where
async fn internal_cache_listener<MemoryCacheImpl, ColdCache>( async fn internal_cache_listener<MemoryCacheImpl, ColdCache>(
cache: Arc<MemoryCache<MemoryCacheImpl, ColdCache>>, cache: Arc<MemoryCache<MemoryCacheImpl, ColdCache>>,
max_mem_size: crate::units::Bytes, max_mem_size: crate::units::Bytes,
mut rx: Receiver<(CacheKey, Bytes, ImageMetadata, u64)>, mut rx: Receiver<CacheEntry>,
) where ) where
MemoryCacheImpl: InternalMemoryCache, MemoryCacheImpl: InternalMemoryCache,
ColdCache: Cache, ColdCache: Cache,
{ {
let max_mem_size = max_mem_size.get() / 20 * 19; let max_mem_size = max_mem_size.get() / 20 * 19;
while let Some((key, bytes, metadata, size)) = rx.recv().await { while let Some(CacheEntry {
key,
data,
metadata,
on_disk_size,
}) = rx.recv().await
{
// Add to memory cache // Add to memory cache
// We can add first because we constrain our memory usage to 95% // We can add first because we constrain our memory usage to 95%
cache.cur_mem_size.fetch_add(size as u64, Ordering::Release); cache
.cur_mem_size
.fetch_add(on_disk_size as u64, Ordering::Release);
cache cache
.mem_cache .mem_cache
.lock() .lock()
.await .await
.push(key, (bytes, metadata, size)); .push(key, (data, metadata, on_disk_size));
// Pop if too large // Pop if too large
while cache.cur_mem_size.load(Ordering::Acquire) >= max_mem_size as u64 { while cache.cur_mem_size.load(Ordering::Acquire) >= max_mem_size as u64 {

12
src/cache/mod.rs vendored
View File

@ -212,7 +212,7 @@ pub trait CallbackCache: Cache {
key: CacheKey, key: CacheKey,
image: Bytes, image: Bytes,
metadata: ImageMetadata, metadata: ImageMetadata,
on_complete: Sender<(CacheKey, Bytes, ImageMetadata, u64)>, on_complete: Sender<CacheEntry>,
) -> Result<(), CacheError>; ) -> Result<(), CacheError>;
} }
@ -224,13 +224,21 @@ impl<T: CallbackCache> CallbackCache for Arc<T> {
key: CacheKey, key: CacheKey,
image: Bytes, image: Bytes,
metadata: ImageMetadata, metadata: ImageMetadata,
on_complete: Sender<(CacheKey, Bytes, ImageMetadata, u64)>, on_complete: Sender<CacheEntry>,
) -> Result<(), CacheError> { ) -> Result<(), CacheError> {
self.as_ref() self.as_ref()
.put_with_on_completed_callback(key, image, metadata, on_complete) .put_with_on_completed_callback(key, image, metadata, on_complete)
.await .await
} }
} }
pub struct CacheEntry {
key: CacheKey,
data: Bytes,
metadata: ImageMetadata,
on_disk_size: u64,
}
pub enum CacheStream { pub enum CacheStream {
Memory(MemStream), Memory(MemStream),
Completed(FramedRead<Pin<Box<dyn MetadataFetch + Send>>, BytesCodec>), Completed(FramedRead<Pin<Box<dyn MetadataFetch + Send>>, BytesCodec>),