Source code for lavuelib.dataFetchThread
# Copyright (C) 2017 DESY, Christoph Rosemann, Notkestr. 85, D-22607 Hamburg
#
# lavue is an image viewing program for photon science imaging detectors.
# Its usual application is as a live viewer using hidra as data source.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation in version 2
# of the License.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
#
# Authors:
# Christoph Rosemann <christoph.rosemann@desy.de>
# Jan Kotanski <jan.kotanski@desy.de>
#
""" data fetch thread """
from __future__ import print_function
from __future__ import unicode_literals
from pyqtgraph import QtCore
import time
from .omniQThread import OmniQThread
#: (:obj:`float`) refresh rate in seconds
GLOBALREFRESHRATE = .1
[docs]class ExchangeList(object):
""" subclass for data caching """
def __init__(self):
""" constructor
"""
#: (:obj:`list` <:obj:`str`, :class:`numpy.ndarray`, :obj:`str` >)
#: exchange object
self.__elist = [None, None, None]
#: (:obj:`pyqtgraph.QtCore.QMutex`) mutex lock
self.__mutex = QtCore.QMutex()
[docs] def addData(self, name, data, metadata=""):
""" write data into exchange object
:param name: image name
:type name: :obj:`str`
:param data: image data
:type data: :class:`numpy.ndarray`
:param metadata: json dictionary with image metadata
:type metadata: :obj:`str`
"""
with QtCore.QMutexLocker(self.__mutex):
self.__elist[0] = name
self.__elist[1] = data
self.__elist[2] = metadata
[docs] def readData(self):
""" read data from exchange object
:returns: tuple of exchange object (name, data, metadata)
:rtype: :obj:`list` <:obj:`str`, :class:`numpy.ndarray`, :obj:`str` >
"""
with QtCore.QMutexLocker(self.__mutex):
a, b, c = self.__elist[0], self.__elist[1], self.__elist[2]
return a, b, c
# subclass for threading
[docs]class DataFetchThread(OmniQThread):
#: (:class:`pyqtgraph.QtCore.pyqtSignal`) new data name signal
newDataNameFetched = QtCore.pyqtSignal(str, str)
def __init__(self, datasource, alist):
""" constructor
:param datasource: image source
:type datasource: :class:`lavuelib.imageSource.BaseSource`
:param alist: exchange object
:type alist: :class:`ExchangeList`
"""
OmniQThread.__init__(self)
#: (:class:`lavuelib.imageSource.BaseSource`) image source
self.__datasource = datasource
#: (:class:`ExchangeList`) exchange list
self.__list = alist
#: (:obj:`bool`) connection flag
self.__isConnected = False
#: (:obj:`bool`) execute loop flag
self.__loop = False
#: (:obj:`bool`) ready flag
self.__ready = True
#: (:class:`pyqtgraph.QtCore.QMutex`) thread mutex
self.__mutex = QtCore.QMutex()
def _run(self):
""" run function of the fetching thread
"""
self.__loop = True
dt = 0
skip = False
while self.__loop:
if not self.__isConnected:
self.msleep(int(1000*GLOBALREFRESHRATE))
if skip:
self.msleep(int(100*GLOBALREFRESHRATE))
else:
self.msleep(max(int(1000*GLOBALREFRESHRATE - dt), 0))
t1 = time.time()
if self.__isConnected and self.__ready:
try:
with QtCore.QMutexLocker(self.__mutex):
img, name, metadata = self.__datasource.getData()
except Exception as e:
name = "__ERROR__"
img = str(e)
metadata = ""
if name is not None:
self.__list.addData(name, img, metadata)
self.__ready = False
self.newDataNameFetched.emit(name, metadata)
else:
self.__ready = True
skip = False
else:
skip = True
dt = (time.time() - t1) * 1000.
[docs] @QtCore.pyqtSlot(bool)
def changeStatus(self, status):
""" change connection status
:param status: connection status
:type status: :obj:`bool`
"""
self.__isConnected = status
self.__ready = True
[docs] def setDataSource(self, datasource):
""" sets datasource
:param datasource: datasource object
:type datasource: :class:`lavuelib.imageSource.BaseSource`
"""
with QtCore.QMutexLocker(self.__mutex):
self.__datasource = datasource
[docs] def ready(self):
""" continue acquisition
"""
self.__ready = True
[docs] def fetching(self):
""" provides read flag
"""
return not self.__ready
[docs] def stop(self):
""" stop the thread
"""
self.__isConnected = False
self.__ready = True
self.__loop = False
[docs] def isFetching(self):
""" is datasource source connected
:returns: if datasource source connected
:rtype: :obj:`bool`
"""
return self.__loop