mirror of
https://github.com/sharkdp/bat
synced 2024-11-10 19:10:41 +00:00
Simplify access to first line
This commit is contained in:
parent
1dbb4ef683
commit
f98fc5f06a
@ -180,10 +180,8 @@ impl HighlightingAssets {
|
|||||||
.find_syntax_by_extension(file_name)
|
.find_syntax_by_extension(file_name)
|
||||||
.or_else(|| self.syntax_set.find_syntax_by_extension(extension));
|
.or_else(|| self.syntax_set.find_syntax_by_extension(extension));
|
||||||
let line_syntax = if ext_syntax.is_none() {
|
let line_syntax = if ext_syntax.is_none() {
|
||||||
reader
|
String::from_utf8(reader.first_line.clone())
|
||||||
.get_first_line()
|
|
||||||
.ok()
|
.ok()
|
||||||
.and_then(|v| String::from_utf8(v).ok())
|
|
||||||
.and_then(|l| self.syntax_set.find_syntax_by_first_line(&l))
|
.and_then(|l| self.syntax_set.find_syntax_by_first_line(&l))
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
|
@ -7,29 +7,25 @@ const THEME_PREVIEW_FILE: &[u8] = include_bytes!("../assets/theme_preview.rs");
|
|||||||
|
|
||||||
pub struct InputFileReader<'a> {
|
pub struct InputFileReader<'a> {
|
||||||
inner: Box<dyn BufRead + 'a>,
|
inner: Box<dyn BufRead + 'a>,
|
||||||
buffer: Vec<u8>,
|
pub first_line: Vec<u8>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> InputFileReader<'a> {
|
impl<'a> InputFileReader<'a> {
|
||||||
fn new<R: BufRead + 'a>(reader: R) -> InputFileReader<'a> {
|
fn new<R: BufRead + 'a>(mut reader: R) -> InputFileReader<'a> {
|
||||||
|
let mut first_line = vec![];
|
||||||
|
reader.read_until(b'\n', &mut first_line).ok();
|
||||||
|
|
||||||
InputFileReader {
|
InputFileReader {
|
||||||
inner: Box::new(reader),
|
inner: Box::new(reader),
|
||||||
buffer: vec![],
|
first_line,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_first_line(&mut self) -> io::Result<Vec<u8>> {
|
|
||||||
assert!(self.buffer.is_empty());
|
|
||||||
|
|
||||||
self.inner.read_until(b'\n', &mut self.buffer)?;
|
|
||||||
Ok(self.buffer.clone())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn read_line(&mut self, buf: &mut Vec<u8>) -> io::Result<bool> {
|
pub fn read_line(&mut self, buf: &mut Vec<u8>) -> io::Result<bool> {
|
||||||
if self.buffer.is_empty() {
|
if self.first_line.is_empty() {
|
||||||
self.inner.read_until(b'\n', buf).map(|size| size > 0)
|
self.inner.read_until(b'\n', buf).map(|size| size > 0)
|
||||||
} else {
|
} else {
|
||||||
buf.append(&mut self.buffer);
|
buf.append(&mut self.first_line);
|
||||||
return Ok(true);
|
return Ok(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -65,9 +61,7 @@ fn basic() {
|
|||||||
let content = b"#!/bin/bash\necho hello";
|
let content = b"#!/bin/bash\necho hello";
|
||||||
let mut reader = InputFileReader::new(&content[..]);
|
let mut reader = InputFileReader::new(&content[..]);
|
||||||
|
|
||||||
let first_line = reader.get_first_line();
|
assert_eq!(b"#!/bin/bash\n", &reader.first_line[..]);
|
||||||
assert!(first_line.is_ok());
|
|
||||||
assert_eq!(b"#!/bin/bash\n", &first_line.unwrap()[..]);
|
|
||||||
|
|
||||||
let mut buffer = vec![];
|
let mut buffer = vec![];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user