
Extracting common metering functins into utils/metering so they can be reused in multiple places. Moving old utils file under utils directory. Change-Id: Id45b6237a68a894721e1b2051f64192781f02f8f
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
# -*- coding: utf8 -*-
|
|
#
|
|
# 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.
|
|
import re
|
|
|
|
CAMEL_RE = re.compile(r'([a-z]|SSL)([A-Z])')
|
|
|
|
|
|
def de_camel_case(text):
|
|
"""Convert CamelCase names to human-readable format."""
|
|
return CAMEL_RE.sub(lambda m: m.group(1) + ' ' + m.group(2), text)
|
|
|
|
|
|
def list_to_dict(object_list, key_attribute='id'):
|
|
"""Converts an object list to a dict
|
|
|
|
:param object_list: list of objects to be put into a dict
|
|
:type object_list: list
|
|
|
|
:param key_attribute: object attribute used as index by dict
|
|
:type key_attribute: str
|
|
|
|
:return: dict containing the objects in the list
|
|
:rtype: dict
|
|
"""
|
|
return dict((getattr(o, key_attribute), o) for o in object_list)
|