json-ld 0.6.1

A JSON-LD implementation
Documentation
use super::{compact_iri, JsonSrc, Options};
use crate::{
	context::{self, Inversible, Loader, Local},
	syntax::{Container, ContainerType, Keyword, Term, Type},
	util::{AsAnyJson, AsJson, JsonFrom},
	ContextMut, Error, Id, Loc, Reference, Value,
};

/// Compact the given indexed value.
pub async fn compact_indexed_value_with<
	J: JsonSrc,
	K: JsonFrom<J>,
	T: Sync + Send + Id,
	C: ContextMut<T>,
	L: Loader,
	M,
>(
	value: &Value<J, T>,
	index: Option<&str>,
	active_context: Inversible<T, &C>,
	active_property: Option<&str>,
	loader: &mut L,
	options: Options,
	meta: M,
) -> Result<K, Error>
where
	C: Sync + Send,
	C::LocalContext: Send + Sync + From<L::Output>,
	L: Sync + Send,
	M: Send + Sync + Clone + Fn(Option<&J::MetaData>) -> K::MetaData,
{
	// If the term definition for active property in active context has a local context:
	let mut active_context = active_context.into_borrowed();
	if let Some(active_property) = active_property {
		if let Some(active_property_definition) = active_context.get(active_property) {
			if let Some(local_context) = &active_property_definition.context {
				active_context = Inversible::new(
					local_context
						.process_with(
							*active_context.as_ref(),
							loader,
							active_property_definition.base_url(),
							context::ProcessingOptions::from(options).with_override(),
						)
						.await
						.map_err(Loc::unwrap)?
						.into_inner(),
				)
				.into_owned()
			}
		}
	}

	// If element has an @value or @id entry and the result of using the Value Compaction algorithm,
	// passing active context, active property, and element as value is a scalar,
	// or the term definition for active property has a type mapping of @json,
	// return that result.

	// Here starts the Value Compaction Algorithm.

	// Initialize result to a copy of value.
	let mut result = K::Object::default();

	// If the active context has a null inverse context,
	// set inverse context in active context to the result of calling the
	// Inverse Context Creation algorithm using active context.
	// NOTE never null here (FIXME is that true?)

	// Initialize inverse context to the value of inverse context in active context.
	// DONE

	let active_property_definition = match active_property {
		Some(active_property) => active_context.get(active_property),
		None => None,
	};

	// Initialize language to the language mapping for active property in active context,
	// if any, otherwise to the default language of active context.
	let language = match active_property_definition {
		Some(def) => match def.language.as_ref() {
			Some(lang) => lang.as_ref().map(|l| l.as_ref()).option(),
			None => active_context.default_language(),
		},
		None => active_context.default_language(),
	};

	// Initialize direction to the direction mapping for active property in active context,
	// if any, otherwise to the default base direction of active context.
	let direction = match active_property_definition {
		Some(def) => match def.direction {
			Some(dir) => dir.option(),
			None => active_context.default_base_direction(),
		},
		None => active_context.default_base_direction(),
	};

	// If value has an @id entry and has no other entries other than @index:
	// NOTE not possible here

	// Otherwise, if value has an @type entry whose value matches the type mapping of
	// active property, set result to the value associated with the @value entry of value.
	let type_mapping: Option<Type<&T>> = match active_property_definition {
		Some(def) => def.typ.as_ref().map(|t| t.into()),
		None => None,
	};

	let container_mapping = match active_property_definition {
		Some(def) => def.container,
		None => Container::None,
	};

	let remove_index =
		(index.is_some() && container_mapping.contains(ContainerType::Index)) || index.is_none();

	match value {
		Value::Literal(lit, ty) => {
			use crate::object::value::Literal;
			if ty.as_ref().map(Type::Ref) == type_mapping && remove_index {
				match lit {
					Literal::Null => return Ok(K::null(meta(None))),
					Literal::Boolean(b) => return Ok(b.as_json_with(meta(None))),
					Literal::Number(n) => return Ok(K::number(n.clone().into(), meta(None))),
					Literal::String(s) => {
						if ty.is_some() || (language.is_none() && direction.is_none()) {
							return Ok(s.as_json_with(meta(None)));
						} else {
							let compact_key = compact_iri::<J, _, _>(
								active_context.as_ref(),
								&Term::Keyword(Keyword::Value),
								true,
								false,
								options,
							)?;
							result.insert(
								K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
								s.as_json_with(meta(None)),
							);
						}
					}
				}
			} else {
				let compact_key = compact_iri::<J, _, _>(
					active_context.as_ref(),
					&Term::Keyword(Keyword::Value),
					true,
					false,
					options,
				)?;
				match lit {
					Literal::Null => {
						result.insert(
							K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
							K::null(meta(None)),
						);
					}
					Literal::Boolean(b) => {
						result.insert(
							K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
							b.as_json_with(meta(None)),
						);
					}
					Literal::Number(n) => {
						result.insert(
							K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
							K::number(n.clone().into(), meta(None)),
						);
					}
					Literal::String(s) => {
						result.insert(
							K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
							s.as_json_with(meta(None)),
						);
					}
				}

				if let Some(ty) = ty {
					let compact_key = compact_iri::<J, _, _>(
						active_context.as_ref(),
						&Term::Keyword(Keyword::Type),
						true,
						false,
						options,
					)?;
					let compact_ty = compact_iri::<J, _, _>(
						active_context.as_ref(),
						&Term::Ref(Reference::Id(ty.clone())),
						true,
						false,
						options,
					)?;
					result.insert(
						K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
						match compact_ty {
							Some(s) => K::string(s.as_str().into(), meta(None)),
							None => K::null(meta(None)),
						},
					);
				}
			}
		}
		Value::LangString(ls) => {
			let ls_language = ls.language(); //.map(|l| Nullable::Some(l));
			let ls_direction = ls.direction(); //.map(|d| Nullable::Some(d));

			if remove_index
			&& (ls_language.is_none() || language == ls_language) // || (ls.language().is_none() && language.is_none()))
			&& (ls_direction.is_none() || direction == ls_direction)
			{
				// || (ls.direction().is_none() && direction.is_none())) {
				return Ok(ls.as_str().as_json_with(meta(None)));
			} else {
				let compact_key = compact_iri::<J, _, _>(
					active_context.as_ref(),
					&Term::Keyword(Keyword::Value),
					true,
					false,
					options,
				)?;
				result.insert(
					K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
					K::string(ls.as_str().into(), meta(None)),
				);

				if let Some(language) = ls.language() {
					let compact_key = compact_iri::<J, _, _>(
						active_context.as_ref(),
						&Term::Keyword(Keyword::Language),
						true,
						false,
						options,
					)?;
					result.insert(
						K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
						language.as_json_with(meta(None)),
					);
				}

				if let Some(direction) = ls.direction() {
					let compact_key = compact_iri::<J, _, _>(
						active_context.as_ref(),
						&Term::Keyword(Keyword::Direction),
						true,
						false,
						options,
					)?;
					result.insert(
						K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
						direction.as_json_with(meta(None)),
					);
				}
			}
		}
		Value::Json(value) => {
			if type_mapping == Some(Type::Json) && remove_index {
				return Ok(value.as_json_with(meta));
			} else {
				let compact_key = compact_iri::<J, _, _>(
					active_context.as_ref(),
					&Term::Keyword(Keyword::Value),
					true,
					false,
					options,
				)?;
				result.insert(
					K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
					value.as_json_with(meta.clone()),
				);

				let compact_key = compact_iri::<J, _, _>(
					active_context.as_ref(),
					&Term::Keyword(Keyword::Type),
					true,
					false,
					options,
				)?;
				let compact_ty = compact_iri::<J, _, _>(
					active_context.as_ref(),
					&Term::Keyword(Keyword::Json),
					true,
					false,
					options,
				)?;
				result.insert(
					K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
					match compact_ty {
						Some(s) => K::string(s.as_str().into(), meta(None)),
						None => K::null(meta(None)),
					},
				);
			}
		}
	}

	if !remove_index {
		if let Some(index) = index {
			let compact_key = compact_iri::<J, _, _>(
				active_context.as_ref(),
				&Term::Keyword(Keyword::Index),
				true,
				false,
				options,
			)?;
			result.insert(
				K::new_key(compact_key.as_ref().unwrap().as_str(), meta(None)),
				index.as_json_with(meta(None)),
			);
		}
	}

	Ok(K::object(result, meta(None)))
}