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
ec8f6287
Commit
ec8f6287
authored
11 years ago
by
D1plo1d
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various fixes. Implementing websocket protocol
parent
a2339576
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
83 additions
and
24 deletions
+83
-24
pronserve.py
pronserve.py
+83
-24
No files found.
pronserve.py
View file @
ec8f6287
...
@@ -27,6 +27,7 @@ import socket
...
@@ -27,6 +27,7 @@ import socket
import
mdns
import
mdns
import
uuid
import
uuid
import
re
import
re
import
traceback
from
operator
import
itemgetter
,
attrgetter
from
operator
import
itemgetter
,
attrgetter
from
collections
import
deque
from
collections
import
deque
...
@@ -89,17 +90,17 @@ class StopHandler(tornado.web.RequestHandler):
...
@@ -89,17 +90,17 @@ class StopHandler(tornado.web.RequestHandler):
class
JobsHandler
(
tornado
.
web
.
RequestHandler
):
class
JobsHandler
(
tornado
.
web
.
RequestHandler
):
def
post
(
self
):
def
post
(
self
):
fileinfo
=
self
.
request
.
files
[
'job'
][
0
]
fileinfo
=
self
.
request
.
files
[
'job'
][
0
]
pronserve
.
jobs
.
add
(
fileinfo
[
'filename'
],
fileinfo
[
'body'
])
pronserve
.
do_add_job
(
fileinfo
[
'filename'
],
fileinfo
[
'body'
])
self
.
finish
(
"ACK"
)
self
.
finish
(
"ACK"
)
class
JobHandler
(
tornado
.
web
.
RequestHandler
):
class
JobHandler
(
tornado
.
web
.
RequestHandler
):
def
delete
(
self
,
job_id
):
def
delete
(
self
,
job_id
):
pronserve
.
jobs
.
remove
(
int
(
job_id
)
)
pronserve
.
do_rm_job
(
job_id
)
self
.
finish
(
"ACK"
)
self
.
finish
(
"ACK"
)
def
put
(
self
,
job_id
):
def
put
(
self
,
job_id
):
args
=
{
'position'
:
int
(
self
.
get_argument
(
"job[position]"
))}
args
=
{
'position'
:
int
(
self
.
get_argument
(
"job[position]"
))}
pronserve
.
jobs
.
update
(
int
(
job_id
),
args
)
pronserve
.
do_change_job
(
job_id
,
**
args
)
self
.
finish
(
"ACK"
)
self
.
finish
(
"ACK"
)
...
@@ -172,29 +173,28 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -172,29 +173,28 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
cmd
=
words
[
0
]
cmd
=
words
[
0
]
arg_words
=
words
[
1
:]
arg_words
=
words
[
1
:]
if
cmd
==
"set"
:
args
=
[]
subCmd
=
words
[
1
]
arg_words
=
words
[
2
:]
kwargs
=
{}
kwargs
=
{}
if
not
(
len
(
arg_words
)
==
1
and
arg_words
[
0
]
==
''
):
for
w
in
arg_words
:
for
w
in
arg_words
:
if
w
.
contains
(
":"
):
if
len
(
w
)
==
0
:
continue
k
,
v
=
w
.
split
(
":"
)
if
w
.
find
(
":"
)
>
-
1
:
kwargs
[
k
]
=
float
(
v
)
k
,
v
=
w
.
split
(
":"
)
else
:
kwargs
[
k
]
=
v
kwargs
[
w
]
=
True
else
:
args
.
append
(
w
)
if
cmd
in
cmds_whitelist
:
if
cmd
in
cmds_whitelist
:
try
:
try
:
if
cmd
==
"set"
:
if
cmd
==
"set"
:
cmd
=
"construct_set"
getattr
(
pronserve
,
"do_set"
)(
subCmd
,
**
kwargs
)
response
=
getattr
(
pronserve
,
"do_
%
s"
%
cmd
)(
*
args
,
**
kwargs
)
else
:
print
response
getattr
(
pronserve
,
"do_
%
s"
%
cmd
)(
**
kwargs
)
if
response
is
not
None
:
self
.
write_message
(
response
)
except
:
except
:
print
traceback
.
format_exc
()
self
.
write_message
({
"error"
:
"bad command."
})
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."
%
cmd
})
def
on_close
(
self
):
def
on_close
(
self
):
pronserve
.
listeners
.
remove
(
self
)
pronserve
.
listeners
.
remove
(
self
)
...
@@ -266,12 +266,67 @@ class Pronserve(pronsole.pronsole, EventEmitter):
...
@@ -266,12 +266,67 @@ class Pronserve(pronsole.pronsole, EventEmitter):
self
.
jobs
.
listeners
.
add
(
self
)
self
.
jobs
.
listeners
.
add
(
self
)
def
do_print
(
self
):
def
do_print
(
self
):
if
self
.
p
.
online
:
if
not
self
.
p
.
online
:
raise
"not online"
self
.
printing_jobs
=
True
self
.
printing_jobs
=
True
def
do_home
(
self
,
**
kwargs
):
def
do_home
(
self
,
*
args
,
**
kwargs
):
pronsole
.
pronsole
.
do_home
(
self
,
" "
.
join
(
args
))
print
"wut homing!"
print
"wut homing!"
def
do_move
(
self
,
**
kwargs
):
# Convert mm/s to mm/minute
if
"at"
in
kwargs
:
speed_multiplier
=
float
(
kwargs
[
'at'
]
.
replace
(
"
%
"
,
""
))
*
0.01
else
:
speed_multiplier
=
1
for
k
,
v
in
kwargs
.
iteritems
():
if
k
==
"at"
:
continue
# Getting the feedrate
if
k
in
[
"z"
,
"e"
]:
prefix
=
k
else
:
prefix
=
"xy"
speed
=
getattr
(
self
.
settings
,
"
%
s_feedrate"
%
prefix
)
*
speed_multiplier
# Creating the pronsole axial move command
args
=
{
"axis"
:
k
,
"dist"
:
v
,
"speed"
:
speed
}
cmd
=
"
%(axis)
s
%(dist)
s
%(speed)
s"
%
args
print
"move
%
s"
%
cmd
pronsole
.
pronsole
.
do_move
(
self
,
cmd
)
def
do_stop_move
(
self
):
raise
"Continuous movement not supported"
def
do_construct_set
(
self
,
subCmd
,
**
kwargs
):
getattr
(
self
,
"do_set_
%
s"
%
subCmd
)(
**
kwargs
)
def
do_set_temp
(
self
,
**
kwargs
):
# Setting each temperature individually
prefixes
=
{
'b'
:
'bed'
,
'e0'
:
'set'
,
'e'
:
'set'
}
for
k
,
prefix
in
prefixes
.
iteritems
():
if
not
k
in
kwargs
:
continue
print
"
%
stemp
%
s"
%
(
prefix
,
kwargs
[
k
])
setter
=
getattr
(
pronsole
.
pronsole
,
"do_
%
stemp"
%
prefix
)
setter
(
self
,
kwargs
[
k
])
def
do_set_feedrate
(
self
,
**
kwargs
):
# TODO: kwargs[xy] * 60 and kwargs[z] * 60
pass
def
do_add_job
(
self
,
filename
,
filebody
):
self
.
jobs
.
add
(
filename
,
filebody
)
def
do_rm_job
(
self
,
job_id
):
self
.
jobs
.
remove
(
int
(
job_id
))
def
do_change_job
(
self
,
job_id
,
**
kwargs
):
self
.
jobs
.
update
(
int
(
job_id
),
kwargs
)
def
do_get_jobs
(
self
):
return
{
'jobs'
:
self
.
jobs
.
public_list
()}
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
...
@@ -299,6 +354,7 @@ class Pronserve(pronsole.pronsole, EventEmitter):
...
@@ -299,6 +354,7 @@ class Pronserve(pronsole.pronsole, EventEmitter):
gen
.
Task
(
self
.
ioloop
.
add_timeout
(
next_timeout
,
self
.
run_print_queue_loop
))
gen
.
Task
(
self
.
ioloop
.
add_timeout
(
next_timeout
,
self
.
run_print_queue_loop
))
def
update_job_progress
(
self
,
progress
):
def
update_job_progress
(
self
,
progress
):
print
progress
if
progress
!=
self
.
previous_job_progress
and
self
.
current_job
!=
None
:
if
progress
!=
self
.
previous_job_progress
and
self
.
current_job
!=
None
:
self
.
previous_job_progress
=
progress
self
.
previous_job_progress
=
progress
self
.
fire
(
"job_progress_changed"
,
progress
)
self
.
fire
(
"job_progress_changed"
,
progress
)
...
@@ -438,9 +494,12 @@ class PrintJobQueue(EventEmitter):
...
@@ -438,9 +494,12 @@ class PrintJobQueue(EventEmitter):
# Server Start Up
# Server Start Up
# -------------------------------------------------
# -------------------------------------------------
#dry_run = True
dry_run
=
False
print
"Pronserve is starting..."
print
"Pronserve is starting..."
pronserve
=
Pronserve
(
dry_run
=
True
)
pronserve
=
Pronserve
(
dry_run
=
dry_run
)
#
pronserve.do_connect("")
if
dry_run
==
False
:
pronserve
.
do_connect
(
""
)
time
.
sleep
(
1
)
time
.
sleep
(
1
)
pronserve
.
run_sensor_loop
()
pronserve
.
run_sensor_loop
()
...
...
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