mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-22 06:32:19 +00:00
21 lines
606 B
Python
21 lines
606 B
Python
from lib import Service
|
|
|
|
class Source(Service):
|
|
"""Base class for datasources"""
|
|
def __init__(self, thread, id, root):
|
|
super().__init__(thread, id, root)
|
|
self._logger.add_field('service', 'Feed')
|
|
self._logger.add_field('vname', self.__class__.__name__)
|
|
|
|
self._item = {
|
|
'source': self._id,
|
|
'steps': {},
|
|
'data': {}
|
|
}
|
|
|
|
def next(self, count=10, block=False):
|
|
if self._running or not self._data.count() == 0:
|
|
return self._data.get(count=count, block=block)
|
|
elif self._data.count() == 0:
|
|
raise Exception("Storage is empty, generator is stopped")
|