2012-04-11 02:20:57 -07:00
|
|
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
|
|
|
|
# Copyright 2011, Nicira Networks, Inc.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# Borrowed from nova code base, more utilities will be added/borrowed as and
|
|
|
|
# when needed.
|
|
|
|
# @author: Somik Behera, Nicira Networks, Inc.
|
|
|
|
|
|
|
|
"""Utilities and helper functions."""
|
|
|
|
|
|
|
|
import datetime
|
|
|
|
import json
|
2012-05-18 09:02:29 +08:00
|
|
|
import logging
|
2012-04-11 02:20:57 -07:00
|
|
|
import os
|
2012-05-18 09:02:29 +08:00
|
|
|
import sys
|
|
|
|
|
2013-11-15 23:18:59 -05:00
|
|
|
from neutronclient.common import _
|
2013-07-02 18:44:42 -04:00
|
|
|
from neutronclient.common import exceptions
|
|
|
|
from neutronclient.openstack.common import strutils
|
2012-04-11 02:20:57 -07:00
|
|
|
|
|
|
|
|
|
|
|
def env(*vars, **kwargs):
|
2013-06-10 22:04:56 +09:00
|
|
|
"""Returns the first environment variable set.
|
|
|
|
|
|
|
|
if none are non-empty, defaults to '' or keyword arg default.
|
2012-04-11 02:20:57 -07:00
|
|
|
"""
|
|
|
|
for v in vars:
|
|
|
|
value = os.environ.get(v)
|
|
|
|
if value:
|
|
|
|
return value
|
|
|
|
return kwargs.get('default', '')
|
|
|
|
|
|
|
|
|
|
|
|
def to_primitive(value):
|
2012-05-18 09:02:29 +08:00
|
|
|
if isinstance(value, list) or isinstance(value, tuple):
|
2012-04-11 02:20:57 -07:00
|
|
|
o = []
|
|
|
|
for v in value:
|
|
|
|
o.append(to_primitive(v))
|
|
|
|
return o
|
2012-05-18 09:02:29 +08:00
|
|
|
elif isinstance(value, dict):
|
2012-04-11 02:20:57 -07:00
|
|
|
o = {}
|
|
|
|
for k, v in value.iteritems():
|
|
|
|
o[k] = to_primitive(v)
|
|
|
|
return o
|
|
|
|
elif isinstance(value, datetime.datetime):
|
|
|
|
return str(value)
|
|
|
|
elif hasattr(value, 'iteritems'):
|
|
|
|
return to_primitive(dict(value.iteritems()))
|
|
|
|
elif hasattr(value, '__iter__'):
|
|
|
|
return to_primitive(list(value))
|
|
|
|
else:
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
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
|
|
|
def dumps(value, indent=None):
|
2012-04-11 02:20:57 -07:00
|
|
|
try:
|
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
|
|
|
return json.dumps(value, indent=indent)
|
2012-04-11 02:20:57 -07:00
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
return json.dumps(to_primitive(value))
|
|
|
|
|
|
|
|
|
|
|
|
def loads(s):
|
|
|
|
return json.loads(s)
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
def import_class(import_str):
|
2013-06-10 22:04:56 +09:00
|
|
|
"""Returns a class from a string including module and class.
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
:param import_str: a string representation of the class name
|
|
|
|
:rtype: the requested class
|
|
|
|
"""
|
|
|
|
mod_str, _sep, class_str = import_str.rpartition('.')
|
|
|
|
__import__(mod_str)
|
|
|
|
return getattr(sys.modules[mod_str], class_str)
|
|
|
|
|
|
|
|
|
|
|
|
def get_client_class(api_name, version, version_map):
|
|
|
|
"""Returns the client class for the requested API version
|
|
|
|
|
|
|
|
:param api_name: the name of the API, e.g. 'compute', 'image', etc
|
|
|
|
:param version: the requested API version
|
|
|
|
:param version_map: a dict of client classes keyed by version
|
|
|
|
:rtype: a client class for the requested API version
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
client_path = version_map[str(version)]
|
|
|
|
except (KeyError, ValueError):
|
2013-11-15 23:18:59 -05:00
|
|
|
msg = _("Invalid %(api_name)s client version '%(version)s'. must be "
|
|
|
|
"one of: %(map_keys)s")
|
|
|
|
msg = msg % {'api_name': api_name, 'version': version,
|
|
|
|
'map_keys': ', '.join(version_map.keys())}
|
2012-05-18 09:02:29 +08:00
|
|
|
raise exceptions.UnsupportedVersion(msg)
|
|
|
|
|
|
|
|
return import_class(client_path)
|
|
|
|
|
|
|
|
|
|
|
|
def get_item_properties(item, fields, mixed_case_fields=[], formatters={}):
|
|
|
|
"""Return a tuple containing the item properties.
|
|
|
|
|
|
|
|
:param item: a single item resource (e.g. Server, Tenant, etc)
|
|
|
|
:param fields: tuple of strings with the desired field names
|
|
|
|
:param mixed_case_fields: tuple of field names to preserve case
|
|
|
|
:param formatters: dictionary mapping field names to callables
|
|
|
|
to format the values
|
|
|
|
"""
|
|
|
|
row = []
|
|
|
|
|
|
|
|
for field in fields:
|
|
|
|
if field in formatters:
|
|
|
|
row.append(formatters[field](item))
|
|
|
|
else:
|
|
|
|
if field in mixed_case_fields:
|
|
|
|
field_name = field.replace(' ', '_')
|
|
|
|
else:
|
|
|
|
field_name = field.lower().replace(' ', '_')
|
|
|
|
if not hasattr(item, field_name) and isinstance(item, dict):
|
|
|
|
data = item[field_name]
|
|
|
|
else:
|
|
|
|
data = getattr(item, field_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 data is None:
|
|
|
|
data = ''
|
2012-05-18 09:02:29 +08:00
|
|
|
row.append(data)
|
|
|
|
return tuple(row)
|
|
|
|
|
|
|
|
|
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
|
|
|
def str2bool(strbool):
|
2012-05-18 09:02:29 +08:00
|
|
|
if strbool is None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return strbool.lower() == 'true'
|
|
|
|
|
|
|
|
|
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
|
|
|
def str2dict(strdict):
|
2013-06-10 22:04:56 +09:00
|
|
|
'''Convert key1=value1,key2=value2,... string into dictionary.
|
2013-04-05 23:20:45 +00:00
|
|
|
|
|
|
|
:param strdict: key1=value1,key2=value2
|
|
|
|
'''
|
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
|
|
|
_info = {}
|
|
|
|
for kv_str in strdict.split(","):
|
|
|
|
k, v = kv_str.split("=", 1)
|
|
|
|
_info.update({k: v})
|
|
|
|
return _info
|
|
|
|
|
|
|
|
|
2012-11-09 19:36:30 +08:00
|
|
|
def http_log_req(_logger, args, kwargs):
|
|
|
|
if not _logger.isEnabledFor(logging.DEBUG):
|
|
|
|
return
|
|
|
|
|
|
|
|
string_parts = ['curl -i']
|
|
|
|
for element in args:
|
|
|
|
if element in ('GET', 'POST', 'DELETE', 'PUT'):
|
|
|
|
string_parts.append(' -X %s' % element)
|
|
|
|
else:
|
|
|
|
string_parts.append(' %s' % element)
|
|
|
|
|
|
|
|
for element in kwargs['headers']:
|
|
|
|
header = ' -H "%s: %s"' % (element, kwargs['headers'][element])
|
|
|
|
string_parts.append(header)
|
|
|
|
|
|
|
|
if 'body' in kwargs and kwargs['body']:
|
|
|
|
string_parts.append(" -d '%s'" % (kwargs['body']))
|
2013-04-01 13:27:28 +08:00
|
|
|
string_parts = safe_encode_list(string_parts)
|
2013-11-15 23:18:59 -05:00
|
|
|
_logger.debug(_("\nREQ: %s\n"), "".join(string_parts))
|
2012-05-18 09:02:29 +08:00
|
|
|
|
|
|
|
|
2012-11-09 19:36:30 +08:00
|
|
|
def http_log_resp(_logger, resp, body):
|
|
|
|
if not _logger.isEnabledFor(logging.DEBUG):
|
|
|
|
return
|
2013-11-15 23:18:59 -05:00
|
|
|
_logger.debug(_("RESP:%(resp)s %(body)s\n"), {'resp': resp, 'body': body})
|
2013-04-01 13:27:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
def _safe_encode_without_obj(data):
|
|
|
|
if isinstance(data, basestring):
|
|
|
|
return strutils.safe_encode(data)
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
|
def safe_encode_list(data):
|
|
|
|
return map(_safe_encode_without_obj, data)
|
|
|
|
|
|
|
|
|
|
|
|
def safe_encode_dict(data):
|
|
|
|
def _encode_item((k, v)):
|
|
|
|
if isinstance(v, list):
|
|
|
|
return (k, safe_encode_list(v))
|
|
|
|
elif isinstance(v, dict):
|
|
|
|
return (k, safe_encode_dict(v))
|
|
|
|
return (k, _safe_encode_without_obj(v))
|
|
|
|
|
|
|
|
return dict(map(_encode_item, data.items()))
|