difftreelog
feat --tla-str-file
in: master
4 files changed
cmds/jrsonnet/src/main.rsdiffbeforeafterboth--- a/cmds/jrsonnet/src/main.rs
+++ b/cmds/jrsonnet/src/main.rs
@@ -53,7 +53,7 @@
opts.general.configure(&state)?;
opts.manifest.configure(&state)?;
- let val = if opts.input.evaluate {
+ let val = if opts.input.exec {
state.evaluate_snippet_raw(
Rc::new(PathBuf::from("args")),
(&opts.input.input as &str).into(),
crates/jrsonnet-cli/src/ext.rsdiffbeforeafterboth--- a/crates/jrsonnet-cli/src/ext.rs
+++ b/crates/jrsonnet-cli/src/ext.rs
@@ -1,7 +1,7 @@
use crate::ConfigureState;
use clap::Clap;
use jrsonnet_evaluator::{error::Result, EvaluationState};
-use std::str::FromStr;
+use std::{fs::read_to_string, str::FromStr};
#[derive(Clone)]
pub struct ExtStr {
@@ -28,6 +28,31 @@
}
}
+#[derive(Clone)]
+pub struct ExtFile {
+ pub name: String,
+ pub value: String,
+}
+
+impl FromStr for ExtFile {
+ type Err = String;
+
+ fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
+ let out: Vec<&str> = s.split('=').collect();
+ if out.len() != 2 {
+ return Err("bad ext-file syntax".to_owned());
+ }
+ let file = read_to_string(&out[1]);
+ match file {
+ Ok(content) => Ok(Self {
+ name: out[0].into(),
+ value: content,
+ }),
+ Err(e) => Err(format!("{}", e)),
+ }
+ }
+}
+
#[derive(Clap)]
// #[clap(help_heading = "EXTERNAL VARIABLES")]
pub struct ExtVarOpts {
@@ -38,23 +63,33 @@
/// Can be accessed from code via `std.extVar("name")`.
#[clap(long, short = 'V', name = "name[=var data]", number_of_values = 1)]
ext_str: Vec<ExtStr>,
- // / Read string external variable from file.
- // / See also `--ext-str`
- // #[clap(long, name = "name[=var path]", number_of_values = 1)]
- // ext_str_file: Vec<ExtStr>,
+ /// Read string external variable from file.
+ /// See also `--ext-str`
+ #[clap(long, name = "name=var path", number_of_values = 1)]
+ ext_str_file: Vec<ExtFile>,
/// Add external variable from code.
/// See also `--ext-str`
#[clap(long, name = "name[=var source]", number_of_values = 1)]
ext_code: Vec<ExtStr>,
+ /// Read string external variable from file.
+ /// See also `--ext-str`
+ #[clap(long, name = "name=var code path", number_of_values = 1)]
+ ext_code_file: Vec<ExtFile>,
}
impl ConfigureState for ExtVarOpts {
fn configure(&self, state: &EvaluationState) -> Result<()> {
for ext in self.ext_str.iter() {
state.add_ext_str((&ext.name as &str).into(), (&ext.value as &str).into());
}
+ for ext in self.ext_str_file.iter() {
+ state.add_ext_str((&ext.name as &str).into(), (&ext.value as &str).into());
+ }
for ext in self.ext_code.iter() {
state.add_ext_code((&ext.name as &str).into(), (&ext.value as &str).into())?;
}
+ for ext in self.ext_code_file.iter() {
+ state.add_ext_code((&ext.name as &str).into(), (&ext.value as &str).into())?;
+ }
Ok(())
}
}
crates/jrsonnet-cli/src/lib.rsdiffbeforeafterboth1mod ext;2mod manifest;3mod tla;4mod trace;56pub use ext::*;7pub use manifest::*;8pub use tla::*;9pub use trace::*;1011use clap::Clap;12use jrsonnet_evaluator::{error::Result, EvaluationState, FileImportResolver};13use std::path::PathBuf;1415pub trait ConfigureState {16 fn configure(&self, state: &EvaluationState) -> Result<()>;17}1819#[derive(Clap)]20// #[clap(help_heading = "INPUT")]21pub struct InputOpts {22 #[clap(23 long,24 short = 'e',25 about = "Treat input as code, evaluate them instead of reading file"26 )]27 pub evaluate: bool,2829 #[clap(30 about = "Path to the file to be compiled if `--evaluate` is unset, otherwise code itself"31 )]32 pub input: String,33}3435#[derive(Clap)]36// #[clap(help_heading = "OPTIONS")]37pub struct MiscOpts {38 /// Disable standard library.39 /// By default standard library will be available via global `std` variable.40 /// Note that standard library will still be loaded41 /// if chosen manifestification method is not `none`.42 #[clap(long)]43 no_stdlib: bool,4445 /// Maximal allowed number of stack frames,46 /// stack overflow error will be raised if this number gets exceeded.47 #[clap(long, short = 's', default_value = "200")]48 max_stack: usize,4950 /// Library search dirs.51 /// Any not found `imported` file will be searched in these.52 /// This can also be specified via `JSONNET_PATH` variable,53 /// which should contain a colon-separated (semicolon-separated on Windows) list of directories.54 #[clap(long, short = 'J')]55 jpath: Vec<PathBuf>,56}57impl ConfigureState for MiscOpts {58 fn configure(&self, state: &EvaluationState) -> Result<()> {59 if !self.no_stdlib {60 state.with_stdlib();61 }6263 state.set_import_resolver(Box::new(FileImportResolver {64 library_paths: self.jpath.clone(),65 }));6667 state.set_max_stack(self.max_stack);68 Ok(())69 }70}7172/// General configuration of jsonnet73#[derive(Clap)]74#[clap(name = "jrsonnet", version, author)]75pub struct GeneralOpts {76 #[clap(flatten)]77 misc: MiscOpts,7879 #[clap(flatten)]80 tla: TLAOpts,81 #[clap(flatten)]82 ext: ExtVarOpts,8384 #[clap(flatten)]85 trace: TraceOpts,86}8788impl ConfigureState for GeneralOpts {89 fn configure(&self, state: &EvaluationState) -> Result<()> {90 // Configure trace first, because tla-code/ext-code can throw91 self.trace.configure(state)?;92 self.misc.configure(state)?;93 self.tla.configure(state)?;94 self.ext.configure(state)?;95 Ok(())96 }97}crates/jrsonnet-cli/src/tla.rsdiffbeforeafterboth--- a/crates/jrsonnet-cli/src/tla.rs
+++ b/crates/jrsonnet-cli/src/tla.rs
@@ -1,4 +1,4 @@
-use crate::{ConfigureState, ExtStr};
+use crate::{ConfigureState, ExtFile, ExtStr};
use clap::Clap;
use jrsonnet_evaluator::{error::Result, EvaluationState};
@@ -13,21 +13,31 @@
tla_str: Vec<ExtStr>,
/// Read top level argument string from file.
/// See also `--tla-str`
- // #[clap(long, name = "name[=tla path]", number_of_values = 1)]
- // tla_str_file: Vec<ExtStr>,
+ #[clap(long, name = "name=tla path", number_of_values = 1)]
+ tla_str_file: Vec<ExtFile>,
/// Add top level argument from code.
/// See also `--tla-str`
#[clap(long, name = "name[=tla source]", number_of_values = 1)]
tla_code: Vec<ExtStr>,
+ /// Read top level argument code from file.
+ /// See also `--tla-str`
+ #[clap(long, name = "name=tla code path", number_of_values = 1)]
+ tla_code_file: Vec<ExtFile>,
}
impl ConfigureState for TLAOpts {
fn configure(&self, state: &EvaluationState) -> Result<()> {
for tla in self.tla_str.iter() {
state.add_tla_str((&tla.name as &str).into(), (&tla.value as &str).into());
}
+ for tla in self.tla_str_file.iter() {
+ state.add_tla_str((&tla.name as &str).into(), (&tla.value as &str).into())
+ }
for tla in self.tla_code.iter() {
state.add_tla_code((&tla.name as &str).into(), (&tla.value as &str).into())?;
}
+ for tla in self.tla_code_file.iter() {
+ state.add_tla_code((&tla.name as &str).into(), (&tla.value as &str).into())?;
+ }
Ok(())
}
}