Skip to content
Snippets Groups Projects
Commit 982c6c63 authored by Skyler Berg's avatar Skyler Berg
Browse files

Fix formating and cleanup compiler warnings

parent 07a1dc65
No related branches found
No related tags found
1 merge request!31Fix formating and cleanup compiler warnings
use std::collections::HashMap; use std::collections::HashMap;
use std::fs::{self, File}; use std::io::{stdout, Write};
use std::io::{stdout, Read, Write};
use std::env; use std::env;
use std::process; use std::process;
use std::thread;
use super::to_num::ToNum;
use super::set_var; use super::set_var;
use super::input_editor::readln; use super::input_editor::readln;
......
use std::env::{set_current_dir,current_dir}; use std::env::{set_current_dir, current_dir};
use std::path::{PathBuf,Path}; use std::path::PathBuf;
use std::ops::Deref;
pub struct DirectoryStack { pub struct DirectoryStack {
dirs: Vec<PathBuf>, // The top is dirs: Vec<PathBuf>, // The top is always the current directory
} }
fn get_current_dir() -> PathBuf { // TODO STOP DOING THIS BAD STUFF
if let Ok(cur_dir) = current_dir() {
cur_dir
} else {
PathBuf::new()
}
}
impl DirectoryStack { impl DirectoryStack {
pub fn new() -> Result<DirectoryStack, &'static str> { pub fn new() -> Result<DirectoryStack, &'static str> {
if let Ok(curr_dir) = current_dir() { if let Ok(curr_dir) = current_dir() {
Ok(DirectoryStack { Ok(DirectoryStack { dirs: vec![curr_dir] })
dirs: vec![curr_dir],
})
} else { } else {
Err("Failed to get current directory when building directory stack") Err("Failed to get current directory when building directory stack")
} }
} }
pub fn popd(&mut self, args: &[String]) { pub fn popd(&mut self, _: &[String]) {
if (self.dirs.len() < 2) { if self.dirs.len() < 2 {
println!("Directory stack is empty"); println!("Directory stack is empty");
return; return;
} }
...@@ -36,7 +23,7 @@ impl DirectoryStack { ...@@ -36,7 +23,7 @@ impl DirectoryStack {
if let Err(err) = set_current_dir(dir) { if let Err(err) = set_current_dir(dir) {
println!("{}: Failed to switch to directory {}", err, dir.display()); println!("{}: Failed to switch to directory {}", err, dir.display());
return; return;
} }
} }
self.dirs.pop(); self.dirs.pop();
self.print_dirs(); self.print_dirs();
...@@ -45,8 +32,13 @@ impl DirectoryStack { ...@@ -45,8 +32,13 @@ impl DirectoryStack {
pub fn pushd(&mut self, args: &[String]) { pub fn pushd(&mut self, args: &[String]) {
if let Some(dir) = args.get(1) { if let Some(dir) = args.get(1) {
match (set_current_dir(dir), current_dir()) { match (set_current_dir(dir), current_dir()) {
(Ok(()), Ok(cur_dir)) => { self.dirs.push(cur_dir); }, (Ok(()), Ok(cur_dir)) => {
(Err(err), _) => { println!("{}: {}", err, dir); return; }, self.dirs.push(cur_dir);
}
(Err(err), _) => {
println!("{}: {}", err, dir);
return;
}
(_, _) => (), (_, _) => (),
} }
} else { } else {
...@@ -56,7 +48,7 @@ impl DirectoryStack { ...@@ -56,7 +48,7 @@ impl DirectoryStack {
self.print_dirs(); self.print_dirs();
} }
pub fn dirs(&self, args: &[String]) { pub fn dirs(&self, _: &[String]) {
self.print_dirs() self.print_dirs()
} }
......
...@@ -31,7 +31,6 @@ pub struct Shell { ...@@ -31,7 +31,6 @@ pub struct Shell {
} }
impl Shell { impl Shell {
/// Panics if DirectoryStack construction fails /// Panics if DirectoryStack construction fails
pub fn new() -> Shell { pub fn new() -> Shell {
Shell { Shell {
......
...@@ -38,10 +38,7 @@ fn process_character_single_quoted(_: &mut Vec<Token>, ...@@ -38,10 +38,7 @@ fn process_character_single_quoted(_: &mut Vec<Token>,
} }
} }
fn process_character_comment(tokens: &mut Vec<Token>, fn process_character_comment(tokens: &mut Vec<Token>, _: &mut String, chr: char) -> TokenizerState {
current_token: &mut String,
chr: char)
-> TokenizerState {
match chr { match chr {
'\n' | '\r' => { '\n' | '\r' => {
tokens.push(Token::End); tokens.push(Token::End);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment