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
/*!
This crate provides a bitmatrix based on [bitvec](https://docs.rs/bitvec), akin to
[bit-matrix](https://docs.rs/bit-matrix) which is based on [bit-vec](https://docs.rs/bit-vec).

Access can be done through the `Index<usize>`, `Index<(usize, usize)>` and
`IndexMut<usize>` traits. As the `IndexMut` trait is incompatible with proxies,
a `set` method is provided. Row and cell iterators are also provided.

If the `serde_support` feature is enabled, this type implements serde's `Serialize`
and `Deserialize` traits.
*/


#[cfg(test)]
mod tests;

use std::{
	fmt,
	ops::{Index, IndexMut}
};

use bitvec::{
	order::Lsb0,
	slice::{BitSlice, ChunksExact, ChunksExactMut, Iter, IterMut},
	boxed::BitBox,
	vec::BitVec,
};

#[cfg(feature = "serde")]
use serde::{Serialize, Deserialize};


/// A matrix of bits.
///
/// Access can be done through the `Index<usize>`, `Index<(usize, usize)>` and
/// `IndexMut<usize>` traits. As the `IndexMut` trait is incompatible with proxies,
/// a `set` method is also provided.
///
/// If the `serde_support` feature is enabled, this type implements serde's `Serialize`
/// and `Deserialize` traits.
#[derive(Clone, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct BitMatrix {
	storage: BitBox<Lsb0, usize>,
	height: usize,
	width: usize,
}


impl BitMatrix {
	/// Create a BitMatrix with the given size. All bits are initialized to `false`.
	///
	/// ```
	/// # use bitmatrix::BitMatrix;
	/// let matrix = BitMatrix::new(5, 10);
	/// ```
	pub fn new(height: usize, width: usize) -> Self {
		let size = height * width;
		let mut vec = BitVec::with_capacity(size);
		vec.resize(size, false);

		Self {
			storage: vec.into_boxed_bitslice(),
			height,
			width
		}
	}


	/// Get the matrix height.
	pub fn height(&self) -> usize {
		self.height
	}

	/// Get the matrix width.
	pub fn width(&self) -> usize {
		self.width
	}


	fn row_ix(&self, i: usize) -> usize {
		i * self.width
	}


	/// Iterate over all bits in the matrix.
	/// ```
	/// # use bitmatrix::BitMatrix;
	/// let mut matrix = BitMatrix::new(2, 2);
	/// matrix.set((0,1), true);
	/// matrix.set((1,0), true);
	/// let mut iter = matrix.iter();
	/// assert_eq!(iter.next(), Some(&false));
	/// assert_eq!(iter.next(), Some(&true));
	/// assert_eq!(iter.next(), Some(&true));
	/// assert_eq!(iter.next(), Some(&false));
	/// assert_eq!(iter.next(), None);
	/// ```
	pub fn iter(&self) -> Iter<Lsb0, usize> {
		self.storage.iter()
	}


	/// Iterate over all bits in the matrix.
	/// ```
	/// # use bitmatrix::BitMatrix;
	/// let mut matrix = BitMatrix::new(2, 2);
	/// let mut iter = matrix.iter_mut();
	/// if let Some(bit) = iter.next() {
	/// 	bit.set(true);
	/// }
	/// assert_eq!(matrix[(0,0)], true);
	/// ```
	pub fn iter_mut(&mut self) -> IterMut<Lsb0, usize> {
		self.storage.iter_mut()
	}


	/// An iterator to the matrix rows.
	/// Returns an iterator over BitSlices.
	pub fn rows(&self) -> ChunksExact<Lsb0, usize> {
		self.storage.chunks_exact(self.width)
	}

	/// A mutable iterator to the matrix rows.
	/// Returns a mutable iterator over BitSlices.
	pub fn rows_mut(&mut self) -> ChunksExactMut<Lsb0, usize> {
		self.storage.chunks_exact_mut(self.width)
	}


	/// Set a given bit in the matrix.
	/// This method is necessary because `IndexMut` is incompatible with proxies.
	/// ```
	/// # use bitmatrix::BitMatrix;
	/// let mut matrix = BitMatrix::new(3, 11);
	/// matrix.set((1,2), true);
	/// assert_eq!(matrix[(1,2)], true);
	/// ```
	/// # Panics
	/// Panics if `i` or `j` are out of bounds.
	pub fn set(&mut self, (i, j): (usize, usize), value: bool) {
		self[i].set(j, value);
	}


	/// Set all bits in the matrix.
	/// ```
	/// use std::convert::identity;
	/// # use bitmatrix::BitMatrix;
	/// let mut matrix = BitMatrix::new(3, 11);
	/// matrix.set_all(true);
	/// assert!(matrix.iter().copied().all(identity));
	/// ```
	pub fn set_all(&mut self, value: bool) {
		self.storage.set_all(value);
	}
}


impl Index<usize> for BitMatrix {
	type Output = BitSlice;

	fn index(&self, index: usize) -> &Self::Output {
		let begin = self.row_ix(index);
		let end = self.row_ix(index + 1);

		&self.storage[begin .. end]
	}
}


impl IndexMut<usize> for BitMatrix {
	fn index_mut(&mut self, index: usize) -> &mut Self::Output {
		let begin = self.row_ix(index);
		let end = self.row_ix(index + 1);

		&mut self.storage[begin .. end]
	}
}


impl Index<(usize, usize)> for BitMatrix {
	type Output = bool;

	fn index(&self, (i, j): (usize, usize)) -> &Self::Output {
		&self[i][j]
	}
}


impl fmt::Debug for BitMatrix {
	fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
		for row in self.rows() {
			for item in row.into_iter() {
				write!(f, "{}", *item as u8)?;
			}

			writeln!(f)?;
		}

		Ok(())
	}
}