Skip to main content

rustfs_madmin/
utils.rs

1// Copyright 2024 RustFS Team
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use std::time::Duration;
16
17pub fn parse_duration(s: &str) -> Result<Duration, String> {
18    // Implement your own duration parsing logic here
19    // For example, you could use the humantime crate or a custom parser
20    humantime::parse_duration(s).map_err(|e| e.to_string())
21}
22
23#[cfg(test)]
24mod test {
25    use std::time::Duration;
26
27    use super::parse_duration;
28
29    #[test]
30    fn test_parse_dur() {
31        let s = String::from("3s");
32        let dur = parse_duration(&s);
33        println!("{dur:?}");
34        assert_eq!(Ok(Duration::from_secs(3)), dur);
35
36        let s = String::from("3ms");
37        let dur = parse_duration(&s);
38        println!("{dur:?}");
39        assert_eq!(Ok(Duration::from_millis(3)), dur);
40
41        let s = String::from("3m");
42        let dur = parse_duration(&s);
43        println!("{dur:?}");
44        assert_eq!(Ok(Duration::from_secs(3 * 60)), dur);
45
46        let s = String::from("3h");
47        let dur = parse_duration(&s);
48        println!("{dur:?}");
49        assert_eq!(Ok(Duration::from_secs(3 * 60 * 60)), dur);
50    }
51}