summaryrefslogtreecommitdiffstats
path: root/src/poem/anthology/source.rs
diff options
context:
space:
mode:
authorRory Dudley2024-03-28 21:05:00 -0600
committerRory Dudley2024-03-28 21:05:00 -0600
commit14a74aea0f02da53e0f61c572da2c5244ed80551 (patch)
treec43c5aaf46001e3743f7749cc4ebfa0baa06ad96 /src/poem/anthology/source.rs
parent527cc04ffb9ea627ca678fe8fb07fe9330420eab (diff)
downloaddwarvish-14a74aea0f02da53e0f61c572da2c5244ed80551.tar.gz
The anthology module
The anthology module was added to run built-in commands. The 'cd' and 'exit' built-ins were moved from the main recite() loop to this module. Additionally, the 'export' and 'source' built-ins were added.
Diffstat (limited to 'src/poem/anthology/source.rs')
-rw-r--r--src/poem/anthology/source.rs46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/poem/anthology/source.rs b/src/poem/anthology/source.rs
new file mode 100644
index 0000000..1449994
--- /dev/null
+++ b/src/poem/anthology/source.rs
@@ -0,0 +1,46 @@
+use crate::poem::Verse;
+use crate::poem::{read::Readable, recite::Reciteable, Poem};
+use std::fs;
+use std::path::Path;
+
+pub fn incant(verse: &Verse, path: &Vec<&Path>, bins: &mut Vec<String>) -> i32 {
+ let files = match verse.clause() {
+ Some(clause) => clause,
+ None => {
+ eprintln!("source: not enough arguments");
+ return 1;
+ }
+ };
+
+ for file in files {
+ let poetry = match fs::read_to_string(&file) {
+ Ok(contents) => contents,
+ Err(e) => {
+ eprintln!(
+ "source: could not load {}: {}",
+ file,
+ e.to_string().to_lowercase()
+ );
+ return 127;
+ }
+ };
+
+ let poem = match Poem::read(poetry) {
+ Ok(poem) => poem,
+ Err(e) => {
+ eprintln!("dwvsh: {}", e.to_string().to_lowercase());
+ continue;
+ }
+ };
+
+ match poem.recite(path, bins, None) {
+ Ok(_) => {}
+ Err(e) => {
+ eprintln!("dwvsh: {}", e.to_string().to_lowercase());
+ continue;
+ }
+ }
+ }
+
+ 0
+}