ee94c48806
Log messages are no longer being translated. This removes all use of the _LE, _LI, and _LW translation markers to simplify logging and to avoid confusion with new contributions. See: http://lists.openstack.org/pipermail/openstack-i18n/2016-November/002574.html http://lists.openstack.org/pipermail/openstack-dev/2017-March/113365.html Change-Id: I0a2263090899a86ff922f00feb92d440f9226c4b Closes-Bug: #1674374
104 lines
3.2 KiB
Python
104 lines
3.2 KiB
Python
#
|
|
# Copyright 2015 Rackspace, Inc
|
|
# 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.
|
|
|
|
import logging
|
|
import os
|
|
|
|
import appdirs
|
|
import dogpile.cache
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
AUTHOR = 'openstack'
|
|
PROGNAME = 'python-ironicclient'
|
|
|
|
CACHE = None
|
|
CACHE_DIR = appdirs.user_cache_dir(PROGNAME, AUTHOR)
|
|
CACHE_EXPIRY_ENV_VAR = 'IRONICCLIENT_CACHE_EXPIRY' # environment variable
|
|
CACHE_FILENAME = os.path.join(CACHE_DIR, 'ironic-api-version.dbm')
|
|
DEFAULT_EXPIRY = 300 # seconds
|
|
|
|
|
|
def _get_cache():
|
|
"""Configure file caching."""
|
|
global CACHE
|
|
if CACHE is None:
|
|
|
|
# Ensure cache directory present
|
|
if not os.path.exists(CACHE_DIR):
|
|
os.makedirs(CACHE_DIR)
|
|
|
|
# Use the cache expiry if specified in an env var
|
|
expiry_time = os.environ.get(CACHE_EXPIRY_ENV_VAR, DEFAULT_EXPIRY)
|
|
try:
|
|
expiry_time = int(expiry_time)
|
|
except ValueError:
|
|
LOG.warning("Environment variable %(env_var)s should be an "
|
|
"integer (not '%(curr_val)s'). Using default "
|
|
"expiry of %(default)s seconds instead.",
|
|
{'env_var': CACHE_EXPIRY_ENV_VAR,
|
|
'curr_val': expiry_time,
|
|
'default': DEFAULT_EXPIRY})
|
|
expiry_time = DEFAULT_EXPIRY
|
|
|
|
CACHE = dogpile.cache.make_region(key_mangler=str).configure(
|
|
'dogpile.cache.dbm',
|
|
expiration_time=expiry_time,
|
|
arguments={
|
|
"filename": CACHE_FILENAME,
|
|
}
|
|
)
|
|
return CACHE
|
|
|
|
|
|
def _build_key(host, port):
|
|
"""Build a key based upon the hostname or address supplied."""
|
|
return "%s:%s" % (host, port)
|
|
|
|
|
|
def save_data(host, port, data):
|
|
"""Save 'data' for a particular 'host' in the appropriate cache dir.
|
|
|
|
param host: The host that we need to save data for
|
|
param port: The port on the host that we need to save data for
|
|
param data: The data we want saved
|
|
"""
|
|
key = _build_key(host, port)
|
|
_get_cache().set(key, data)
|
|
|
|
|
|
def retrieve_data(host, port, expiry=None):
|
|
"""Retrieve the version stored for an ironic 'host', if it's not stale.
|
|
|
|
Check to see if there is valid cached data for the host/port
|
|
combination and return that if it isn't stale.
|
|
|
|
param host: The host that we need to retrieve data for
|
|
param port: The port on the host that we need to retrieve data for
|
|
param expiry: The age in seconds before cached data is deemed invalid
|
|
"""
|
|
# Ensure that a cache file exists first
|
|
if not os.path.isfile(CACHE_FILENAME):
|
|
return None
|
|
|
|
key = _build_key(host, port)
|
|
data = _get_cache().get(key, expiration_time=expiry)
|
|
|
|
if data == dogpile.cache.api.NO_VALUE:
|
|
return None
|
|
return data
|