Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
walint
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
Container 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
hub
walint
Commits
11417fc1
Commit
11417fc1
authored
3 years ago
by
stuebinm
Browse files
Options
Downloads
Patches
Plain Diff
walint: some marginally nicer code
parent
52d0d9df
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Main.hs
+47
-55
47 additions, 55 deletions
src/Main.hs
with
47 additions
and
55 deletions
src/Main.hs
+
47
−
55
View file @
11417fc1
...
...
@@ -3,30 +3,26 @@
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
module
Main
where
import
Universum
import
Data.Aeson
(
eitherDecode
,
encode
)
import
Data.Aeson
(
eitherDecode
FileStrict'
,
encode
)
import
Data.Aeson.Encode.Pretty
(
encodePretty
)
import
Data.Aeson.KeyMap
(
coercionToHashMap
)
import
qualified
Data.ByteString.Lazy
as
LB
import
qualified
Data.Text.Encoding
as
T
import
qualified
Data.Text.IO
as
T
import
WithCli
(
HasArguments
,
withCli
)
import
CheckDir
(
recursiveCheckDir
,
resultIsFatal
,
DirResult
(
dirresultGraph
))
import
Control.Monad
(
when
)
import
LintConfig
(
LintConfig
(
..
),
patchConfig
)
import
System.Exit
(
ExitCode
(
ExitFailure
))
import
Types
(
Level
(
..
))
import
Util
(
printPretty
)
import
WriteRepo
(
writeAdjustedRepository
)
import
Text.Dot
(
showDot
)
import
System.Exit
(
ExitCode
(
ExitFailure
,
ExitSuccess
))
import
qualified
Version
as
V
(
version
)
import
WriteRepo
(
writeAdjustedRepository
)
-- | the options this cli tool can take
data
Options
=
Options
...
...
@@ -55,52 +51,48 @@ main :: IO ()
main
=
withCli
run
run
::
Options
->
IO
()
run
o
ptions
=
do
run
O
ptions
{
..
}
=
do
aesonWarning
when
(
version
options
)
$
do
if
version
then
putStrLn
V
.
version
exitSuccess
let
repo
=
fromMaybe
"."
(
repository
options
)
let
entry
=
fromMaybe
"main.json"
(
entrypoint
options
)
let
level
=
fromMaybe
Suggestion
(
lintlevel
options
)
lintconfig
<-
case
configFile
options
of
Nothing
->
error
"Need a config file!"
Just
path
->
LB
.
readFile
path
>>=
\
res
->
case
eitherDecode
res
::
Either
String
(
LintConfig
Identity
)
of
else
do
let
repo
=
fromMaybe
"."
repository
let
entry
=
fromMaybe
"main.json"
entrypoint
let
level
=
fromMaybe
Suggestion
lintlevel
configFile'
<-
case
configFile
of
Nothing
->
do
hPutStrLn
stderr
(
"option --config-file=FILEPATH required"
::
Text
)
exitFailure
Just
path
->
pure
path
lintconfig
<-
eitherDecodeFileStrict'
configFile'
>>=
\
case
Left
err
->
error
$
"config file invalid: "
<>
toText
err
Right
file
->
pure
(
patchConfig
file
(
config
options
)
)
Right
file
->
pure
(
patchConfig
file
config
)
lints
<-
recursiveCheckDir
lintconfig
repo
entry
if
|
dot
options
->
putStrLn
(
showDot
$
dirresultGraph
lints
)
|
json
options
->
printLB
$
if
pretty
options
then
encodePretty
lints
else
encode
lints
|
otherwise
->
printPretty
(
level
,
lints
)
if
json
then
putText
$
decodeUtf8
(
if
pretty
then
encodePretty
lints
else
encode
lints
)
else
printPretty
(
level
,
lints
)
case
out
options
of
Nothing
->
exitWith
$
if
resultIsFatal
lintconfig
lints
then
ExitFailure
1
else
ExitSuccess
case
out
of
Nothing
|
resultIsFatal
lintconfig
lints
->
exitWith
(
ExitFailure
1
)
|
otherwise
->
exitSuccess
Just
outpath
->
do
c
<-
writeAdjustedRepository
lintconfig
repo
outpath
lints
unless
(
json
options
)
$
unless
json
$
case
c
of
ExitFailure
1
->
putTextLn
"
\n
Map failed linting!"
ExitFailure
2
->
putTextLn
"
\n
Outpath already exists, not writing anything."
ExitFailure
1
->
putTextLn
"
\n
Map failed linting!"
ExitFailure
2
->
putTextLn
"
\n
Outpath already exists, not writing anything."
_
->
pass
exitWith
c
-- | haskell's many string types are FUN …
printLB
::
LB
.
ByteString
->
IO
()
printLB
a
=
T
.
putStrLn
$
T
.
decodeUtf8
$
LB
.
toStrict
a
-- if Aesons's internal map and HashMap are the same type, then coercionToHashMap
-- will contain a proof of that, and we can print a warning. Otherwise we're not
-- using HashMaps in Aeson and everything is fine.
...
...
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