2020-04-21 20:06:09 +02:00
|
|
|
use std::ffi::{OsStr, OsString};
|
2018-10-07 11:54:01 +02:00
|
|
|
use std::fs::File;
|
2020-04-21 21:14:44 +02:00
|
|
|
use std::io::{self, BufRead, BufReader, Read};
|
2018-10-07 11:54:01 +02:00
|
|
|
|
2018-10-07 16:44:59 +02:00
|
|
|
use content_inspector::{self, ContentType};
|
|
|
|
|
2019-03-08 11:48:22 +01:00
|
|
|
use crate::errors::*;
|
2018-10-07 11:54:01 +02:00
|
|
|
|
|
|
|
const THEME_PREVIEW_FILE: &[u8] = include_bytes!("../assets/theme_preview.rs");
|
2020-04-05 02:49:55 +02:00
|
|
|
|
2020-04-21 22:24:47 +02:00
|
|
|
#[derive(Debug, Clone)]
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) struct InputDescription {
|
2020-04-21 22:24:47 +02:00
|
|
|
pub full: String,
|
|
|
|
pub prefix: String,
|
|
|
|
pub name: String,
|
|
|
|
}
|
|
|
|
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) enum InputKind<'a> {
|
2020-04-22 16:27:34 +02:00
|
|
|
OrdinaryFile(OsString),
|
|
|
|
StdIn,
|
2018-10-07 11:21:41 +02:00
|
|
|
ThemePreviewFile,
|
2020-04-22 18:10:26 +02:00
|
|
|
CustomReader(Box<dyn Read + 'a>),
|
2020-04-22 16:27:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Default)]
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) struct InputMetadata {
|
|
|
|
pub(crate) user_provided_name: Option<OsString>,
|
2020-04-22 16:27:34 +02:00
|
|
|
}
|
|
|
|
|
2020-04-22 18:10:26 +02:00
|
|
|
pub struct Input<'a> {
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) kind: InputKind<'a>,
|
|
|
|
pub(crate) metadata: InputMetadata,
|
2020-04-22 16:27:34 +02:00
|
|
|
}
|
|
|
|
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) enum OpenedInputKind {
|
2020-04-22 16:27:34 +02:00
|
|
|
OrdinaryFile(OsString),
|
|
|
|
StdIn,
|
|
|
|
ThemePreviewFile,
|
|
|
|
CustomReader,
|
|
|
|
}
|
|
|
|
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) struct OpenedInput<'a> {
|
|
|
|
pub(crate) kind: OpenedInputKind,
|
|
|
|
pub(crate) metadata: InputMetadata,
|
|
|
|
pub(crate) reader: InputReader<'a>,
|
2018-10-07 11:21:41 +02:00
|
|
|
}
|
2018-10-07 11:54:01 +02:00
|
|
|
|
2020-04-22 18:10:26 +02:00
|
|
|
impl<'a> Input<'a> {
|
2020-04-22 16:27:34 +02:00
|
|
|
pub fn ordinary_file(path: &OsStr) -> Self {
|
|
|
|
Input {
|
|
|
|
kind: InputKind::OrdinaryFile(path.to_os_string()),
|
|
|
|
metadata: InputMetadata::default(),
|
2018-10-07 11:54:01 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-21 22:24:47 +02:00
|
|
|
|
2020-04-22 16:27:34 +02:00
|
|
|
pub fn stdin() -> Self {
|
|
|
|
Input {
|
|
|
|
kind: InputKind::StdIn,
|
|
|
|
metadata: InputMetadata::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn theme_preview_file() -> Self {
|
|
|
|
Input {
|
|
|
|
kind: InputKind::ThemePreviewFile,
|
|
|
|
metadata: InputMetadata::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 18:10:26 +02:00
|
|
|
pub fn from_reader(reader: Box<dyn Read + 'a>) -> Self {
|
|
|
|
Input {
|
|
|
|
kind: InputKind::CustomReader(reader),
|
|
|
|
metadata: InputMetadata::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 16:27:34 +02:00
|
|
|
pub fn is_stdin(&self) -> bool {
|
|
|
|
if let InputKind::StdIn = self.kind {
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_provided_name(&mut self, provided_name: Option<&OsStr>) {
|
|
|
|
self.metadata.user_provided_name = provided_name.map(|n| n.to_owned());
|
|
|
|
}
|
|
|
|
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) fn open<R: BufRead + 'a>(self, stdin: R) -> Result<OpenedInput<'a>> {
|
2020-04-22 16:27:34 +02:00
|
|
|
match self.kind {
|
|
|
|
InputKind::StdIn => Ok(OpenedInput {
|
|
|
|
kind: OpenedInputKind::StdIn,
|
|
|
|
metadata: self.metadata,
|
|
|
|
reader: InputReader::new(stdin),
|
|
|
|
}),
|
|
|
|
InputKind::OrdinaryFile(path) => Ok(OpenedInput {
|
|
|
|
kind: OpenedInputKind::OrdinaryFile(path.clone()),
|
|
|
|
metadata: self.metadata,
|
|
|
|
reader: {
|
|
|
|
let file = File::open(&path)
|
|
|
|
.map_err(|e| format!("'{}': {}", path.to_string_lossy(), e))?;
|
|
|
|
if file.metadata()?.is_dir() {
|
|
|
|
return Err(format!("'{}' is a directory.", path.to_string_lossy()).into());
|
|
|
|
}
|
|
|
|
InputReader::new(BufReader::new(file))
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
InputKind::ThemePreviewFile => Ok(OpenedInput {
|
|
|
|
kind: OpenedInputKind::ThemePreviewFile,
|
|
|
|
metadata: self.metadata,
|
|
|
|
reader: InputReader::new(THEME_PREVIEW_FILE),
|
|
|
|
}),
|
|
|
|
InputKind::CustomReader(reader) => Ok(OpenedInput {
|
|
|
|
kind: OpenedInputKind::CustomReader,
|
|
|
|
metadata: self.metadata,
|
|
|
|
reader: InputReader::new(BufReader::new(reader)),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> OpenedInput<'a> {
|
|
|
|
pub fn description(&self) -> InputDescription {
|
|
|
|
if let Some(ref name) = self.metadata.user_provided_name {
|
|
|
|
InputDescription {
|
2020-04-21 22:24:47 +02:00
|
|
|
full: format!("file '{}'", name.to_string_lossy()),
|
|
|
|
prefix: "File: ".to_owned(),
|
|
|
|
name: name.to_string_lossy().into_owned(),
|
2020-04-22 16:27:34 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
match self.kind {
|
|
|
|
OpenedInputKind::OrdinaryFile(ref path) => InputDescription {
|
|
|
|
full: format!("file '{}'", path.to_string_lossy()),
|
|
|
|
prefix: "File: ".to_owned(),
|
|
|
|
name: path.to_string_lossy().into_owned(),
|
|
|
|
},
|
|
|
|
OpenedInputKind::StdIn => InputDescription {
|
|
|
|
full: "STDIN".to_owned(),
|
|
|
|
prefix: "".to_owned(),
|
|
|
|
name: "STDIN".to_owned(),
|
|
|
|
},
|
|
|
|
OpenedInputKind::ThemePreviewFile => InputDescription {
|
|
|
|
full: "".to_owned(),
|
|
|
|
prefix: "".to_owned(),
|
|
|
|
name: "".to_owned(),
|
|
|
|
},
|
|
|
|
OpenedInputKind::CustomReader => InputDescription {
|
|
|
|
full: "reader".to_owned(),
|
|
|
|
prefix: "".to_owned(),
|
|
|
|
name: "READER".into(),
|
|
|
|
},
|
|
|
|
}
|
2020-04-21 22:24:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 18:30:06 +02:00
|
|
|
pub(crate) struct InputReader<'a> {
|
2020-04-21 22:24:47 +02:00
|
|
|
inner: Box<dyn BufRead + 'a>,
|
|
|
|
pub(crate) first_line: Vec<u8>,
|
|
|
|
pub(crate) content_type: Option<ContentType>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> InputReader<'a> {
|
|
|
|
fn new<R: BufRead + 'a>(mut reader: R) -> InputReader<'a> {
|
|
|
|
let mut first_line = vec![];
|
|
|
|
reader.read_until(b'\n', &mut first_line).ok();
|
|
|
|
|
|
|
|
let content_type = if first_line.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(content_inspector::inspect(&first_line[..]))
|
|
|
|
};
|
|
|
|
|
|
|
|
if content_type == Some(ContentType::UTF_16LE) {
|
|
|
|
reader.read_until(0x00, &mut first_line).ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
InputReader {
|
|
|
|
inner: Box::new(reader),
|
|
|
|
first_line,
|
|
|
|
content_type,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn read_line(&mut self, buf: &mut Vec<u8>) -> io::Result<bool> {
|
|
|
|
if self.first_line.is_empty() {
|
|
|
|
let res = self.inner.read_until(b'\n', buf).map(|size| size > 0)?;
|
|
|
|
|
|
|
|
if self.content_type == Some(ContentType::UTF_16LE) {
|
|
|
|
self.inner.read_until(0x00, buf).ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
} else {
|
|
|
|
buf.append(&mut self.first_line);
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
}
|
2018-10-07 11:54:01 +02:00
|
|
|
}
|
2018-10-07 12:29:38 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn basic() {
|
2018-10-07 13:25:49 +02:00
|
|
|
let content = b"#!/bin/bash\necho hello";
|
2020-04-21 21:19:06 +02:00
|
|
|
let mut reader = InputReader::new(&content[..]);
|
2018-10-07 12:29:38 +02:00
|
|
|
|
2018-10-07 13:47:54 +02:00
|
|
|
assert_eq!(b"#!/bin/bash\n", &reader.first_line[..]);
|
2018-10-07 13:25:49 +02:00
|
|
|
|
2018-10-07 12:29:38 +02:00
|
|
|
let mut buffer = vec![];
|
|
|
|
|
|
|
|
let res = reader.read_line(&mut buffer);
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(true, res.unwrap());
|
2018-10-07 13:25:49 +02:00
|
|
|
assert_eq!(b"#!/bin/bash\n", &buffer[..]);
|
2018-10-07 12:29:38 +02:00
|
|
|
|
|
|
|
buffer.clear();
|
|
|
|
|
|
|
|
let res = reader.read_line(&mut buffer);
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(true, res.unwrap());
|
2018-10-07 13:25:49 +02:00
|
|
|
assert_eq!(b"echo hello", &buffer[..]);
|
2018-10-07 12:29:38 +02:00
|
|
|
|
|
|
|
buffer.clear();
|
|
|
|
|
|
|
|
let res = reader.read_line(&mut buffer);
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(false, res.unwrap());
|
|
|
|
assert!(buffer.is_empty());
|
|
|
|
}
|
2018-10-07 16:44:59 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn utf16le() {
|
|
|
|
let content = b"\xFF\xFE\x73\x00\x0A\x00\x64\x00";
|
2020-04-21 21:19:06 +02:00
|
|
|
let mut reader = InputReader::new(&content[..]);
|
2018-10-07 16:44:59 +02:00
|
|
|
|
|
|
|
assert_eq!(b"\xFF\xFE\x73\x00\x0A\x00", &reader.first_line[..]);
|
|
|
|
|
|
|
|
let mut buffer = vec![];
|
|
|
|
|
|
|
|
let res = reader.read_line(&mut buffer);
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(true, res.unwrap());
|
|
|
|
assert_eq!(b"\xFF\xFE\x73\x00\x0A\x00", &buffer[..]);
|
|
|
|
|
|
|
|
buffer.clear();
|
|
|
|
|
|
|
|
let res = reader.read_line(&mut buffer);
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(true, res.unwrap());
|
|
|
|
assert_eq!(b"\x64\x00", &buffer[..]);
|
|
|
|
|
|
|
|
buffer.clear();
|
|
|
|
|
|
|
|
let res = reader.read_line(&mut buffer);
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(false, res.unwrap());
|
|
|
|
assert!(buffer.is_empty());
|
|
|
|
}
|