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
Nicolas Wavrant
slapos.core
Commits
37b346df
Commit
37b346df
authored
Oct 02, 2012
by
Cédric Le Ninivin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Request now works as described in documentation
parent
423e935d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
31 deletions
+69
-31
slapos/console.py
slapos/console.py
+69
-31
No files found.
slapos/console.py
View file @
37b346df
...
@@ -27,9 +27,9 @@
...
@@ -27,9 +27,9 @@
#
#
##############################################################################
##############################################################################
import
argparse
import
slapos.slap.slap
import
slapos.slap.slap
from
slapos.slap
import
ResourceNotReady
from
slapos.slap
import
ResourceNotReady
import
sys
import
sys
import
os
import
os
from
optparse
import
OptionParser
,
Option
from
optparse
import
OptionParser
,
Option
...
@@ -69,16 +69,49 @@ class Parser(OptionParser):
...
@@ -69,16 +69,49 @@ class Parser(OptionParser):
return
options
,
args
return
options
,
args
class
RequestParser
(
Parser
):
def
check_args
(
self
):
def
argToDict
(
element
):
"""
"""
Check arguments
convert a table of string 'key=value' to dict
"""
"""
(
options
,
args
)
=
Parser
.
check_args
(
self
)
if
element
is
not
None
:
if
len
(
args
)
<
3
:
element_dict
=
dict
([
arg
.
split
(
'='
)
for
arg
in
element
])
self
.
error
(
"Incorrect number of arguments"
)
return
element_dict
def
check_request_args
():
"""
Parser for request
"""
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"configuration_file"
,
nargs
=
1
,
help
=
"SlapOS configuration file."
)
parser
.
add_argument
(
"reference"
,
help
=
"Your instance reference"
)
parser
.
add_argument
(
"software_url"
,
help
=
"Your software url"
)
parser
.
add_argument
(
"--node"
,
nargs
=
'*'
,
help
=
"Node request option "
"'option1=value1 option2=value2'"
)
parser
.
add_argument
(
"--type"
,
type
=
str
,
help
=
"Define software type to be requested"
)
parser
.
add_argument
(
"--slave"
,
action
=
"store_true"
,
default
=
False
,
help
=
"Ask for a slave instance"
)
parser
.
add_argument
(
"--configuration"
,
nargs
=
'*'
,
help
=
"Give your configuration "
"'option1=value1 option2=value2'"
)
args
=
parser
.
parse_args
()
# Convert to dict
if
args
.
configuration
is
not
None
:
args
.
configuration
=
argToDict
(
args
.
configuration
)
if
args
.
node
is
not
None
:
args
.
node
=
argToDict
(
args
.
node
)
return
args
return
options
,
args
class
Config
:
class
Config
:
def
setConfig
(
self
,
option_dict
,
configuration_file_path
):
def
setConfig
(
self
,
option_dict
,
configuration_file_path
):
...
@@ -103,11 +136,17 @@ class Config:
...
@@ -103,11 +136,17 @@ class Config:
setattr
(
self
,
key
,
configuration_dict
[
key
])
setattr
(
self
,
key
,
configuration_dict
[
key
])
configuration_dict
=
dict
(
configuration_parser
.
items
(
'slapos'
))
configuration_dict
=
dict
(
configuration_parser
.
items
(
'slapos'
))
master_url
=
configuration_dict
.
get
(
'master_url'
,
None
)
master_url
=
configuration_dict
.
get
(
'master_url'
,
None
)
# Backward compatibility, if no key and certificate given in option
# take one from slapos configuration
if
not
getattr
(
self
,
'key_file'
,
None
)
and
\
not
getattr
(
self
,
'cert_file'
,
None
):
self
.
key_file
=
configuration_dict
.
get
(
'key_file'
)
self
.
cert_file
=
configuration_dict
.
get
(
'cert_file'
)
if
not
master_url
:
if
not
master_url
:
raise
ValueError
(
"No option 'master_url'"
)
raise
ValueError
(
"No option 'master_url'"
)
elif
master_url
.
startswith
(
'https'
)
and
\
elif
master_url
.
startswith
(
'https'
)
and
\
not
getattr
(
self
,
'key_file'
,
None
)
and
\
self
.
key_file
is
None
and
\
not
getattr
(
self
,
'cert_file'
,
None
)
:
self
.
cert_file
is
None
:
raise
ValueError
(
"No option 'key_file' and/or 'cert_file'"
)
raise
ValueError
(
"No option 'key_file' and/or 'cert_file'"
)
else
:
else
:
setattr
(
self
,
'master_url'
,
master_url
)
setattr
(
self
,
'master_url'
,
master_url
)
...
@@ -138,9 +177,9 @@ def init(config):
...
@@ -138,9 +177,9 @@ def init(config):
# *args, **kwargs, but without the bad parts, in order to be generic?
# *args, **kwargs, but without the bad parts, in order to be generic?
def
shorthandRequest
(
software_release
,
partition_reference
,
def
shorthandRequest
(
software_release
,
partition_reference
,
partition_parameter_kw
=
None
,
software_type
=
None
,
filter_kw
=
None
,
partition_parameter_kw
=
None
,
software_type
=
None
,
filter_kw
=
None
,
state
=
None
):
state
=
None
,
shared
=
False
):
return
slap
.
registerOpenOrder
().
request
(
software_release
,
partition_reference
,
return
slap
.
registerOpenOrder
().
request
(
software_release
,
partition_reference
,
partition_parameter_kw
,
software_type
,
filter_kw
,
state
)
partition_parameter_kw
,
software_type
,
filter_kw
,
state
,
shared
)
def
shorthandSupply
(
software_release
,
computer_guid
=
None
,
state
=
'available'
):
def
shorthandSupply
(
software_release
,
computer_guid
=
None
,
state
=
'available'
):
return
slap
.
registerSupply
().
supply
(
software_release
,
computer_guid
,
state
)
return
slap
.
registerSupply
().
supply
(
software_release
,
computer_guid
,
state
)
local
[
'request'
]
=
shorthandRequest
local
[
'request'
]
=
shorthandRequest
...
@@ -150,27 +189,26 @@ def init(config):
...
@@ -150,27 +189,26 @@ def init(config):
def
request
():
def
request
():
"""Ran when invoking slapos-request"""
"""Ran when invoking slapos-request"""
# Parse arguments
# Parse arguments
and inititate needed parameters
usage
=
"""usage: %s [options] CONFIGURATION_FILE
SOFTWARE_INSTANCE INSTANCE_REFERE
NCE
usage
=
"""usage: %s [options] CONFIGURATION_FILE
INSTANCE_REFERENCE SOFTWARE_INSTA
NCE
slapos-request allows you to request slapos instances."""
%
sys
.
argv
[
0
]
slapos-request allows you to request slapos instances."""
%
sys
.
argv
[
0
]
config
=
Config
()
config
=
Config
()
options
,
arguments
=
RequestParser
(
usage
=
usage
).
check_args
()
options
=
check_request_args
()
config
.
setConfig
(
options
,
arguments
[
0
])
config
.
setConfig
(
options
,
options
.
configuration_file
)
local
=
init
(
config
)
local
=
init
(
config
)
# Request instance
# Request instance
# XXX-Cedric : support things like :
print
(
"Requesting %s..."
%
config
.
software_url
)
# --instance-type std --configuration-size 23 --computer-region europe/france
if
config
.
software_url
in
local
:
# XXX-Cedric : add support for xml_parameter
config
.
software_url
=
local
[
config
.
software_url
]
software_url
=
arguments
[
1
]
partition_reference
=
arguments
[
2
]
print
(
"Requesting %s..."
%
software_url
)
if
software_url
in
local
:
software_url
=
local
[
software_url
]
try
:
try
:
partition
=
local
[
'slap'
].
registerOpenOrder
().
request
(
software_url
,
partition
=
local
[
'slap'
].
registerOpenOrder
().
request
(
partition_reference
)
software_release
=
config
.
software_url
,
partition_reference
=
config
.
reference
,
partition_parameter_kw
=
config
.
configuration
,
software_type
=
config
.
type
,
filter_kw
=
config
.
node
,
shared
=
config
.
slave
)
print
(
"Instance requested.
\
n
State is : %s.
\
n
You can "
print
(
"Instance requested.
\
n
State is : %s.
\
n
You can "
"rerun to get up-to-date informations."
%
(
"rerun to get up-to-date informations."
%
(
partition
.
getState
()))
partition
.
getState
()))
...
...
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