Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qbar
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
Container Registry
Model registry
Operate
Environments
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
Jens Nolte
qbar
Commits
43f94885
Commit
43f94885
authored
5 years ago
by
Jens Nolte
Browse files
Options
Downloads
Patches
Plain Diff
Move 'installSignalHandlers' into 'BarIO' monad
parent
25b32f0f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/QBar/Server.hs
+9
-9
9 additions, 9 deletions
src/QBar/Server.hs
with
9 additions
and
9 deletions
src/QBar/Server.hs
+
9
−
9
View file @
43f94885
...
...
@@ -147,13 +147,15 @@ handleStdin options actionListIORef = do
|
C8
.
last
line
==
','
=
C8
.
init
line
|
otherwise
=
line
installSignalHandlers
::
BarUpdateChannel
->
IO
()
installSignalHandlers
barUpdateChannel
=
void
$
installHandler
sigCONT
(
Catch
sigContAction
)
Nothing
installSignalHandlers
::
BarIO
()
installSignalHandlers
=
do
bar
<-
ask
liftIO
$
void
$
installHandler
sigCONT
(
Catch
(
sigContAction
bar
))
Nothing
where
sigContAction
::
IO
()
sigContAction
=
do
sigContAction
::
Bar
->
IO
()
sigContAction
bar
=
do
hPutStrLn
stderr
"SIGCONT received"
updateBar'
bar
UpdateChannel
updateBar'
'
bar
runBarConfiguration
::
BarIO
()
->
MainOptions
->
IO
()
runBarConfiguration
generateBarConfig
options
=
do
...
...
@@ -171,8 +173,6 @@ runBarConfiguration generateBarConfig options = do
let
initialBlocks'
=
if
indicator
options
then
initialBlocks
<>
[
createBlock
"*"
]
else
initialBlocks
(
requestBarUpdate
,
barUpdateEvent
)
<-
createBarUpdateChannel
-- TODO: should be removed
let
barUpdateChannel
=
BarUpdateChannel
requestBarUpdate
-- Create channel to send new block producers to render loop
newBlockChan
<-
newTChanIO
...
...
@@ -197,7 +197,7 @@ runBarConfiguration generateBarConfig options = do
runReaderT
loadBlocks
bar
-- Install signal handler for SIGCONT
installSignalHandlers
bar
UpdateChannel
runReaderT
installSignalHandlers
bar
-- Create control socket
commandChan
<-
createCommandChan
...
...
@@ -210,7 +210,7 @@ runBarConfiguration generateBarConfig options = do
case
command
of
SetFilter
blockFilter
->
atomicWriteIORef
activeFilter
blockFilter
Block
->
error
"TODO"
updateBar'
bar
UpdateChannel
updateBar'
'
bar
link
socketUpdateAsync
runReaderT
(
renderLoop
options
handle
barUpdateEvent
initialOutput
newBlockChan
)
bar
...
...
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