Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
ion
Commits
982c6c63
Commit
982c6c63
authored
9 years ago
by
Skyler Berg
Browse files
Options
Downloads
Patches
Plain Diff
Fix formating and cleanup compiler warnings
parent
07a1dc65
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!31
Fix formating and cleanup compiler warnings
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/builtin.rs
+1
-4
1 addition, 4 deletions
src/builtin.rs
src/directory_stack.rs
+15
-23
15 additions, 23 deletions
src/directory_stack.rs
src/main.rs
+0
-1
0 additions, 1 deletion
src/main.rs
src/tokenizer.rs
+1
-4
1 addition, 4 deletions
src/tokenizer.rs
with
17 additions
and
32 deletions
src/builtin.rs
+
1
−
4
View file @
982c6c63
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
;
...
...
This diff is collapsed.
Click to expand it.
src/directory_stack.rs
+
15
−
23
View file @
982c6c63
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
()
}
}
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
0
−
1
View file @
982c6c63
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
src/tokenizer.rs
+
1
−
4
View file @
982c6c63
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment