reduce latency by not running in unnecessary thread pool

reduce latency by not running in unnecessary thread pool
This commit is contained in:
rabite 2020-02-12 18:49:55 +01:00
parent 26017763ed
commit 77fdb0a754
2 changed files with 23 additions and 34 deletions

View File

@ -393,26 +393,21 @@ impl Files {
}
pub fn enqueue_jobs(&mut self, n: usize) {
let pool = get_pool();
let from = self.meta_upto.unwrap_or(0);
self.meta_upto = Some(from + n);
let mut jobs =
pool.install(|| {
let c = match self.cache.clone() {
Some(cache) => cache,
None => return vec![]
};
let cache = match self.cache.clone() {
Some(cache) => cache,
None => return
};
self.iter_files_mut()
.skip(from)
.take(n)
// To turn into IndexedParallelIter
.collect::<Vec<&mut File>>()
.into_par_iter()
.filter_map(|f| f.prepare_meta_job(&c))
.collect::<Vec<_>>()
});
let mut jobs = self.iter_files_mut()
.collect::<Vec<&mut File>>()
.into_par_iter()
.skip(from)
.take(n)
.filter_map(|f| f.prepare_meta_job(&cache))
.collect::<Vec<_>>();
self.jobs.append(&mut jobs);
}

View File

@ -300,9 +300,6 @@ impl FileListBuilder {
}
pub fn build(mut self) -> HResult<ListView<Files>> {
// Create new IO pool to not block the main render pool, or other busy IO pools
let pool = crate::files::get_pool();
let c = &self.cache;
let s = self.stale.clone();
let core = self.core;
@ -316,8 +313,8 @@ impl FileListBuilder {
_ => false
};
let files = pool.install(|| -> HResult<Files> {
let mut files = match source {
let mut files =
match source {
FileSource::Files(f) => Ok(f),
FileSource::Path(f) => {
c.as_ref()
@ -327,25 +324,22 @@ impl FileListBuilder {
}
}?;
// Check/set hidden flag and recalculate number of files if it's different
if !files.show_hidden == cfg.show_hidden() {
files.show_hidden = cfg.show_hidden();
files.recalculate_len();
}
// Check/set hidden flag and recalculate number of files if it's different
if !files.show_hidden == cfg.show_hidden() {
files.show_hidden = cfg.show_hidden();
files.recalculate_len();
}
// TODO: Fix sorting so it works with lazy/partial sorting
if !nosort {
files.sort();
}
Ok(files)
})?;
// TODO: Fix sorting so it works with lazy/partial sorting
if !nosort {
files.sort();
}
let mut view = ListView::new(&core, files);
selected_file
.or_else(|| c.as_ref()
.and_then(|c| c.get_selection(&view.content.directory).ok()))
.and_then(|c| c.get_selection(&view.content.directory).ok()))
.map(|f| view.select_file(&f));
self.stale.map(|s| view.content.stale = Some(s));