refactor(tvix/store): use Arc instead of Box
This allows us to blob services without closing them before putting them in a box. We currently need to use Arc<_>, not Rc<_>, because the GRPC wrappers require Sync. Change-Id: I679c5f06b62304f5b0456cfefe25a0a881de7c84 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8738 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
parent
7725eb53ad
commit
aa7bdc1199
13 changed files with 132 additions and 108 deletions
|
@ -7,6 +7,7 @@ mod tvix_io;
|
|||
|
||||
use std::cell::RefCell;
|
||||
use std::rc::Rc;
|
||||
use std::sync::Arc;
|
||||
use std::{fs, path::PathBuf};
|
||||
|
||||
use clap::Parser;
|
||||
|
@ -71,20 +72,14 @@ fn interpret(code: &str, path: Option<PathBuf>, args: &Args, explain: bool) -> b
|
|||
|
||||
eval.strict = args.strict;
|
||||
|
||||
let blob_service = MemoryBlobService::default();
|
||||
let directory_service = MemoryDirectoryService::default();
|
||||
let path_info_service = MemoryPathInfoService::new(
|
||||
Box::new(blob_service.clone()),
|
||||
Box::new(directory_service.clone()),
|
||||
);
|
||||
let blob_service = Arc::new(MemoryBlobService::default());
|
||||
let directory_service = Arc::new(MemoryDirectoryService::default());
|
||||
let path_info_service =
|
||||
MemoryPathInfoService::new(blob_service.clone(), directory_service.clone());
|
||||
|
||||
eval.io_handle = Box::new(tvix_io::TvixIO::new(
|
||||
known_paths.clone(),
|
||||
tvix_store::TvixStoreIO::new(
|
||||
Box::new(blob_service),
|
||||
Box::new(directory_service),
|
||||
path_info_service,
|
||||
),
|
||||
tvix_store::TvixStoreIO::new(blob_service, directory_service, path_info_service),
|
||||
));
|
||||
|
||||
// bundle fetchurl.nix (used in nixpkgs) by resolving <nix> to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue