// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! A structure for holding a set of enum variants. //! //! This module defines a container which uses an efficient bit mask //! representation to hold C-like enum variants. #![unstable(feature = "enumset", reason = "matches collection reform specification, \ waiting for dust to settle")] use core::prelude::*; use core::marker; use core::fmt; use core::iter::{FromIterator}; use core::ops::{Sub, BitOr, BitAnd, BitXor}; // FIXME(contentions): implement union family of methods? (general design may be // wrong here) /// A specialized set implementation to use enum types. /// /// It is a logic error for an item to be modified in such a way that the /// transformation of the item to or from a `usize`, as determined by the /// `CLike` trait, changes while the item is in the set. This is normally only /// possible through `Cell`, `RefCell`, global state, I/O, or unsafe code. #[derive(PartialEq, Eq, PartialOrd, Ord, Hash)] pub struct EnumSet { // We must maintain the invariant that no bits are set // for which no variant exists bits: usize, marker: marker::PhantomData, } impl Copy for EnumSet {} impl Clone for EnumSet { fn clone(&self) -> EnumSet { *self } } #[stable(feature = "rust1", since = "1.0.0")] impl fmt::Debug for EnumSet { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { try!(write!(fmt, "{{")); let mut first = true; for e in self { if !first { try!(write!(fmt, ", ")); } try!(write!(fmt, "{:?}", e)); first = false; } write!(fmt, "}}") } } /// An interface for casting C-like enum to usize and back. /// A typically implementation is as below. /// /// ```{rust,ignore} /// #[repr(usize)] /// enum Foo { /// A, B, C /// } /// /// impl CLike for Foo { /// fn to_usize(&self) -> usize { /// *self as usize /// } /// /// fn from_usize(v: usize) -> Foo { /// unsafe { mem::transmute(v) } /// } /// } /// ``` pub trait CLike { /// Converts a C-like enum to a `usize`. fn to_usize(&self) -> usize; /// Converts a `usize` to a C-like enum. fn from_usize(usize) -> Self; } fn bit(e: &E) -> usize { use core::usize; let value = e.to_usize(); assert!(value < usize::BITS, "EnumSet only supports up to {} variants.", usize::BITS - 1); 1 << value } impl EnumSet { /// Returns an empty `EnumSet`. pub fn new() -> EnumSet { EnumSet {bits: 0, marker: marker::PhantomData} } /// Returns the number of elements in the given `EnumSet`. pub fn len(&self) -> usize { self.bits.count_ones() as usize } /// Returns true if the `EnumSet` is empty. pub fn is_empty(&self) -> bool { self.bits == 0 } pub fn clear(&mut self) { self.bits = 0; } /// Returns `false` if the `EnumSet` contains any enum of the given `EnumSet`. pub fn is_disjoint(&self, other: &EnumSet) -> bool { (self.bits & other.bits) == 0 } /// Returns `true` if a given `EnumSet` is included in this `EnumSet`. pub fn is_superset(&self, other: &EnumSet) -> bool { (self.bits & other.bits) == other.bits } /// Returns `true` if this `EnumSet` is included in the given `EnumSet`. pub fn is_subset(&self, other: &EnumSet) -> bool { other.is_superset(self) } /// Returns the union of both `EnumSets`. pub fn union(&self, e: EnumSet) -> EnumSet { EnumSet {bits: self.bits | e.bits, marker: marker::PhantomData} } /// Returns the intersection of both `EnumSets`. pub fn intersection(&self, e: EnumSet) -> EnumSet { EnumSet {bits: self.bits & e.bits, marker: marker::PhantomData} } /// Adds an enum to the `EnumSet`, and returns `true` if it wasn't there before pub fn insert(&mut self, e: E) -> bool { let result = !self.contains(&e); self.bits |= bit(&e); result } /// Removes an enum from the EnumSet pub fn remove(&mut self, e: &E) -> bool { let result = self.contains(e); self.bits &= !bit(e); result } /// Returns `true` if an `EnumSet` contains a given enum. pub fn contains(&self, e: &E) -> bool { (self.bits & bit(e)) != 0 } /// Returns an iterator over an `EnumSet`. pub fn iter(&self) -> Iter { Iter::new(self.bits) } } impl Sub for EnumSet { type Output = EnumSet; fn sub(self, e: EnumSet) -> EnumSet { EnumSet {bits: self.bits & !e.bits, marker: marker::PhantomData} } } impl BitOr for EnumSet { type Output = EnumSet; fn bitor(self, e: EnumSet) -> EnumSet { EnumSet {bits: self.bits | e.bits, marker: marker::PhantomData} } } impl BitAnd for EnumSet { type Output = EnumSet; fn bitand(self, e: EnumSet) -> EnumSet { EnumSet {bits: self.bits & e.bits, marker: marker::PhantomData} } } impl BitXor for EnumSet { type Output = EnumSet; fn bitxor(self, e: EnumSet) -> EnumSet { EnumSet {bits: self.bits ^ e.bits, marker: marker::PhantomData} } } /// An iterator over an EnumSet pub struct Iter { index: usize, bits: usize, marker: marker::PhantomData, } // FIXME(#19839) Remove in favor of `#[derive(Clone)]` impl Clone for Iter { fn clone(&self) -> Iter { Iter { index: self.index, bits: self.bits, marker: marker::PhantomData, } } } impl Iter { fn new(bits: usize) -> Iter { Iter { index: 0, bits: bits, marker: marker::PhantomData } } } impl Iterator for Iter { type Item = E; fn next(&mut self) -> Option { if self.bits == 0 { return None; } while (self.bits & 1) == 0 { self.index += 1; self.bits >>= 1; } let elem = CLike::from_usize(self.index); self.index += 1; self.bits >>= 1; Some(elem) } fn size_hint(&self) -> (usize, Option) { let exact = self.bits.count_ones() as usize; (exact, Some(exact)) } } impl FromIterator for EnumSet { fn from_iter>(iter: I) -> EnumSet { let mut ret = EnumSet::new(); ret.extend(iter); ret } } #[stable(feature = "rust1", since = "1.0.0")] impl<'a, E> IntoIterator for &'a EnumSet where E: CLike { type Item = E; type IntoIter = Iter; fn into_iter(self) -> Iter { self.iter() } } impl Extend for EnumSet { fn extend>(&mut self, iter: I) { for element in iter { self.insert(element); } } } #[stable(feature = "extend_ref", since = "1.2.0")] impl<'a, E: 'a + CLike + Copy> Extend<&'a E> for EnumSet { fn extend>(&mut self, iter: I) { self.extend(iter.into_iter().cloned()); } }