1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
use std::convert::TryInto;

use crate::prelude::*;
use nu_engine::WholeStreamCommand;
use nu_errors::ShellError;
use nu_protocol::{ColumnPath, Primitive, Signature, SyntaxShape, UntaggedValue, Value};
use num_bigint::ToBigInt;

pub struct SubCommand;

impl WholeStreamCommand for SubCommand {
    fn name(&self) -> &str {
        "into filesize"
    }

    fn signature(&self) -> Signature {
        Signature::build("into filesize").rest(
            "rest",
            SyntaxShape::ColumnPath,
            "column paths to convert to filesize (for table input)",
        )
    }

    fn usage(&self) -> &str {
        "Convert value to filesize"
    }

    fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
        into_filesize(args)
    }

    fn examples(&self) -> Vec<Example> {
        vec![
            Example {
                description: "Convert string to filesize in table",
                example: "echo [[bytes]; ['5'] [3.2] [4] [2kb]] | into filesize bytes",
                result: Some(vec![
                    UntaggedValue::row(indexmap! {
                        "bytes".to_string() => UntaggedValue::filesize(5).into(),
                    })
                    .into(),
                    UntaggedValue::row(indexmap! {
                        "bytes".to_string() => UntaggedValue::filesize(3).into(),
                    })
                    .into(),
                    UntaggedValue::row(indexmap! {
                        "bytes".to_string() => UntaggedValue::filesize(4).into(),
                    })
                    .into(),
                    UntaggedValue::row(indexmap! {
                        "bytes".to_string() => UntaggedValue::filesize(2000).into(),
                    })
                    .into(),
                ]),
            },
            Example {
                description: "Convert string to filesize",
                example: "echo '2' | into filesize",
                result: Some(vec![UntaggedValue::filesize(2).into()]),
            },
            Example {
                description: "Convert decimal to filesize",
                example: "echo 8.3 | into filesize",
                result: Some(vec![UntaggedValue::filesize(8).into()]),
            },
            Example {
                description: "Convert int to filesize",
                example: "echo 5 | into filesize",
                result: Some(vec![UntaggedValue::filesize(5).into()]),
            },
            Example {
                description: "Convert file size to filesize",
                example: "echo 4KB | into filesize",
                result: Some(vec![UntaggedValue::filesize(4000).into()]),
            },
        ]
    }
}

fn into_filesize(args: CommandArgs) -> Result<OutputStream, ShellError> {
    let column_paths: Vec<ColumnPath> = args.rest(0)?;

    Ok(args
        .input
        .map(move |v| {
            if column_paths.is_empty() {
                action(&v, v.tag())
            } else {
                let mut ret = v;
                for path in &column_paths {
                    ret = ret.swap_data_by_column_path(
                        path,
                        Box::new(move |old| action(old, old.tag())),
                    )?;
                }

                Ok(ret)
            }
        })
        .into_input_stream())
}

pub fn action(input: &Value, tag: impl Into<Tag>) -> Result<Value, ShellError> {
    let tag = tag.into();
    match &input.value {
        UntaggedValue::Primitive(prim) => Ok(UntaggedValue::filesize(match prim {
            Primitive::String(a_string) => match int_from_string(a_string.trim(), &tag) {
                Ok(n) => n,
                Err(e) => {
                    return Err(e);
                }
            },
            Primitive::Decimal(dec) => match dec.to_bigint() {
                Some(n) => match n.to_u64() {
                    Some(i) => i,
                    None => {
                        return Err(ShellError::unimplemented(
                            "failed to convert decimal to filesize",
                        ));
                    }
                },
                None => {
                    return Err(ShellError::unimplemented(
                        "failed to convert decimal to filesize",
                    ));
                }
            },
            Primitive::Int(n_ref) => (*n_ref).try_into().map_err(|_| {
                ShellError::unimplemented("cannot convert negative integer to filesize")
            })?,
            Primitive::Filesize(a_filesize) => *a_filesize,
            _ => {
                return Err(ShellError::unimplemented(
                    "'into filesize' for non-numeric primitives",
                ))
            }
        })
        .into_value(&tag)),
        UntaggedValue::Row(_) => Err(ShellError::labeled_error(
            "specify column name to use, with 'into filesize COLUMN'",
            "found table",
            tag,
        )),
        _ => Err(ShellError::unimplemented(
            "'into filesize' for unsupported type",
        )),
    }
}

fn int_from_string(a_string: &str, tag: &Tag) -> Result<u64, ShellError> {
    match a_string.parse::<u64>() {
        Ok(n) => Ok(n),
        Err(_) => match a_string.parse::<f64>() {
            Ok(f) => match f.to_u64() {
                Some(i) => Ok(i),
                None => Err(ShellError::labeled_error(
                    "Could not convert string value to filesize",
                    "original value",
                    tag.clone(),
                )),
            },
            Err(_) => Err(ShellError::labeled_error(
                "Could not convert string value to filesize",
                "original value",
                tag.clone(),
            )),
        },
    }
}

#[cfg(test)]
mod tests {
    use super::ShellError;
    use super::SubCommand;

    #[test]
    fn examples_work_as_expected() -> Result<(), ShellError> {
        use crate::examples::test as test_examples;

        test_examples(SubCommand {})
    }
}