use crate::mapping::Entry;
use crate::{mapping, private, Mapping, Value};
use std::fmt::{self, Debug};
use std::ops;
pub trait Index: private::Sealed {
#[doc(hidden)]
fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value>;
#[doc(hidden)]
fn index_into_mut<'v>(
&self,
v: &'v mut Value,
) -> Option<&'v mut Value>;
#[doc(hidden)]
fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value;
}
impl Index for usize {
fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> {
match v.untag_ref() {
Value::Sequence(vec) => vec.get(*self),
Value::Mapping(vec) => {
vec.get(Value::Number((*self).into()))
}
_ => None,
}
}
fn index_into_mut<'v>(
&self,
v: &'v mut Value,
) -> Option<&'v mut Value> {
match v.untag_mut() {
Value::Sequence(vec) => vec.get_mut(*self),
Value::Mapping(vec) => {
vec.get_mut(Value::Number((*self).into()))
}
_ => None,
}
}
fn index_or_insert<'v>(
&self,
mut v: &'v mut Value,
) -> &'v mut Value {
loop {
match v {
Value::Sequence(vec) => {
let len = vec.len();
return vec.get_mut(*self).unwrap_or_else(|| {
panic!(
"cannot access index {} of YAML sequence of length {}",
self, len
)
});
}
Value::Mapping(map) => {
let n = Value::Number((*self).into());
return map.entry(n).or_insert(Value::Null);
}
Value::Tagged(tagged) => v = &mut tagged.value,
_ => panic!(
"cannot access index {} of YAML {}",
self,
Type(v)
),
}
}
}
}
fn index_into_mapping<'v, I>(
index: &I,
v: &'v Value,
) -> Option<&'v Value>
where
I: ?Sized + mapping::Index,
{
match v.untag_ref() {
Value::Mapping(map) => map.get(index),
_ => None,
}
}
fn index_into_mut_mapping<'v, I>(
index: &I,
v: &'v mut Value,
) -> Option<&'v mut Value>
where
I: ?Sized + mapping::Index,
{
match v.untag_mut() {
Value::Mapping(map) => map.get_mut(index),
_ => None,
}
}
fn index_or_insert_mapping<'v, I>(
index: &I,
mut v: &'v mut Value,
) -> &'v mut Value
where
I: ?Sized + mapping::Index + ToOwned + Debug,
Value: From<I::Owned>,
{
if let Value::Null = *v {
*v = Value::Mapping(Mapping::new());
return match v {
Value::Mapping(map) => {
match map.entry(index.to_owned().into()) {
Entry::Vacant(entry) => entry.insert(Value::Null),
Entry::Occupied(_) => unreachable!(),
}
}
_ => unreachable!(),
};
}
loop {
match v {
Value::Mapping(map) => {
return map
.entry(index.to_owned().into())
.or_insert(Value::Null);
}
Value::Tagged(tagged) => v = &mut tagged.value,
_ => panic!(
"cannot access key {:?} in YAML {}",
index,
Type(v)
),
}
}
}
impl Index for Value {
fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> {
index_into_mapping(self, v)
}
fn index_into_mut<'v>(
&self,
v: &'v mut Value,
) -> Option<&'v mut Value> {
index_into_mut_mapping(self, v)
}
fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value {
index_or_insert_mapping(self, v)
}
}
impl Index for str {
fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> {
index_into_mapping(self, v)
}
fn index_into_mut<'v>(
&self,
v: &'v mut Value,
) -> Option<&'v mut Value> {
index_into_mut_mapping(self, v)
}
fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value {
index_or_insert_mapping(self, v)
}
}
impl Index for String {
fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> {
self.as_str().index_into(v)
}
fn index_into_mut<'v>(
&self,
v: &'v mut Value,
) -> Option<&'v mut Value> {
self.as_str().index_into_mut(v)
}
fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value {
self.as_str().index_or_insert(v)
}
}
impl<T> Index for &T
where
T: ?Sized + Index,
{
fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> {
(**self).index_into(v)
}
fn index_into_mut<'v>(
&self,
v: &'v mut Value,
) -> Option<&'v mut Value> {
(**self).index_into_mut(v)
}
fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value {
(**self).index_or_insert(v)
}
}
struct Type<'a>(&'a Value);
impl fmt::Display for Type<'_> {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
match self.0 {
Value::Null => formatter.write_str("null"),
Value::Bool(_) => formatter.write_str("boolean"),
Value::Number(_) => formatter.write_str("number"),
Value::String(_) => formatter.write_str("string"),
Value::Sequence(_) => formatter.write_str("sequence"),
Value::Mapping(_) => formatter.write_str("mapping"),
Value::Tagged(_) => unreachable!(),
}
}
}
impl<I> ops::Index<I> for Value
where
I: Index,
{
type Output = Value;
fn index(&self, index: I) -> &Value {
static NULL: Value = Value::Null;
index.index_into(self).unwrap_or(&NULL)
}
}
impl<I> ops::IndexMut<I> for Value
where
I: Index,
{
fn index_mut(&mut self, index: I) -> &mut Value {
index.index_or_insert(self)
}
}