Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
outillage
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Alice Brenon
outillage
Commits
4864ed89
Commit
4864ed89
authored
1 year ago
by
Alice Brenon
Browse files
Options
Downloads
Patches
Plain Diff
Add a script to split files on lines with a certain pattern
parent
3972fb64
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/split.hs
+68
-0
68 additions, 0 deletions
scripts/split.hs
with
68 additions
and
0 deletions
scripts/split.hs
0 → 100755
+
68
−
0
View file @
4864ed89
#!/
usr
/
bin
/
env
-
S
runhaskell
--ghc-arg="-Wall" --ghc-arg="-i lib/haskell"
import
Control.Applicative
((
<**>
),
(
<|>
))
import
Data.List
(
foldl'
)
import
Data.Text
(
Text
)
import
Data.Text.IO
as
Text
(
getContents
,
writeFile
)
import
Options.Applicative
(
Parser
,
execParser
,
flag'
,
fullDesc
,
help
,
helper
,
info
,
long
,
metavar
,
progDesc
,
short
,
strArgument
,
strOption
)
import
System.Directory
(
createDirectoryIfMissing
)
import
System.FilePath
(
takeDirectory
)
import
Text.Filter
(
Editable
(
..
))
import
Text.Printf
(
printf
)
import
Text.Regex.TDFA
((
=~
))
data
Mode
=
Discard
|
StartWith
|
EndWith
data
Config
=
Config
{
splitPattern
::
String
,
mode
::
Mode
,
outputPattern
::
String
}
configParser
::
Parser
Config
configParser
=
Config
<$>
strOption
on
<*>
(
flag'
StartWith
startWith
<|>
flag'
EndWith
endWith
<|>
pure
Discard
)
<*>
strArgument
outputPattern
where
on
=
short
'o'
<>
long
"on"
<>
metavar
"REGEX"
<>
help
"pattern of the lines on which to split"
outputPattern
=
metavar
"OUTPUT_PATTERN"
<>
help
"pattern of the output files"
startWith
=
short
's'
<>
long
"start"
<>
help
"a part begins with the pattern"
endWith
=
short
'e'
<>
long
"end"
<>
help
"a part ends with the pattern"
getConfig
::
IO
Config
getConfig
=
execParser
(
info
(
configParser
<**>
helper
)
(
fullDesc
<>
progDesc
"A tool to split a textual flow on a predefined line or prefix"
))
split
::
Config
->
[
Text
]
->
[[
Text
]]
split
(
Config
{
splitPattern
,
mode
})
=
reverse
.
close
.
foldl'
aggregate
(
[]
,
[]
)
where
close
(
currentPart
,
previousParts
)
=
reverse
currentPart
:
previousParts
aggregate
tmp
@
(
currentPart
,
previousParts
)
line
|
line
=~
splitPattern
=
case
mode
of
Discard
->
(
[]
,
close
tmp
)
StartWith
->
([
line
],
close
tmp
)
EndWith
->
(
[]
,
close
(
line
:
currentPart
,
previousParts
))
|
otherwise
=
(
line
:
currentPart
,
previousParts
)
create
::
Editable
a
=>
Config
->
[
a
]
->
IO
()
create
(
Config
{
outputPattern
})
=
mapM_
createFile
.
zip
[
1
..
]
.
fmap
leave
where
createFile
::
(
Int
,
Text
)
->
IO
()
createFile
(
i
,
content
)
=
let
path
=
printf
outputPattern
i
in
do
createDirectoryIfMissing
True
(
takeDirectory
path
)
Text
.
writeFile
path
content
main
::
IO
()
main
=
do
config
<-
getConfig
Text
.
getContents
>>=
create
config
.
split
config
.
enter
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