2023-03-23 19:35:32 -04:00
|
|
|
#![feature(round_char_boundary)]
|
2023-09-02 12:15:57 -04:00
|
|
|
#![feature(exact_size_is_empty)]
|
2023-08-16 21:06:22 -04:00
|
|
|
use std::io::Read;
|
2023-09-02 12:15:57 -04:00
|
|
|
use std::path::Path;
|
2023-08-10 18:46:19 -04:00
|
|
|
|
2023-09-03 12:52:09 -04:00
|
|
|
use ::organic::parser::parse;
|
2023-09-04 22:15:43 -04:00
|
|
|
use organic::parser::parse_with_settings;
|
2023-09-29 16:37:22 -04:00
|
|
|
use organic::settings::GlobalSettings;
|
|
|
|
use organic::settings::LocalFileAccessInterface;
|
2023-04-22 21:45:18 -04:00
|
|
|
|
2023-08-16 16:05:16 -04:00
|
|
|
#[cfg(feature = "tracing")]
|
2023-04-11 15:08:46 -04:00
|
|
|
use crate::init_tracing::init_telemetry;
|
2023-08-16 16:05:16 -04:00
|
|
|
#[cfg(feature = "tracing")]
|
2023-04-11 15:08:46 -04:00
|
|
|
use crate::init_tracing::shutdown_telemetry;
|
2023-08-16 16:05:16 -04:00
|
|
|
#[cfg(feature = "tracing")]
|
2023-04-11 15:08:46 -04:00
|
|
|
mod init_tracing;
|
2022-07-15 23:26:49 -04:00
|
|
|
|
2023-08-10 21:22:06 -04:00
|
|
|
#[cfg(not(feature = "tracing"))]
|
2022-07-15 23:26:49 -04:00
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
2023-08-10 21:22:06 -04:00
|
|
|
main_body()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "tracing")]
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
|
|
let rt = tokio::runtime::Runtime::new()?;
|
2023-10-16 19:12:25 -04:00
|
|
|
rt.block_on(async {
|
2023-08-16 16:05:16 -04:00
|
|
|
init_telemetry()?;
|
|
|
|
let main_body_result = main_body();
|
|
|
|
shutdown_telemetry()?;
|
|
|
|
main_body_result
|
2023-10-16 19:12:25 -04:00
|
|
|
})
|
2023-08-10 21:22:06 -04:00
|
|
|
}
|
|
|
|
|
2023-08-16 16:05:16 -04:00
|
|
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
2023-08-10 21:22:06 -04:00
|
|
|
fn main_body() -> Result<(), Box<dyn std::error::Error>> {
|
2023-09-04 11:45:10 -04:00
|
|
|
let args = std::env::args().skip(1);
|
2023-09-02 12:15:57 -04:00
|
|
|
if args.is_empty() {
|
|
|
|
let org_contents = read_stdin_to_string()?;
|
|
|
|
run_anonymous_parse(org_contents)
|
|
|
|
} else {
|
2023-09-04 11:45:10 -04:00
|
|
|
for arg in args {
|
2023-09-02 12:15:57 -04:00
|
|
|
run_parse_on_file(arg)?
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2023-08-16 21:06:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn read_stdin_to_string() -> Result<String, Box<dyn std::error::Error>> {
|
|
|
|
let mut stdin_contents = String::new();
|
|
|
|
std::io::stdin()
|
|
|
|
.lock()
|
|
|
|
.read_to_string(&mut stdin_contents)?;
|
|
|
|
Ok(stdin_contents)
|
2022-07-15 23:26:49 -04:00
|
|
|
}
|
2023-08-10 18:46:19 -04:00
|
|
|
|
2023-09-02 12:15:57 -04:00
|
|
|
fn run_anonymous_parse<P: AsRef<str>>(org_contents: P) -> Result<(), Box<dyn std::error::Error>> {
|
2023-10-17 13:32:01 -04:00
|
|
|
let org_contents = org_contents.as_ref();
|
|
|
|
let rust_parsed = parse(org_contents)?;
|
2023-08-21 01:26:52 -04:00
|
|
|
println!("{:#?}", rust_parsed);
|
2023-10-17 13:32:01 -04:00
|
|
|
#[cfg(feature = "event_count")]
|
|
|
|
organic::event_count::report(org_contents);
|
2023-08-10 20:21:39 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
2023-09-02 12:15:57 -04:00
|
|
|
|
|
|
|
fn run_parse_on_file<P: AsRef<Path>>(org_path: P) -> Result<(), Box<dyn std::error::Error>> {
|
|
|
|
let org_path = org_path.as_ref();
|
2023-09-04 21:46:40 -04:00
|
|
|
let parent_directory = org_path
|
|
|
|
.parent()
|
|
|
|
.ok_or("Should be contained inside a directory.")?;
|
2023-09-02 12:15:57 -04:00
|
|
|
let org_contents = std::fs::read_to_string(org_path)?;
|
|
|
|
let org_contents = org_contents.as_str();
|
2023-09-06 11:00:19 -04:00
|
|
|
let file_access_interface = LocalFileAccessInterface {
|
|
|
|
working_directory: Some(parent_directory.to_path_buf()),
|
|
|
|
};
|
2023-10-16 19:12:25 -04:00
|
|
|
let global_settings = GlobalSettings {
|
|
|
|
file_access: &file_access_interface,
|
|
|
|
..Default::default()
|
2023-09-04 21:46:40 -04:00
|
|
|
};
|
|
|
|
let rust_parsed = parse_with_settings(org_contents, &global_settings)?;
|
2023-09-02 12:15:57 -04:00
|
|
|
println!("{:#?}", rust_parsed);
|
2023-10-17 13:32:01 -04:00
|
|
|
#[cfg(feature = "event_count")]
|
|
|
|
organic::event_count::report(org_contents);
|
2023-09-02 12:15:57 -04:00
|
|
|
Ok(())
|
|
|
|
}
|