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
c6a549a3
Commit
c6a549a3
authored
5 years ago
by
Jens Nolte
Browse files
Options
Downloads
Patches
Plain Diff
Add runBarIO
parent
b57dcd7a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/QBar/Core.hs
+4
-1
4 additions, 1 deletion
src/QBar/Core.hs
src/QBar/Server.hs
+6
-6
6 additions, 6 deletions
src/QBar/Server.hs
with
10 additions
and
7 deletions
src/QBar/Core.hs
+
4
−
1
View file @
c6a549a3
...
...
@@ -88,6 +88,9 @@ data BarUpdateChannel = BarUpdateChannel (IO ())
type
BarUpdateEvent
=
Event
.
Event
runBarIO
::
Bar
->
BarIO
r
->
IO
r
runBarIO
bar
action
=
runReaderT
action
bar
createBlock
::
BlockText
->
BlockOutput
createBlock
text
=
BlockOutput
{
_fullText
=
text
...
...
@@ -151,7 +154,7 @@ sharedInterval seconds = do
-- Updates all client blocks
-- If send returns 'False' the clients mailbox has been closed, so it is removed
bar
<-
ask
liftIO
$
modifyMVar_
clientsMVar
$
fmap
catMaybes
.
mapConcurrently
(
\
r
->
run
ReaderT
(
runAndFilterClient
r
)
bar
)
liftIO
$
modifyMVar_
clientsMVar
$
fmap
catMaybes
.
mapConcurrently
(
\
r
->
run
BarIO
bar
$
runAndFilterClient
r
)
-- Then update the bar
updateBar
...
...
This diff is collapsed.
Click to expand it.
src/QBar/Server.hs
+
6
−
6
View file @
c6a549a3
...
...
@@ -9,7 +9,7 @@ import QBar.BlockText
import
QBar.Themes
import
Control.Monad
(
forever
,
when
,
unless
)
import
Control.Monad.Reader
(
runReaderT
,
ask
)
import
Control.Monad.Reader
(
ask
)
import
Control.Monad.STM
(
atomically
)
import
Control.Concurrent
(
threadDelay
,
forkFinally
)
import
Control.Concurrent.Async
...
...
@@ -154,7 +154,7 @@ handleStdin options actionListIORef = do
clickActionList
<-
readIORef
actionListIORef
let
maybeClickAction
=
getClickAction
clickActionList
click
case
maybeClickAction
of
Just
clickAction'
->
async
(
run
ReaderT
(
clickAction'
click
)
bar
)
>>=
link
Just
clickAction'
->
async
(
run
BarIO
bar
(
clickAction'
click
))
>>=
link
Nothing
->
return
()
Nothing
->
return
()
...
...
@@ -214,13 +214,13 @@ runBarConfiguration defaultBarConfig options = do
-- Fork stdin handler
void
$
forkFinally
(
run
ReaderT
(
handleStdin
options
actionList
)
bar
)
(
\
result
->
hPutStrLn
stderr
$
"handleStdin failed: "
<>
show
result
)
void
$
forkFinally
(
run
BarIO
bar
(
handleStdin
options
actionList
))
(
\
result
->
hPutStrLn
stderr
$
"handleStdin failed: "
<>
show
result
)
run
ReaderT
loadBlocks
bar
run
BarIO
bar
loadBlocks
-- Install signal handler for SIGCONT
run
ReaderT
installSignalHandlers
bar
run
BarIO
bar
installSignalHandlers
-- Create control socket
commandChan
<-
createCommandChan
...
...
@@ -236,7 +236,7 @@ runBarConfiguration defaultBarConfig options = do
updateBar'
bar
link
socketUpdateAsync
run
ReaderT
(
renderLoop
options
handle
barUpdateEvent
initialOutput
newBlockChan
)
bar
run
BarIO
bar
(
renderLoop
options
handle
barUpdateEvent
initialOutput
newBlockChan
)
where
loadBlocks
::
BarIO
()
loadBlocks
=
do
...
...
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