mirror of
https://github.com/nushell/nushell.git
synced 2025-05-22 02:40:49 +02:00
Fixes #10144 # User-Facing Changes Long running glob expansions and `ls` runs (e.g. `ls /**/*`) can now be interrupted with ctrl-c.
235 lines
6.7 KiB
Rust
235 lines
6.7 KiB
Rust
use crate::{DirBuilder, DirInfo, FileInfo};
|
|
#[allow(deprecated)]
|
|
use nu_engine::{command_prelude::*, current_dir};
|
|
use nu_glob::Pattern;
|
|
use nu_protocol::{NuGlob, Signals};
|
|
use serde::Deserialize;
|
|
use std::path::Path;
|
|
|
|
#[derive(Clone)]
|
|
pub struct Du;
|
|
|
|
#[derive(Deserialize, Clone, Debug)]
|
|
pub struct DuArgs {
|
|
path: Option<Spanned<NuGlob>>,
|
|
deref: bool,
|
|
long: bool,
|
|
exclude: Option<Spanned<NuGlob>>,
|
|
#[serde(rename = "max-depth")]
|
|
max_depth: Option<Spanned<i64>>,
|
|
#[serde(rename = "min-size")]
|
|
min_size: Option<Spanned<i64>>,
|
|
}
|
|
|
|
impl Command for Du {
|
|
fn name(&self) -> &str {
|
|
"du"
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Find disk usage sizes of specified items."
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("du")
|
|
.input_output_types(vec![(Type::Nothing, Type::table())])
|
|
.allow_variants_without_examples(true)
|
|
.rest(
|
|
"path",
|
|
SyntaxShape::OneOf(vec![SyntaxShape::GlobPattern, SyntaxShape::String]),
|
|
"Starting directory.",
|
|
)
|
|
.switch(
|
|
"deref",
|
|
"Dereference symlinks to their targets for size",
|
|
Some('r'),
|
|
)
|
|
.switch(
|
|
"long",
|
|
"Get underlying directories and files for each entry",
|
|
Some('l'),
|
|
)
|
|
.named(
|
|
"exclude",
|
|
SyntaxShape::GlobPattern,
|
|
"Exclude these file names",
|
|
Some('x'),
|
|
)
|
|
.named(
|
|
"max-depth",
|
|
SyntaxShape::Int,
|
|
"Directory recursion limit",
|
|
Some('d'),
|
|
)
|
|
.named(
|
|
"min-size",
|
|
SyntaxShape::Int,
|
|
"Exclude files below this size",
|
|
Some('m'),
|
|
)
|
|
.category(Category::FileSystem)
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let tag = call.head;
|
|
let min_size: Option<Spanned<i64>> = call.get_flag(engine_state, stack, "min-size")?;
|
|
let max_depth: Option<Spanned<i64>> = call.get_flag(engine_state, stack, "max-depth")?;
|
|
if let Some(ref max_depth) = max_depth {
|
|
if max_depth.item < 0 {
|
|
return Err(ShellError::NeedsPositiveValue {
|
|
span: max_depth.span,
|
|
});
|
|
}
|
|
}
|
|
if let Some(ref min_size) = min_size {
|
|
if min_size.item < 0 {
|
|
return Err(ShellError::NeedsPositiveValue {
|
|
span: min_size.span,
|
|
});
|
|
}
|
|
}
|
|
let deref = call.has_flag(engine_state, stack, "deref")?;
|
|
let long = call.has_flag(engine_state, stack, "long")?;
|
|
let exclude = call.get_flag(engine_state, stack, "exclude")?;
|
|
#[allow(deprecated)]
|
|
let current_dir = current_dir(engine_state, stack)?;
|
|
|
|
let paths = call.rest::<Spanned<NuGlob>>(engine_state, stack, 0)?;
|
|
let paths = if !call.has_positional_args(stack, 0) {
|
|
None
|
|
} else {
|
|
Some(paths)
|
|
};
|
|
|
|
match paths {
|
|
None => {
|
|
let args = DuArgs {
|
|
path: None,
|
|
deref,
|
|
long,
|
|
exclude,
|
|
max_depth,
|
|
min_size,
|
|
};
|
|
Ok(
|
|
du_for_one_pattern(args, ¤t_dir, tag, engine_state.signals().clone())?
|
|
.into_pipeline_data(tag, engine_state.signals().clone()),
|
|
)
|
|
}
|
|
Some(paths) => {
|
|
let mut result_iters = vec![];
|
|
for p in paths {
|
|
let args = DuArgs {
|
|
path: Some(p),
|
|
deref,
|
|
long,
|
|
exclude: exclude.clone(),
|
|
max_depth,
|
|
min_size,
|
|
};
|
|
result_iters.push(du_for_one_pattern(
|
|
args,
|
|
¤t_dir,
|
|
tag,
|
|
engine_state.signals().clone(),
|
|
)?)
|
|
}
|
|
|
|
// chain all iterators on result.
|
|
Ok(result_iters
|
|
.into_iter()
|
|
.flatten()
|
|
.into_pipeline_data(tag, engine_state.signals().clone()))
|
|
}
|
|
}
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Disk usage of the current directory",
|
|
example: "du",
|
|
result: None,
|
|
}]
|
|
}
|
|
}
|
|
|
|
fn du_for_one_pattern(
|
|
args: DuArgs,
|
|
current_dir: &Path,
|
|
span: Span,
|
|
signals: Signals,
|
|
) -> Result<impl Iterator<Item = Value> + Send, ShellError> {
|
|
let exclude = args.exclude.map_or(Ok(None), move |x| {
|
|
Pattern::new(x.item.as_ref())
|
|
.map(Some)
|
|
.map_err(|e| ShellError::InvalidGlobPattern {
|
|
msg: e.msg.into(),
|
|
span: x.span,
|
|
})
|
|
})?;
|
|
|
|
let paths = match args.path {
|
|
Some(p) => nu_engine::glob_from(&p, current_dir, span, None, signals.clone()),
|
|
|
|
// The * pattern should never fail.
|
|
None => nu_engine::glob_from(
|
|
&Spanned {
|
|
item: NuGlob::Expand("*".into()),
|
|
span: Span::unknown(),
|
|
},
|
|
current_dir,
|
|
span,
|
|
None,
|
|
signals.clone(),
|
|
),
|
|
}
|
|
.map(|f| f.1)?;
|
|
|
|
let deref = args.deref;
|
|
let long = args.long;
|
|
let max_depth = args.max_depth.map(|f| f.item as u64);
|
|
let min_size = args.min_size.map(|f| f.item as u64);
|
|
|
|
let params = DirBuilder {
|
|
tag: span,
|
|
min: min_size,
|
|
deref,
|
|
exclude,
|
|
long,
|
|
};
|
|
|
|
Ok(paths.filter_map(move |p| match p {
|
|
Ok(a) => {
|
|
if a.is_dir() {
|
|
match DirInfo::new(a, ¶ms, max_depth, span, &signals) {
|
|
Ok(v) => Some(Value::from(v)),
|
|
Err(_) => None,
|
|
}
|
|
} else {
|
|
match FileInfo::new(a, deref, span, params.long) {
|
|
Ok(v) => Some(Value::from(v)),
|
|
Err(_) => None,
|
|
}
|
|
}
|
|
}
|
|
Err(e) => Some(Value::error(e, span)),
|
|
}))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Du;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() {
|
|
use crate::test_examples;
|
|
test_examples(Du {})
|
|
}
|
|
}
|