Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HEV - High Energy Ventilator
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Projects
HEV - High Energy Ventilator
Commits
aeac2bb8
Commit
aeac2bb8
authored
4 years ago
by
Dónal Murray
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Fix issue with queues being deleted in wrong order"
This reverts commit
d5a8f6b1
.
parent
4a58c78d
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
raspberry-dataserver/hevserver.py
+5
-4
5 additions, 4 deletions
raspberry-dataserver/hevserver.py
with
5 additions
and
4 deletions
raspberry-dataserver/hevserver.py
+
5
−
4
View file @
aeac2bb8
...
...
@@ -199,11 +199,12 @@ class HEVServer(object):
addr
=
writer
.
get_extra_info
(
"
peername
"
)
logging
.
info
(
f
"
Broadcasting to
{
addr
!r}
"
)
self
.
_broadcasts
[
addr
[
1
]]
=
asyncio
.
Queue
(
maxsize
=
16
)
# append new queue
bindex
=
len
(
self
.
_broadcasts
)
# index of current broadcast client's queue in broadcasts
self
.
_broadcasts
.
append
(
asyncio
.
Queue
(
maxsize
=
16
))
# append new queue
while
self
.
_broadcasting
:
# wait for data from queue
payload
=
await
self
.
_broadcasts
[
addr
[
1
]
].
get
()
payload
=
await
self
.
_broadcasts
[
bindex
].
get
()
# Alarm is latched until acknowledged in GUI
if
payload
.
getType
()
==
PAYLOAD_TYPE
.
ALARM
:
if
payload
not
in
self
.
_alarms
:
...
...
@@ -221,7 +222,7 @@ class HEVServer(object):
broadcast_packet
[
data_type
]
=
payload
.
getDict
()
broadcast_packet
[
"
alarms
"
]
=
[
alarm
.
getDict
()
for
alarm
in
alarms
]
if
alarms
is
not
None
else
[]
self
.
_broadcasts
[
addr
[
1
]
].
task_done
()
self
.
_broadcasts
[
bindex
].
task_done
()
logging
.
info
(
f
"
Send data for timestamp:
{
broadcast_packet
[
data_type
][
'
timestamp
'
]
}
"
)
logging
.
debug
(
f
"
Send:
{
json
.
dumps
(
broadcast_packet
,
indent
=
4
)
}
"
)
...
...
@@ -237,7 +238,7 @@ class HEVServer(object):
self
.
_broadcasting
=
True
writer
.
close
()
del
self
.
_broadcasts
[
addr
[
1
]
]
del
self
.
_broadcasts
[
bindex
]
async
def
serve_request
(
self
,
ip
:
str
,
port
:
int
)
->
None
:
server
=
await
asyncio
.
start_server
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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