Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ophélie Gagnard
slapos.core
Commits
80485e0b
Commit
80485e0b
authored
Jun 13, 2011
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formatting and whitespaces.
parent
62fbed4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
35 deletions
+58
-35
master/product/Vifib/Tool/SlapTool.py
master/product/Vifib/Tool/SlapTool.py
+58
-35
No files found.
master/product/Vifib/Tool/SlapTool.py
View file @
80485e0b
...
...
@@ -81,7 +81,8 @@ def convertToREST(function):
self
.
REQUEST
.
response
.
setStatus
(
408
)
return
self
.
REQUEST
.
response
except
ValidationFailed
:
LOG
(
'SlapTool'
,
INFO
,
'Converting ValidationFailed to ValidationFailed, real error:'
,
LOG
(
'SlapTool'
,
INFO
,
'Converting ValidationFailed to ValidationFailed,'
\
' real error:'
,
error
=
True
)
raise
ValidationFailed
...
...
@@ -123,7 +124,8 @@ class SlapTool(BaseTool):
# Public GET methods
####################################################
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'getComputerInformation'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'getComputerInformation'
)
def
getComputerInformation
(
self
,
computer_id
):
"""Returns marshalled XML of all needed information for computer
...
...
@@ -149,7 +151,8 @@ class SlapTool(BaseTool):
self
.
_convertToSlapPartition
(
slave_partition_document
,
computer_id
))
return
xml_marshaller
.
xml_marshaller
.
dumps
(
slap_computer
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'getComputerPartitionCertificate'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'getComputerPartitionCertificate'
)
def
getComputerPartitionCertificate
(
self
,
computer_id
,
computer_partition_id
):
"""Method to fetch certificate"""
self
.
REQUEST
.
response
.
setHeader
(
'Content-Type'
,
'text/xml'
)
...
...
@@ -160,12 +163,13 @@ class SlapTool(BaseTool):
certificate
=
software_instance
.
getSslCertificate
()
)
return
xml_marshaller
.
xml_marshaller
.
dumps
(
certificate_dict
)
####################################################
# Public POST methods
####################################################
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'setComputerPartitionConnectionXml'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'setComputerPartitionConnectionXml'
)
def
setComputerPartitionConnectionXml
(
self
,
computer_id
,
computer_partition_id
,
connection_xml
):
...
...
@@ -176,42 +180,48 @@ class SlapTool(BaseTool):
computer_partition_id
,
connection_xml
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'buildingSoftwareRelease'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'buildingSoftwareRelease'
)
def
buildingSoftwareRelease
(
self
,
url
,
computer_id
):
"""
Reports that Software Release is being build
"""
return
self
.
_buildingSoftwareRelease
(
url
,
computer_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'availableSoftwareRelease'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'availableSoftwareRelease'
)
def
availableSoftwareRelease
(
self
,
url
,
computer_id
):
"""
Reports that Software Release is available
"""
return
self
.
_availableSoftwareRelease
(
url
,
computer_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'softwareReleaseError'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'softwareReleaseError'
)
def
softwareReleaseError
(
self
,
url
,
computer_id
,
error_log
):
"""
Add an error for a software Release workflow
"""
return
self
.
_softwareReleaseError
(
url
,
computer_id
,
error_log
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'buildingComputerPartition'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'buildingComputerPartition'
)
def
buildingComputerPartition
(
self
,
computer_id
,
computer_partition_id
):
"""
Reports that Computer Partition is being build
"""
return
self
.
_buildingComputerPartition
(
computer_id
,
computer_partition_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'availableComputerPartition'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'availableComputerPartition'
)
def
availableComputerPartition
(
self
,
computer_id
,
computer_partition_id
):
"""
Reports that Computer Partition is available
"""
return
self
.
_availableComputerPartition
(
computer_id
,
computer_partition_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'softwareInstanceError'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'softwareInstanceError'
)
def
softwareInstanceError
(
self
,
computer_id
,
computer_partition_id
,
error_log
):
"""
...
...
@@ -220,28 +230,32 @@ class SlapTool(BaseTool):
return
self
.
_softwareInstanceError
(
computer_id
,
computer_partition_id
,
error_log
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'startedComputerPartition'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'startedComputerPartition'
)
def
startedComputerPartition
(
self
,
computer_id
,
computer_partition_id
):
"""
Reports that Computer Partition is started
"""
return
self
.
_startedComputerPartition
(
computer_id
,
computer_partition_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'stoppedComputerPartition'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'stoppedComputerPartition'
)
def
stoppedComputerPartition
(
self
,
computer_id
,
computer_partition_id
):
"""
Reports that Computer Partition is stopped
"""
return
self
.
_stoppedComputerPartition
(
computer_id
,
computer_partition_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'destroyedComputerPartition'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'destroyedComputerPartition'
)
def
destroyedComputerPartition
(
self
,
computer_id
,
computer_partition_id
):
"""
Reports that Computer Partition is destroyed
"""
return
self
.
_destroyedComputerPartition
(
computer_id
,
computer_partition_id
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'requestComputerPartition'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'requestComputerPartition'
)
def
requestComputerPartition
(
self
,
computer_id
,
computer_partition_id
,
software_release
,
software_type
,
partition_reference
,
shared_xml
,
partition_parameter_xml
,
filter_xml
):
...
...
@@ -257,33 +271,35 @@ class SlapTool(BaseTool):
In any other case returns not important data and HTTP code is 403 Forbidden
"""
return
self
.
_requestComputerPartition
(
computer_id
,
computer_partition_id
,
software_release
,
software_type
,
partition_reference
,
software_release
,
software_type
,
partition_reference
,
shared_xml
,
partition_parameter_xml
,
filter_xml
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'useComputer'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'useComputer'
)
def
useComputer
(
self
,
computer_id
,
use_string
):
"""Entry point to reporting usage of a computer."""
#computer_document = self._getComputerDocument(computer_id)
# easy way to start to store usage messages sent by client in related Web
# Page text_content...
#self._reportComputerUsage(computer_document, use_string)
#LOG("check-1", 0, "%s" % use_string)
unmarshalled_usage
=
xml_marshaller
.
xml_marshaller
.
loads
(
use_string
)
#res = unmarshalled_usage.computer_partition_usage_list
#LOG("check-2", 0, "%s" % res[0].usage)
vifib_conduit_instance
=
VifibConduit
.
VifibConduit
()
#sub_object = vifib_conduit_instance.addNode(object=self,
vifib_conduit_instance
.
addNode
(
object
=
self
,
#sub_object = vifib_conduit_instance.addNode(object=self,
vifib_conduit_instance
.
addNode
(
object
=
self
,
xml
=
unmarshalled_usage
.
computer_partition_usage_list
[
0
].
usage
)
#sub_object = vifib_conduit_instance.addNode(object=self, xml=res[0].usage)
#self._reportComputerUsage(computer_document, use_string)
return
'Content properly posted.'
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'loadComputerConfigurationFromXML'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'loadComputerConfigurationFromXML'
)
def
loadComputerConfigurationFromXML
(
self
,
xml
):
"Load the given xml as configuration for the computer object"
computer_dict
=
xml_marshaller
.
xml_marshaller
.
loads
(
xml
)
...
...
@@ -291,8 +307,10 @@ class SlapTool(BaseTool):
computer
.
Computer_updateFromDict
(
computer_dict
)
return
'Content properly posted.'
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'useComputerPartition'
)
def
useComputerPartition
(
self
,
computer_id
,
computer_partition_id
,
use_string
):
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'useComputerPartition'
)
def
useComputerPartition
(
self
,
computer_id
,
computer_partition_id
,
use_string
):
"""Warning : deprecated method."""
computer_document
=
self
.
_getComputerDocument
(
computer_id
)
computer_partition_document
=
self
.
_getComputerPartitionDocument
(
...
...
@@ -303,7 +321,8 @@ class SlapTool(BaseTool):
return
"""Content properly posted.
WARNING : this method is deprecated. Please use useComputer."""
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'registerComputerPartition'
)
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'registerComputerPartition'
)
def
registerComputerPartition
(
self
,
computer_reference
,
computer_partition_reference
):
"""
...
...
@@ -414,7 +433,8 @@ class SlapTool(BaseTool):
elif
movement
.
getResource
()
==
\
portal_preferences
.
getPreferredInstanceCleanupResource
():
if
movement
.
getSimulationState
()
in
(
'confirmed'
,
'started'
,
'stopped'
):
if
movement
.
getSimulationState
()
in
(
'confirmed'
,
'started'
,
'stopped'
):
slap_partition
.
_need_modification
=
1
else
:
...
...
@@ -440,7 +460,8 @@ class SlapTool(BaseTool):
Reports that Software Release is being build
"""
computer_document
=
self
.
_getComputerDocument
(
computer_id
)
computer_document
.
startSoftwareReleaseInstallation
(
software_release_url
=
url
)
computer_document
.
startSoftwareReleaseInstallation
(
software_release_url
=
url
)
@
convertToREST
def
_availableSoftwareRelease
(
self
,
url
,
computer_id
):
...
...
@@ -543,7 +564,7 @@ class SlapTool(BaseTool):
@
convertToREST
def
_requestComputerPartition
(
self
,
computer_id
,
computer_partition_id
,
software_release
,
software_type
,
partition_reference
,
software_release
,
software_type
,
partition_reference
,
shared_xml
,
partition_parameter_xml
,
filter_xml
):
"""
Asynchronously requests creation of computer partition for assigned
...
...
@@ -552,7 +573,8 @@ class SlapTool(BaseTool):
Returns XML representation of partition with HTTP code 200 OK
In case if this request is still being processed data contain
"Computer Partition is being processed" and HTTP code is 408 Request Timeout
"Computer Partition is being processed" and HTTP code is 408 Request
Timeout
In any other case returns not important data and HTTP code is 403 Forbidden
"""
...
...
@@ -569,14 +591,14 @@ class SlapTool(BaseTool):
filter_kw
=
xml_marshaller
.
xml_marshaller
.
loads
(
filter_xml
)
else
:
filter_kw
=
dict
()
instance
=
etree
.
Element
(
'instance'
)
for
parameter_id
,
parameter_value
in
partition_parameter_kw
.
iteritems
():
# cast everything to string
parameter_value
=
str
(
parameter_value
)
etree
.
SubElement
(
instance
,
"parameter"
,
attrib
=
{
'id'
:
parameter_id
}).
text
=
parameter_value
instance_xml
=
etree
.
tostring
(
instance
,
pretty_print
=
True
,
instance_xml
=
etree
.
tostring
(
instance
,
pretty_print
=
True
,
xml_declaration
=
True
,
encoding
=
'utf-8'
)
software_instance_document
=
self
.
_getSoftwareInstanceForComputerPartition
(
...
...
@@ -676,8 +698,8 @@ class SlapTool(BaseTool):
software_instance
=
packing_list_line
.
getAggregateValue
(
portal_type
=
"Software Instance"
)
if
software_instance
is
None
:
raise
NotFound
,
"No software instance found for: %s - %s"
%
(
computer_id
,
computer_partition_id
)
raise
NotFound
,
"No software instance found for: %s - %s"
%
(
computer_id
,
computer_partition_id
)
else
:
return
software_instance
...
...
@@ -773,7 +795,8 @@ class SlapTool(BaseTool):
usage_report_sale_packing_list_document
.
start
()
# Adds a new SPL line for each Computer Partition
for
computer_partition_usage
in
unmarshalled_usage
.
computer_partition_usage_list
:
for
computer_partition_usage
in
unmarshalled_usage
\
.
computer_partition_usage_list
:
#Get good packing list line for a computer_partition
computer_partition_document
=
self
.
\
_getComputerPartitionDocument
(
...
...
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