conversions_rs 1.2.1

A comprehensive unit conversion library, CLI tool, and WebAssembly module with full SI (International System of Units) support
Documentation
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#![allow(dead_code)]
mod conversions;

use clap::{Parser, Subcommand};
use conversions::*;
use std::io::{self, Write};

#[derive(Parser)]
#[command(name = "conversions_rs")]
#[command(about = "A comprehensive unit conversion tool")]
#[command(version = "1.2.0")]
struct Args {
    #[command(subcommand)]
    command: Option<Commands>,
}

#[derive(Subcommand)]
enum Commands {
    /// Convert length units
    Length {
        /// Value to convert
        value: f64,
        /// Source unit (m, km, cm, mm, ft, in, yd, mi)
        from: String,
        /// Target unit (m, km, cm, mm, ft, in, yd, mi)
        to: String,
    },
    /// Convert weight/mass units
    Weight {
        /// Value to convert
        value: f64,
        /// Source unit (kg, g, lb, oz, t, st)
        from: String,
        /// Target unit (kg, g, lb, oz, t, st)
        to: String,
    },
    /// Convert temperature units
    Temperature {
        /// Value to convert
        value: f64,
        /// Source unit (C, F, K)
        from: String,
        /// Target unit (C, F, K)
        to: String,
    },
    /// Convert volume units
    Volume {
        /// Value to convert
        value: f64,
        /// Source unit (l, ml, gal, gal_uk, fl_oz, fl_oz_uk, cup, pt, qt)
        from: String,
        /// Target unit (l, ml, gal, gal_uk, fl_oz, fl_oz_uk, cup, pt, qt)
        to: String,
    },
    /// Convert time units
    Time {
        /// Value to convert
        value: f64,
        /// Source unit (s, min, h, day, week, year, ms, μs, ns)
        from: String,
        /// Target unit (s, min, h, day, week, year, ms, μs, ns)
        to: String,
    },
    /// Convert electric current units
    Current {
        /// Value to convert
        value: f64,
        /// Source unit (A, mA, μA, nA, kA)
        from: String,
        /// Target unit (A, mA, μA, nA, kA)
        to: String,
    },
    /// Convert amount of substance units
    Amount {
        /// Value to convert
        value: f64,
        /// Source unit (mol, mmol, μmol, nmol, pmol, kmol)
        from: String,
        /// Target unit (mol, mmol, μmol, nmol, pmol, kmol)
        to: String,
    },
    /// Convert luminous intensity units
    Luminosity {
        /// Value to convert
        value: f64,
        /// Source unit (cd, mcd, kcd, hk, ic, dc)
        from: String,
        /// Target unit (cd, mcd, kcd, hk, ic, dc)
        to: String,
    },
    /// Convert area units
    Area {
        /// Value to convert
        value: f64,
        /// Source unit (m², cm², km², ft², in², ac, ha, mi²)
        from: String,
        /// Target unit (m², cm², km², ft², in², ac, ha, mi²)
        to: String,
    },
}

fn main() {
    let args = Args::parse();

    match args.command {
        Some(command) => handle_cli_command(command),
        None => run_interactive_mode(),
    }
}

