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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
use crate::element::builders::StructBuilder;
use crate::element::Element;
use crate::ion_data::{IonEq, IonOrd};
use crate::symbol_ref::AsSymbolRef;
use crate::text::text_formatter::IonValueFormatter;
use crate::Symbol;
use smallvec::SmallVec;
use std::cmp::Ordering;
use std::collections::HashMap;
use std::fmt::{Display, Formatter};
// A convenient type alias for a vector capable of storing a single `usize` inline
// without heap allocation. This type should not be used in public interfaces directly.
type IndexVec = SmallVec<[usize; 1]>;
// This collection is broken out into its own type to allow instances of it to be shared with Arc/Rc.
#[derive(Debug, Clone)]
struct Fields {
// Key/value pairs in the order they were inserted
by_index: Vec<(Symbol, Element)>,
// Maps symbols to a list of indexes where values may be found in `by_index` above
by_name: HashMap<Symbol, IndexVec>,
}
impl Fields {
/// Gets all of the indexes that contain a value associated with the given field name.
fn get_indexes<A: AsSymbolRef>(&self, field_name: A) -> Option<&IndexVec> {
field_name
.as_symbol_ref()
.text()
.map(|text| {
// If the symbol has defined text, look it up by &str
self.by_name.get(text)
})
.unwrap_or_else(|| {
// Otherwise, construct a (cheap, stack-allocated) Symbol with unknown text...
let symbol = Symbol::unknown_text();
// ...and use the unknown text symbol to look up matching field values
self.by_name.get(&symbol)
})
}
/// Iterates over the values found at the specified indexes.
fn get_values_at_indexes<'a>(&'a self, indexes: &'a IndexVec) -> FieldValuesIterator<'a> {
FieldValuesIterator {
current: 0,
indexes: Some(indexes),
by_index: &self.by_index,
}
}
/// Gets the last value in the Struct that is associated with the specified field name.
///
/// Note that the Ion data model views a struct as a bag of (name, value) pairs and does not
/// have a notion of field ordering. In most use cases, field names are distinct and the last
/// appearance of a field in the struct's serialized form will have been the _only_ appearance.
/// If a field name appears more than once, this method makes the arbitrary decision to return
/// the value associated with the last appearance. If your application uses structs that repeat
/// field names, you are encouraged to use [`get_all`](Self::get_all) instead.
fn get_last<A: AsSymbolRef>(&self, field_name: A) -> Option<&Element> {
self.get_indexes(field_name)
.and_then(|indexes| indexes.last())
.and_then(|index| self.by_index.get(*index))
.map(|(_name, value)| value)
}
/// Iterates over all of the values associated with the given field name.
fn get_all<A: AsSymbolRef>(&self, field_name: A) -> FieldValuesIterator {
let indexes = self.get_indexes(field_name);
FieldValuesIterator {
current: 0,
indexes,
by_index: &self.by_index,
}
}
/// Iterates over all of the (field name, field value) pairs in the struct.
fn iter(&self) -> impl Iterator<Item = &(Symbol, Element)> {
self.by_index.iter()
}
}
/// Iterates over the (field name, field value) pairs in a Struct.
pub struct FieldIterator<'a> {
values: Option<std::slice::Iter<'a, (Symbol, Element)>>,
}
impl<'a> FieldIterator<'a> {
fn new(data: &'a [(Symbol, Element)]) -> Self {
FieldIterator {
values: Some(data.iter()),
}
}
fn empty() -> FieldIterator<'static> {
FieldIterator { values: None }
}
}
impl<'a> Iterator for FieldIterator<'a> {
type Item = (&'a Symbol, &'a Element);
fn next(&mut self) -> Option<Self::Item> {
self.values
.as_mut()
// Get the next &(name, value) and convert it to (&name, &value)
.and_then(|iter| iter.next().map(|field| (&field.0, &field.1)))
}
}
/// Iterates over the values associated with a given field name in a Struct.
pub struct FieldValuesIterator<'a> {
current: usize,
indexes: Option<&'a IndexVec>,
by_index: &'a Vec<(Symbol, Element)>,
}
impl<'a> Iterator for FieldValuesIterator<'a> {
type Item = &'a Element;
fn next(&mut self) -> Option<Self::Item> {
self.indexes
.and_then(|i| i.get(self.current))
.and_then(|i| {
self.current += 1;
self.by_index.get(*i)
})
.map(|(_name, value)| value)
}
}
/// An in-memory representation of an Ion Struct
/// ```
/// use ion_rs::element::Element;
/// use ion_rs::ion_struct;
/// # use ion_rs::IonResult;
/// # fn main() -> IonResult<()> {
/// let struct_ = ion_struct! {
/// "foo": 1,
/// "bar": true,
/// "baz": "hello"
/// };
/// assert_eq!(struct_.len(), 3);
/// assert_eq!(struct_.get("baz"), Some(&Element::string("hello")));
/// # Ok(())
/// # }
/// ```
#[derive(Debug, Clone)]
pub struct Struct {
fields: Fields,
}
impl Display for Struct {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let mut ivf = IonValueFormatter { output: f };
ivf.format_struct(self).map_err(|_| std::fmt::Error)?;
Ok(())
}
}
impl Struct {
pub fn builder() -> StructBuilder {
StructBuilder::new()
}
pub fn clone_builder(&self) -> StructBuilder {
StructBuilder::with_initial_fields(&self.fields.by_index)
}
/// Returns an iterator over the field name/value pairs in this Struct.
pub fn fields(&self) -> impl Iterator<Item = (&Symbol, &Element)> {
self.fields
.iter()
// Here we convert from &(name, value) to (&name, &value).
// The former makes a stronger assertion about how the data is being stored. We don't
// want that to be a mandatory part of the public API.
.map(|(name, element)| (name, element))
}
fn fields_eq(&self, other: &Self) -> bool {
// For each field name in `self`, get the list of indexes that contain a value with that name.
for (field_name, field_value_indexes) in &self.fields.by_name {
let other_value_indexes = match other.fields.get_indexes(field_name) {
Some(indexes) => indexes,
// The other struct doesn't have a field with this name so they're not equal.
None => return false,
};
if field_value_indexes.len() != other_value_indexes.len() {
// The other struct has fields with the same name, but a different number of them.
return false;
}
for field_value in self.fields.get_values_at_indexes(field_value_indexes) {
if other
.fields
.get_values_at_indexes(other_value_indexes)
.all(|other_value| !field_value.ion_eq(other_value))
{
// Couldn't find an equivalent field in the other struct
return false;
}
}
}
// If all of the above conditions hold, the two structs are equal.
true
}
/// Returns the number of fields in this Struct.
pub fn len(&self) -> usize {
self.fields.by_index.len()
}
/// Returns `true` if this struct has zero fields.
pub fn is_empty(&self) -> bool {
self.len() == 0
}
pub fn iter(&self) -> FieldIterator<'_> {
FieldIterator::new(&self.fields.by_index)
}
pub fn get<A: AsSymbolRef>(&self, field_name: A) -> Option<&Element> {
self.fields.get_last(field_name)
}
pub fn get_all<A: AsSymbolRef>(&self, field_name: A) -> FieldValuesIterator<'_> {
self.fields.get_all(field_name)
}
}
// Allows `for (name, value) in &my_struct {...}` syntax
impl<'a> IntoIterator for &'a Struct {
type Item = (&'a Symbol, &'a Element);
type IntoIter = FieldIterator<'a>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<K, V> FromIterator<(K, V)> for Struct
where
K: Into<Symbol>,
V: Into<Element>,
{
/// Returns an owned struct from the given iterator of field names/values.
fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self {
let mut by_index: Vec<(Symbol, Element)> = Vec::new();
let mut by_name: HashMap<Symbol, IndexVec> = HashMap::new();
for (field_name, field_value) in iter {
let field_name = field_name.into();
let field_value = field_value.into();
by_name
.entry(field_name.clone())
.or_insert_with(IndexVec::new)
.push(by_index.len());
by_index.push((field_name, field_value));
}
let fields = Fields { by_index, by_name };
Self { fields }
}
}
impl PartialEq for Struct {
fn eq(&self, other: &Self) -> bool {
// check if both fields have same length
self.len() == other.len()
// we need to test equality in both directions for both fields
// A good example for this is annotated vs not annotated values in struct
// { a:4, a:4 } vs. { a:4, a:a::4 } // returns true
// { a:4, a:a::4 } vs. { a:4, a:4 } // returns false
&& self.fields_eq(other) && other.fields_eq(self)
}
}
impl Eq for Struct {}
impl IonEq for Struct {
fn ion_eq(&self, other: &Self) -> bool {
self == other
}
}
impl IonOrd for Struct {
fn ion_cmp(&self, other: &Self) -> Ordering {
let mut these_fields = self.fields.by_index.iter().collect::<Vec<_>>();
let mut those_fields = other.fields.by_index.iter().collect::<Vec<_>>();
these_fields.sort_by(ion_cmp_field);
those_fields.sort_by(ion_cmp_field);
let mut i0 = these_fields.iter();
let mut i1 = those_fields.iter();
loop {
match [i0.next(), i1.next()] {
[None, Some(_)] => return Ordering::Less,
[None, None] => return Ordering::Equal,
[Some(_), None] => return Ordering::Greater,
[Some(a), Some(b)] => {
let ord = ion_cmp_field(a, b);
if ord != Ordering::Equal {
return ord;
}
}
}
}
}
}
fn ion_cmp_field(this: &&(Symbol, Element), that: &&(Symbol, Element)) -> Ordering {
let ord = this.0.ion_cmp(&that.0);
if !ord.is_eq() {
return ord;
}
IonOrd::ion_cmp(&this.1, &that.1)
}
#[cfg(test)]
mod tests {
use crate::element::Element;
use crate::ion_struct;
#[test]
fn for_field_in_struct() {
// Simple example to exercise List's implementation of IntoIterator
let s = ion_struct! { "foo": 1, "bar": 2, "baz": 3};
let mut baz_value = None;
for (name, value) in &s {
if *name == "baz" {
baz_value = Some(value);
}
}
assert_eq!(baz_value, Some(&Element::integer(3)));
}
}