the history file now stores the first line properly

This commit is contained in:
rhpidfyre 2025-01-11 14:37:56 -05:00
parent ab349f7894
commit ca639db826
2 changed files with 31 additions and 18 deletions

View File

@ -126,27 +126,23 @@ impl Command {
}
}
pub fn history_write(&self) {
if let Some(history_file) = &self.history {
history_file.write(&self.input);
};
}
pub fn spawn(&self, command_process: io::Result<process::Child>) {
pub fn spawn_handle(&mut self, command_process: io::Result<process::Child>) {
if let Ok(mut child) = command_process {
self.history_write();
if let Some(history_file) = self.history.as_mut() {
history_file.write(&self.input);
};
child.wait().ok();
} else {
println!("Unknown command: {}", self.input)
}
}
pub fn exec(&self) {
pub fn exec(&mut self) {
let mut args = self.input.split_whitespace();
if let Some(command) = args.next() {
match command {
"cd" => { self.change_directory(args); },
command => { self.spawn(process::Command::new(command).args(args).spawn()); }
command => { self.spawn_handle(process::Command::new(command).args(args).spawn()); }
}
}
}

View File

@ -95,29 +95,46 @@ pub fn config_file() -> Option<PathBuf> {
config_file.is_valid_file_or_create(DEFAULT_CONFIG_CONTENT.as_bytes())
}
pub struct History(PathBuf);
pub struct History {
history_file: PathBuf,
checked_empty: bool
}
impl History {
pub fn init() -> Option<Self> {
config_dir().map(|mut config| {
config.push(".history");
config.is_valid_file_or_create(b"");
Self(config)
Self {
history_file: config,
checked_empty: false
}
})
}
pub fn write<S: AsRef<str>>(&self, content: S) {
//feasible hack instead of using about 10 functions
OpenOptions::new().append(true).open(self.0.as_path()).map_or_display(|mut file| {
const NEXTLINE: &str = "\n";
pub fn is_empty(&mut self) -> bool {
match self.checked_empty {
true => true,
false => self.read().map_or(false, |history_l| {
self.checked_empty = true;
history_l.is_empty()
})
}
}
if let Err(write_err) = file.write_all(format!("{}{}", NEXTLINE, content.as_ref()).as_bytes()) {
pub fn write<S: AsRef<str>>(&mut self, content: S) {
OpenOptions::new().append(true).open(self.history_file.as_path()).map_or_display(|mut file| {
let write_data = match self.is_empty() {
true => content.as_ref().to_owned(),
false => format!("\n{}", content.as_ref()),
};
if let Err(write_err) = file.write_all(write_data.as_bytes()) {
shell_error(write_err);
};
});
}
pub fn read(&self) -> Option<Vec<String>> {
File::open(&self.0).map_or_display_none(|file| {
File::open(&self.history_file).map_or_display_none(|file| {
Some(BufReader::new(file).lines().map_while(Result::ok).collect::<Vec<String>>())
})
}