c24e622578
temporarily commented out run_in_session in util Separated DB tables for clusterhost and host state. Change-Id: Ib4e4c6c1931bbbf62b0b77bc994bffecb0fe27bd
232 lines
6.6 KiB
Python
232 lines
6.6 KiB
Python
# Copyright 2014 Huawei Technologies Co. Ltd
|
|
#
|
|
# 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.
|
|
|
|
"""Module to provider util functions in all compass code
|
|
|
|
.. moduleauthor:: Xiaodong Wang <xiaodongwang@huawei.com>
|
|
"""
|
|
import copy
|
|
import crypt
|
|
import datetime
|
|
import logging
|
|
import os
|
|
import os.path
|
|
import re
|
|
import sys
|
|
|
|
|
|
def parse_datetime(date_time, exception_class=Exception):
|
|
"""Parse datetime str to get datetime object."""
|
|
try:
|
|
return datetime.datetime.strptime(
|
|
date_time, '%Y-%m-%d %H:%M:%S'
|
|
)
|
|
except Exception as error:
|
|
logging.exception(error)
|
|
raise exception_class(
|
|
'date time %s format is invalid' % date_time
|
|
)
|
|
|
|
|
|
def parse_datetime_range(date_time_range, exception_class=Exception):
|
|
"""parse datetime range str to pair of datetime objects."""
|
|
try:
|
|
start, end = date_time_range.split(',')
|
|
except Exception as error:
|
|
logging.exception(error)
|
|
raise exception_class(
|
|
'there is no `,` in date time range %s' % date_time_range
|
|
)
|
|
if start:
|
|
start_datetime = parse_datetime(start, exception_class)
|
|
else:
|
|
start_datetime = None
|
|
if end:
|
|
end_datetime = parse_datetime(end, exception_class)
|
|
else:
|
|
end_datetime = None
|
|
return start_datetime, end_datetime
|
|
|
|
|
|
def parse_request_arg_dict(arg, exception_class=Exception):
|
|
"""parse string to dict."""
|
|
arg_dict = {}
|
|
arg_pairs = arg.split(';')
|
|
for arg_pair in arg_pairs:
|
|
try:
|
|
arg_name, arg_value = arg_pair.split('=', 1)
|
|
except Exception as error:
|
|
logging.exception(error)
|
|
raise exception_class(
|
|
'there is no `=` in %s' % arg_pair
|
|
)
|
|
arg_dict[arg_name] = arg_value
|
|
return arg_dict
|
|
|
|
|
|
def format_datetime(date_time):
|
|
"""Generate string from datetime object."""
|
|
return date_time.strftime("%Y-%m-%d %H:%M:%S")
|
|
|
|
|
|
def merge_dict(lhs, rhs, override=True):
|
|
"""Merge nested right dict into left nested dict recursively.
|
|
|
|
:param lhs: dict to be merged into.
|
|
:type lhs: dict
|
|
:param rhs: dict to merge from.
|
|
:type rhs: dict
|
|
:param override: the value in rhs overide the value in left if True.
|
|
:type override: boolean
|
|
"""
|
|
if not isinstance(lhs, dict) or not isinstance(rhs, dict):
|
|
if override:
|
|
return rhs
|
|
else:
|
|
return lhs
|
|
|
|
for key, value in rhs.items():
|
|
if key not in lhs:
|
|
lhs[key] = rhs[key]
|
|
else:
|
|
lhs[key] = merge_dict(lhs[key], value, override)
|
|
|
|
return lhs
|
|
|
|
|
|
def encrypt(value, crypt_method=None):
|
|
"""Get encrypted value."""
|
|
if not crypt_method:
|
|
if hasattr(crypt, 'METHOD_MD5'):
|
|
crypt_method = crypt.METHOD_MD5
|
|
else:
|
|
# for python2.7, copy python2.6 METHOD_MD5 logic here.
|
|
from random import choice
|
|
import string
|
|
|
|
_saltchars = string.ascii_letters + string.digits + './'
|
|
|
|
def _mksalt():
|
|
"""generate salt."""
|
|
salt = '$1$'
|
|
salt += ''.join(choice(_saltchars) for _ in range(8))
|
|
return salt
|
|
|
|
crypt_method = _mksalt()
|
|
|
|
return crypt.crypt(value, crypt_method)
|
|
|
|
|
|
def parse_time_interval(time_interval_str):
|
|
if not time_interval_str:
|
|
return 0
|
|
|
|
time_interval_tuple = [
|
|
time_interval_element
|
|
for time_interval_element in time_interval_str.split(' ')
|
|
if time_interval_element
|
|
]
|
|
time_interval_dict = {}
|
|
time_interval_unit_mapping = {
|
|
'd': 'days',
|
|
'w': 'weeks',
|
|
'h': 'hours',
|
|
'm': 'minutes',
|
|
's': 'seconds'
|
|
}
|
|
for time_interval_element in time_interval_tuple:
|
|
mat = re.match(r'^([+-]?\d+)(w|d|h|m|s).*', time_interval_element)
|
|
if not mat:
|
|
continue
|
|
|
|
time_interval_value = int(mat.group(1))
|
|
time_interval_unit = time_interval_unit_mapping[mat.group(2)]
|
|
time_interval_dict[time_interval_unit] = (
|
|
time_interval_dict.get(time_interval_unit, 0) + time_interval_value
|
|
)
|
|
|
|
time_interval = datetime.timedelta(**time_interval_dict)
|
|
if sys.version_info[0:2] > (2, 6):
|
|
return time_interval.total_seconds()
|
|
else:
|
|
return (
|
|
time_interval.microseconds + (
|
|
time_interval.seconds + time_interval.days * 24 * 3600
|
|
) * 1e6
|
|
) / 1e6
|
|
|
|
|
|
def load_configs(
|
|
config_dir, config_name_suffix='.conf',
|
|
env_globals={}, env_locals={}
|
|
):
|
|
configs = []
|
|
if not os.path.exists(config_dir):
|
|
logging.debug('path %s does not exist', config_dir)
|
|
return configs
|
|
for component in os.listdir(config_dir):
|
|
if not component.endswith(config_name_suffix):
|
|
continue
|
|
path = os.path.join(config_dir, component)
|
|
config_globals = {}
|
|
config_globals.update(env_globals)
|
|
config_locals = {}
|
|
config_locals.update(env_locals)
|
|
try:
|
|
execfile(path, config_globals, config_locals)
|
|
except Exception as error:
|
|
logging.exception(error)
|
|
raise error
|
|
configs.append(config_locals)
|
|
return configs
|
|
|
|
|
|
def is_instance(instance, expected_types):
|
|
"""Check instance type is in one of expected types.
|
|
|
|
:param instance: instance to check the type.
|
|
:param expected_types: types to check if instance type is in them.
|
|
:type expected_types: list of type
|
|
|
|
:returns: True if instance type is in expect_types.
|
|
"""
|
|
for expected_type in expected_types:
|
|
if isinstance(instance, expected_type):
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
def get_clusters_from_str(clusters_str):
|
|
"""get clusters from string."""
|
|
clusters = {}
|
|
for cluster_and_hosts in clusters_str.split(';'):
|
|
if not cluster_and_hosts:
|
|
continue
|
|
|
|
if ':' in cluster_and_hosts:
|
|
cluster_str, hosts_str = cluster_and_hosts.split(
|
|
':', 1)
|
|
else:
|
|
cluster_str = cluster_and_hosts
|
|
hosts_str = ''
|
|
|
|
hosts = [
|
|
host for host in hosts_str.split(',')
|
|
if host
|
|
]
|
|
clusters[cluster_str] = hosts
|
|
|
|
return clusters
|