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
348f3aba
Commit
348f3aba
authored
Jun 29, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'experimental' of github.com:kliment/Printrun into experimental
parents
ce78c8d0
08db5071
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
9 deletions
+72
-9
prontserve.py
prontserve.py
+72
-9
No files found.
prontserve.py
View file @
348f3aba
...
@@ -39,6 +39,8 @@ sys.stdout = codecs.getwriter('utf8')(sys.stdout)
...
@@ -39,6 +39,8 @@ sys.stdout = codecs.getwriter('utf8')(sys.stdout)
log
=
logging
.
getLogger
(
"root"
)
log
=
logging
.
getLogger
(
"root"
)
__UPLOADS__
=
"./uploads"
__UPLOADS__
=
"./uploads"
CONSTRUCT_PROTOCOL_VERSION
=
[
0
,
2
,
0
]
# Authentication
# Authentication
# -------------------------------------------------
# -------------------------------------------------
...
@@ -173,16 +175,61 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -173,16 +175,61 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
self
.
send
({
event_name
:
data
})
self
.
send
({
event_name
:
data
})
def
_execute
(
self
,
transforms
,
*
args
,
**
kwargs
):
def
_execute
(
self
,
transforms
,
*
args
,
**
kwargs
):
if
socket_auth
(
self
):
self
.
authorized
=
socket_auth
(
self
)
super
(
ConstructSocketHandler
,
self
)
.
_execute
(
transforms
,
*
args
,
**
kwargs
)
super
(
ConstructSocketHandler
,
self
)
.
_execute
(
transforms
,
*
args
,
**
kwargs
)
else
:
self
.
stream
.
close
();
def
select_subprotocol
(
self
,
subprotocols
):
def
select_subprotocol
(
self
,
subprotocols
):
# Chooses a compatible construct protocol from the list sent by the
# client.
# The Construct Protocol uses semantic version v2.0.0 so any minor version
# w/ a specific major version will be compatible with all minor versions
# before it within that same major version.
# The only exception to this rule is major version 0.
# Version 0 protocols are unstable and can break compatibility more often.
# We are only going to cause backwards incompatibility in 0.x minor version
# See http://semver.org/
server_v
=
CONSTRUCT_PROTOCOL_VERSION
compatible_v
=
[
-
1
,
-
1
]
for
p
in
list
(
subprotocols
):
regex
=
'^construct
\
.text
\
.([0-9]+)
\
.?([0-9]+)'
client_v
=
[
int
(
s
)
for
s
in
list
(
re
.
search
(
regex
,
p
)
.
groups
())]
pprint
(
client_v
)
if
client_v
[
0
]
==
server_v
[
0
]
and
client_v
[
1
]
<=
server_v
[
1
]:
if
client_v
[
1
]
>
compatible_v
[
1
]:
compatible_v
=
client_v
print
subprotocols
print
subprotocols
return
"construct.text.0.0.1"
print
compatible_v
# On incompatibility: Return a BS version and sending an error once the
# connection opens.
self
.
client_versions
=
subprotocols
self
.
compatible
=
compatible_v
[
1
]
>
-
1
pprint
(
self
.
compatible
)
print
self
.
_protocol_str
(
compatible_v
)
if
not
self
.
compatible
:
return
subprotocols
[
0
]
return
self
.
_protocol_str
(
compatible_v
)
def
_protocol_str
(
self
,
v
):
return
"construct.text.
%
i.
%
i"
%
(
v
[
0
],
v
[
1
])
def
open
(
self
):
def
open
(
self
):
if
not
self
.
authorized
:
self
.
_error
(
message
=
"Incorrect password or username"
,
type
=
'unauthorized'
)
if
not
self
.
compatible
:
v
=
self
.
_protocol_str
(
CONSTRUCT_PROTOCOL_VERSION
)
msg
=
"""
Incompatible Construct Protocol version.
Server version:
%
s
Your version(s):
%
s
"""
%
(
v
,
str
(
self
.
client_versions
))
self
.
_error
(
message
=
msg
,
type
=
'incompatible_protocol_version'
)
if
not
(
self
.
authorized
and
self
.
compatible
):
return
self
.
stream
.
close
()
self
.
session_uuid
=
str
(
uuid
.
uuid4
())
self
.
session_uuid
=
str
(
uuid
.
uuid4
())
self
.
clients
.
append
(
self
)
self
.
clients
.
append
(
self
)
prontserve
.
listeners
.
add
(
self
)
prontserve
.
listeners
.
add
(
self
)
...
@@ -195,15 +242,23 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -195,15 +242,23 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
for
k
,
v
in
prontserve
.
target_values
.
iteritems
():
for
k
,
v
in
prontserve
.
target_values
.
iteritems
():
self
.
on_uncaught_event
(
"target_temp_changed"
,
{
k
:
v
})
self
.
on_uncaught_event
(
"target_temp_changed"
,
{
k
:
v
})
self
.
on_uncaught_event
(
"job_progress_changed"
,
prontserve
.
previous_job_progress
)
self
.
on_uncaught_event
(
"job_progress_changed"
,
prontserve
.
previous_job_progress
)
# Alerting all websockets of the new client
self
.
_on_connections_changed
()
self
.
send
(
initialized
=
{
'session_uuid'
:
self
.
session_uuid
}
)
self
.
send
(
initialized
=
{
'session_uuid'
:
self
.
session_uuid
}
)
print
"WebSocket opened.
%
i sockets currently open."
%
len
(
prontserve
.
listeners
)
print
"WebSocket opened.
%
i sockets currently open."
%
len
(
prontserve
.
listeners
)
def
_on_connections_changed
(
self
):
for
c
in
self
.
clients
:
c
.
send
(
connections_changed
=
len
(
prontserve
.
listeners
))
def
send
(
self
,
dict_args
=
{},
**
kwargs
):
def
send
(
self
,
dict_args
=
{},
**
kwargs
):
args
=
dict
(
dict_args
.
items
()
+
kwargs
.
items
())
args
=
dict
(
dict_args
.
items
()
+
kwargs
.
items
())
args
[
'timestamp'
]
=
time
.
time
()
args
[
'timestamp'
]
=
time
.
time
()
self
.
write_message
(
args
)
self
.
write_message
(
args
)
def
on_message
(
self
,
msg
):
def
on_message
(
self
,
msg
):
if
not
self
.
authorized
:
return
cmds
=
self
.
_cmds
()
cmds
=
self
.
_cmds
()
print
"message received:
%
s"
%
(
msg
)
print
"message received:
%
s"
%
(
msg
)
...
@@ -229,6 +284,9 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -229,6 +284,9 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
if
cmd
in
cmds
.
keys
():
if
cmd
in
cmds
.
keys
():
try
:
try
:
self
.
_throwArgErrors
(
cmd
,
args
,
kwargs
)
self
.
_throwArgErrors
(
cmd
,
args
,
kwargs
)
except
Exception
as
ex
:
self
.
_error
(
message
=
str
(
ex
),
type
=
'bad_cmd'
)
try
:
# Set is already used by pronsole so we use construct_set
# Set is already used by pronsole so we use construct_set
if
cmd
==
"set"
:
cmd
=
"construct_set"
if
cmd
==
"set"
:
cmd
=
"construct_set"
# Run the command
# Run the command
...
@@ -236,9 +294,12 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -236,9 +294,12 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
self
.
write_message
({
"ack"
:
response
})
self
.
write_message
({
"ack"
:
response
})
except
Exception
as
ex
:
except
Exception
as
ex
:
print
traceback
.
format_exc
()
print
traceback
.
format_exc
()
self
.
write_message
({
"error"
:
str
(
ex
)}
)
self
.
_error
(
message
=
str
(
ex
),
type
=
'machine_error'
)
else
:
else
:
self
.
write_message
({
"error"
:
"
%
s command does not exist."
%
cmd
})
self
.
_error
(
message
=
"
%
s command does not exist."
%
cmd
,
type
=
'bad_cmd'
)
def
_error
(
self
,
**
kwargs
):
self
.
write_message
({
"error"
:
kwargs
})
def
_cmds
(
self
):
def
_cmds
(
self
):
return
{
return
{
...
@@ -296,8 +357,10 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
...
@@ -296,8 +357,10 @@ class ConstructSocketHandler(tornado.websocket.WebSocketHandler):
if
arg_errors
:
raise
Exception
(
meta
[
'args_error'
])
if
arg_errors
:
raise
Exception
(
meta
[
'args_error'
])
def
on_close
(
self
):
def
on_close
(
self
):
if
self
in
self
.
clients
:
self
.
clients
.
remove
(
self
)
self
.
clients
.
remove
(
self
)
prontserve
.
listeners
.
remove
(
self
)
prontserve
.
listeners
.
remove
(
self
)
self
.
_on_connections_changed
()
print
"WebSocket closed.
%
i sockets currently open."
%
len
(
prontserve
.
listeners
)
print
"WebSocket closed.
%
i sockets currently open."
%
len
(
prontserve
.
listeners
)
dir
=
os
.
path
.
dirname
(
__file__
)
dir
=
os
.
path
.
dirname
(
__file__
)
...
...
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