2016-11-28 17:30:08 -05:00
|
|
|
// Copyright 2016 Joe Wilm, The Alacritty Project Contributors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2018-12-10 12:53:56 -05:00
|
|
|
use bitflags::bitflags;
|
|
|
|
|
2019-03-30 12:48:36 -04:00
|
|
|
use crate::ansi::{Color, NamedColor};
|
2019-03-13 14:55:18 -04:00
|
|
|
use crate::grid::{self, GridCell};
|
2018-12-10 12:53:56 -05:00
|
|
|
use crate::index::Column;
|
2016-11-28 17:30:08 -05:00
|
|
|
|
2018-12-09 10:28:22 -05:00
|
|
|
// Maximum number of zerowidth characters which will be stored per cell.
|
|
|
|
pub const MAX_ZEROWIDTH_CHARS: usize = 5;
|
|
|
|
|
2016-11-28 17:30:08 -05:00
|
|
|
bitflags! {
|
|
|
|
#[derive(Serialize, Deserialize)]
|
2018-12-09 10:28:22 -05:00
|
|
|
pub struct Flags: u16 {
|
2018-12-22 12:16:54 -05:00
|
|
|
const INVERSE = 0b00_0000_0001;
|
|
|
|
const BOLD = 0b00_0000_0010;
|
|
|
|
const ITALIC = 0b00_0000_0100;
|
|
|
|
const UNDERLINE = 0b00_0000_1000;
|
|
|
|
const WRAPLINE = 0b00_0001_0000;
|
|
|
|
const WIDE_CHAR = 0b00_0010_0000;
|
|
|
|
const WIDE_CHAR_SPACER = 0b00_0100_0000;
|
|
|
|
const DIM = 0b00_1000_0000;
|
|
|
|
const DIM_BOLD = 0b00_1000_0010;
|
|
|
|
const HIDDEN = 0b01_0000_0000;
|
|
|
|
const STRIKEOUT = 0b10_0000_0000;
|
2016-11-28 17:30:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-09 10:28:22 -05:00
|
|
|
const fn default_extra() -> [char; MAX_ZEROWIDTH_CHARS] {
|
|
|
|
[' '; MAX_ZEROWIDTH_CHARS]
|
|
|
|
}
|
|
|
|
|
2016-12-29 21:51:17 -05:00
|
|
|
#[derive(Copy, Clone, Debug, Serialize, Deserialize, Eq, PartialEq)]
|
2016-11-28 17:30:08 -05:00
|
|
|
pub struct Cell {
|
|
|
|
pub c: char,
|
|
|
|
pub fg: Color,
|
|
|
|
pub bg: Color,
|
|
|
|
pub flags: Flags,
|
2019-03-30 12:48:36 -04:00
|
|
|
#[serde(default = "default_extra")]
|
2018-12-09 10:28:22 -05:00
|
|
|
pub extra: [char; MAX_ZEROWIDTH_CHARS],
|
2016-11-28 17:30:08 -05:00
|
|
|
}
|
|
|
|
|
2016-12-29 21:43:55 -05:00
|
|
|
impl Default for Cell {
|
|
|
|
fn default() -> Cell {
|
2019-03-30 12:48:36 -04:00
|
|
|
Cell::new(' ', Color::Named(NamedColor::Foreground), Color::Named(NamedColor::Background))
|
2016-12-29 21:43:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-13 14:55:18 -04:00
|
|
|
impl GridCell for Cell {
|
|
|
|
#[inline]
|
|
|
|
fn is_empty(&self) -> bool {
|
|
|
|
(self.c == ' ' || self.c == '\t')
|
|
|
|
&& self.extra[0] == ' '
|
|
|
|
&& self.bg == Color::Named(NamedColor::Background)
|
2019-07-10 17:17:20 -04:00
|
|
|
&& self.fg == Color::Named(NamedColor::Foreground)
|
2019-03-13 14:55:18 -04:00
|
|
|
&& !self
|
|
|
|
.flags
|
|
|
|
.intersects(Flags::INVERSE | Flags::UNDERLINE | Flags::STRIKEOUT | Flags::WRAPLINE)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn is_wrap(&self) -> bool {
|
|
|
|
self.flags.contains(Flags::WRAPLINE)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn set_wrap(&mut self, wrap: bool) {
|
|
|
|
if wrap {
|
|
|
|
self.flags.insert(Flags::WRAPLINE);
|
|
|
|
} else {
|
|
|
|
self.flags.remove(Flags::WRAPLINE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 22:52:37 -05:00
|
|
|
/// Get the length of occupied cells in a line
|
|
|
|
pub trait LineLength {
|
|
|
|
/// Calculate the occupied line length
|
|
|
|
fn line_length(&self) -> Column;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LineLength for grid::Row<Cell> {
|
|
|
|
fn line_length(&self) -> Column {
|
|
|
|
let mut length = Column(0);
|
|
|
|
|
2017-10-11 21:52:23 -04:00
|
|
|
if self[Column(self.len() - 1)].flags.contains(Flags::WRAPLINE) {
|
2016-12-29 10:43:58 -05:00
|
|
|
return Column(self.len());
|
|
|
|
}
|
|
|
|
|
2016-12-26 22:52:37 -05:00
|
|
|
for (index, cell) in self[..].iter().rev().enumerate() {
|
2018-12-09 10:28:22 -05:00
|
|
|
if cell.c != ' ' || cell.extra[0] != ' ' {
|
2016-12-26 22:52:37 -05:00
|
|
|
length = Column(self.len() - index);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
length
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-28 17:30:08 -05:00
|
|
|
impl Cell {
|
2017-06-23 13:01:53 -04:00
|
|
|
#[inline]
|
2016-11-28 17:30:08 -05:00
|
|
|
pub fn bold(&self) -> bool {
|
2017-10-11 21:52:23 -04:00
|
|
|
self.flags.contains(Flags::BOLD)
|
2016-11-28 17:30:08 -05:00
|
|
|
}
|
|
|
|
|
2017-06-23 13:01:53 -04:00
|
|
|
#[inline]
|
2017-06-18 20:04:16 -04:00
|
|
|
pub fn inverse(&self) -> bool {
|
2017-10-11 21:52:23 -04:00
|
|
|
self.flags.contains(Flags::INVERSE)
|
2017-06-18 20:04:16 -04:00
|
|
|
}
|
|
|
|
|
2017-06-23 13:01:53 -04:00
|
|
|
#[inline]
|
|
|
|
pub fn dim(&self) -> bool {
|
2017-10-11 21:52:23 -04:00
|
|
|
self.flags.contains(Flags::DIM)
|
2017-06-23 13:01:53 -04:00
|
|
|
}
|
|
|
|
|
2016-11-28 17:30:08 -05:00
|
|
|
pub fn new(c: char, fg: Color, bg: Color) -> Cell {
|
2019-03-30 12:48:36 -04:00
|
|
|
Cell { extra: [' '; MAX_ZEROWIDTH_CHARS], c, bg, fg, flags: Flags::empty() }
|
2016-11-28 17:30:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn reset(&mut self, template: &Cell) {
|
|
|
|
// memcpy template to self
|
2017-01-06 23:44:51 -05:00
|
|
|
*self = *template;
|
2016-11-28 17:30:08 -05:00
|
|
|
}
|
2018-12-09 10:28:22 -05:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn chars(&self) -> [char; MAX_ZEROWIDTH_CHARS + 1] {
|
|
|
|
unsafe {
|
|
|
|
let mut chars = [std::mem::uninitialized(); MAX_ZEROWIDTH_CHARS + 1];
|
|
|
|
std::ptr::write(&mut chars[0], self.c);
|
|
|
|
std::ptr::copy_nonoverlapping(
|
|
|
|
self.extra.as_ptr(),
|
|
|
|
chars.as_mut_ptr().offset(1),
|
|
|
|
self.extra.len(),
|
|
|
|
);
|
|
|
|
chars
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn push_extra(&mut self, c: char) {
|
|
|
|
for elem in self.extra.iter_mut() {
|
|
|
|
if elem == &' ' {
|
|
|
|
*elem = c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-28 17:30:08 -05:00
|
|
|
}
|
2016-12-26 22:52:37 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::{Cell, LineLength};
|
|
|
|
|
2018-12-10 12:53:56 -05:00
|
|
|
use crate::grid::Row;
|
|
|
|
use crate::index::Column;
|
2016-12-26 22:52:37 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn line_length_works() {
|
2016-12-29 21:43:55 -05:00
|
|
|
let template = Cell::default();
|
2016-12-26 22:52:37 -05:00
|
|
|
let mut row = Row::new(Column(10), &template);
|
|
|
|
row[Column(5)].c = 'a';
|
|
|
|
|
|
|
|
assert_eq!(row.line_length(), Column(6));
|
|
|
|
}
|
2016-12-29 10:43:58 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn line_length_works_with_wrapline() {
|
2016-12-29 21:43:55 -05:00
|
|
|
let template = Cell::default();
|
2016-12-29 10:43:58 -05:00
|
|
|
let mut row = Row::new(Column(10), &template);
|
2017-10-11 21:52:23 -04:00
|
|
|
row[Column(9)].flags.insert(super::Flags::WRAPLINE);
|
2016-12-29 10:43:58 -05:00
|
|
|
|
|
|
|
assert_eq!(row.line_length(), Column(10));
|
|
|
|
}
|
2016-12-26 22:52:37 -05:00
|
|
|
}
|
2016-12-29 21:51:17 -05:00
|
|
|
|
2017-02-02 23:50:48 -05:00
|
|
|
#[cfg(all(test, feature = "bench"))]
|
2016-12-29 21:51:17 -05:00
|
|
|
mod benches {
|
|
|
|
extern crate test;
|
|
|
|
use super::Cell;
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn cell_reset(b: &mut test::Bencher) {
|
|
|
|
b.iter(|| {
|
|
|
|
let mut cell = Cell::default();
|
|
|
|
|
|
|
|
for _ in 0..100 {
|
|
|
|
cell.reset(test::black_box(&Cell::default()));
|
|
|
|
}
|
|
|
|
|
|
|
|
test::black_box(cell);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|