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
4
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
Compare
version 10
version 12
f768a7ba
3 years ago
version 11
f3089ec8
3 years ago
version 10
44e9f11d
3 years ago
version 9
3cb20dfa
3 years ago
version 8
e383a310
3 years ago
version 7
ea193aa4
3 years ago
version 6
2c10af1d
3 years ago
version 5
cf13c660
3 years ago
version 4
0603363e
3 years ago
version 3
8950998e
3 years ago
version 2
9ab079db
3 years ago
version 1
4923ebff
3 years ago
master (base)
and
version 11
latest version
7aa4fe63
1 commit,
3 years ago
version 12
f768a7ba
3 commits,
3 years ago
version 11
f3089ec8
2 commits,
3 years ago
version 10
44e9f11d
1 commit,
3 years ago
version 9
3cb20dfa
12 commits,
3 years ago
version 8
e383a310
11 commits,
3 years ago
version 7
ea193aa4
10 commits,
3 years ago
version 6
2c10af1d
9 commits,
3 years ago
version 5
cf13c660
8 commits,
3 years ago
version 4
0603363e
7 commits,
3 years ago
version 3
8950998e
6 commits,
3 years ago
version 2
9ab079db
5 commits,
3 years ago
version 1
4923ebff
3 commits,
3 years ago
Show latest version
1 file
+
11
−
41
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
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