2020-12-19 03:50:39 +11:00
|
|
|
# coding: utf-8
|
2018-04-28 17:12:29 +10:00
|
|
|
#
|
|
|
|
# Copyright 2011 Yesudeep Mangalapilly <yesudeep@gmail.com>
|
2020-12-19 03:50:39 +11:00
|
|
|
# Copyright 2012 Google, Inc & contributors.
|
2018-04-28 17:12:29 +10:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
Utility collections or "bricks".
|
|
|
|
|
|
|
|
:module: watchdog.utils.bricks
|
|
|
|
:author: yesudeep@google.com (Yesudeep Mangalapilly)
|
|
|
|
:author: lalinsky@gmail.com (Lukáš Lalinský)
|
|
|
|
:author: python@rcn.com (Raymond Hettinger)
|
2020-12-19 03:50:39 +11:00
|
|
|
:author: contact@tiger-222.fr (Mickaël Schoentgen)
|
2018-04-28 17:12:29 +10:00
|
|
|
|
|
|
|
Classes
|
|
|
|
=======
|
|
|
|
.. autoclass:: OrderedSetQueue
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
|
|
|
:inherited-members:
|
|
|
|
|
|
|
|
.. autoclass:: OrderedSet
|
|
|
|
|
|
|
|
"""
|
2020-12-19 03:50:39 +11:00
|
|
|
import queue
|
|
|
|
|
2018-04-28 17:12:29 +10:00
|
|
|
|
|
|
|
class SkipRepeatsQueue(queue.Queue):
|
|
|
|
|
|
|
|
"""Thread-safe implementation of an special queue where a
|
|
|
|
put of the last-item put'd will be dropped.
|
|
|
|
|
|
|
|
The implementation leverages locking already implemented in the base class
|
|
|
|
redefining only the primitives.
|
|
|
|
|
|
|
|
Queued items must be immutable and hashable so that they can be used
|
|
|
|
as dictionary keys. You must implement **only read-only properties** and
|
|
|
|
the :meth:`Item.__hash__()`, :meth:`Item.__eq__()`, and
|
|
|
|
:meth:`Item.__ne__()` methods for items to be hashable.
|
|
|
|
|
|
|
|
An example implementation follows::
|
|
|
|
|
2020-12-19 03:50:39 +11:00
|
|
|
class Item:
|
2018-04-28 17:12:29 +10:00
|
|
|
def __init__(self, a, b):
|
|
|
|
self._a = a
|
|
|
|
self._b = b
|
|
|
|
|
|
|
|
@property
|
|
|
|
def a(self):
|
|
|
|
return self._a
|
|
|
|
|
|
|
|
@property
|
|
|
|
def b(self):
|
|
|
|
return self._b
|
|
|
|
|
|
|
|
def _key(self):
|
|
|
|
return (self._a, self._b)
|
|
|
|
|
|
|
|
def __eq__(self, item):
|
|
|
|
return self._key() == item._key()
|
|
|
|
|
|
|
|
def __ne__(self, item):
|
|
|
|
return self._key() != item._key()
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self._key())
|
|
|
|
|
|
|
|
based on the OrderedSetQueue below
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _init(self, maxsize):
|
2020-12-19 03:50:39 +11:00
|
|
|
super()._init(maxsize)
|
2018-04-28 17:12:29 +10:00
|
|
|
self._last_item = None
|
|
|
|
|
|
|
|
def _put(self, item):
|
|
|
|
if item != self._last_item:
|
2020-12-19 03:50:39 +11:00
|
|
|
super()._put(item)
|
2018-04-28 17:12:29 +10:00
|
|
|
self._last_item = item
|
|
|
|
else:
|
|
|
|
# `put` increments `unfinished_tasks` even if we did not put
|
|
|
|
# anything into the queue here
|
|
|
|
self.unfinished_tasks -= 1
|
|
|
|
|
|
|
|
def _get(self):
|
2020-12-19 03:50:39 +11:00
|
|
|
item = super()._get()
|
2018-04-28 17:12:29 +10:00
|
|
|
if item is self._last_item:
|
|
|
|
self._last_item = None
|
|
|
|
return item
|
2020-12-19 04:08:39 +11:00
|
|
|
|
|
|
|
|
|
|
|
class OrderedSetQueue(queue.Queue):
|
|
|
|
|
|
|
|
"""Thread-safe implementation of an ordered set queue.
|
|
|
|
|
|
|
|
Disallows adding a duplicate item while maintaining the
|
|
|
|
order of items in the queue. The implementation leverages
|
|
|
|
locking already implemented in the base class
|
|
|
|
redefining only the primitives. Since the internal queue
|
|
|
|
is not replaced, the order is maintained. The set is used
|
|
|
|
merely to check for the existence of an item.
|
|
|
|
|
|
|
|
Queued items must be immutable and hashable so that they can be used
|
|
|
|
as dictionary keys. You must implement **only read-only properties** and
|
|
|
|
the :meth:`Item.__hash__()`, :meth:`Item.__eq__()`, and
|
|
|
|
:meth:`Item.__ne__()` methods for items to be hashable.
|
|
|
|
|
|
|
|
An example implementation follows::
|
|
|
|
|
|
|
|
class Item(object):
|
|
|
|
def __init__(self, a, b):
|
|
|
|
self._a = a
|
|
|
|
self._b = b
|
|
|
|
|
|
|
|
@property
|
|
|
|
def a(self):
|
|
|
|
return self._a
|
|
|
|
|
|
|
|
@property
|
|
|
|
def b(self):
|
|
|
|
return self._b
|
|
|
|
|
|
|
|
def _key(self):
|
|
|
|
return (self._a, self._b)
|
|
|
|
|
|
|
|
def __eq__(self, item):
|
|
|
|
return self._key() == item._key()
|
|
|
|
|
|
|
|
def __ne__(self, item):
|
|
|
|
return self._key() != item._key()
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self._key())
|
|
|
|
|
|
|
|
:author: lalinsky@gmail.com (Lukáš Lalinský)
|
|
|
|
:url: http://stackoverflow.com/questions/1581895/how-check-if-a-task-is-already-in-python-queue
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _init(self, maxsize):
|
|
|
|
queue.Queue._init(self, maxsize)
|
|
|
|
self._set_of_items = set()
|
|
|
|
|
|
|
|
def _put(self, item):
|
|
|
|
if item not in self._set_of_items:
|
|
|
|
queue.Queue._put(self, item)
|
|
|
|
self._set_of_items.add(item)
|
|
|
|
else:
|
|
|
|
# `put` increments `unfinished_tasks` even if we did not put
|
|
|
|
# anything into the queue here
|
|
|
|
self.unfinished_tasks -= 1
|
|
|
|
|
|
|
|
def _get(self):
|
|
|
|
item = queue.Queue._get(self)
|
|
|
|
self._set_of_items.remove(item)
|
|
|
|
return item
|