12#![cfg_attr(nightly, feature(thread_local, type_alias_impl_trait))]345extern crate self as jrsonnet_evaluator;67mod arr;89mod ctx;10mod dynamic;11pub mod error;12mod evaluate;13pub mod function;14pub mod gc;15mod import;16mod integrations;17pub mod manifest;18mod map;19mod obj;20pub mod stack;21pub mod stdlib;22pub mod tla;23pub mod trace;24pub mod typed;25pub mod val;2627use std::{28 any::Any,29 cell::{RefCell, RefMut},30 clone::Clone,31 collections::hash_map::Entry,32 fmt::{self, Debug},33 marker::PhantomData,34 rc::Rc,35};3637pub use ctx::*;38pub use dynamic::*;39pub use error::{Error, ErrorKind::*, Result, ResultExt};40pub use evaluate::*;41use function::CallLocation;42pub use import::*;43use jrsonnet_gcmodule::{cc_dyn, Cc, Trace};44pub use jrsonnet_interner::{IBytes, IStr};45pub use jrsonnet_ir as parser;46use jrsonnet_ir::{Expr, Source, SourcePath};47#[doc(hidden)]48pub use jrsonnet_macros;49#[cfg(feature = "ir-parser")]50use jrsonnet_ir_parser::ParserSettings;51#[cfg(not(feature = "ir-parser"))]52use jrsonnet_peg_parser::ParserSettings;53pub use obj::*;54pub use rustc_hash;55use rustc_hash::FxHashMap;56use stack::check_depth;57pub use tla::apply_tla;58pub use val::{Thunk, Val};5960use crate::gc::WithCapacityExt as _;6162#[cfg(feature = "ir-parser")]63pub(crate) fn parse_jsonnet(64 code: &str,65 settings: &ParserSettings,66) -> Result<Expr, jrsonnet_ir_parser::ParseError> {67 jrsonnet_ir_parser::parse(code, settings)68}6970#[cfg(not(feature = "ir-parser"))]71pub(crate) fn parse_jsonnet(72 code: &str,73 settings: &ParserSettings,74) -> Result<Expr, jrsonnet_peg_parser::ParseError> {75 jrsonnet_peg_parser::parse(code, settings)76}7778cc_dyn!(79 #[derive(Clone)]80 CcUnbound<V>,81 Unbound<Bound = V>82);83848586pub trait Unbound: Trace {87 88 type Bound;89 90 fn bind(&self, sup_this: SupThis) -> Result<Self::Bound>;91}92939495#[derive(Clone, Trace)]96pub enum MaybeUnbound {97 98 Unbound(CcUnbound<Val>),99 100 Bound(Thunk<Val>),101}102103impl Debug for MaybeUnbound {104 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {105 write!(f, "MaybeUnbound")106 }107}108impl MaybeUnbound {109 110 pub fn evaluate(&self, sup_this: SupThis) -> Result<Val> {111 match self {112 Self::Unbound(v) => v.0.bind(sup_this),113 Self::Bound(v) => Ok(v.evaluate()?),114 }115 }116}117118cc_dyn!(CcContextInitializer, ContextInitializer);119120121122pub trait ContextInitializer: Trace {123 124 fn reserve_vars(&self) -> usize {125 0126 }127 128 129 130 fn initialize(&self, for_file: Source) -> Context {131 let mut builder = ContextBuilder::with_capacity(self.reserve_vars());132 self.populate(for_file, &mut builder);133 builder.build()134 }135 136 137 fn populate(&self, for_file: Source, builder: &mut ContextBuilder);138 139 140 fn as_any(&self) -> &dyn Any;141}142143144impl ContextInitializer for () {145 fn populate(&self, _for_file: Source, _builder: &mut ContextBuilder) {}146 fn as_any(&self) -> &dyn Any {147 self148 }149}150151impl<T> ContextInitializer for Option<T>152where153 T: ContextInitializer,154{155 fn initialize(&self, for_file: Source) -> Context {156 if let Some(ctx) = self {157 ctx.initialize(for_file)158 } else {159 ().initialize(for_file)160 }161 }162163 fn populate(&self, for_file: Source, builder: &mut ContextBuilder) {164 if let Some(ctx) = self {165 ctx.populate(for_file, builder);166 }167 }168169 fn as_any(&self) -> &dyn Any {170 self171 }172}173174macro_rules! impl_context_initializer {175 ($($gen:ident)*) => {176 #[allow(non_snake_case)]177 impl<$($gen: ContextInitializer + Trace,)*> ContextInitializer for ($($gen,)*) {178 fn reserve_vars(&self) -> usize {179 let mut out = 0;180 let ($($gen,)*) = self;181 $(out += $gen.reserve_vars();)*182 out183 }184 fn populate(&self, for_file: Source, builder: &mut ContextBuilder) {185 let ($($gen,)*) = self;186 $($gen.populate(for_file.clone(), builder);)*187 }188 fn as_any(&self) -> &dyn Any {189 self190 }191 }192 };193 ($($cur:ident)* @ $c:ident $($rest:ident)*) => {194 impl_context_initializer!($($cur)*);195 impl_context_initializer!($($cur)* $c @ $($rest)*);196 };197 ($($cur:ident)* @) => {198 impl_context_initializer!($($cur)*);199 }200}201impl_context_initializer! {202 A @ B C D E F G203}204205#[derive(Trace)]206struct FileData {207 string: Option<IStr>,208 bytes: Option<IBytes>,209 parsed: Option<Rc<Expr>>,210 evaluated: Option<Val>,211212 evaluating: bool,213}214impl FileData {215 fn new_string(data: IStr) -> Self {216 Self {217 string: Some(data),218 bytes: None,219 parsed: None,220 evaluated: None,221 evaluating: false,222 }223 }224 fn new_bytes(data: IBytes) -> Self {225 Self {226 string: None,227 bytes: Some(data),228 parsed: None,229 evaluated: None,230 evaluating: false,231 }232 }233 pub(crate) fn get_string(&mut self) -> Option<IStr> {234 if self.string.is_none() {235 self.string = Some(236 self.bytes237 .as_ref()238 .expect("either string or bytes should be set")239 .clone()240 .cast_str()?,241 );242 }243 Some(self.string.clone().expect("just set"))244 }245}246247#[derive(Trace)]248pub struct EvaluationStateInternals {249 250 file_cache: RefCell<FxHashMap<SourcePath, FileData>>,251 252 253 context_initializer: CcContextInitializer,254 255 import_resolver: Rc<dyn ImportResolver>,256}257258259#[derive(Clone, Trace)]260pub struct State(Cc<EvaluationStateInternals>);261262thread_local! {263 pub static DEFAULT_STATE: State = State::builder().build();264 pub static STATE: RefCell<Option<State>> = const {RefCell::new(None)};265}266pub struct StateEnterGuard(PhantomData<()>);267impl Drop for StateEnterGuard {268 fn drop(&mut self) {269 STATE.with_borrow_mut(|v| *v = None);270 }271}272273pub fn with_state<V>(v: impl FnOnce(State) -> V) -> V {274 if let Some(state) = STATE.with_borrow(Clone::clone) {275 v(state)276 } else {277 let s = DEFAULT_STATE.with(Clone::clone);278 v(s)279 }280}281282impl State {283 pub fn enter(&self) -> StateEnterGuard {284 self.try_enter().expect("entered state already exists")285 }286 pub fn try_enter(&self) -> Option<StateEnterGuard> {287 STATE.with_borrow_mut(|v| {288 if v.is_none() {289 *v = Some(self.clone());290 Some(StateEnterGuard(PhantomData))291 } else {292 None293 }294 })295 }296 297 pub fn import_resolved_str(&self, path: SourcePath) -> Result<IStr> {298 let mut file_cache = self.file_cache();299 let mut file = file_cache.entry(path.clone());300301 let file = match file {302 Entry::Occupied(ref mut d) => d.get_mut(),303 Entry::Vacant(v) => {304 let data = self.import_resolver().load_file_contents(&path)?;305 v.insert(FileData::new_string(306 std::str::from_utf8(&data)307 .map_err(|_| ImportBadFileUtf8(path.clone()))?308 .into(),309 ))310 }311 };312 Ok(file313 .get_string()314 .ok_or_else(|| ImportBadFileUtf8(path.clone()))?)315 }316 317 pub fn import_resolved_bin(&self, path: SourcePath) -> Result<IBytes> {318 let mut file_cache = self.file_cache();319 let mut file = file_cache.entry(path.clone());320321 let file = match file {322 Entry::Occupied(ref mut d) => d.get_mut(),323 Entry::Vacant(v) => {324 let data = self.import_resolver().load_file_contents(&path)?;325 v.insert(FileData::new_bytes(data.as_slice().into()))326 }327 };328 if let Some(str) = &file.bytes {329 return Ok(str.clone());330 }331 if file.bytes.is_none() {332 file.bytes = Some(333 file.string334 .as_ref()335 .expect("either string or bytes should be set")336 .clone()337 .cast_bytes(),338 );339 }340 Ok(file.bytes.as_ref().expect("just set").clone())341 }342 343 pub fn import_resolved(&self, path: SourcePath) -> Result<Val> {344 let mut file_cache = self.file_cache();345 let mut file = file_cache.entry(path.clone());346347 let file = match file {348 Entry::Occupied(ref mut d) => d.get_mut(),349 Entry::Vacant(v) => {350 let data = self.import_resolver().load_file_contents(&path)?;351 v.insert(FileData::new_string(352 std::str::from_utf8(&data)353 .map_err(|_| ImportBadFileUtf8(path.clone()))?354 .into(),355 ))356 }357 };358 if let Some(val) = &file.evaluated {359 return Ok(val.clone());360 }361 let code = file362 .get_string()363 .ok_or_else(|| ImportBadFileUtf8(path.clone()))?;364 let file_name = Source::new(path.clone(), code.clone());365 if file.parsed.is_none() {366 file.parsed = Some(367 parse_jsonnet(368 &code,369 &ParserSettings {370 source: file_name.clone(),371 },372 )373 .map(Rc::new)374 .map_err(|e| ImportSyntaxError {375 path: file_name.clone(),376 error: Box::new(e),377 })?,378 );379 }380 let parsed = file.parsed.as_ref().expect("just set").clone();381 if file.evaluating {382 bail!(InfiniteRecursionDetected)383 }384 file.evaluating = true;385 386 drop(file_cache);387 let res = evaluate(self.create_default_context(file_name), &parsed);388389 let mut file_cache = self.file_cache();390 let mut file = file_cache.entry(path);391392 let Entry::Occupied(file) = &mut file else {393 unreachable!("this file was just here")394 };395 let file = file.get_mut();396 file.evaluating = false;397 match res {398 Ok(v) => {399 file.evaluated = Some(v.clone());400 Ok(v)401 }402 Err(e) => Err(e),403 }404 }405406 407 pub fn import_from(&self, from: &SourcePath, path: impl AsPathLike) -> Result<Val> {408 let resolved = self.resolve_from(from, &path)?;409 self.import_resolved(resolved)410 }411 pub fn import(&self, path: impl AsPathLike) -> Result<Val> {412 let resolved = self.resolve_from_default(&path)?;413 self.import_resolved(resolved)414 }415416 417 pub fn create_default_context(&self, source: Source) -> Context {418 self.context_initializer().initialize(source)419 }420421 422 pub fn create_default_context_with(423 &self,424 source: Source,425 context_initializer: impl ContextInitializer,426 ) -> Context {427 let default_initializer = self.context_initializer();428 let mut builder = ContextBuilder::with_capacity(429 default_initializer.reserve_vars() + context_initializer.reserve_vars(),430 );431 default_initializer.populate(source.clone(), &mut builder);432 context_initializer.populate(source, &mut builder);433434 builder.build()435 }436}437438439impl State {440 fn file_cache(&self) -> RefMut<'_, FxHashMap<SourcePath, FileData>> {441 self.0.file_cache.borrow_mut()442 }443}444445pub fn in_frame<T>(446 e: CallLocation<'_>,447 frame_desc: impl FnOnce() -> String,448 f: impl FnOnce() -> Result<T>,449) -> Result<T> {450 let _guard = check_depth()?;451452 f().with_description_src(e, frame_desc)453}454455456pub fn in_description_frame<T>(457 frame_desc: impl FnOnce() -> String,458 f: impl FnOnce() -> Result<T>,459) -> Result<T> {460 let _guard = check_depth()?;461462 f().with_description(frame_desc)463}464465#[derive(Trace)]466pub struct InitialUnderscore(pub Thunk<Val>);467impl ContextInitializer for InitialUnderscore {468 fn populate(&self, _for_file: Source, builder: &mut ContextBuilder) {469 builder.bind("_", self.0.clone());470 }471472 fn as_any(&self) -> &dyn Any {473 self474 }475}476477478impl State {479 480 pub fn evaluate_snippet(&self, name: impl Into<IStr>, code: impl Into<IStr>) -> Result<Val> {481 let code = code.into();482 let source = Source::new_virtual(name.into(), code.clone());483 let parsed = parse_jsonnet(484 &code,485 &ParserSettings {486 source: source.clone(),487 },488 )489 .map_err(|e| ImportSyntaxError {490 path: source.clone(),491 error: Box::new(e),492 })?;493 evaluate(self.create_default_context(source), &parsed)494 }495 496 pub fn evaluate_snippet_with(497 &self,498 name: impl Into<IStr>,499 code: impl Into<IStr>,500 context_initializer: impl ContextInitializer,501 ) -> Result<Val> {502 let code = code.into();503 let source = Source::new_virtual(name.into(), code.clone());504 let parsed = parse_jsonnet(505 &code,506 &ParserSettings {507 source: source.clone(),508 },509 )510 .map_err(|e| ImportSyntaxError {511 path: source.clone(),512 error: Box::new(e),513 })?;514 evaluate(515 self.create_default_context_with(source, context_initializer),516 &parsed,517 )518 }519}520521522impl State {523 524 #[allow(clippy::missing_panics_doc)]525 pub fn resolve_from(&self, from: &SourcePath, path: &dyn AsPathLike) -> Result<SourcePath> {526 self.import_resolver().resolve_from(from, path)527 }528 #[allow(clippy::missing_panics_doc)]529 pub fn resolve_from_default(&self, path: &dyn AsPathLike) -> Result<SourcePath> {530 self.import_resolver().resolve_from_default(path)531 }532 pub fn import_resolver(&self) -> &dyn ImportResolver {533 &*self.0.import_resolver534 }535 pub fn context_initializer(&self) -> &dyn ContextInitializer {536 &*self.0.context_initializer.0537 }538}539540impl State {541 pub fn builder() -> StateBuilder {542 StateBuilder::default()543 }544}545546impl Default for State {547 fn default() -> Self {548 Self::builder().build()549 }550}551552#[derive(Default)]553pub struct StateBuilder {554 import_resolver: Option<Rc<dyn ImportResolver>>,555 context_initializer: Option<CcContextInitializer>,556}557impl StateBuilder {558 pub fn import_resolver(&mut self, import_resolver: impl ImportResolver) -> &mut Self {559 let _ = self.import_resolver.insert(Rc::new(import_resolver));560 self561 }562 pub fn context_initializer(563 &mut self,564 context_initializer: impl ContextInitializer,565 ) -> &mut Self {566 let _ = self567 .context_initializer568 .insert(CcContextInitializer::new(context_initializer));569 self570 }571 pub fn build(mut self) -> State {572 State(Cc::new(EvaluationStateInternals {573 file_cache: RefCell::new(FxHashMap::new()),574 context_initializer: self575 .context_initializer576 .take()577 .unwrap_or_else(|| CcContextInitializer::new(())),578 import_resolver: self579 .import_resolver580 .take()581 .unwrap_or_else(|| Rc::new(DummyImportResolver)),582 }))583 }584}