]> git.lizzy.rs Git - rust.git/blob - src/libstd/bitflags.rs
rollup merge of #20273: alexcrichton/second-pass-comm
[rust.git] / src / libstd / bitflags.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![experimental]
12 #![macro_escape]
13
14 //! A typesafe bitmask flag generator.
15
16 /// The `bitflags!` macro generates a `struct` that holds a set of C-style
17 /// bitmask flags. It is useful for creating typesafe wrappers for C APIs.
18 ///
19 /// The flags should only be defined for integer types, otherwise unexpected
20 /// type errors may occur at compile time.
21 ///
22 /// # Example
23 ///
24 /// ```{.rust}
25 /// bitflags! {
26 ///     flags Flags: u32 {
27 ///         const FLAG_A       = 0b00000001,
28 ///         const FLAG_B       = 0b00000010,
29 ///         const FLAG_C       = 0b00000100,
30 ///         const FLAG_ABC     = FLAG_A.bits
31 ///                            | FLAG_B.bits
32 ///                            | FLAG_C.bits,
33 ///     }
34 /// }
35 ///
36 /// fn main() {
37 ///     let e1 = FLAG_A | FLAG_C;
38 ///     let e2 = FLAG_B | FLAG_C;
39 ///     assert!((e1 | e2) == FLAG_ABC);   // union
40 ///     assert!((e1 & e2) == FLAG_C);     // intersection
41 ///     assert!((e1 - e2) == FLAG_A);     // set difference
42 ///     assert!(!e2 == FLAG_A);           // set complement
43 /// }
44 /// ```
45 ///
46 /// The generated `struct`s can also be extended with type and trait implementations:
47 ///
48 /// ```{.rust}
49 /// use std::fmt;
50 ///
51 /// bitflags! {
52 ///     flags Flags: u32 {
53 ///         const FLAG_A   = 0b00000001,
54 ///         const FLAG_B   = 0b00000010,
55 ///     }
56 /// }
57 ///
58 /// impl Flags {
59 ///     pub fn clear(&mut self) {
60 ///         self.bits = 0;  // The `bits` field can be accessed from within the
61 ///                         // same module where the `bitflags!` macro was invoked.
62 ///     }
63 /// }
64 ///
65 /// impl fmt::Show for Flags {
66 ///     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
67 ///         write!(f, "hi!")
68 ///     }
69 /// }
70 ///
71 /// fn main() {
72 ///     let mut flags = FLAG_A | FLAG_B;
73 ///     flags.clear();
74 ///     assert!(flags.is_empty());
75 ///     assert_eq!(format!("{}", flags).as_slice(), "hi!");
76 /// }
77 /// ```
78 ///
79 /// # Attributes
80 ///
81 /// Attributes can be attached to the generated `struct` by placing them
82 /// before the `flags` keyword.
83 ///
84 /// # Derived traits
85 ///
86 /// The `PartialEq` and `Clone` traits are automatically derived for the `struct` using
87 /// the `deriving` attribute. Additional traits can be derived by providing an
88 /// explicit `deriving` attribute on `flags`.
89 ///
90 /// # Operators
91 ///
92 /// The following operator traits are implemented for the generated `struct`:
93 ///
94 /// - `BitOr`: union
95 /// - `BitAnd`: intersection
96 /// - `BitXor`: toggle
97 /// - `Sub`: set difference
98 /// - `Not`: set complement
99 ///
100 /// # Methods
101 ///
102 /// The following methods are defined for the generated `struct`:
103 ///
104 /// - `empty`: an empty set of flags
105 /// - `all`: the set of all flags
106 /// - `bits`: the raw value of the flags currently stored
107 /// - `from_bits`: convert from underlying bit representation, unless that
108 ///                representation contains bits that do not correspond to a flag
109 /// - `from_bits_truncate`: convert from underlying bit representation, dropping
110 ///                         any bits that do not correspond to flags
111 /// - `is_empty`: `true` if no flags are currently stored
112 /// - `is_all`: `true` if all flags are currently set
113 /// - `intersects`: `true` if there are flags common to both `self` and `other`
114 /// - `contains`: `true` all of the flags in `other` are contained within `self`
115 /// - `insert`: inserts the specified flags in-place
116 /// - `remove`: removes the specified flags in-place
117 /// - `toggle`: the specified flags will be inserted if not present, and removed
118 ///             if they are.
119 #[macro_export]
120 macro_rules! bitflags {
121     ($(#[$attr:meta])* flags $BitFlags:ident: $T:ty {
122         $($(#[$Flag_attr:meta])* const $Flag:ident = $value:expr),+
123     }) => {
124         #[deriving(Copy, PartialEq, Eq, Clone, PartialOrd, Ord, Hash)]
125         $(#[$attr])*
126         pub struct $BitFlags {
127             bits: $T,
128         }
129
130         $($(#[$Flag_attr])* pub const $Flag: $BitFlags = $BitFlags { bits: $value };)+
131
132         impl $BitFlags {
133             /// Returns an empty set of flags.
134             #[inline]
135             pub fn empty() -> $BitFlags {
136                 $BitFlags { bits: 0 }
137             }
138
139             /// Returns the set containing all flags.
140             #[inline]
141             pub fn all() -> $BitFlags {
142                 $BitFlags { bits: $($value)|+ }
143             }
144
145             /// Returns the raw value of the flags currently stored.
146             #[inline]
147             pub fn bits(&self) -> $T {
148                 self.bits
149             }
150
151             /// Convert from underlying bit representation, unless that
152             /// representation contains bits that do not correspond to a flag.
153             #[inline]
154             pub fn from_bits(bits: $T) -> ::std::option::Option<$BitFlags> {
155                 if (bits & !$BitFlags::all().bits()) != 0 {
156                     ::std::option::Option::None
157                 } else {
158                     ::std::option::Option::Some($BitFlags { bits: bits })
159                 }
160             }
161
162             /// Convert from underlying bit representation, dropping any bits
163             /// that do not correspond to flags.
164             #[inline]
165             pub fn from_bits_truncate(bits: $T) -> $BitFlags {
166                 $BitFlags { bits: bits } & $BitFlags::all()
167             }
168
169             /// Returns `true` if no flags are currently stored.
170             #[inline]
171             pub fn is_empty(&self) -> bool {
172                 *self == $BitFlags::empty()
173             }
174
175             /// Returns `true` if all flags are currently set.
176             #[inline]
177             pub fn is_all(&self) -> bool {
178                 *self == $BitFlags::all()
179             }
180
181             /// Returns `true` if there are flags common to both `self` and `other`.
182             #[inline]
183             pub fn intersects(&self, other: $BitFlags) -> bool {
184                 !(*self & other).is_empty()
185             }
186
187             /// Returns `true` all of the flags in `other` are contained within `self`.
188             #[inline]
189             pub fn contains(&self, other: $BitFlags) -> bool {
190                 (*self & other) == other
191             }
192
193             /// Inserts the specified flags in-place.
194             #[inline]
195             pub fn insert(&mut self, other: $BitFlags) {
196                 self.bits |= other.bits;
197             }
198
199             /// Removes the specified flags in-place.
200             #[inline]
201             pub fn remove(&mut self, other: $BitFlags) {
202                 self.bits &= !other.bits;
203             }
204
205             /// Toggles the specified flags in-place.
206             #[inline]
207             pub fn toggle(&mut self, other: $BitFlags) {
208                 self.bits ^= other.bits;
209             }
210         }
211
212         impl ::std::ops::BitOr<$BitFlags, $BitFlags> for $BitFlags {
213             /// Returns the union of the two sets of flags.
214             #[inline]
215             fn bitor(self, other: $BitFlags) -> $BitFlags {
216                 $BitFlags { bits: self.bits | other.bits }
217             }
218         }
219
220         impl ::std::ops::BitXor<$BitFlags, $BitFlags> for $BitFlags {
221             /// Returns the left flags, but with all the right flags toggled.
222             #[inline]
223             fn bitxor(self, other: $BitFlags) -> $BitFlags {
224                 $BitFlags { bits: self.bits ^ other.bits }
225             }
226         }
227
228         impl ::std::ops::BitAnd<$BitFlags, $BitFlags> for $BitFlags {
229             /// Returns the intersection between the two sets of flags.
230             #[inline]
231             fn bitand(self, other: $BitFlags) -> $BitFlags {
232                 $BitFlags { bits: self.bits & other.bits }
233             }
234         }
235
236         impl ::std::ops::Sub<$BitFlags, $BitFlags> for $BitFlags {
237             /// Returns the set difference of the two sets of flags.
238             #[inline]
239             fn sub(self, other: $BitFlags) -> $BitFlags {
240                 $BitFlags { bits: self.bits & !other.bits }
241             }
242         }
243
244         impl ::std::ops::Not<$BitFlags> for $BitFlags {
245             /// Returns the complement of this set of flags.
246             #[inline]
247             fn not(self) -> $BitFlags {
248                 $BitFlags { bits: !self.bits } & $BitFlags::all()
249             }
250         }
251     };
252     ($(#[$attr:meta])* flags $BitFlags:ident: $T:ty {
253         $($(#[$Flag_attr:meta])* const $Flag:ident = $value:expr),+,
254     }) => {
255         bitflags! {
256             $(#[$attr])*
257             flags $BitFlags: $T {
258                 $($(#[$Flag_attr])* const $Flag = $value),+
259             }
260         }
261     };
262 }
263
264 #[cfg(test)]
265 #[allow(non_upper_case_globals)]
266 mod tests {
267     use hash;
268     use option::Option::{Some, None};
269
270     bitflags! {
271         #[doc = "> The first principle is that you must not fool yourself — and"]
272         #[doc = "> you are the easiest person to fool."]
273         #[doc = "> "]
274         #[doc = "> - Richard Feynman"]
275         flags Flags: u32 {
276             const FlagA       = 0b00000001,
277             #[doc = "<pcwalton> macros are way better at generating code than trans is"]
278             const FlagB       = 0b00000010,
279             const FlagC       = 0b00000100,
280             #[doc = "* cmr bed"]
281             #[doc = "* strcat table"]
282             #[doc = "<strcat> wait what?"]
283             const FlagABC     = FlagA.bits
284                                | FlagB.bits
285                                | FlagC.bits,
286         }
287     }
288
289     bitflags! {
290         flags AnotherSetOfFlags: i8 {
291             const AnotherFlag = -1_i8,
292         }
293     }
294
295     #[test]
296     fn test_bits(){
297         assert_eq!(Flags::empty().bits(), 0b00000000);
298         assert_eq!(FlagA.bits(), 0b00000001);
299         assert_eq!(FlagABC.bits(), 0b00000111);
300
301         assert_eq!(AnotherSetOfFlags::empty().bits(), 0b00);
302         assert_eq!(AnotherFlag.bits(), !0_i8);
303     }
304
305     #[test]
306     fn test_from_bits() {
307         assert!(Flags::from_bits(0) == Some(Flags::empty()));
308         assert!(Flags::from_bits(0b1) == Some(FlagA));
309         assert!(Flags::from_bits(0b10) == Some(FlagB));
310         assert!(Flags::from_bits(0b11) == Some(FlagA | FlagB));
311         assert!(Flags::from_bits(0b1000) == None);
312
313         assert!(AnotherSetOfFlags::from_bits(!0_i8) == Some(AnotherFlag));
314     }
315
316     #[test]
317     fn test_from_bits_truncate() {
318         assert!(Flags::from_bits_truncate(0) == Flags::empty());
319         assert!(Flags::from_bits_truncate(0b1) == FlagA);
320         assert!(Flags::from_bits_truncate(0b10) == FlagB);
321         assert!(Flags::from_bits_truncate(0b11) == (FlagA | FlagB));
322         assert!(Flags::from_bits_truncate(0b1000) == Flags::empty());
323         assert!(Flags::from_bits_truncate(0b1001) == FlagA);
324
325         assert!(AnotherSetOfFlags::from_bits_truncate(0_i8) == AnotherSetOfFlags::empty());
326     }
327
328     #[test]
329     fn test_is_empty(){
330         assert!(Flags::empty().is_empty());
331         assert!(!FlagA.is_empty());
332         assert!(!FlagABC.is_empty());
333
334         assert!(!AnotherFlag.is_empty());
335     }
336
337     #[test]
338     fn test_is_all() {
339         assert!(Flags::all().is_all());
340         assert!(!FlagA.is_all());
341         assert!(FlagABC.is_all());
342
343         assert!(AnotherFlag.is_all());
344     }
345
346     #[test]
347     fn test_two_empties_do_not_intersect() {
348         let e1 = Flags::empty();
349         let e2 = Flags::empty();
350         assert!(!e1.intersects(e2));
351
352         assert!(AnotherFlag.intersects(AnotherFlag));
353     }
354
355     #[test]
356     fn test_empty_does_not_intersect_with_full() {
357         let e1 = Flags::empty();
358         let e2 = FlagABC;
359         assert!(!e1.intersects(e2));
360     }
361
362     #[test]
363     fn test_disjoint_intersects() {
364         let e1 = FlagA;
365         let e2 = FlagB;
366         assert!(!e1.intersects(e2));
367     }
368
369     #[test]
370     fn test_overlapping_intersects() {
371         let e1 = FlagA;
372         let e2 = FlagA | FlagB;
373         assert!(e1.intersects(e2));
374     }
375
376     #[test]
377     fn test_contains() {
378         let e1 = FlagA;
379         let e2 = FlagA | FlagB;
380         assert!(!e1.contains(e2));
381         assert!(e2.contains(e1));
382         assert!(FlagABC.contains(e2));
383
384         assert!(AnotherFlag.contains(AnotherFlag));
385     }
386
387     #[test]
388     fn test_insert(){
389         let mut e1 = FlagA;
390         let e2 = FlagA | FlagB;
391         e1.insert(e2);
392         assert!(e1 == e2);
393
394         let mut e3 = AnotherSetOfFlags::empty();
395         e3.insert(AnotherFlag);
396         assert!(e3 == AnotherFlag);
397     }
398
399     #[test]
400     fn test_remove(){
401         let mut e1 = FlagA | FlagB;
402         let e2 = FlagA | FlagC;
403         e1.remove(e2);
404         assert!(e1 == FlagB);
405
406         let mut e3 = AnotherFlag;
407         e3.remove(AnotherFlag);
408         assert!(e3 == AnotherSetOfFlags::empty());
409     }
410
411     #[test]
412     fn test_operators() {
413         let e1 = FlagA | FlagC;
414         let e2 = FlagB | FlagC;
415         assert!((e1 | e2) == FlagABC);     // union
416         assert!((e1 & e2) == FlagC);       // intersection
417         assert!((e1 - e2) == FlagA);       // set difference
418         assert!(!e2 == FlagA);             // set complement
419         assert!(e1 ^ e2 == FlagA | FlagB); // toggle
420         let mut e3 = e1;
421         e3.toggle(e2);
422         assert!(e3 == FlagA | FlagB);
423
424         let mut m4 = AnotherSetOfFlags::empty();
425         m4.toggle(AnotherSetOfFlags::empty());
426         assert!(m4 == AnotherSetOfFlags::empty());
427     }
428
429     #[test]
430     fn test_lt() {
431         let mut a = Flags::empty();
432         let mut b = Flags::empty();
433
434         assert!(!(a < b) && !(b < a));
435         b = FlagB;
436         assert!(a < b);
437         a = FlagC;
438         assert!(!(a < b) && b < a);
439         b = FlagC | FlagB;
440         assert!(a < b);
441     }
442
443     #[test]
444     fn test_ord() {
445         let mut a = Flags::empty();
446         let mut b = Flags::empty();
447
448         assert!(a <= b && a >= b);
449         a = FlagA;
450         assert!(a > b && a >= b);
451         assert!(b < a && b <= a);
452         b = FlagB;
453         assert!(b > a && b >= a);
454         assert!(a < b && a <= b);
455     }
456
457     #[test]
458     fn test_hash() {
459       let mut x = Flags::empty();
460       let mut y = Flags::empty();
461       assert!(hash::hash(&x) == hash::hash(&y));
462       x = Flags::all();
463       y = FlagABC;
464       assert!(hash::hash(&x) == hash::hash(&y));
465     }
466 }