Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
a2339576
Commit
a2339576
authored
11 years ago
by
D1plo1d
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing websocket parameter parsing
parent
5ab4d8e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
13 deletions
+26
-13
pronserve.py
pronserve.py
+26
-13
No files found.
pronserve.py
View file @
a2339576
...
@@ -157,7 +157,6 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -157,7 +157,6 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
"set"
,
"set"
,
"estop"
,
"estop"
,
"print"
,
"print"
,
"pause_print"
,
"add_job"
,
"add_job"
,
"rm_job"
,
"rm_job"
,
"change_job"
,
"change_job"
,
...
@@ -165,24 +164,35 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -165,24 +164,35 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
]
]
print
"message received:
%
s"
%
(
msg
)
print
"message received:
%
s"
%
(
msg
)
msg
=
re
.
sub
(
r'\s+'
,
"
\
s"
,
msg
)
msg
=
re
.
sub
(
r'\s+'
,
"
\
s"
,
msg
)
.
strip
()
msg
=
msg
.
replace
(
":
\
s"
,
":"
)
msg
=
msg
.
replace
(
":
\
s"
,
":"
)
msg
=
msg
.
replace
(
"@
\
s"
,
"@"
)
msg
=
msg
.
replace
(
"@"
,
"at:"
)
words
=
msg
.
split
(
"
\
s"
)
words
=
msg
.
split
(
"
\
s"
)
cmd
=
words
[
0
]
cmd
=
words
[
0
]
arg_words
=
words
[
1
:]
args
=
{}
if
cmd
==
"set"
:
for
w
in
words
[
1
:]:
subCmd
=
words
[
1
]
if
w
.
contains
(
":"
):
arg_words
=
words
[
2
:]
k
,
v
=
w
.
split
(
":"
)
args
[
k
]
=
float
(
v
)
kwargs
=
{}
else
:
if
not
(
len
(
arg_words
)
==
1
and
arg_words
[
0
]
==
''
):
args
[
w
]
=
True
for
w
in
arg_words
:
if
w
.
contains
(
":"
):
print
args
k
,
v
=
w
.
split
(
":"
)
kwargs
[
k
]
=
float
(
v
)
else
:
kwargs
[
w
]
=
True
if
cmd
in
cmds_whitelist
:
if
cmd
in
cmds_whitelist
:
getattr
(
pronserve
,
"do_
%
s"
%
cmd
)(
args
)
try
:
if
cmd
==
"set"
:
getattr
(
pronserve
,
"do_set"
)(
subCmd
,
**
kwargs
)
else
:
getattr
(
pronserve
,
"do_
%
s"
%
cmd
)(
**
kwargs
)
except
:
self
.
write_message
({
"error"
:
"bad command."
})
else
:
else
:
self
.
write_message
({
"error"
:
"
%
s command does not exist."
%
key
})
self
.
write_message
({
"error"
:
"
%
s command does not exist."
%
key
})
...
@@ -259,6 +269,9 @@ class Pronserve(pronsole.pronsole, EventEmitter):
...
@@ -259,6 +269,9 @@ class Pronserve(pronsole.pronsole, EventEmitter):
if
self
.
p
.
online
:
if
self
.
p
.
online
:
self
.
printing_jobs
=
True
self
.
printing_jobs
=
True
def
do_home
(
self
,
**
kwargs
):
print
"wut homing!"
def
run_print_queue_loop
(
self
):
def
run_print_queue_loop
(
self
):
# This is a polling work around to the current lack of events in printcore
# This is a polling work around to the current lack of events in printcore
# A better solution would be one in which a print_finised event could be
# A better solution would be one in which a print_finised event could be
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment