Get locale_charset() working.
[pspp] / rust / src / main.rs
1 /* PSPP - a program for statistical analysis.
2  * Copyright (C) 2023 Free Software Foundation, Inc.
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 use anyhow::Result;
18 use clap::Parser;
19 use pspp::{raw::{Reader, Record}, locale_charset::locale_charset};
20 use std::fs::File;
21 use std::io::BufReader;
22 use std::path::{Path, PathBuf};
23 use std::str;
24
25 /// A utility to dissect SPSS system files.
26 #[derive(Parser, Debug)]
27 #[command(author, version, about, long_about = None)]
28 struct Args {
29     /// Maximum number of cases to print.
30     #[arg(long = "data", default_value_t = 0)]
31     max_cases: u64,
32
33     /// Files to dissect.
34     #[arg(required = true)]
35     files: Vec<PathBuf>,
36 }
37
38 fn main() -> Result<()> {
39     println!("locale_charset={}", locale_charset());
40     let Args { max_cases, files } = Args::parse();
41
42     for file in files {
43         dissect(&file, max_cases)?;
44     }
45     Ok(())
46 }
47
48 fn dissect(file_name: &Path, max_cases: u64) -> Result<()> {
49     let reader = File::open(file_name)?;
50     let reader = BufReader::new(reader);
51     let mut reader = Reader::new(reader)?;
52     let records: Vec<Record> = reader.collect_headers()?;
53
54     for record in records {
55         println!("{record:?}");
56         if let Record::EndOfHeaders(_) = record {
57             break;
58         };
59     }
60
61     for _ in 0..max_cases {
62         let Some(Ok(Record::Case(data))) = reader.next() else {
63             break;
64         };
65         println!("{:?}", data);
66     }
67     Ok(())
68 }