generated from ElnuDev/rust-project
Compare commits
3 commits
af89a99a52
...
359c46d776
Author | SHA1 | Date | |
---|---|---|---|
359c46d776 | |||
23dfa06d15 | |||
6a027c0a24 |
10 changed files with 74 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
/target
|
||||
Cargo.lock
|
||||
|
|
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"rust-analyzer.linkedProjects": [
|
||||
"./demo/Cargo.toml"
|
||||
]
|
||||
}
|
|
@ -1,8 +1,11 @@
|
|||
[package]
|
||||
name = ""
|
||||
name = "renrs"
|
||||
description = "A Rust-based visual novel backend compatible with Ren'Py .rpy script files."
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
pest = "2.6.0"
|
||||
pest_derive = "2.6.0"
|
||||
|
|
1
demo/.gitignore
vendored
Normal file
1
demo/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target
|
9
demo/Cargo.toml
Normal file
9
demo/Cargo.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
[package]
|
||||
name = "renrs-demo"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
renrs = { path = ".." }
|
5
demo/demo.csv
Normal file
5
demo/demo.csv
Normal file
|
@ -0,0 +1,5 @@
|
|||
65279,1179403647,1463895090
|
||||
3.1415927,2.7182817,1.618034
|
||||
-40,-273.15
|
||||
13,42
|
||||
65537
|
|
5
demo/src/main.rs
Normal file
5
demo/src/main.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
use renrs;
|
||||
|
||||
fn main() {
|
||||
renrs::parse("demo.csv");
|
||||
}
|
9
src/csv.pest
Normal file
9
src/csv.pest
Normal file
|
@ -0,0 +1,9 @@
|
|||
// + indicates one or more times
|
||||
field = { (ASCII_DIGIT | "." | "-")+ }
|
||||
// ~ indicates directly followed by
|
||||
// * indicates zero or more times (optional)
|
||||
record = { field ~ ("," ~ field)* }
|
||||
// SOI - start of input
|
||||
// END - end of input
|
||||
// There may be trailing newlines at the end
|
||||
file = { SOI ~ (record ~ ("\r\n" | "\n"))* ~ "\n"* ~ EOI }
|
35
src/lib.rs
Normal file
35
src/lib.rs
Normal file
|
@ -0,0 +1,35 @@
|
|||
use std::fs;
|
||||
|
||||
use pest::Parser;
|
||||
use pest_derive::Parser;
|
||||
|
||||
#[derive(Parser)]
|
||||
#[grammar = "csv.pest"]
|
||||
struct CSVParser;
|
||||
|
||||
pub fn parse(file_path: &str) {
|
||||
let unparsed_file = fs::read_to_string(file_path).expect("cannot find file");
|
||||
let file = CSVParser::parse(Rule::file, &unparsed_file)
|
||||
.expect("unsuccessful parse") // unwrap the parse result
|
||||
.next().unwrap(); // get and unwrap the `file` rule; never fails
|
||||
|
||||
let mut field_sum = 0.0;
|
||||
let mut record_count: u64 = 0;
|
||||
|
||||
for record in file.into_inner() {
|
||||
match record.as_rule() {
|
||||
Rule::record => {
|
||||
record_count += 1;
|
||||
|
||||
for field in record.into_inner() {
|
||||
field_sum += field.as_str().parse::<f64>().unwrap();
|
||||
}
|
||||
},
|
||||
Rule::EOI => (),
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
||||
println!("Sum of fields: {field_sum}");
|
||||
println!("Number of records: {record_count}");
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Add table
Reference in a new issue