/usr/lib/python2.7/dist-packages/liblarch/processqueue.py is in python-liblarch 2.1.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | # -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Liblarch - a library to handle directed acyclic graphs
# Copyright (c) 2011-2012 - Lionel Dricot & Izidor MatuĊĦov
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# -----------------------------------------------------------------------------
import threading
import gobject
class SyncQueue:
""" Synchronized queue for processing requests"""
def __init__(self):
""" Initialize synchronized queue.
@param callback - function for processing requests"""
self._low_queue = []
self._queue = []
self._vip_queue = []
self._handler = None
self._lock = threading.Lock()
self._origin_thread = threading.current_thread()
self.count = 0
def process_queue(self):
""" Process requests from queue """
for action in self.process():
func = action[0]
func(*action[1:])
# return True to process other requests as well
return True
def push(self, *element, **kwargs):
""" Add a new element to the queue.
Process actions from the same thread as the thread which created
this queue immediately. What does it mean? When I use liblarch
without threads, all actions are processed immediately. In GTG,
this queue is created by the main thread which process GUI. When
GUI callback is triggered, process those actions immediately because
no protection is needed. However, requests from synchronization
services are put in the queue.
Application can choose which kind of priority should have an update.
If the request is not in the queue of selected priority, add it and
setup callback.
"""
if self._origin_thread == threading.current_thread():
func = element[0]
func(*element[1:])
return
priority = kwargs.get('priority')
if priority == 'low':
queue = self._low_queue
elif priority == 'high':
queue = self._vip_queue
else:
queue = self._queue
self._lock.acquire()
if element not in queue:
queue.append(element)
if self._handler is None:
self._handler = gobject.idle_add(self.process_queue)
self._lock.release()
def process(self):
""" Return elements to process
At the moment, it returns just one element. In the future more
elements may be better to return (to speed it up).
If there is no request left, disable processing. """
self._lock.acquire()
if len(self._vip_queue) > 0:
toreturn = [self._vip_queue.pop(0)]
elif len(self._queue) > 0:
toreturn = [self._queue.pop(0)]
elif len(self._low_queue) > 0:
toreturn = [self._low_queue.pop(0)]
else:
toreturn = []
if len(self._queue) == 0 and len(self._vip_queue) == 0 and\
len(self._low_queue) == 0 and\
self._handler is not None:
gobject.source_remove(self._handler)
self._handler = None
self._lock.release()
return toreturn
|