1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/*
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--

SJ

Copyright (C) 2019-2022  Anonymous

There are several releases over multiple years,
they are listed as ranges, such as: "2019-2022".

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

::--::--::--::--::--::--::--::--::--::--::--::--::--::--::--::--
*/

//! # Shortcuts for `Value::Array`

use {
    core::iter::FromIterator,
    crate::{Array, ArrayIndexes, Error, Result, Value},
};

/// # Helper macro for Value::at()/mut_at()
macro_rules! at_or_mut_at { ($self: ident, $indexes: ident, $code: tt) => {{
    let indexes = $indexes.into();
    let mut value = Some($self);
    for (nth, idx) in indexes.iter().enumerate() {
        match value {
            Some(Value::Array(array)) => {
                value = array.$code(*idx);
                if nth + 1 == indexes.len() {
                    return value.ok_or_else(|| err!("Indexes are invalid: {:?}", indexes));
                }
            },
            Some(_) => return Err(Error::from(match nth {
                0 => err!("Value is not an Array"),
                _ => err!("Value at {:?} is not an Array", indexes.index_with_range_to(..nth)),
            })),
            None => return Err(err!("There is no value at {:?}", indexes.index_with_range_to(..nth))),
        };
    }

    Err(err!("Indexes must not be empty"))
}}}

/// # Shortcuts for [`Array`](#variant.Array)
impl Value {

    /// # If the value is an array, pushes new item into it
    ///
    /// Returns an error if the value is not an array.
    pub fn push<T>(&mut self, value: T) -> Result<()> where T: Into<Self> {
        match self {
            Value::Array(array) => Ok(crate::push(array, value)),
            _ => Err(err!("Value is not an Array")),
        }
    }

    /// # Gets an immutable item from this array and its sub arrays
    ///
    /// The function returns an error on one of these conditions:
    ///
    /// - Indexes are empty or invalid.
    /// - The value or any of its sub items is not an array.
    ///
    /// ## Examples
    ///
    /// ```
    /// let mut array = sj::array();
    /// array.push("first")?;
    /// array.push(vec![false.into(), "second".into()])?;
    ///
    /// assert_eq!(array.at(0)?.as_str()?, "first");
    /// assert_eq!(array.at([1, 1])?.as_str()?, "second");
    ///
    /// assert!(array.at(&[][..]).is_err());
    /// assert!(array.at([0, 1]).is_err());
    /// assert!(array.at([1, 2]).is_err());
    /// assert!(array.at([1, 0, 0]).is_err());
    /// assert!(array.at([1, 1, 2]).is_err());
    ///
    /// # Ok::<_, sj::Error>(())
    /// ```
    pub fn at<'a, I>(&self, indexes: I) -> Result<&Self> where I: Into<ArrayIndexes<'a>> {
        at_or_mut_at!(self, indexes, get)
    }

    /// # Gets a mutable item from this array and its sub arrays
    ///
    /// The function returns an error on one of these conditions:
    ///
    /// - Indexes are empty or invalid.
    /// - The value or any of its sub items is not an array.
    pub fn mut_at<'a, I>(&mut self, indexes: I) -> Result<&mut Self> where I: Into<ArrayIndexes<'a>> {
        at_or_mut_at!(self, indexes, get_mut)
    }

    /// # Takes an item from this array and its sub arrays
    ///
    /// The function returns an error on one of these conditions:
    ///
    /// - Indexes are empty or invalid.
    /// - The value or any of its sub items is not an array.
    ///
    /// ## Examples
    ///
    /// ```
    /// let mut array = sj::array();
    /// array.push("earth")?;
    /// array.push(vec![false.into(), "moon".into()])?;
    ///
    /// assert_eq!(array.take_at(0)?.as_str()?, "earth");
    /// assert_eq!(array.take_at([0, 1])?.as_str()?, "moon");
    ///
    /// assert!(array.take_at(&[][..]).is_err());
    /// assert!(array.take_at([0, 1]).is_err());
    ///
    /// # Ok::<_, sj::Error>(())
    /// ```
    pub fn take_at<'a, I>(&mut self, indexes: I) -> Result<Self> where I: Into<ArrayIndexes<'a>> {
        let mut value = Some(self);
        let indexes = indexes.into();
        for (nth, idx) in indexes.iter().enumerate() {
            match value {
                Some(Value::Array(array)) => if nth + 1 == indexes.len() {
                    return if idx >= &0 && idx < &array.len() {
                        Ok(array.remove(*idx))
                    } else {
                        Err(err!("Invalid indexes: {:?}", indexes))
                    };
                } else {
                    value = array.get_mut(*idx);
                },
                Some(_) => return Err(Error::from(match nth {
                    0 => err!("Value is not an Array"),
                    _ => err!("Value at {:?} is not an Array", indexes.index_with_range_to(..nth)),
                })),
                None => return Err(err!("There is no value at {:?}", indexes.index_with_range_to(..nth))),
            };
        }

        Err(err!("Indexes must not be empty"))
    }

    /// # If the value is an array, returns an immutable reference of it
    ///
    /// Returns an error if the value is not an array.
    pub fn as_array(&self) -> Result<&Array> {
        match self {
            Value::Array(array) => Ok(array),
            _ => Err(err!("Value is not an Array")),
        }
    }

    /// # If the value is an array, returns a mutable reference of it
    ///
    /// Returns an error if the value is not an array.
    pub fn as_mut_array(&mut self) -> Result<&mut Array> {
        match self {
            Value::Array(array) => Ok(array),
            _ => Err(err!("Value is not an Array")),
        }
    }

}

impl From<Array> for Value {

    fn from(values: Array) -> Self {
        Value::Array(values)
    }

}

impl FromIterator<Value> for Value {

    fn from_iter<T>(iter: T) -> Self where T: IntoIterator<Item=Self> {
        Value::Array(iter.into_iter().collect())
    }

}

impl TryFrom<Value> for Array {

    type Error = Error;

    fn try_from(value: Value) -> core::result::Result<Self, Self::Error> {
        match value {
            Value::Array(array) => Ok(array),
            _ => Err(err!("Value is not an Array")),
        }
    }

}