difftreelog
Merge pull request #64 from CertainLach/feat/manifest-yaml-doc-builtin
in: master
Make manifestYamlDoc builtin
6 files changed
crates/jrsonnet-cli/src/manifest.rsdiffbeforeafterboth--- a/crates/jrsonnet-cli/src/manifest.rs
+++ b/crates/jrsonnet-cli/src/manifest.rs
@@ -38,9 +38,9 @@
#[clap(long, short = 'y')]
yaml_stream: bool,
/// Number of spaces to pad output manifest with.
- /// `0` for hard tabs, `-1` for single line output
- #[clap(long, default_value = "3")]
- line_padding: usize,
+ /// `0` for hard tabs, `-1` for single line output [default: 3 for json, 2 for yaml]
+ #[clap(long)]
+ line_padding: Option<usize>,
}
impl ConfigureState for ManifestOpts {
fn configure(&self, state: &EvaluationState) -> Result<()> {
@@ -50,10 +50,10 @@
match self.format {
ManifestFormatName::String => state.set_manifest_format(ManifestFormat::String),
ManifestFormatName::Json => {
- state.set_manifest_format(ManifestFormat::Json(self.line_padding))
+ state.set_manifest_format(ManifestFormat::Json(self.line_padding.unwrap_or(3)))
}
ManifestFormatName::Yaml => {
- state.set_manifest_format(ManifestFormat::Yaml(self.line_padding))
+ state.set_manifest_format(ManifestFormat::Yaml(self.line_padding.unwrap_or(2)))
}
}
}
crates/jrsonnet-evaluator/src/builtin/manifest.rsdiffbeforeafterboth--- a/crates/jrsonnet-evaluator/src/builtin/manifest.rs
+++ b/crates/jrsonnet-evaluator/src/builtin/manifest.rs
@@ -156,3 +156,127 @@
}
buf.push('"');
}
+
+pub struct ManifestYamlOptions<'s> {
+ /// Padding before fields, i.e
+ /// ```yaml
+ /// a:
+ /// b:
+ /// ## <- this
+ /// ```
+ pub padding: &'s str,
+ /// Padding before array elements in objects
+ /// ```yaml
+ /// a:
+ /// - 1
+ /// ## <- this
+ /// ```
+ pub arr_element_padding: &'s str,
+}
+
+pub fn manifest_yaml_ex(val: &Val, options: &ManifestYamlOptions<'_>) -> Result<String> {
+ let mut out = String::new();
+ manifest_yaml_ex_buf(val, &mut out, &mut String::new(), options)?;
+ Ok(out)
+}
+fn manifest_yaml_ex_buf(
+ val: &Val,
+ buf: &mut String,
+ cur_padding: &mut String,
+ options: &ManifestYamlOptions<'_>,
+) -> Result<()> {
+ use std::fmt::Write;
+ match val {
+ Val::Bool(v) => {
+ if *v {
+ buf.push_str("true")
+ } else {
+ buf.push_str("false")
+ }
+ }
+ Val::Null => buf.push_str("null"),
+ Val::Str(s) => {
+ if s.is_empty() {
+ buf.push_str("\"\"");
+ } else if let Some(s) = s.strip_suffix('\n') {
+ buf.push('|');
+ for line in s.split('\n') {
+ buf.push('\n');
+ buf.push_str(options.padding);
+ buf.push_str(line);
+ }
+ } else {
+ escape_string_json_buf(s, buf)
+ }
+ }
+ Val::Num(n) => write!(buf, "{}", *n).unwrap(),
+ Val::Arr(a) => {
+ if a.is_empty() {
+ buf.push_str("[]");
+ } else {
+ for (i, item) in a.iter().enumerate() {
+ if i != 0 {
+ buf.push('\n');
+ buf.push_str(cur_padding);
+ }
+ let item = item?;
+ buf.push('-');
+ match &item {
+ Val::Arr(a) if !a.is_empty() => {
+ buf.push('\n');
+ buf.push_str(cur_padding);
+ buf.push_str(options.padding);
+ }
+ _ => buf.push(' '),
+ }
+ let extra_padding = match &item {
+ Val::Arr(a) => !a.is_empty(),
+ Val::Obj(o) => !o.is_empty(),
+ _ => false,
+ };
+ let prev_len = cur_padding.len();
+ if extra_padding {
+ cur_padding.push_str(options.padding);
+ }
+ manifest_yaml_ex_buf(&item, buf, cur_padding, options)?;
+ cur_padding.truncate(prev_len);
+ }
+ }
+ }
+ Val::Obj(o) => {
+ if o.is_empty() {
+ buf.push_str("{}");
+ } else {
+ for (i, key) in o.fields().iter().enumerate() {
+ if i != 0 {
+ buf.push('\n');
+ buf.push_str(cur_padding);
+ }
+ escape_string_json_buf(key, buf);
+ buf.push(':');
+ let prev_len = cur_padding.len();
+ let item = o.get(key.clone())?.expect("field exists");
+ match &item {
+ Val::Arr(a) if !a.is_empty() => {
+ buf.push('\n');
+ buf.push_str(cur_padding);
+ buf.push_str(options.arr_element_padding);
+ cur_padding.push_str(options.arr_element_padding);
+ }
+ Val::Obj(o) if !o.is_empty() => {
+ buf.push('\n');
+ buf.push_str(cur_padding);
+ buf.push_str(options.padding);
+ cur_padding.push_str(options.padding);
+ }
+ _ => buf.push(' '),
+ }
+ manifest_yaml_ex_buf(&item, buf, cur_padding, options)?;
+ cur_padding.truncate(prev_len);
+ }
+ }
+ }
+ Val::Func(_) => throw!(RuntimeError("tried to manifest function".into())),
+ }
+ Ok(())
+}
crates/jrsonnet-evaluator/src/builtin/mod.rsdiffbeforeafterboth--- a/crates/jrsonnet-evaluator/src/builtin/mod.rs
+++ b/crates/jrsonnet-evaluator/src/builtin/mod.rs
@@ -1,4 +1,5 @@
use crate::{
+ builtin::manifest::{manifest_yaml_ex, ManifestYamlOptions},
equals,
error::{Error::*, Result},
operator::evaluate_mod_op,
@@ -121,6 +122,7 @@
("join".into(), builtin_join),
("escapeStringJson".into(), builtin_escape_string_json),
("manifestJsonEx".into(), builtin_manifest_json_ex),
+ ("manifestYamlDocImpl".into(), builtin_manifest_yaml_doc),
("reverse".into(), builtin_reverse),
("id".into(), builtin_id),
("strReplace".into(), builtin_str_replace),
@@ -768,6 +770,22 @@
})
}
+fn builtin_manifest_yaml_doc(
+ context: Context,
+ _loc: Option<&ExprLocation>,
+ args: &ArgsDesc,
+) -> Result<Val> {
+ parse_args!(context, "manifestYamlDoc", args, 2, [
+ 0, value: ty!(any);
+ 1, indent_array_in_object: ty!(boolean) => Val::Bool;
+ ], {
+ Ok(Val::Str(manifest_yaml_ex(&value, &ManifestYamlOptions {
+ padding: " ",
+ arr_element_padding: if indent_array_in_object { " " } else { "" },
+ })?.into()))
+ })
+}
+
fn builtin_reverse(context: Context, _loc: Option<&ExprLocation>, args: &ArgsDesc) -> Result<Val> {
parse_args!(context, "reverse", args, 1, [
0, value: ty!(array) => Val::Arr;
@@ -794,18 +812,7 @@
1, from: ty!(string) => Val::Str;
2, to: ty!(string) => Val::Str;
], {
- let mut out = String::new();
- let mut last_idx = 0;
- while let Some(idx) = (&str[last_idx..]).find(&from as &str) {
- out.push_str(&str[last_idx..last_idx+idx]);
- out.push_str(&to);
- last_idx += idx + from.len();
- }
- if last_idx == 0 {
- return Ok(Val::Str(str))
- }
- out.push_str(&str[last_idx..]);
- Ok(Val::Str(out.into()))
+ Ok(Val::Str(str.replace(&from as &str, &to as &str).into()))
})
}
crates/jrsonnet-evaluator/src/obj.rsdiffbeforeafterboth1use crate::operator::evaluate_add_op;2use crate::{Bindable, LazyBinding, LazyVal, Result, Val};3use jrsonnet_gc::{Gc, GcCell, Trace};4use jrsonnet_interner::IStr;5use jrsonnet_parser::{ExprLocation, Visibility};6use rustc_hash::{FxHashMap, FxHashSet, FxHasher};7use std::collections::HashMap;8use std::hash::{Hash, Hasher};9use std::{fmt::Debug, hash::BuildHasherDefault};1011#[derive(Debug, Trace)]12#[trivially_drop]13pub struct ObjMember {14 pub add: bool,15 pub visibility: Visibility,16 pub invoke: LazyBinding,17 pub location: Option<ExprLocation>,18}1920pub trait ObjectAssertion: Trace {21 fn run(&self, this: Option<ObjValue>, super_obj: Option<ObjValue>) -> Result<()>;22}2324// Field => This25type CacheKey = (IStr, ObjValue);26#[derive(Trace)]27#[trivially_drop]28pub struct ObjValueInternals {29 super_obj: Option<ObjValue>,30 assertions: Gc<Vec<Box<dyn ObjectAssertion>>>,31 assertions_ran: GcCell<FxHashSet<ObjValue>>,32 this_obj: Option<ObjValue>,33 this_entries: Gc<FxHashMap<IStr, ObjMember>>,34 value_cache: GcCell<FxHashMap<CacheKey, Option<Val>>>,35}3637#[derive(Clone, Trace)]38#[trivially_drop]39pub struct ObjValue(pub(crate) Gc<ObjValueInternals>);40impl Debug for ObjValue {41 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {42 if let Some(super_obj) = self.0.super_obj.as_ref() {43 if f.alternate() {44 write!(f, "{:#?}", super_obj)?;45 } else {46 write!(f, "{:?}", super_obj)?;47 }48 write!(f, " + ")?;49 }50 let mut debug = f.debug_struct("ObjValue");51 for (name, member) in self.0.this_entries.iter() {52 debug.field(name, member);53 }54 #[cfg(feature = "unstable")]55 {56 debug.finish_non_exhaustive()57 }58 #[cfg(not(feature = "unstable"))]59 {60 debug.finish()61 }62 }63}6465impl ObjValue {66 pub fn new(67 super_obj: Option<Self>,68 this_entries: Gc<FxHashMap<IStr, ObjMember>>,69 assertions: Gc<Vec<Box<dyn ObjectAssertion>>>,70 ) -> Self {71 Self(Gc::new(ObjValueInternals {72 super_obj,73 assertions,74 assertions_ran: GcCell::new(FxHashSet::default()),75 this_obj: None,76 this_entries,77 value_cache: GcCell::new(FxHashMap::default()),78 }))79 }80 pub fn new_empty() -> Self {81 Self::new(None, Gc::new(FxHashMap::default()), Gc::new(Vec::new()))82 }83 pub fn extend_from(&self, super_obj: Self) -> Self {84 match &self.0.super_obj {85 None => Self::new(86 Some(super_obj),87 self.0.this_entries.clone(),88 self.0.assertions.clone(),89 ),90 Some(v) => Self::new(91 Some(v.extend_from(super_obj)),92 self.0.this_entries.clone(),93 self.0.assertions.clone(),94 ),95 }96 }97 pub fn with_this(&self, this_obj: Self) -> Self {98 Self(Gc::new(ObjValueInternals {99 super_obj: self.0.super_obj.clone(),100 assertions: self.0.assertions.clone(),101 assertions_ran: GcCell::new(FxHashSet::default()),102 this_obj: Some(this_obj),103 this_entries: self.0.this_entries.clone(),104 value_cache: GcCell::new(FxHashMap::default()),105 }))106 }107108 pub fn is_empty(&self) -> bool {109 if !self.0.this_entries.is_empty() {110 return false;111 }112 self.0113 .super_obj114 .as_ref()115 .map(|s| s.is_empty())116 .unwrap_or(true)117 }118119 /// Run callback for every field found in object120 pub(crate) fn enum_fields(&self, handler: &mut impl FnMut(&IStr, &Visibility) -> bool) -> bool {121 if let Some(s) = &self.0.super_obj {122 if s.enum_fields(handler) {123 return true;124 }125 }126 for (name, member) in self.0.this_entries.iter() {127 if handler(name, &member.visibility) {128 return true;129 }130 }131 false132 }133134 pub fn fields_visibility(&self) -> FxHashMap<IStr, bool> {135 let mut out = FxHashMap::default();136 self.enum_fields(&mut |name, visibility| {137 match visibility {138 Visibility::Normal => {139 let entry = out.entry(name.to_owned());140 entry.or_insert(true);141 }142 Visibility::Hidden => {143 out.insert(name.to_owned(), false);144 }145 Visibility::Unhide => {146 out.insert(name.to_owned(), true);147 }148 };149 false150 });151 out152 }153 pub fn fields_ex(&self, include_hidden: bool) -> Vec<IStr> {154 let mut fields: Vec<_> = self155 .fields_visibility()156 .into_iter()157 .filter(|(_k, v)| include_hidden || *v)158 .map(|(k, _)| k)159 .collect();160 fields.sort_unstable();161 fields162 }163 pub fn fields(&self) -> Vec<IStr> {164 self.fields_ex(false)165 }166167 pub fn field_visibility(&self, name: IStr) -> Option<Visibility> {168 if let Some(m) = self.0.this_entries.get(&name) {169 Some(match &m.visibility {170 Visibility::Normal => self171 .0172 .super_obj173 .as_ref()174 .and_then(|super_obj| super_obj.field_visibility(name))175 .unwrap_or(Visibility::Normal),176 v => *v,177 })178 } else if let Some(super_obj) = &self.0.super_obj {179 super_obj.field_visibility(name)180 } else {181 None182 }183 }184185 fn has_field_include_hidden(&self, name: IStr) -> bool {186 if self.0.this_entries.contains_key(&name) {187 true188 } else if let Some(super_obj) = &self.0.super_obj {189 super_obj.has_field_include_hidden(name)190 } else {191 false192 }193 }194195 pub fn has_field_ex(&self, name: IStr, include_hidden: bool) -> bool {196 if include_hidden {197 self.has_field_include_hidden(name)198 } else {199 self.has_field(name)200 }201 }202 pub fn has_field(&self, name: IStr) -> bool {203 self.field_visibility(name)204 .map(|v| v.is_visible())205 .unwrap_or(false)206 }207208 pub fn get(&self, key: IStr) -> Result<Option<Val>> {209 self.run_assertions()?;210 self.get_raw(key, self.0.this_obj.as_ref())211 }212213 pub fn extend_with_field(self, key: IStr, value: ObjMember) -> Self {214 let mut new = FxHashMap::with_capacity_and_hasher(1, BuildHasherDefault::default());215 new.insert(key, value);216 Self::new(Some(self), Gc::new(new), Gc::new(Vec::new()))217 }218219 fn get_raw(&self, key: IStr, real_this: Option<&Self>) -> Result<Option<Val>> {220 let real_this = real_this.unwrap_or(self);221 let cache_key = (key.clone(), real_this.clone());222223 if let Some(v) = self.0.value_cache.borrow().get(&cache_key) {224 return Ok(v.clone());225 }226 let value = match (self.0.this_entries.get(&key), &self.0.super_obj) {227 (Some(k), None) => Ok(Some(self.evaluate_this(k, real_this)?)),228 (Some(k), Some(s)) => {229 let our = self.evaluate_this(k, real_this)?;230 if k.add {231 s.get_raw(key, Some(real_this))?232 .map_or(Ok(Some(our.clone())), |v| {233 Ok(Some(evaluate_add_op(&v, &our)?))234 })235 } else {236 Ok(Some(our))237 }238 }239 (None, Some(s)) => s.get_raw(key, Some(real_this)),240 (None, None) => Ok(None),241 }?;242 self.0243 .value_cache244 .borrow_mut()245 .insert(cache_key, value.clone());246 Ok(value)247 }248 fn evaluate_this(&self, v: &ObjMember, real_this: &Self) -> Result<Val> {249 v.invoke250 .evaluate(Some(real_this.clone()), self.0.super_obj.clone())?251 .evaluate()252 }253254 fn run_assertions_raw(&self, real_this: &Self) -> Result<()> {255 if self.0.assertions_ran.borrow_mut().insert(real_this.clone()) {256 for assertion in self.0.assertions.iter() {257 if let Err(e) = assertion.run(Some(real_this.clone()), self.0.super_obj.clone()) {258 self.0.assertions_ran.borrow_mut().remove(real_this);259 return Err(e);260 }261 }262 if let Some(super_obj) = &self.0.super_obj {263 super_obj.run_assertions_raw(real_this)?;264 }265 }266 Ok(())267 }268 pub fn run_assertions(&self) -> Result<()> {269 self.run_assertions_raw(self)270 }271272 pub fn ptr_eq(a: &Self, b: &Self) -> bool {273 Gc::ptr_eq(&a.0, &b.0)274 }275}276277impl PartialEq for ObjValue {278 fn eq(&self, other: &Self) -> bool {279 Gc::ptr_eq(&self.0, &other.0)280 }281}282283impl Eq for ObjValue {}284impl Hash for ObjValue {285 fn hash<H: Hasher>(&self, hasher: &mut H) {286 hasher.write_usize(&*self.0 as *const _ as usize)287 }288}289290pub struct ObjValueBuilder {291 super_obj: Option<ObjValue>,292 map: FxHashMap<IStr, ObjMember>,293 assertions: Vec<Box<dyn ObjectAssertion>>,294}295impl ObjValueBuilder {296 pub fn new() -> Self {297 Self::with_capacity(0)298 }299 pub fn with_capacity(capacity: usize) -> Self {300 Self {301 super_obj: None,302 map: HashMap::with_capacity_and_hasher(303 capacity,304 BuildHasherDefault::<FxHasher>::default(),305 ),306 assertions: Vec::new(),307 }308 }309 pub fn reserve_asserts(&mut self, capacity: usize) -> &mut Self {310 self.assertions.reserve_exact(capacity);311 self312 }313 pub fn with_super(&mut self, super_obj: ObjValue) -> &mut Self {314 self.super_obj = Some(super_obj);315 self316 }317318 pub fn assert(&mut self, assertion: Box<dyn ObjectAssertion>) -> &mut Self {319 self.assertions.push(assertion);320 self321 }322 pub fn member(&mut self, name: IStr) -> ObjMemberBuilder {323 ObjMemberBuilder {324 value: self,325 name,326 add: false,327 visibility: Visibility::Normal,328 location: None,329 }330 }331332 pub fn build(self) -> ObjValue {333 ObjValue::new(self.super_obj, Gc::new(self.map), Gc::new(self.assertions))334 }335}336impl Default for ObjValueBuilder {337 fn default() -> Self {338 Self::with_capacity(0)339 }340}341342#[must_use = "value not added unless binding() was called"]343pub struct ObjMemberBuilder<'v> {344 value: &'v mut ObjValueBuilder,345 name: IStr,346 add: bool,347 visibility: Visibility,348 location: Option<ExprLocation>,349}350351#[allow(clippy::missing_const_for_fn)]352impl<'v> ObjMemberBuilder<'v> {353 pub const fn with_add(mut self, add: bool) -> Self {354 self.add = add;355 self356 }357 pub fn add(self) -> Self {358 self.with_add(true)359 }360 pub fn with_visibility(mut self, visibility: Visibility) -> Self {361 self.visibility = visibility;362 self363 }364 pub fn hide(self) -> Self {365 self.with_visibility(Visibility::Hidden)366 }367 pub fn with_location(mut self, location: Option<ExprLocation>) -> Self {368 self.location = location;369 self370 }371 pub fn value(self, value: Val) -> &'v mut ObjValueBuilder {372 self.binding(LazyBinding::Bound(LazyVal::new_resolved(value)))373 }374 pub fn bindable(self, bindable: Box<dyn Bindable>) -> &'v mut ObjValueBuilder {375 self.binding(LazyBinding::Bindable(Gc::new(bindable)))376 }377 pub fn binding(self, binding: LazyBinding) -> &'v mut ObjValueBuilder {378 self.value.map.insert(379 self.name,380 ObjMember {381 add: self.add,382 visibility: self.visibility,383 invoke: binding,384 location: self.location,385 },386 );387 self.value388 }389}crates/jrsonnet-evaluator/src/val.rsdiffbeforeafterboth--- a/crates/jrsonnet-evaluator/src/val.rs
+++ b/crates/jrsonnet-evaluator/src/val.rs
@@ -1,17 +1,20 @@
use crate::{
builtin::{
call_builtin,
- manifest::{manifest_json_ex, ManifestJsonOptions, ManifestType},
+ manifest::{
+ manifest_json_ex, manifest_yaml_ex, ManifestJsonOptions, ManifestType,
+ ManifestYamlOptions,
+ },
},
error::{Error::*, LocError},
evaluate,
function::{parse_function_call, parse_function_call_map, place_args},
native::NativeCallback,
- throw, with_state, Context, ObjValue, Result,
+ throw, Context, ObjValue, Result,
};
use jrsonnet_gc::{Gc, GcCell, Trace};
use jrsonnet_interner::IStr;
-use jrsonnet_parser::{el, ArgsDesc, Expr, ExprLocation, LiteralType, LocExpr, ParamsDesc};
+use jrsonnet_parser::{ArgsDesc, ExprLocation, LocExpr, ParamsDesc};
use jrsonnet_types::ValType;
use std::{collections::HashMap, fmt::Debug, rc::Rc};
@@ -393,6 +396,12 @@
pub fn unwrap_num(self) -> Result<f64> {
Ok(matches_unwrap!(self, Self::Num(v), v))
}
+ pub fn unwrap_str(self) -> Result<IStr> {
+ Ok(matches_unwrap!(self, Self::Str(v), v))
+ }
+ pub fn unwrap_arr(self) -> Result<ArrValue> {
+ Ok(matches_unwrap!(self, Self::Arr(v), v))
+ }
pub fn unwrap_func(self) -> Result<Gc<FuncVal>> {
Ok(matches_unwrap!(self, Self::Func(v), v))
}
@@ -544,33 +553,15 @@
}
pub fn to_yaml(&self, padding: usize) -> Result<IStr> {
- with_state(|s| {
- let ctx = s
- .create_default_context()
- .with_var("__tmp__to_json__".into(), self.clone());
- evaluate(
- ctx,
- &el!(Expr::Apply(
- el!(Expr::Index(
- el!(Expr::Var("std".into())),
- el!(Expr::Str("manifestYamlDoc".into()))
- )),
- ArgsDesc::new(
- vec![
- el!(Expr::Var("__tmp__to_json__".into())),
- el!(Expr::Literal(if padding != 0 {
- LiteralType::True
- } else {
- LiteralType::False
- })),
- ],
- vec![]
- ),
- false
- )),
- )?
- .try_cast_str("to json")
- })
+ let padding = &" ".repeat(padding);
+ manifest_yaml_ex(
+ self,
+ &ManifestYamlOptions {
+ padding,
+ arr_element_padding: padding,
+ },
+ )
+ .map(|s| s.into())
}
pub fn into_indexable(self) -> Result<IndexableVal> {
Ok(match self {
crates/jrsonnet-stdlib/src/std.jsonnetdiffbeforeafterboth--- a/crates/jrsonnet-stdlib/src/std.jsonnet
+++ b/crates/jrsonnet-stdlib/src/std.jsonnet
@@ -374,88 +374,9 @@
manifestJsonEx:: $intrinsic(manifestJsonEx),
- manifestYamlDoc(value, indent_array_in_object=false)::
- local aux(v, path, cindent) =
- if v == true then
- 'true'
- else if v == false then
- 'false'
- else if v == null then
- 'null'
- else if std.isNumber(v) then
- '' + v
- else if std.isString(v) then
- local len = std.length(v);
- if len == 0 then
- '""'
- else if v[len - 1] == '\n' then
- local split = std.split(v, '\n');
- std.join('\n' + cindent + ' ', ['|'] + split[0:std.length(split) - 1])
- else
- std.escapeStringJson(v)
- else if std.isFunction(v) then
- error 'Tried to manifest function at ' + path
- else if std.isArray(v) then
- if std.length(v) == 0 then
- '[]'
- else
- local params(value) =
- if std.isArray(value) && std.length(value) > 0 then {
- // While we could avoid the new line, it yields YAML that is
- // hard to read, e.g.:
- // - - - 1
- // - 2
- // - - 3
- // - 4
- new_indent: cindent + ' ',
- space: '\n' + self.new_indent,
- } else if std.isObject(value) && std.length(value) > 0 then {
- new_indent: cindent + ' ',
- // In this case we can start on the same line as the - because the indentation
- // matches up then. The converse is not true, because fields are not always
- // 1 character long.
- space: ' ',
- } else {
- // In this case, new_indent is only used in the case of multi-line strings.
- new_indent: cindent,
- space: ' ',
- };
- local range = std.range(0, std.length(v) - 1);
- local parts = [
- '-' + param.space + aux(v[i], path + [i], param.new_indent)
- for i in range
- for param in [params(v[i])]
- ];
- std.join('\n' + cindent, parts)
- else if std.isObject(v) then
- if std.length(v) == 0 then
- '{}'
- else
- local params(value) =
- if std.isArray(value) && std.length(value) > 0 then {
- // Not indenting allows e.g.
- // ports:
- // - 80
- // instead of
- // ports:
- // - 80
- new_indent: if indent_array_in_object then cindent + ' ' else cindent,
- space: '\n' + self.new_indent,
- } else if std.isObject(value) && std.length(value) > 0 then {
- new_indent: cindent + ' ',
- space: '\n' + self.new_indent,
- } else {
- // In this case, new_indent is only used in the case of multi-line strings.
- new_indent: cindent,
- space: ' ',
- };
- local lines = [
- std.escapeStringJson(k) + ':' + param.space + aux(v[k], path + [k], param.new_indent)
- for k in std.objectFields(v)
- for param in [params(v[k])]
- ];
- std.join('\n' + cindent, lines);
- aux(value, [], ''),
+ manifestYamlDocImpl:: $intrinsic(manifestYamlDocImpl),
+
+ manifestYamlDoc(value, indent_array_in_object=false):: std.manifestYamlDocImpl(value, indent_array_in_object),
manifestYamlStream(value, indent_array_in_object=false, c_document_end=true)::
if !std.isArray(value) then