Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dotacat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Stephen D
dotacat
Merge requests
!3
CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CI
ci
into
master
Overview
0
Commits
1
Pipelines
13
Changes
1
Merged
Stephen D
requested to merge
ci
into
master
3 years ago
Overview
0
Commits
1
Pipelines
13
Changes
1
Expand
CI + artifacts for Linux, Windows
Edited
3 years ago
by
Stephen D
0
0
Merge request reports
Viewing commit
f3089ec8
Show latest version
1 file
+
11
−
41
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
f3089ec8
Revert main.rs
· f3089ec8
Stephen D
authored
3 years ago
src/main.rs
+
11
−
41
Options
@@ -35,32 +35,12 @@ struct CmdOpts {
files
:
Vec
<
String
>
,
}
// Returns whether we hit EOF or not
fn
read_valid_str
(
buf
:
&
m
ut
String
)
->
bool
{
lazy_static!
{
static
ref
INCOMPLETE_ESCAPE
:
Regex
=
Regex
::
new
(
"
\x1B
(?:[ -/]*|[
\\
]PX^_][^
\x07\x1B
]*|
\\
[[0-?]*)$"
)
.unwrap
();
fn
read_line
()
->
Option
<
(
String
,
usize
)
>
{
let
mut
inp
ut
=
String
::
new
();
match
stdin
()
.read_line
(
&
mut
input
)
{
Ok
(
n
)
=>
Some
((
input
,
n
)),
_
=>
None
,
}
let
mut
hit_eof
=
false
;
loop
{
match
stdin
()
.take
(
4096
)
.read_to_string
(
buf
)
{
Ok
(
n
)
=>
{
if
n
==
0
{
hit_eof
=
true
;
}
if
hit_eof
||
!
INCOMPLETE_ESCAPE
.is_match
(
&
buf
)
{
break
;
}
}
Err
(
_
)
=>
{
exit
(
1
);
}
}
}
hit_eof
}
fn
main
()
{
@@ -78,23 +58,13 @@ fn main() {
for
file_path
in
files
{
if
file_path
==
"-"
{
let
mut
hit_eof
=
false
;
while
!
hit_eof
{
let
mut
buf
=
String
::
new
();
hit_eof
=
read_valid_str
(
&
mut
buf
);
let
mut
ran
=
false
;
for
(
i
,
line
)
in
buf
.lines
()
.enumerate
()
{
if
i
!=
0
{
println!
();
ran
=
true
;
}
lol
::
print_rainbow
(
&
line
,
opts
.freq
,
seed
,
opts
.spread
,
opts
.invert
);
seed
+=
1.0
;
}
if
ran
{
println!
();
while
let
Some
((
x
,
n
))
=
read_line
()
{
lol
::
print_rainbow
(
&
x
,
opts
.freq
,
seed
,
opts
.spread
,
opts
.invert
);
if
n
==
0
{
// EOF
break
;
}
seed
+=
1.0
;
}
}
else
{
let
file
=
match
File
::
open
(
&
file_path
)
{
Loading