2012-05-18 09:02:29 +08:00
|
|
|
# Copyright 2012 OpenStack LLC.
|
|
|
|
# All Rights Reserved
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
|
|
|
|
"""
|
|
|
|
Command-line interface to the Quantum APIs
|
|
|
|
"""
|
2012-12-31 22:25:00 +08:00
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
import argparse
|
|
|
|
import gettext
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from cliff.app import App
|
|
|
|
from cliff.commandmanager import CommandManager
|
|
|
|
|
|
|
|
from quantumclient.common import clientmanager
|
|
|
|
from quantumclient.common import exceptions as exc
|
|
|
|
from quantumclient.common import utils
|
|
|
|
|
|
|
|
|
|
|
|
VERSION = '2.0'
|
2012-07-06 12:22:54 +08:00
|
|
|
QUANTUM_API_VERSION = '2.0'
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
|
2012-07-06 12:22:54 +08:00
|
|
|
def env(*_vars, **kwargs):
|
2012-05-18 09:02:29 +08:00
|
|
|
"""Search for the first defined of possibly many env vars
|
|
|
|
|
|
|
|
Returns the first environment variable defined in vars, or
|
|
|
|
returns the default defined in kwargs.
|
|
|
|
|
|
|
|
"""
|
2012-07-06 12:22:54 +08:00
|
|
|
for v in _vars:
|
2012-05-18 09:02:29 +08:00
|
|
|
value = os.environ.get(v, None)
|
|
|
|
if value:
|
|
|
|
return value
|
|
|
|
return kwargs.get('default', '')
|
|
|
|
|
|
|
|
|
|
|
|
COMMAND_V2 = {
|
2012-07-05 15:01:39 +08:00
|
|
|
'net-list': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.network.ListNetwork'),
|
2012-10-10 17:24:35 +08:00
|
|
|
'net-external-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.network.ListExternalNetwork'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'net-show': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.network.ShowNetwork'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'net-create': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.network.CreateNetwork'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'net-delete': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.network.DeleteNetwork'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'net-update': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.network.UpdateNetwork'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'subnet-list': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.subnet.ListSubnet'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'subnet-show': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.subnet.ShowSubnet'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'subnet-create': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.subnet.CreateSubnet'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'subnet-delete': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.subnet.DeleteSubnet'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'subnet-update': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.subnet.UpdateSubnet'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'port-list': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.port.ListPort'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'port-show': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.port.ShowPort'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'port-create': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.port.CreatePort'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'port-delete': utils.import_class(
|
2012-05-18 09:02:29 +08:00
|
|
|
'quantumclient.quantum.v2_0.port.DeletePort'),
|
2012-07-05 15:01:39 +08:00
|
|
|
'port-update': utils.import_class(
|
2012-07-29 20:30:32 +08:00
|
|
|
'quantumclient.quantum.v2_0.port.UpdatePort'),
|
|
|
|
'quota-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.quota.ListQuota'),
|
|
|
|
'quota-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.quota.ShowQuota'),
|
|
|
|
'quota-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.quota.DeleteQuota'),
|
|
|
|
'quota-update': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.quota.UpdateQuota'),
|
2012-08-12 07:33:10 +08:00
|
|
|
'ext-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.extension.ListExt'),
|
|
|
|
'ext-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.extension.ShowExt'),
|
2012-08-21 01:54:17 -07:00
|
|
|
'router-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.ListRouter'),
|
2012-10-10 17:24:35 +08:00
|
|
|
'router-port-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.port.ListRouterPort'),
|
2012-08-21 01:54:17 -07:00
|
|
|
'router-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.ShowRouter'),
|
|
|
|
'router-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.CreateRouter'),
|
|
|
|
'router-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.DeleteRouter'),
|
|
|
|
'router-update': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.UpdateRouter'),
|
|
|
|
'router-interface-add': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.AddInterfaceRouter'),
|
|
|
|
'router-interface-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.RemoveInterfaceRouter'),
|
|
|
|
'router-gateway-set': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.SetGatewayRouter'),
|
|
|
|
'router-gateway-clear': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.router.RemoveGatewayRouter'),
|
|
|
|
'floatingip-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.floatingip.ListFloatingIP'),
|
|
|
|
'floatingip-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.floatingip.ShowFloatingIP'),
|
|
|
|
'floatingip-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.floatingip.CreateFloatingIP'),
|
|
|
|
'floatingip-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.floatingip.DeleteFloatingIP'),
|
|
|
|
'floatingip-associate': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.floatingip.AssociateFloatingIP'),
|
|
|
|
'floatingip-disassociate': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.floatingip.DisassociateFloatingIP'),
|
2012-10-08 23:14:22 -07:00
|
|
|
'security-group-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.ListSecurityGroup'),
|
|
|
|
'security-group-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.ShowSecurityGroup'),
|
|
|
|
'security-group-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.CreateSecurityGroup'),
|
|
|
|
'security-group-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.DeleteSecurityGroup'),
|
|
|
|
'security-group-rule-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.ListSecurityGroupRule'),
|
|
|
|
'security-group-rule-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.ShowSecurityGroupRule'),
|
|
|
|
'security-group-rule-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.CreateSecurityGroupRule'),
|
|
|
|
'security-group-rule-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.securitygroup.DeleteSecurityGroupRule'),
|
The change implements LBaaS CLI commands.
Implements: blueprint lbaas-cli
New commands:
* Vip: lb-vip-create, lb-vip-list, lb-vip-show, lb-vip-update,
lb-vip-delete
* Pool: lb-pool-create, lb-pool-list, lb-pool-show, lb-pool-update,
lb-pool-delete, lb-pool-stats
* Member: lb-member-create, lb-member-list, lb-member-show,
lb-member-update, lb-member-delete
* Health Monitor: lb-healthmonitor-create, lb-healthmonitor-list,
lb-healthmonitor-show, lb-healthmonitor-update, lb-healthmonitor-delete,
lb-healthmonitor-associate, lb-healthmonitor-disassociate
Change-Id: Idaa569024c24955886a836e3dfedd009fed87007
2012-12-19 17:40:00 +04:00
|
|
|
'lb-vip-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.vip.ListVip'),
|
|
|
|
'lb-vip-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.vip.ShowVip'),
|
|
|
|
'lb-vip-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.vip.CreateVip'),
|
|
|
|
'lb-vip-update': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.vip.UpdateVip'),
|
|
|
|
'lb-vip-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.vip.DeleteVip'),
|
|
|
|
'lb-pool-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.pool.ListPool'),
|
|
|
|
'lb-pool-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.pool.ShowPool'),
|
|
|
|
'lb-pool-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.pool.CreatePool'),
|
|
|
|
'lb-pool-update': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.pool.UpdatePool'),
|
|
|
|
'lb-pool-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.pool.DeletePool'),
|
|
|
|
'lb-pool-stats': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.pool.RetrievePoolStats'),
|
|
|
|
'lb-member-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.member.ListMember'),
|
|
|
|
'lb-member-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.member.ShowMember'),
|
|
|
|
'lb-member-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.member.CreateMember'),
|
|
|
|
'lb-member-update': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.member.UpdateMember'),
|
|
|
|
'lb-member-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.member.DeleteMember'),
|
|
|
|
'lb-healthmonitor-list': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.healthmonitor.ListHealthMonitor'),
|
|
|
|
'lb-healthmonitor-show': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.healthmonitor.ShowHealthMonitor'),
|
|
|
|
'lb-healthmonitor-create': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.healthmonitor.CreateHealthMonitor'),
|
|
|
|
'lb-healthmonitor-update': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.healthmonitor.UpdateHealthMonitor'),
|
|
|
|
'lb-healthmonitor-delete': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.healthmonitor.DeleteHealthMonitor'),
|
|
|
|
'lb-healthmonitor-associate': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.healthmonitor.AssociateHealthMonitor'),
|
|
|
|
'lb-healthmonitor-disassociate': utils.import_class(
|
|
|
|
'quantumclient.quantum.v2_0.lb.healthmonitor'
|
|
|
|
'.DisassociateHealthMonitor'),
|
2012-07-29 20:30:32 +08:00
|
|
|
}
|
2012-05-18 09:02:29 +08:00
|
|
|
|
2012-07-06 12:22:54 +08:00
|
|
|
COMMANDS = {'2.0': COMMAND_V2}
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
class HelpAction(argparse.Action):
|
|
|
|
"""Provide a custom action so the -h and --help options
|
|
|
|
to the main app will print a list of the commands.
|
|
|
|
|
|
|
|
The commands are determined by checking the CommandManager
|
|
|
|
instance, passed in as the "default" value for the action.
|
|
|
|
"""
|
|
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
2012-12-05 12:17:00 +00:00
|
|
|
outputs = []
|
|
|
|
max_len = 0
|
2012-05-18 09:02:29 +08:00
|
|
|
app = self.default
|
|
|
|
parser.print_help(app.stdout)
|
|
|
|
app.stdout.write('\nCommands for API v%s:\n' % app.api_version)
|
|
|
|
command_manager = app.command_manager
|
|
|
|
for name, ep in sorted(command_manager):
|
|
|
|
factory = ep.load()
|
|
|
|
cmd = factory(self, None)
|
|
|
|
one_liner = cmd.get_description().split('\n')[0]
|
2012-12-05 12:17:00 +00:00
|
|
|
outputs.append((name, one_liner))
|
|
|
|
max_len = max(len(name), max_len)
|
|
|
|
for (name, one_liner) in outputs:
|
|
|
|
app.stdout.write(' %s %s\n' % (name.ljust(max_len), one_liner))
|
2012-05-18 09:02:29 +08:00
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
|
|
|
|
class QuantumShell(App):
|
|
|
|
|
2012-08-12 11:38:58 +08:00
|
|
|
CONSOLE_MESSAGE_FORMAT = '%(message)s'
|
|
|
|
DEBUG_MESSAGE_FORMAT = '%(levelname)s: %(name)s %(message)s'
|
2012-05-18 09:02:29 +08:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def __init__(self, apiversion):
|
|
|
|
super(QuantumShell, self).__init__(
|
|
|
|
description=__doc__.strip(),
|
|
|
|
version=VERSION,
|
|
|
|
command_manager=CommandManager('quantum.cli'), )
|
|
|
|
for k, v in COMMANDS[apiversion].items():
|
|
|
|
self.command_manager.add_command(k, v)
|
|
|
|
|
|
|
|
# This is instantiated in initialize_app() only when using
|
|
|
|
# password flow auth
|
|
|
|
self.auth_client = None
|
|
|
|
self.api_version = apiversion
|
|
|
|
|
|
|
|
def build_option_parser(self, description, version):
|
|
|
|
"""Return an argparse option parser for this application.
|
|
|
|
|
|
|
|
Subclasses may override this method to extend
|
|
|
|
the parser with more global options.
|
|
|
|
|
|
|
|
:param description: full description of the application
|
|
|
|
:paramtype description: str
|
|
|
|
:param version: version number for the application
|
|
|
|
:paramtype version: str
|
|
|
|
"""
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description=description,
|
|
|
|
add_help=False, )
|
|
|
|
parser.add_argument(
|
|
|
|
'--version',
|
|
|
|
action='version',
|
|
|
|
version='%(prog)s {0}'.format(version), )
|
|
|
|
parser.add_argument(
|
|
|
|
'-v', '--verbose',
|
|
|
|
action='count',
|
|
|
|
dest='verbose_level',
|
|
|
|
default=self.DEFAULT_VERBOSE_LEVEL,
|
|
|
|
help='Increase verbosity of output. Can be repeated.', )
|
|
|
|
parser.add_argument(
|
|
|
|
'-q', '--quiet',
|
|
|
|
action='store_const',
|
|
|
|
dest='verbose_level',
|
|
|
|
const=0,
|
|
|
|
help='suppress output except warnings and errors', )
|
|
|
|
parser.add_argument(
|
2012-07-11 14:44:31 +09:00
|
|
|
'-h', '--help',
|
2012-05-18 09:02:29 +08:00
|
|
|
action=HelpAction,
|
|
|
|
nargs=0,
|
|
|
|
default=self, # tricky
|
|
|
|
help="show this help message and exit", )
|
|
|
|
parser.add_argument(
|
|
|
|
'--debug',
|
|
|
|
default=False,
|
|
|
|
action='store_true',
|
|
|
|
help='show tracebacks on errors', )
|
|
|
|
# Global arguments
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-auth-strategy', metavar='<auth-strategy>',
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
default=env('OS_AUTH_STRATEGY', default='keystone'),
|
|
|
|
help='Authentication strategy (Env: OS_AUTH_STRATEGY'
|
|
|
|
', default keystone). For now, any other value will'
|
|
|
|
' disable the authentication')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_auth_strategy',
|
|
|
|
help=argparse.SUPPRESS)
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-auth-url', metavar='<auth-url>',
|
2012-05-18 09:02:29 +08:00
|
|
|
default=env('OS_AUTH_URL'),
|
|
|
|
help='Authentication URL (Env: OS_AUTH_URL)')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_auth_url',
|
|
|
|
help=argparse.SUPPRESS)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-tenant-name', metavar='<auth-tenant-name>',
|
2012-05-18 09:02:29 +08:00
|
|
|
default=env('OS_TENANT_NAME'),
|
|
|
|
help='Authentication tenant name (Env: OS_TENANT_NAME)')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_tenant_name',
|
|
|
|
help=argparse.SUPPRESS)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-username', metavar='<auth-username>',
|
2012-05-18 09:02:29 +08:00
|
|
|
default=utils.env('OS_USERNAME'),
|
|
|
|
help='Authentication username (Env: OS_USERNAME)')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_username',
|
|
|
|
help=argparse.SUPPRESS)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-password', metavar='<auth-password>',
|
2012-05-18 09:02:29 +08:00
|
|
|
default=utils.env('OS_PASSWORD'),
|
|
|
|
help='Authentication password (Env: OS_PASSWORD)')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_password',
|
|
|
|
help=argparse.SUPPRESS)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-region-name', metavar='<auth-region-name>',
|
2012-05-18 09:02:29 +08:00
|
|
|
default=env('OS_REGION_NAME'),
|
|
|
|
help='Authentication region name (Env: OS_REGION_NAME)')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_region_name',
|
|
|
|
help=argparse.SUPPRESS)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-token', metavar='<token>',
|
2012-05-18 09:02:29 +08:00
|
|
|
default=env('OS_TOKEN'),
|
|
|
|
help='Defaults to env[OS_TOKEN]')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_token',
|
|
|
|
help=argparse.SUPPRESS)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
parser.add_argument(
|
2012-08-23 13:09:54 -05:00
|
|
|
'--os-url', metavar='<url>',
|
2012-05-18 09:02:29 +08:00
|
|
|
default=env('OS_URL'),
|
|
|
|
help='Defaults to env[OS_URL]')
|
2012-08-23 13:09:54 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--os_url',
|
|
|
|
help=argparse.SUPPRESS)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
return parser
|
|
|
|
|
2012-10-08 18:48:26 +08:00
|
|
|
def _bash_completion(self):
|
|
|
|
"""
|
|
|
|
Prints all of the commands and options to stdout so that the
|
|
|
|
quantum's bash-completion script doesn't have to hard code them.
|
|
|
|
"""
|
|
|
|
commands = set()
|
|
|
|
options = set()
|
|
|
|
for option, _action in self.parser._option_string_actions.items():
|
|
|
|
options.add(option)
|
|
|
|
for command_name, command in self.command_manager:
|
|
|
|
commands.add(command_name)
|
|
|
|
cmd_factory = command.load()
|
|
|
|
cmd = cmd_factory(self, None)
|
|
|
|
cmd_parser = cmd.get_parser('')
|
|
|
|
for option, _action in cmd_parser._option_string_actions.items():
|
|
|
|
options.add(option)
|
|
|
|
print ' '.join(commands | options)
|
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def run(self, argv):
|
|
|
|
"""Equivalent to the main program for the application.
|
|
|
|
|
|
|
|
:param argv: input arguments and options
|
|
|
|
:paramtype argv: list of str
|
|
|
|
"""
|
|
|
|
try:
|
2012-08-12 11:16:47 +08:00
|
|
|
index = 0
|
|
|
|
command_pos = -1
|
|
|
|
help_pos = -1
|
2012-12-31 02:47:53 +09:00
|
|
|
help_command_pos = -1
|
2012-08-12 11:16:47 +08:00
|
|
|
for arg in argv:
|
2012-10-08 18:48:26 +08:00
|
|
|
if arg == 'bash-completion':
|
|
|
|
self._bash_completion()
|
|
|
|
return 0
|
2012-08-12 11:16:47 +08:00
|
|
|
if arg in COMMANDS[self.api_version]:
|
|
|
|
if command_pos == -1:
|
|
|
|
command_pos = index
|
|
|
|
elif arg in ('-h', '--help'):
|
|
|
|
if help_pos == -1:
|
|
|
|
help_pos = index
|
2012-12-31 02:47:53 +09:00
|
|
|
elif arg == 'help':
|
|
|
|
if help_command_pos == -1:
|
|
|
|
help_command_pos = index
|
2012-08-12 11:16:47 +08:00
|
|
|
index = index + 1
|
|
|
|
if command_pos > -1 and help_pos > command_pos:
|
|
|
|
argv = ['help', argv[command_pos]]
|
2012-12-31 02:47:53 +09:00
|
|
|
if help_command_pos > -1 and command_pos == -1:
|
|
|
|
argv[help_command_pos] = '--help'
|
2012-05-18 09:02:29 +08:00
|
|
|
self.options, remainder = self.parser.parse_known_args(argv)
|
|
|
|
self.configure_logging()
|
|
|
|
self.interactive_mode = not remainder
|
|
|
|
self.initialize_app(remainder)
|
|
|
|
except Exception as err:
|
|
|
|
if self.options.debug:
|
|
|
|
self.log.exception(err)
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
self.log.error(err)
|
|
|
|
return 1
|
|
|
|
result = 1
|
|
|
|
if self.interactive_mode:
|
|
|
|
_argv = [sys.argv[0]]
|
|
|
|
sys.argv = _argv
|
|
|
|
result = self.interact()
|
|
|
|
else:
|
|
|
|
result = self.run_subcommand(remainder)
|
|
|
|
return result
|
|
|
|
|
2012-12-11 23:40:16 +08:00
|
|
|
def run_subcommand(self, argv):
|
|
|
|
subcommand = self.command_manager.find_command(argv)
|
|
|
|
cmd_factory, cmd_name, sub_argv = subcommand
|
|
|
|
cmd = cmd_factory(self, self.options)
|
|
|
|
err = None
|
|
|
|
result = 1
|
|
|
|
try:
|
|
|
|
self.prepare_to_run_command(cmd)
|
|
|
|
full_name = (cmd_name
|
|
|
|
if self.interactive_mode
|
|
|
|
else ' '.join([self.NAME, cmd_name])
|
|
|
|
)
|
|
|
|
cmd_parser = cmd.get_parser(full_name)
|
|
|
|
known_args, values_specs = cmd_parser.parse_known_args(sub_argv)
|
|
|
|
cmd.values_specs = values_specs
|
|
|
|
result = cmd.run(known_args)
|
|
|
|
except Exception as err:
|
|
|
|
if self.options.debug:
|
|
|
|
self.log.exception(err)
|
|
|
|
else:
|
|
|
|
self.log.error(err)
|
|
|
|
try:
|
|
|
|
self.clean_up(cmd, result, err)
|
|
|
|
except Exception as err2:
|
|
|
|
if self.options.debug:
|
|
|
|
self.log.exception(err2)
|
|
|
|
else:
|
|
|
|
self.log.error('Could not clean up: %s', err2)
|
|
|
|
if self.options.debug:
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
self.clean_up(cmd, result, None)
|
|
|
|
except Exception as err3:
|
|
|
|
if self.options.debug:
|
|
|
|
self.log.exception(err3)
|
|
|
|
else:
|
|
|
|
self.log.error('Could not clean up: %s', err3)
|
|
|
|
return result
|
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
def authenticate_user(self):
|
|
|
|
"""Make sure the user has provided all of the authentication
|
|
|
|
info we need.
|
|
|
|
"""
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
if self.options.os_auth_strategy == 'keystone':
|
|
|
|
if self.options.os_token or self.options.os_url:
|
|
|
|
# Token flow auth takes priority
|
|
|
|
if not self.options.os_token:
|
|
|
|
raise exc.CommandError(
|
|
|
|
"You must provide a token via"
|
2012-08-23 13:09:54 -05:00
|
|
|
" either --os-token or env[OS_TOKEN]")
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
|
|
|
|
if not self.options.os_url:
|
|
|
|
raise exc.CommandError(
|
|
|
|
"You must provide a service URL via"
|
2012-08-23 13:09:54 -05:00
|
|
|
" either --os-url or env[OS_URL]")
|
2012-05-18 09:02:29 +08:00
|
|
|
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
else:
|
|
|
|
# Validate password flow auth
|
|
|
|
if not self.options.os_username:
|
|
|
|
raise exc.CommandError(
|
|
|
|
"You must provide a username via"
|
2012-08-23 13:09:54 -05:00
|
|
|
" either --os-username or env[OS_USERNAME]")
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
|
|
|
|
if not self.options.os_password:
|
|
|
|
raise exc.CommandError(
|
|
|
|
"You must provide a password via"
|
2012-08-23 13:09:54 -05:00
|
|
|
" either --os-password or env[OS_PASSWORD]")
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
|
|
|
|
if not (self.options.os_tenant_name):
|
|
|
|
raise exc.CommandError(
|
|
|
|
"You must provide a tenant_name via"
|
2012-08-23 13:09:54 -05:00
|
|
|
" either --os-tenant-name or via env[OS_TENANT_NAME]")
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
|
|
|
|
if not self.options.os_auth_url:
|
|
|
|
raise exc.CommandError(
|
|
|
|
"You must provide an auth url via"
|
2012-08-23 13:09:54 -05:00
|
|
|
" either --os-auth-url or via env[OS_AUTH_URL]")
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
else: # not keystone
|
2012-05-18 09:02:29 +08:00
|
|
|
if not self.options.os_url:
|
|
|
|
raise exc.CommandError(
|
|
|
|
"You must provide a service URL via"
|
2012-08-23 13:09:54 -05:00
|
|
|
" either --os-url or env[OS_URL]")
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
self.client_manager = clientmanager.ClientManager(
|
|
|
|
token=self.options.os_token,
|
|
|
|
url=self.options.os_url,
|
|
|
|
auth_url=self.options.os_auth_url,
|
|
|
|
tenant_name=self.options.os_tenant_name,
|
|
|
|
username=self.options.os_username,
|
|
|
|
password=self.options.os_password,
|
|
|
|
region_name=self.options.os_region_name,
|
add --fixed-ip argument to create port
add --fixed-ip argument to create port and add list and dict type for unknow option
now we can use known option feature:
quantumv2 create_port --fixed-ip subnet_id=<id>,ip_address=<ip>
--fixed-ip subnet_id=<id>, ip_address=<ip2> network_id
or unknown option feature:
one ip:
quantumv2 create_port network_id --fixed_ips type=dict list=true subnet_id=<id>,ip_address=<ip>
two ips:
quantumv2 create_port network_id --fixed_ips type=dict subnet_id=<id>,ip_address=<ip> subnet_id=<id>,ip_address=<ip2>
to create port
Please download: https://review.openstack.org/#/c/8794/4 and
set core_plugin = quantum.db.db_base_plugin_v2.QuantumDbPluginV2 on quantum server side
Patch 2: support cliff 1.0
Patch 3: support specify auth strategy, for now, any other auth strategy than keystone will disable auth,
format port output
Patch 4: format None as '' when outputing, deal with list of dict, add QUANTUMCLIENT_DEBUG env to enable http req/resp print,
which is helpful for testing nova integration
Patch 5: fix interactive mode, and initialize_app problem
Change-Id: I693848c75055d1947862d55f4b538c1dfb1e86db
2012-06-24 16:11:11 +08:00
|
|
|
api_version=self.api_version,
|
|
|
|
auth_strategy=self.options.os_auth_strategy, )
|
2012-05-18 09:02:29 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
def initialize_app(self, argv):
|
|
|
|
"""Global app init bits:
|
|
|
|
|
|
|
|
* set up API versions
|
|
|
|
* validate authentication info
|
|
|
|
"""
|
|
|
|
|
|
|
|
super(QuantumShell, self).initialize_app(argv)
|
|
|
|
|
2012-07-06 12:22:54 +08:00
|
|
|
self.api_version = {'network': self.api_version}
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
# If the user is not asking for help, make sure they
|
|
|
|
# have given us auth.
|
|
|
|
cmd_name = None
|
|
|
|
if argv:
|
|
|
|
cmd_info = self.command_manager.find_command(argv)
|
|
|
|
cmd_factory, cmd_name, sub_argv = cmd_info
|
|
|
|
if self.interactive_mode or cmd_name != 'help':
|
|
|
|
self.authenticate_user()
|
|
|
|
|
|
|
|
def clean_up(self, cmd, result, err):
|
|
|
|
self.log.debug('clean_up %s', cmd.__class__.__name__)
|
|
|
|
if err:
|
|
|
|
self.log.debug('got an error: %s', err)
|
|
|
|
|
2012-08-12 11:38:58 +08:00
|
|
|
def configure_logging(self):
|
|
|
|
"""Create logging handlers for any log output.
|
|
|
|
"""
|
|
|
|
root_logger = logging.getLogger('')
|
|
|
|
|
|
|
|
# Set up logging to a file
|
|
|
|
root_logger.setLevel(logging.DEBUG)
|
|
|
|
|
|
|
|
# Send higher-level messages to the console via stderr
|
|
|
|
console = logging.StreamHandler(self.stderr)
|
|
|
|
console_level = {0: logging.WARNING,
|
|
|
|
1: logging.INFO,
|
|
|
|
2: logging.DEBUG,
|
|
|
|
}.get(self.options.verbose_level, logging.DEBUG)
|
|
|
|
console.setLevel(console_level)
|
|
|
|
if logging.DEBUG == console_level:
|
|
|
|
formatter = logging.Formatter(self.DEBUG_MESSAGE_FORMAT)
|
|
|
|
else:
|
|
|
|
formatter = logging.Formatter(self.CONSOLE_MESSAGE_FORMAT)
|
|
|
|
console.setFormatter(formatter)
|
|
|
|
root_logger.addHandler(console)
|
|
|
|
return
|
|
|
|
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
def main(argv=sys.argv[1:]):
|
2013-01-19 21:39:40 +08:00
|
|
|
gettext.install('quantumclient', unicode=1)
|
2012-05-18 09:02:29 +08:00
|
|
|
try:
|
2012-07-06 12:22:54 +08:00
|
|
|
return QuantumShell(QUANTUM_API_VERSION).run(argv)
|
2012-05-18 09:02:29 +08:00
|
|
|
except exc.QuantumClientException:
|
|
|
|
return 1
|
|
|
|
except Exception as e:
|
|
|
|
print e
|
|
|
|
return 1
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(main(sys.argv[1:]))
|