plist/dictionary.rs
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 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
//! A map of String to plist::Value.
//!
//! The map is currently backed by an [`IndexMap`]. This may be changed in a future minor release.
//!
//! [`IndexMap`]: https://docs.rs/indexmap/latest/indexmap/map/struct.IndexMap.html
use indexmap::{map, IndexMap};
use std::{
fmt::{self, Debug},
ops,
};
use crate::Value;
/// Represents a plist dictionary type.
#[derive(Clone, Default, PartialEq)]
pub struct Dictionary {
map: IndexMap<String, Value>,
}
impl Dictionary {
/// Makes a new empty `Dictionary`.
#[inline]
pub fn new() -> Self {
Dictionary {
map: IndexMap::new(),
}
}
/// Clears the dictionary, removing all values.
#[inline]
pub fn clear(&mut self) {
self.map.clear()
}
/// Returns a reference to the value corresponding to the key.
#[inline]
pub fn get(&self, key: &str) -> Option<&Value> {
self.map.get(key)
}
/// Returns true if the dictionary contains a value for the specified key.
#[inline]
pub fn contains_key(&self, key: &str) -> bool {
self.map.contains_key(key)
}
/// Returns a mutable reference to the value corresponding to the key.
#[inline]
pub fn get_mut(&mut self, key: &str) -> Option<&mut Value> {
self.map.get_mut(key)
}
/// Inserts a key-value pair into the dictionary.
///
/// If the dictionary did not have this key present, `None` is returned.
///
/// If the dictionary did have this key present, the value is updated, and the old value is
/// returned.
#[inline]
pub fn insert(&mut self, k: String, v: Value) -> Option<Value> {
self.map.insert(k, v)
}
/// Removes a key from the dictionary, returning the value at the key if the key was previously
/// in the dictionary.
#[inline]
pub fn remove(&mut self, key: &str) -> Option<Value> {
self.map.swap_remove(key)
}
/// Scan through each key-value pair in the map and keep those where the
/// closure `keep` returns `true`.
#[inline]
pub fn retain<F>(&mut self, keep: F)
where
F: FnMut(&String, &mut Value) -> bool,
{
self.map.retain(keep)
}
/// Sort the dictionary keys.
///
/// This uses the default ordering defined on [`str`].
///
/// This function is useful if you are serializing to XML, and wish to
/// ensure a consistent key order.
#[inline]
pub fn sort_keys(&mut self) {
self.map.sort_keys()
}
/// Gets the given key's corresponding entry in the dictionary for in-place manipulation.
// Entry functionality is unstable until I can figure out how to use either Cow<str> or
// T: AsRef<str> + Into<String>
#[cfg(any(
test,
feature = "enable_unstable_features_that_may_break_with_minor_version_bumps"
))]
pub fn entry<S>(&mut self, key: S) -> Entry
where
S: Into<String>,
{
match self.map.entry(key.into()) {
map::Entry::Vacant(vacant) => Entry::Vacant(VacantEntry { vacant }),
map::Entry::Occupied(occupied) => Entry::Occupied(OccupiedEntry { occupied }),
}
}
/// Returns the number of elements in the dictionary.
#[inline]
pub fn len(&self) -> usize {
self.map.len()
}
/// Returns true if the dictionary contains no elements.
#[inline]
pub fn is_empty(&self) -> bool {
self.map.is_empty()
}
/// Gets an iterator over the entries of the dictionary.
#[inline]
pub fn iter(&self) -> Iter {
Iter {
iter: self.map.iter(),
}
}
/// Gets a mutable iterator over the entries of the dictionary.
#[inline]
pub fn iter_mut(&mut self) -> IterMut {
IterMut {
iter: self.map.iter_mut(),
}
}
/// Gets an iterator over the keys of the dictionary.
#[inline]
pub fn keys(&self) -> Keys {
Keys {
iter: self.map.keys(),
}
}
/// Gets an iterator over the values of the dictionary.
#[inline]
pub fn values(&self) -> Values {
Values {
iter: self.map.values(),
}
}
/// Gets an iterator over mutable values of the dictionary.
#[inline]
pub fn values_mut(&mut self) -> ValuesMut {
ValuesMut {
iter: self.map.values_mut(),
}
}
}
/// Access an element of this dictionary. Panics if the given key is not present in the dictionary.
///
/// ```
/// # use plist::Value;
/// #
/// # let val = &Value::String("".to_owned());
/// # let _ =
/// match *val {
/// Value::Array(ref arr) => arr[0].as_string(),
/// Value::Dictionary(ref dict) => dict["type"].as_string(),
/// Value::String(ref s) => Some(s.as_str()),
/// _ => None,
/// }
/// # ;
/// ```
impl<'a> ops::Index<&'a str> for Dictionary {
type Output = Value;
fn index(&self, index: &str) -> &Value {
self.map.index(index)
}
}
/// Mutably access an element of this dictionary. Panics if the given key is not present in the
/// dictionary.
///
/// ```
/// # let mut dict = plist::Dictionary::new();
/// # dict.insert("key".to_owned(), plist::Value::Boolean(false));
/// #
/// dict["key"] = "value".into();
/// ```
impl<'a> ops::IndexMut<&'a str> for Dictionary {
fn index_mut(&mut self, index: &str) -> &mut Value {
self.map.get_mut(index).expect("no entry found for key")
}
}
impl Debug for Dictionary {
#[inline]
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
self.map.fmt(formatter)
}
}
impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Dictionary {
fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self {
Dictionary {
map: iter
.into_iter()
.map(|(k, v)| (k.into(), v.into()))
.collect(),
}
}
}
impl Extend<(String, Value)> for Dictionary {
fn extend<T>(&mut self, iter: T)
where
T: IntoIterator<Item = (String, Value)>,
{
self.map.extend(iter);
}
}
macro_rules! delegate_iterator {
(($name:ident $($generics:tt)*) => $item:ty) => {
impl $($generics)* Iterator for $name $($generics)* {
type Item = $item;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.iter.next()
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
}
/*impl $($generics)* DoubleEndedIterator for $name $($generics)* {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
self.iter.next_back()
}
}*/
impl $($generics)* ExactSizeIterator for $name $($generics)* {
#[inline]
fn len(&self) -> usize {
self.iter.len()
}
}
}
}
//////////////////////////////////////////////////////////////////////////////
/// A view into a single entry in a dictionary, which may either be vacant or occupied.
/// This enum is constructed from the [`entry`] method on [`Dictionary`].
///
/// [`entry`]: struct.Dictionary.html#method.entry
/// [`Dictionary`]: struct.Dictionary.html
#[cfg(any(
test,
feature = "enable_unstable_features_that_may_break_with_minor_version_bumps"
))]
pub enum Entry<'a> {
/// A vacant Entry.
Vacant(VacantEntry<'a>),
/// An occupied Entry.
Occupied(OccupiedEntry<'a>),
}
/// A vacant Entry. It is part of the [`Entry`] enum.
///
/// [`Entry`]: enum.Entry.html
#[cfg(any(
test,
feature = "enable_unstable_features_that_may_break_with_minor_version_bumps"
))]
pub struct VacantEntry<'a> {
vacant: map::VacantEntry<'a, String, Value>,
}
/// An occupied Entry. It is part of the [`Entry`] enum.
///
/// [`Entry`]: enum.Entry.html
#[cfg(any(
test,
feature = "enable_unstable_features_that_may_break_with_minor_version_bumps"
))]
pub struct OccupiedEntry<'a> {
occupied: map::OccupiedEntry<'a, String, Value>,
}
#[cfg(any(
test,
feature = "enable_unstable_features_that_may_break_with_minor_version_bumps"
))]
impl<'a> Entry<'a> {
/// Returns a reference to this entry's key.
///
/// # Examples
///
/// ```
/// let mut dict = plist::Dictionary::new();
/// assert_eq!(dict.entry("serde").key(), &"serde");
/// ```
pub fn key(&self) -> &String {
match *self {
Entry::Vacant(ref e) => e.key(),
Entry::Occupied(ref e) => e.key(),
}
}
/// Ensures a value is in the entry by inserting the default if empty, and returns a mutable
/// reference to the value in the entry.
///
/// # Examples
///
/// ```
/// let mut dict = plist::Dictionary::new();
/// dict.entry("serde").or_insert(12.into());
///
/// assert_eq!(dict["serde"], 12.into());
/// ```
pub fn or_insert(self, default: Value) -> &'a mut Value {
match self {
Entry::Vacant(entry) => entry.insert(default),
Entry::Occupied(entry) => entry.into_mut(),
}
}
/// Ensures a value is in the entry by inserting the result of the default function if empty,
/// and returns a mutable reference to the value in the entry.
///
/// # Examples
///
/// ```
/// let mut dict = plist::Dictionary::new();
/// dict.entry("serde").or_insert_with(|| "hoho".into());
///
/// assert_eq!(dict["serde"], "hoho".into());
/// ```
pub fn or_insert_with<F>(self, default: F) -> &'a mut Value
where
F: FnOnce() -> Value,
{
match self {
Entry::Vacant(entry) => entry.insert(default()),
Entry::Occupied(entry) => entry.into_mut(),
}
}
}
#[cfg(any(
test,
feature = "enable_unstable_features_that_may_break_with_minor_version_bumps"
))]
impl<'a> VacantEntry<'a> {
/// Gets a reference to the key that would be used when inserting a value through the
/// VacantEntry.
///
/// # Examples
///
/// ```
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
///
/// match dict.entry("serde") {
/// Entry::Vacant(vacant) => assert_eq!(vacant.key(), &"serde"),
/// Entry::Occupied(_) => unimplemented!(),
/// }
/// ```
#[inline]
pub fn key(&self) -> &String {
self.vacant.key()
}
/// Sets the value of the entry with the VacantEntry's key, and returns a mutable reference
/// to it.
///
/// # Examples
///
/// ```
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
///
/// match dict.entry("serde") {
/// Entry::Vacant(vacant) => vacant.insert("hoho".into()),
/// Entry::Occupied(_) => unimplemented!(),
/// };
/// ```
#[inline]
pub fn insert(self, value: Value) -> &'a mut Value {
self.vacant.insert(value)
}
}
#[cfg(any(
test,
feature = "enable_unstable_features_that_may_break_with_minor_version_bumps"
))]
impl<'a> OccupiedEntry<'a> {
/// Gets a reference to the key in the entry.
///
/// # Examples
///
/// ```
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
/// dict.insert("serde".to_owned(), 12.into());
///
/// match dict.entry("serde") {
/// Entry::Occupied(occupied) => assert_eq!(occupied.key(), &"serde"),
/// Entry::Vacant(_) => unimplemented!(),
/// }
/// ```
#[inline]
pub fn key(&self) -> &String {
self.occupied.key()
}
/// Gets a reference to the value in the entry.
///
/// # Examples
///
/// ```
/// use plist::Value;
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
/// dict.insert("serde".to_owned(), 12.into());
///
/// match dict.entry("serde") {
/// Entry::Occupied(occupied) => assert_eq!(occupied.get(), &Value::from(12)),
/// Entry::Vacant(_) => unimplemented!(),
/// }
/// ```
#[inline]
pub fn get(&self) -> &Value {
self.occupied.get()
}
/// Gets a mutable reference to the value in the entry.
///
/// # Examples
///
/// ```
/// use plist::Value;
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
/// dict.insert("serde".to_owned(), Value::Array(vec![1.into(), 2.into(), 3.into()]));
///
/// match dict.entry("serde") {
/// Entry::Occupied(mut occupied) => {
/// occupied.get_mut().as_array_mut().unwrap().push(4.into());
/// }
/// Entry::Vacant(_) => unimplemented!(),
/// }
///
/// assert_eq!(dict["serde"].as_array().unwrap().len(), 4);
/// ```
#[inline]
pub fn get_mut(&mut self) -> &mut Value {
self.occupied.get_mut()
}
/// Converts the entry into a mutable reference to its value.
///
/// # Examples
///
/// ```
/// use plist::Value;
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
/// dict.insert("serde".to_owned(), Value::Array(vec![1.into(), 2.into(), 3.into()]));
///
/// match dict.entry("serde") {
/// Entry::Occupied(mut occupied) => {
/// occupied.into_mut().as_array_mut().unwrap().push(4.into());
/// }
/// Entry::Vacant(_) => unimplemented!(),
/// }
///
/// assert_eq!(dict["serde"].as_array().unwrap().len(), 4);
/// ```
#[inline]
pub fn into_mut(self) -> &'a mut Value {
self.occupied.into_mut()
}
/// Sets the value of the entry with the `OccupiedEntry`'s key, and returns
/// the entry's old value.
///
/// # Examples
///
/// ```
/// use plist::Value;
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
/// dict.insert("serde".to_owned(), 12.into());
///
/// match dict.entry("serde") {
/// Entry::Occupied(mut occupied) => {
/// assert_eq!(occupied.insert(13.into()), 12.into());
/// assert_eq!(occupied.get(), &Value::from(13));
/// }
/// Entry::Vacant(_) => unimplemented!(),
/// }
/// ```
#[inline]
pub fn insert(&mut self, value: Value) -> Value {
self.occupied.insert(value)
}
/// Takes the value of the entry out of the dictionary, and returns it.
///
/// # Examples
///
/// ```
/// use plist::dictionary::Entry;
///
/// let mut dict = plist::Dictionary::new();
/// dict.insert("serde".to_owned(), 12.into());
///
/// match dict.entry("serde") {
/// Entry::Occupied(occupied) => assert_eq!(occupied.remove(), 12.into()),
/// Entry::Vacant(_) => unimplemented!(),
/// }
/// ```
#[inline]
pub fn remove(self) -> Value {
self.occupied.swap_remove()
}
}
//////////////////////////////////////////////////////////////////////////////
impl<'a> IntoIterator for &'a Dictionary {
type Item = (&'a String, &'a Value);
type IntoIter = Iter<'a>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
Iter {
iter: self.map.iter(),
}
}
}
/// An iterator over a plist::Dictionary's entries.
pub struct Iter<'a> {
iter: IterImpl<'a>,
}
type IterImpl<'a> = map::Iter<'a, String, Value>;
delegate_iterator!((Iter<'a>) => (&'a String, &'a Value));
//////////////////////////////////////////////////////////////////////////////
impl<'a> IntoIterator for &'a mut Dictionary {
type Item = (&'a String, &'a mut Value);
type IntoIter = IterMut<'a>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
IterMut {
iter: self.map.iter_mut(),
}
}
}
/// A mutable iterator over a plist::Dictionary's entries.
pub struct IterMut<'a> {
iter: map::IterMut<'a, String, Value>,
}
delegate_iterator!((IterMut<'a>) => (&'a String, &'a mut Value));
//////////////////////////////////////////////////////////////////////////////
impl IntoIterator for Dictionary {
type Item = (String, Value);
type IntoIter = IntoIter;
#[inline]
fn into_iter(self) -> Self::IntoIter {
IntoIter {
iter: self.map.into_iter(),
}
}
}
/// An owning iterator over a plist::Dictionary's entries.
pub struct IntoIter {
iter: map::IntoIter<String, Value>,
}
delegate_iterator!((IntoIter) => (String, Value));
//////////////////////////////////////////////////////////////////////////////
/// An iterator over a plist::Dictionary's keys.
pub struct Keys<'a> {
iter: map::Keys<'a, String, Value>,
}
delegate_iterator!((Keys<'a>) => &'a String);
//////////////////////////////////////////////////////////////////////////////
/// An iterator over a plist::Dictionary's values.
pub struct Values<'a> {
iter: map::Values<'a, String, Value>,
}
delegate_iterator!((Values<'a>) => &'a Value);
//////////////////////////////////////////////////////////////////////////////
/// A mutable iterator over a plist::Dictionary's values.
pub struct ValuesMut<'a> {
iter: map::ValuesMut<'a, String, Value>,
}
delegate_iterator!((ValuesMut<'a>) => &'a mut Value);
#[cfg(feature = "serde")]
pub mod serde_impls {
use serde::{de, ser};
use std::fmt;
use crate::Dictionary;
impl ser::Serialize for Dictionary {
#[inline]
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
use serde::ser::SerializeMap;
let mut map = serializer.serialize_map(Some(self.len()))?;
for (k, v) in self {
map.serialize_key(k)?;
map.serialize_value(v)?;
}
map.end()
}
}
impl<'de> de::Deserialize<'de> for Dictionary {
#[inline]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
struct Visitor;
impl<'de> de::Visitor<'de> for Visitor {
type Value = Dictionary;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
formatter.write_str("a map")
}
#[inline]
fn visit_unit<E>(self) -> Result<Self::Value, E>
where
E: de::Error,
{
Ok(Dictionary::new())
}
#[inline]
fn visit_map<V>(self, mut visitor: V) -> Result<Self::Value, V::Error>
where
V: de::MapAccess<'de>,
{
let mut values = Dictionary::new();
while let Some((key, value)) = visitor.next_entry()? {
values.insert(key, value);
}
Ok(values)
}
}
deserializer.deserialize_map(Visitor)
}
}
}
#[cfg(test)]
mod tests {
use super::Dictionary;
#[test]
fn from_hash_map_to_dict() {
let dict: Dictionary = [
("Doge", "Shiba Inu"),
("Cheems", "Shiba Inu"),
("Walter", "Bull Terrier"),
("Perro", "Golden Retriever"),
]
.into_iter()
.collect();
assert_eq!(
dict.get("Doge").and_then(|v| v.as_string()),
Some("Shiba Inu")
);
assert_eq!(
dict.get("Cheems").and_then(|v| v.as_string()),
Some("Shiba Inu")
);
assert_eq!(
dict.get("Walter").and_then(|v| v.as_string()),
Some("Bull Terrier")
);
assert_eq!(
dict.get("Perro").and_then(|v| v.as_string()),
Some("Golden Retriever")
);
}
}