diff --git a/src/grid.rs b/src/grid.rs index f40ceec9..1b4236f7 100644 --- a/src/grid.rs +++ b/src/grid.rs @@ -22,9 +22,10 @@ use std::borrow::ToOwned; use std::cmp::Ordering; +use std::collections::{VecDeque, vec_deque}; use std::iter::IntoIterator; use std::ops::{Deref, DerefMut, Range, RangeTo, RangeFrom, RangeFull, Index, IndexMut}; -use std::slice::{self, Iter, IterMut}; +use std::slice; use index::{self, Point, Line, Column, IndexRange, RangeInclusive}; @@ -58,7 +59,7 @@ impl Deref for Indexed { pub struct Grid { /// Lines in the grid. Each row holds a list of cells corresponding to the /// columns in that row. - raw: Vec>, + raw: VecDeque>, /// Number of columns cols: index::Column, @@ -76,9 +77,9 @@ pub struct GridIterator<'a, T: 'a> { impl Grid { pub fn new(lines: index::Line, cols: index::Column, template: &T) -> Grid { - let mut raw = Vec::with_capacity(*lines); + let mut raw = VecDeque::with_capacity(*lines); for _ in IndexRange(index::Line(0)..lines) { - raw.push(Row::new(cols, template)); + raw.push_back(Row::new(cols, template)); } Grid { @@ -109,7 +110,7 @@ impl Grid { fn grow_lines(&mut self, lines: index::Line, template: &T) { for _ in IndexRange(self.num_lines()..lines) { - self.raw.push(Row::new(self.cols, template)); + self.raw.push_back(Row::new(self.cols, template)); } self.lines = lines; @@ -125,14 +126,168 @@ impl Grid { } + +/// A subset of lines in the grid +/// +/// May be constructed using Grid::region(..) +pub struct Region<'a, T: 'a> { + start: Line, + end: Line, + raw: &'a VecDeque>, +} + +/// A mutable subset of lines in the grid +/// +/// May be constructed using Grid::region_mut(..) +pub struct RegionMut<'a, T: 'a> { + start: Line, + end: Line, + raw: &'a mut VecDeque>, +} + +pub trait IndexRegion { + /// Get an immutable region of Self + fn region<'a>(&'a self, _: I) -> Region<'a, T>; + + /// Get a mutable region of Self + fn region_mut<'a>(&'a mut self, _: I) -> RegionMut<'a, T>; +} + +impl IndexRegion, T> for Grid { + fn region(&self, index: Range) -> Region { + assert!(index.start < self.num_lines()); + assert!(index.end <= self.num_lines()); + assert!(index.start <= index.end); + Region { + start: index.start, + end: index.end, + raw: &self.raw + } + } + fn region_mut(&mut self, index: Range) -> RegionMut { + assert!(index.start < self.num_lines()); + assert!(index.end <= self.num_lines()); + assert!(index.start <= index.end); + RegionMut { + start: index.start, + end: index.end, + raw: &mut self.raw + } + } +} + +impl IndexRegion, T> for Grid { + fn region(&self, index: RangeTo) -> Region { + assert!(index.end <= self.num_lines()); + Region { + start: Line(0), + end: index.end, + raw: &self.raw + } + } + fn region_mut(&mut self, index: RangeTo) -> RegionMut { + assert!(index.end <= self.num_lines()); + RegionMut { + start: Line(0), + end: index.end, + raw: &mut self.raw + } + } +} + +impl IndexRegion, T> for Grid { + fn region(&self, index: RangeFrom) -> Region { + assert!(index.start < self.num_lines()); + Region { + start: index.start, + end: self.num_lines(), + raw: &self.raw + } + } + fn region_mut(&mut self, index: RangeFrom) -> RegionMut { + assert!(index.start < self.num_lines()); + RegionMut { + start: index.start, + end: self.num_lines(), + raw: &mut self.raw + } + } +} + +pub struct RegionIter<'a, T: 'a> { + end: Line, + cur: Line, + raw: &'a VecDeque>, +} + +pub struct RegionIterMut<'a, T: 'a> { + end: Line, + cur: Line, + raw: &'a mut VecDeque>, +} + +impl<'a, T> IntoIterator for Region<'a, T> { + type Item = &'a Row; + type IntoIter = RegionIter<'a, T>; + + fn into_iter(self) -> Self::IntoIter { + RegionIter { + end: self.end, + cur: self.start, + raw: self.raw + } + } +} + +impl<'a, T> IntoIterator for RegionMut<'a, T> { + type Item = &'a mut Row; + type IntoIter = RegionIterMut<'a, T>; + + fn into_iter(self) -> Self::IntoIter { + RegionIterMut { + end: self.end, + cur: self.start, + raw: self.raw + } + } +} + +impl<'a, T> Iterator for RegionIter<'a, T> { + type Item = &'a Row; + fn next(&mut self) -> Option { + if self.cur < self.end { + let index = self.cur; + self.cur += 1; + Some(&self.raw[*index]) + } else { + None + } + } +} + +impl<'a, T> Iterator for RegionIterMut<'a, T> { + type Item = &'a mut Row; + fn next(&mut self) -> Option { + if self.cur < self.end { + let index = self.cur; + self.cur += 1; + unsafe { + Some(&mut *(&mut self.raw[index.0] as *mut _)) + } + } else { + None + } + } +} + impl Grid { #[inline] - pub fn lines(&self) -> Iter> { + pub fn lines(&self) -> vec_deque::Iter> { self.raw.iter() } #[inline] - pub fn lines_mut(&mut self) -> IterMut> { + pub fn lines_mut(&mut self) -> vec_deque::IterMut> { self.raw.iter_mut() } @@ -146,21 +301,35 @@ impl Grid { self.cols } - pub fn iter_rows(&self) -> slice::Iter> { - self.raw.iter() - } - #[inline] pub fn scroll_down(&mut self, region: &Range, positions: index::Line) { - for line in IndexRange((region.start + positions)..region.end).rev() { - self.swap_lines(line, line - positions); + if region.start == Line(0) && region.end == self.num_lines() { + // Full rotation + for _ in 0..positions.0 { + let item = self.raw.pop_back().unwrap(); + self.raw.push_front(item); + } + } else { + // Subregion rotation + for line in IndexRange((region.start + positions)..region.end).rev() { + self.swap_lines(line, line - positions); + } } } #[inline] pub fn scroll_up(&mut self, region: &Range, positions: index::Line) { - for line in IndexRange(region.start..(region.end - positions)) { - self.swap_lines(line, line + positions); + if region.start == Line(0) && region.end == self.num_lines() { + // Full rotation + for _ in 0..positions.0 { + let item = self.raw.pop_front().unwrap(); + self.raw.push_back(item); + } + } else { + // Subregion rotation + for line in IndexRange(region.start..(region.end - positions)) { + self.swap_lines(line, line + positions); + } } } @@ -182,24 +351,7 @@ impl Grid { /// better error messages by doing the bounds checking ourselves. #[inline] pub fn swap_lines(&mut self, src: index::Line, dst: index::Line) { - use util::unlikely; - - unsafe { - // check that src/dst are in bounds. Since index::Line newtypes usize, - // we can assume values are positive. - if unlikely(src >= self.lines) { - panic!("swap_lines src out of bounds; len={}, src={}", self.raw.len(), src); - } - - if unlikely(dst >= self.lines) { - panic!("swap_lines dst out of bounds; len={}, dst={}", self.raw.len(), dst); - } - - let src: *mut _ = self.raw.get_unchecked_mut(src.0); - let dst: *mut _ = self.raw.get_unchecked_mut(dst.0); - - ::std::ptr::swap(src, dst); - } + self.raw.swap(*src, *dst); } #[inline] @@ -210,7 +362,7 @@ impl Grid { fn shrink_lines(&mut self, lines: index::Line) { while index::Line(self.raw.len()) != lines { - self.raw.pop(); + self.raw.pop_back(); } self.lines = lines; @@ -324,22 +476,22 @@ impl Row { } #[inline] - pub fn cells(&self) -> Iter { + pub fn cells(&self) -> slice::Iter { self.0.iter() } #[inline] - pub fn cells_mut(&mut self) -> IterMut { + pub fn cells_mut(&mut self) -> slice::IterMut { self.0.iter_mut() } } impl<'a, T> IntoIterator for &'a Grid { type Item = &'a Row; - type IntoIter = slice::Iter<'a, Row>; + type IntoIter = vec_deque::Iter<'a, Row>; #[inline] - fn into_iter(self) -> slice::Iter<'a, Row> { + fn into_iter(self) -> vec_deque::Iter<'a, Row> { self.raw.iter() } } @@ -421,58 +573,6 @@ row_index_range!(RangeTo); row_index_range!(RangeFrom); row_index_range!(RangeFull); -// ----------------------------------------------------------------------------- -// Row ranges for Grid -// ----------------------------------------------------------------------------- - -impl Index> for Grid { - type Output = [Row]; - - #[inline] - fn index(&self, index: Range) -> &[Row] { - &self.raw[(index.start.0)..(index.end.0)] - } -} - -impl IndexMut> for Grid { - #[inline] - fn index_mut(&mut self, index: Range) -> &mut [Row] { - &mut self.raw[(index.start.0)..(index.end.0)] - } -} - -impl Index> for Grid { - type Output = [Row]; - - #[inline] - fn index(&self, index: RangeTo) -> &[Row] { - &self.raw[..(index.end.0)] - } -} - -impl IndexMut> for Grid { - #[inline] - fn index_mut(&mut self, index: RangeTo) -> &mut [Row] { - &mut self.raw[..(index.end.0)] - } -} - -impl Index> for Grid { - type Output = [Row]; - - #[inline] - fn index(&self, index: RangeFrom) -> &[Row] { - &self.raw[(index.start.0)..] - } -} - -impl IndexMut> for Grid { - #[inline] - fn index_mut(&mut self, index: RangeFrom) -> &mut [Row] { - &mut self.raw[(index.start.0)..] - } -} - // ----------------------------------------------------------------------------- // Column ranges for Row // ----------------------------------------------------------------------------- @@ -533,7 +633,7 @@ macro_rules! clear_region_impl { ($range:ty) => { impl ClearRegion<$range, T> for Grid { fn clear_region(&mut self, region: $range, func: F) { - for row in self[region].iter_mut() { + for row in self.region_mut(region) { for cell in row { func(cell); } diff --git a/src/term/mod.rs b/src/term/mod.rs index 4f56e7fc..dd853368 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -24,7 +24,7 @@ use unicode_width::UnicodeWidthChar; use font::{self, Size}; use ansi::{self, Color, NamedColor, Attr, Handler, CharsetIndex, StandardCharset, CursorStyle}; -use grid::{BidirectionalIterator, Grid, ClearRegion, ToRange, Indexed}; +use grid::{BidirectionalIterator, Grid, ClearRegion, ToRange, Indexed, IndexRegion}; use index::{self, Point, Column, Line, Linear, IndexRange, Contains, RangeInclusive}; use selection::{self, Span, Selection}; use config::{Config, VisualBellAnimation}; @@ -1708,7 +1708,7 @@ impl ansi::Handler for Term { cell.reset(&template); } if self.cursor.point.line < self.grid.num_lines() - 1 { - for row in &mut self.grid[(self.cursor.point.line + 1)..] { + for row in self.grid.region_mut((self.cursor.point.line + 1)..) { for cell in row { cell.reset(&template); } @@ -1722,7 +1722,7 @@ impl ansi::Handler for Term { // If clearing more than one line if self.cursor.point.line > Line(1) { // Fully clear all lines before the current line - for row in &mut self.grid[..self.cursor.point.line] { + for row in self.grid.region_mut(..self.cursor.point.line) { for cell in row { cell.reset(&template); } diff --git a/tests/ref.rs b/tests/ref.rs index b8587955..2a093704 100644 --- a/tests/ref.rs +++ b/tests/ref.rs @@ -84,7 +84,7 @@ fn ref_test(dir: &Path) { } if grid != *terminal.grid() { - for (i, row) in terminal.grid().iter_rows().enumerate() { + for (i, row) in terminal.grid().lines().enumerate() { for (j, cell) in row.iter().enumerate() { let original_cell = &grid[Line(i)][Column(j)]; if *original_cell != *cell {