Move read_line functionality to inputfile module

This commit is contained in:
sharkdp 2018-10-07 12:15:49 +02:00 committed by David Peter
parent 87f021078e
commit 6d1cc8c2c8
2 changed files with 24 additions and 8 deletions

View File

@ -1,9 +1,9 @@
use std::io::{self, BufRead, Write};
use std::io::{self, Write};
use app::Config;
use assets::HighlightingAssets;
use errors::*;
use inputfile::InputFile;
use inputfile::{InputFile, InputFileReader};
use line_range::LineRange;
use output::OutputType;
use printer::{InteractivePrinter, Printer, SimplePrinter};
@ -61,14 +61,14 @@ impl<'b> Controller<'b> {
&self,
printer: &mut P,
writer: &mut Write,
mut reader: Box<BufRead + 'a>,
mut reader: InputFileReader,
line_ranges: &Option<LineRange>,
) -> Result<()> {
let mut line_buffer = Vec::new();
let mut line_number: usize = 1;
while reader.read_until(b'\n', &mut line_buffer)? > 0 {
while reader.read_line(&mut line_buffer)? {
match line_ranges {
&Some(ref range) => {
if line_number < range.lower {

View File

@ -5,6 +5,22 @@ use errors::*;
const THEME_PREVIEW_FILE: &[u8] = include_bytes!("../assets/theme_preview.rs");
pub struct InputFileReader<'a> {
inner: Box<dyn BufRead + 'a>,
}
impl<'a> InputFileReader<'a> {
fn new<R: BufRead + 'a>(reader: R) -> InputFileReader<'a> {
InputFileReader {
inner: Box::new(reader),
}
}
pub fn read_line(&mut self, buf: &mut Vec<u8>) -> io::Result<bool> {
self.inner.read_until(b'\n', buf).map(|size| size > 0)
}
}
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum InputFile<'a> {
StdIn,
@ -13,9 +29,9 @@ pub enum InputFile<'a> {
}
impl<'a> InputFile<'a> {
pub fn get_reader(&self, stdin: &'a io::Stdin) -> Result<Box<dyn BufRead + 'a>> {
pub fn get_reader(&self, stdin: &'a io::Stdin) -> Result<InputFileReader> {
match self {
InputFile::StdIn => Ok(Box::new(stdin.lock())),
InputFile::StdIn => Ok(InputFileReader::new(stdin.lock())),
InputFile::Ordinary(filename) => {
let file = File::open(filename)?;
@ -23,9 +39,9 @@ impl<'a> InputFile<'a> {
return Err(format!("'{}' is a directory.", filename).into());
}
Ok(Box::new(BufReader::new(file)))
Ok(InputFileReader::new(BufReader::new(file)))
}
InputFile::ThemePreviewFile => Ok(Box::new(THEME_PREVIEW_FILE)),
InputFile::ThemePreviewFile => Ok(InputFileReader::new(THEME_PREVIEW_FILE)),
}
}
}