Import and convert to oslo loopingcall.
Import the oslo looping call implementation (which is a copy of nova's), delete nova's local copy, convert all users to the new location. It should be noted that the oslo implementation of FixedIntervalLoopingCall measures time from the start of the periodic task, not the end, so periodic tasks will run with a constant frequency instead of the frequency changing depending on how long the periodic task takes to run. Change-Id: Ia62ce1988f5373c09146efa6b3b1d1dc094d50c4
This commit is contained in:
		
							
								
								
									
										147
									
								
								nova/openstack/common/loopingcall.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								nova/openstack/common/loopingcall.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,147 @@
 | 
			
		||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 | 
			
		||||
 | 
			
		||||
# Copyright 2010 United States Government as represented by the
 | 
			
		||||
# Administrator of the National Aeronautics and Space Administration.
 | 
			
		||||
# Copyright 2011 Justin Santa Barbara
 | 
			
		||||
# 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 sys
 | 
			
		||||
 | 
			
		||||
from eventlet import event
 | 
			
		||||
from eventlet import greenthread
 | 
			
		||||
 | 
			
		||||
from nova.openstack.common.gettextutils import _
 | 
			
		||||
from nova.openstack.common import log as logging
 | 
			
		||||
from nova.openstack.common import timeutils
 | 
			
		||||
 | 
			
		||||
LOG = logging.getLogger(__name__)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class LoopingCallDone(Exception):
 | 
			
		||||
    """Exception to break out and stop a LoopingCall.
 | 
			
		||||
 | 
			
		||||
    The poll-function passed to LoopingCall can raise this exception to
 | 
			
		||||
    break out of the loop normally. This is somewhat analogous to
 | 
			
		||||
    StopIteration.
 | 
			
		||||
 | 
			
		||||
    An optional return-value can be included as the argument to the exception;
 | 
			
		||||
    this return-value will be returned by LoopingCall.wait()
 | 
			
		||||
 | 
			
		||||
    """
 | 
			
		||||
 | 
			
		||||
    def __init__(self, retvalue=True):
 | 
			
		||||
        """:param retvalue: Value that LoopingCall.wait() should return."""
 | 
			
		||||
        self.retvalue = retvalue
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class LoopingCallBase(object):
 | 
			
		||||
    def __init__(self, f=None, *args, **kw):
 | 
			
		||||
        self.args = args
 | 
			
		||||
        self.kw = kw
 | 
			
		||||
        self.f = f
 | 
			
		||||
        self._running = False
 | 
			
		||||
        self.done = None
 | 
			
		||||
 | 
			
		||||
    def stop(self):
 | 
			
		||||
        self._running = False
 | 
			
		||||
 | 
			
		||||
    def wait(self):
 | 
			
		||||
        return self.done.wait()
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class FixedIntervalLoopingCall(LoopingCallBase):
 | 
			
		||||
    """A fixed interval looping call."""
 | 
			
		||||
 | 
			
		||||
    def start(self, interval, initial_delay=None):
 | 
			
		||||
        self._running = True
 | 
			
		||||
        done = event.Event()
 | 
			
		||||
 | 
			
		||||
        def _inner():
 | 
			
		||||
            if initial_delay:
 | 
			
		||||
                greenthread.sleep(initial_delay)
 | 
			
		||||
 | 
			
		||||
            try:
 | 
			
		||||
                while self._running:
 | 
			
		||||
                    start = timeutils.utcnow()
 | 
			
		||||
                    self.f(*self.args, **self.kw)
 | 
			
		||||
                    end = timeutils.utcnow()
 | 
			
		||||
                    if not self._running:
 | 
			
		||||
                        break
 | 
			
		||||
                    delay = interval - timeutils.delta_seconds(start, end)
 | 
			
		||||
                    if delay <= 0:
 | 
			
		||||
                        LOG.warn(_('task run outlasted interval by %s sec') %
 | 
			
		||||
                                 -delay)
 | 
			
		||||
                    greenthread.sleep(delay if delay > 0 else 0)
 | 
			
		||||
            except LoopingCallDone, e:
 | 
			
		||||
                self.stop()
 | 
			
		||||
                done.send(e.retvalue)
 | 
			
		||||
            except Exception:
 | 
			
		||||
                LOG.exception(_('in fixed duration looping call'))
 | 
			
		||||
                done.send_exception(*sys.exc_info())
 | 
			
		||||
                return
 | 
			
		||||
            else:
 | 
			
		||||
                done.send(True)
 | 
			
		||||
 | 
			
		||||
        self.done = done
 | 
			
		||||
 | 
			
		||||
        greenthread.spawn_n(_inner)
 | 
			
		||||
        return self.done
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# TODO(mikal): this class name is deprecated in Havana and should be removed
 | 
			
		||||
# in the I release
 | 
			
		||||
LoopingCall = FixedIntervalLoopingCall
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class DynamicLoopingCall(LoopingCallBase):
 | 
			
		||||
    """A looping call which sleeps until the next known event.
 | 
			
		||||
 | 
			
		||||
    The function called should return how long to sleep for before being
 | 
			
		||||
    called again.
 | 
			
		||||
    """
 | 
			
		||||
 | 
			
		||||
    def start(self, initial_delay=None, periodic_interval_max=None):
 | 
			
		||||
        self._running = True
 | 
			
		||||
        done = event.Event()
 | 
			
		||||
 | 
			
		||||
        def _inner():
 | 
			
		||||
            if initial_delay:
 | 
			
		||||
                greenthread.sleep(initial_delay)
 | 
			
		||||
 | 
			
		||||
            try:
 | 
			
		||||
                while self._running:
 | 
			
		||||
                    idle = self.f(*self.args, **self.kw)
 | 
			
		||||
                    if not self._running:
 | 
			
		||||
                        break
 | 
			
		||||
 | 
			
		||||
                    if periodic_interval_max is not None:
 | 
			
		||||
                        idle = min(idle, periodic_interval_max)
 | 
			
		||||
                    LOG.debug(_('Dynamic looping call sleeping for %.02f '
 | 
			
		||||
                                'seconds'), idle)
 | 
			
		||||
                    greenthread.sleep(idle)
 | 
			
		||||
            except LoopingCallDone, e:
 | 
			
		||||
                self.stop()
 | 
			
		||||
                done.send(e.retvalue)
 | 
			
		||||
            except Exception:
 | 
			
		||||
                LOG.exception(_('in dynamic looping call'))
 | 
			
		||||
                done.send_exception(*sys.exc_info())
 | 
			
		||||
                return
 | 
			
		||||
            else:
 | 
			
		||||
                done.send(True)
 | 
			
		||||
 | 
			
		||||
        self.done = done
 | 
			
		||||
 | 
			
		||||
        greenthread.spawn(_inner)
 | 
			
		||||
        return self.done
 | 
			
		||||
@@ -37,6 +37,7 @@ from nova import exception
 | 
			
		||||
from nova.openstack.common import eventlet_backdoor
 | 
			
		||||
from nova.openstack.common import importutils
 | 
			
		||||
from nova.openstack.common import log as logging
 | 
			
		||||
from nova.openstack.common import loopingcall
 | 
			
		||||
from nova.openstack.common import rpc
 | 
			
		||||
from nova import servicegroup
 | 
			
		||||
from nova import utils
 | 
			
		||||
@@ -473,7 +474,7 @@ class Service(object):
 | 
			
		||||
            else:
 | 
			
		||||
                initial_delay = None
 | 
			
		||||
 | 
			
		||||
            periodic = utils.DynamicLoopingCall(self.periodic_tasks)
 | 
			
		||||
            periodic = loopingcall.DynamicLoopingCall(self.periodic_tasks)
 | 
			
		||||
            periodic.start(initial_delay=initial_delay,
 | 
			
		||||
                           periodic_interval_max=self.periodic_interval_max)
 | 
			
		||||
            self.timers.append(periodic)
 | 
			
		||||
 
 | 
			
		||||
@@ -42,6 +42,7 @@ from nova import exception
 | 
			
		||||
from nova.openstack.common import fileutils
 | 
			
		||||
from nova.openstack.common import importutils
 | 
			
		||||
from nova.openstack.common import jsonutils
 | 
			
		||||
from nova.openstack.common import loopingcall
 | 
			
		||||
from nova.openstack.common import uuidutils
 | 
			
		||||
from nova import test
 | 
			
		||||
from nova.tests import fake_libvirt_utils
 | 
			
		||||
@@ -4844,7 +4845,7 @@ class LibvirtDriverTestCase(test.TestCase):
 | 
			
		||||
                     'uuid': 'not_found_uuid'})
 | 
			
		||||
 | 
			
		||||
        # instance is running case
 | 
			
		||||
        self.assertRaises(utils.LoopingCallDone,
 | 
			
		||||
        self.assertRaises(loopingcall.LoopingCallDone,
 | 
			
		||||
                self.libvirtconnection._wait_for_running,
 | 
			
		||||
                    {'name': 'running',
 | 
			
		||||
                     'uuid': 'running_uuid'})
 | 
			
		||||
@@ -4984,7 +4985,7 @@ class LibvirtDriverTestCase(test.TestCase):
 | 
			
		||||
        self.stubs.Set(self.libvirtconnection, 'to_xml', lambda *a, **k: None)
 | 
			
		||||
        self.stubs.Set(self.libvirtconnection, '_create_domain_and_network',
 | 
			
		||||
                       lambda *a: None)
 | 
			
		||||
        self.stubs.Set(utils, 'FixedIntervalLoopingCall',
 | 
			
		||||
        self.stubs.Set(loopingcall, 'FixedIntervalLoopingCall',
 | 
			
		||||
                       lambda *a, **k: FakeLoopingCall())
 | 
			
		||||
 | 
			
		||||
        libvirt_utils.get_instance_path({}).AndReturn('/fake/foo')
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										108
									
								
								nova/utils.py
									
									
									
									
									
								
							
							
						
						
									
										108
									
								
								nova/utils.py
									
									
									
									
									
								
							@@ -38,7 +38,6 @@ import tempfile
 | 
			
		||||
import time
 | 
			
		||||
from xml.sax import saxutils
 | 
			
		||||
 | 
			
		||||
from eventlet import event
 | 
			
		||||
from eventlet.green import subprocess
 | 
			
		||||
from eventlet import greenthread
 | 
			
		||||
import netaddr
 | 
			
		||||
@@ -547,113 +546,6 @@ class LazyPluggable(object):
 | 
			
		||||
        return getattr(backend, key)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class LoopingCallDone(Exception):
 | 
			
		||||
    """Exception to break out and stop a LoopingCall.
 | 
			
		||||
 | 
			
		||||
    The poll-function passed to LoopingCall can raise this exception to
 | 
			
		||||
    break out of the loop normally. This is somewhat analogous to
 | 
			
		||||
    StopIteration.
 | 
			
		||||
 | 
			
		||||
    An optional return-value can be included as the argument to the exception;
 | 
			
		||||
    this return-value will be returned by LoopingCall.wait()
 | 
			
		||||
 | 
			
		||||
    """
 | 
			
		||||
 | 
			
		||||
    def __init__(self, retvalue=True):
 | 
			
		||||
        """:param retvalue: Value that LoopingCall.wait() should return."""
 | 
			
		||||
        self.retvalue = retvalue
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class LoopingCallBase(object):
 | 
			
		||||
    def __init__(self, f=None, *args, **kw):
 | 
			
		||||
        self.args = args
 | 
			
		||||
        self.kw = kw
 | 
			
		||||
        self.f = f
 | 
			
		||||
        self._running = False
 | 
			
		||||
        self.done = None
 | 
			
		||||
 | 
			
		||||
    def stop(self):
 | 
			
		||||
        self._running = False
 | 
			
		||||
 | 
			
		||||
    def wait(self):
 | 
			
		||||
        return self.done.wait()
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class FixedIntervalLoopingCall(LoopingCallBase):
 | 
			
		||||
    """A looping call which happens at a fixed interval."""
 | 
			
		||||
 | 
			
		||||
    def start(self, interval, initial_delay=None):
 | 
			
		||||
        self._running = True
 | 
			
		||||
        done = event.Event()
 | 
			
		||||
 | 
			
		||||
        def _inner():
 | 
			
		||||
            if initial_delay:
 | 
			
		||||
                greenthread.sleep(initial_delay)
 | 
			
		||||
 | 
			
		||||
            try:
 | 
			
		||||
                while self._running:
 | 
			
		||||
                    self.f(*self.args, **self.kw)
 | 
			
		||||
                    if not self._running:
 | 
			
		||||
                        break
 | 
			
		||||
                    greenthread.sleep(interval)
 | 
			
		||||
            except LoopingCallDone, e:
 | 
			
		||||
                self.stop()
 | 
			
		||||
                done.send(e.retvalue)
 | 
			
		||||
            except Exception:
 | 
			
		||||
                LOG.exception(_('in fixed duration looping call'))
 | 
			
		||||
                done.send_exception(*sys.exc_info())
 | 
			
		||||
                return
 | 
			
		||||
            else:
 | 
			
		||||
                done.send(True)
 | 
			
		||||
 | 
			
		||||
        self.done = done
 | 
			
		||||
 | 
			
		||||
        greenthread.spawn(_inner)
 | 
			
		||||
        return self.done
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class DynamicLoopingCall(LoopingCallBase):
 | 
			
		||||
    """A looping call which happens sleeps until the next known event.
 | 
			
		||||
 | 
			
		||||
    The function called should return how long to sleep for before being
 | 
			
		||||
    called again.
 | 
			
		||||
    """
 | 
			
		||||
 | 
			
		||||
    def start(self, initial_delay=None, periodic_interval_max=None):
 | 
			
		||||
        self._running = True
 | 
			
		||||
        done = event.Event()
 | 
			
		||||
 | 
			
		||||
        def _inner():
 | 
			
		||||
            if initial_delay:
 | 
			
		||||
                greenthread.sleep(initial_delay)
 | 
			
		||||
 | 
			
		||||
            try:
 | 
			
		||||
                while self._running:
 | 
			
		||||
                    idle = self.f(*self.args, **self.kw)
 | 
			
		||||
                    if not self._running:
 | 
			
		||||
                        break
 | 
			
		||||
 | 
			
		||||
                    if periodic_interval_max is not None:
 | 
			
		||||
                        idle = min(idle, periodic_interval_max)
 | 
			
		||||
                    LOG.debug(_('Periodic task processor sleeping for %.02f '
 | 
			
		||||
                                'seconds'), idle)
 | 
			
		||||
                    greenthread.sleep(idle)
 | 
			
		||||
            except LoopingCallDone, e:
 | 
			
		||||
                self.stop()
 | 
			
		||||
                done.send(e.retvalue)
 | 
			
		||||
            except Exception:
 | 
			
		||||
                LOG.exception(_('in dynamic looping call'))
 | 
			
		||||
                done.send_exception(*sys.exc_info())
 | 
			
		||||
                return
 | 
			
		||||
            else:
 | 
			
		||||
                done.send(True)
 | 
			
		||||
 | 
			
		||||
        self.done = done
 | 
			
		||||
 | 
			
		||||
        greenthread.spawn(_inner)
 | 
			
		||||
        return self.done
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def xhtml_escape(value):
 | 
			
		||||
    """Escapes a string so it is valid within XML or XHTML.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -15,6 +15,7 @@ module=jsonutils
 | 
			
		||||
module=local
 | 
			
		||||
module=lockutils
 | 
			
		||||
module=log
 | 
			
		||||
module=loopingcall
 | 
			
		||||
module=network_utils
 | 
			
		||||
module=notifier
 | 
			
		||||
module=plugin
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user