Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hauptbahnhof
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
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
Show more breadcrumbs
stustanet
hauptbahnhof
Commits
27cf6821
Commit
27cf6821
authored
6 years ago
by
Johannes Walcher
Browse files
Options
Downloads
Patches
Plain Diff
core: hardened message reception
parent
764175f4
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
hauptbahnhof/hauptbahnhof.py
+31
-14
31 additions, 14 deletions
hauptbahnhof/hauptbahnhof.py
with
31 additions
and
14 deletions
hauptbahnhof/hauptbahnhof.py
+
31
−
14
View file @
27cf6821
...
...
@@ -91,23 +91,40 @@ class Hauptbahnhof:
async
def
message_processing
(
self
):
while
True
:
(
client
,
userdata
,
msg
)
=
await
self
.
_queue
.
get
()
# is called when a message is received
payload
=
msg
.
payload
.
decode
(
'
utf-8
'
)
try
:
futures
=
self
.
_subscriptions
[
msg
.
topic
]
except
KeyError
:
# Received unknown message - this is strange, log and ignore
self
.
log
(
"
Received unsubscribed message on %s with content: %s
"
%
(
msg
.
topic
,
msg
.
payload
))
return
try
:
payloadobj
=
json
.
loads
(
payload
)
await
asyncio
.
gather
(
*
[
fut
(
client
,
payloadobj
,
msg
)
for
fut
in
futures
])
except
json
.
JSONDecodeError
:
self
.
log
(
"
Invalid json received: %s
"
%
payload
)
(
client
,
userdata
,
msg
)
=
await
self
.
_queue
.
get
()
# is called when a message is received
try
:
payload
=
msg
.
payload
.
decode
(
'
utf-8
'
)
except
UnicodeDecodeError
:
continue
try
:
futures
=
self
.
_subscriptions
[
msg
.
topic
]
except
KeyError
:
# Received unknown message - this is strange, log and ignore
self
.
log
(
"
Received unsubscribed message on %s with content: %s
"
%
(
msg
.
topic
,
msg
.
payload
))
try
:
payloadobj
=
json
.
loads
(
payload
)
except
json
.
JSONDecodeError
:
self
.
log
(
"
Invalid json received: %s
"
%
payload
)
continue
except
:
continue
try
:
await
asyncio
.
gather
(
*
[
fut
(
client
,
payloadobj
,
msg
)
for
fut
in
futures
])
except
Exception
:
traceback
.
print_exc
()
continue
except
asyncio
.
CancelledError
:
break
except
Exception
:
traceback
.
print_exc
()
continue
def
on_message
(
self
,
client
,
userdata
,
msg
):
self
.
_queue
.
put_nowait
((
client
,
userdata
,
msg
))
...
...
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