fn handle_cli_command(command: Commands) {
    match command {
        Commands::Length { value, from, to } => match convert_length(value, &from, &to) {
            Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
        Commands::Weight { value, from, to } => match convert_weight(value, &from, &to) {
            Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
        Commands::Temperature { value, from, to } => match convert_temperature(value, &from, &to) {
            Ok(result) => println!(
                "{}°{} = {:.2}°{}",
                value,
                from.to_uppercase(),
                result,
                to.to_uppercase()
            ),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
        Commands::Volume { value, from, to } => match convert_volume(value, &from, &to) {
            Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
        Commands::Time { value, from, to } => match convert_time(value, &from, &to) {
            Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
        Commands::Current { value, from, to } => match convert_current(value, &from, &to) {
            Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
        Commands::Amount { value, from, to } => match convert_amount(value, &from, &to) {
            Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
        Commands::Luminosity { value, from, to } => {
            match convert_luminous_intensity(value, &from, &to) {
                Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
                Err(error) => {
                    eprintln!("❌ Error: {}", error);
                    std::process::exit(1);
                }
            }
        }
        Commands::Area { value, from, to } => match convert_area(value, &from, &to) {
            Ok(result) => println!("{} {} = {:.6} {}", value, from, result, to),
            Err(error) => {
                eprintln!("❌ Error: {}", error);
                std::process::exit(1);
            }
        },
    }
}

fn run_interactive_mode() {
    println!("🔄 Unit Conversion App");
    println!("======================");

    loop {
        display_menu();

        print!("\nEnter your choice (1-9): ");
        io::stdout().flush().unwrap();

        let mut input = String::new();
        io::stdin().read_line(&mut input).unwrap();

        match input.trim() {
            "1" => handle_length_conversion(),
            "2" => handle_weight_conversion(),
            "3" => handle_temperature_conversion(),
            "4" => handle_volume_conversion(),
            "5" => handle_time_conversion(),
            "6" => handle_current_conversion(),
            "7" => handle_amount_conversion(),
            "8" => handle_luminosity_conversion(),
            "9" => handle_area_conversion(),
            "0" => {
                println!("Thanks for using the Unit Conversion App! 👋");
                break;
            }
            _ => println!("❌ Invalid choice. Please select 0-9."),
        }

        println!("\n{}", "-".repeat(50));
    }
}

fn display_menu() {
    println!("\nChoose conversion type:");
    println!("1. 📏 Length");
    println!("2. ⚖️  Weight/Mass");
    println!("3. 🌡️  Temperature");
    println!("4. 🧪 Volume");
    println!("5. ⏱️  Time");
    println!("6. ⚡ Electric Current");
    println!("7. 🧬 Amount of Substance");
    println!("8. 💡 Luminous Intensity");
    println!("9. 📐 Area");
    println!("0. 🚪 Exit");
}

fn get_input(prompt: &str) -> String {
    print!("{}", prompt);
    io::stdout().flush().unwrap();

    let mut input = String::new();
    io::stdin().read_line(&mut input).unwrap();
    input.trim().to_string()
}

fn get_number(prompt: &str) -> f64 {
    loop {
        let input = get_input(prompt);
        match input.parse::<f64>() {
            Ok(num) => return num,
            Err(_) => println!("❌ Please enter a valid number."),
        }
    }
}

fn handle_length_conversion() {
    println!("\n📏 Length Conversion");
    println!("Supported units: m, km, cm, mm, ft, in, yd, mi");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_length(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_weight_conversion() {
    println!("\n⚖️  Weight/Mass Conversion");
    println!("Supported units: kg, g, lb, oz, t, st");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_weight(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_temperature_conversion() {
    println!("\n🌡️  Temperature Conversion");
    println!("Supported units: C (Celsius), F (Fahrenheit), K (Kelvin)");

    let value = get_number("Enter the temperature to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_temperature(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!(
                "{}°{} = {:.2}°{}",
                value,
                from_unit.to_uppercase(),
                result,
                to_unit.to_uppercase()
            );
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_volume_conversion() {
    println!("\n🧪 Volume Conversion");
    println!("Supported units: l, ml, gal, gal_uk, fl_oz, fl_oz_uk, cup, pt, qt");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_volume(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_time_conversion() {
    println!("\n⏱️  Time Conversion");
    println!("Supported units: s, min, h, day, week, year, ms, μs, ns");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_time(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_current_conversion() {
    println!("\n⚡ Electric Current Conversion");
    println!("Supported units: A, mA, μA, nA, kA");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_current(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_amount_conversion() {
    println!("\n🧬 Amount of Substance Conversion");
    println!("Supported units: mol, mmol, μmol, nmol, pmol, kmol");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_amount(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_luminosity_conversion() {
    println!("\n💡 Luminous Intensity Conversion");
    println!("Supported units: cd, mcd, kcd, hk, ic, dc");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_luminous_intensity(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}

fn handle_area_conversion() {
    println!("\n📐 Area Conversion");
    println!("Supported units: m², cm², km², ft², in², ac, ha, mi²");

    let value = get_number("Enter the value to convert: ");
    let from_unit = get_input("From unit: ");
    let to_unit = get_input("To unit: ");

    match convert_area(value, &from_unit, &to_unit) {
        Ok(result) => {
            println!("{} {} = {:.6} {}", value, from_unit, result, to_unit);
        }
        Err(error) => {
            println!("❌ Error: {}", error);
        }
    }
}