Source code for tvb.core.entities.storage.workflow_dao

# -*- coding: utf-8 -*-
#
#
# TheVirtualBrain-Framework Package. This package holds all Data Management, and 
# Web-UI helpful to run brain-simulations. To use it, you also need to download
# TheVirtualBrain-Scientific Package (for simulators). See content of the
# documentation-folder for more details. See also http://www.thevirtualbrain.org
#
# (c) 2012-2023, Baycrest Centre for Geriatric Care ("Baycrest") and others
#
# 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,
# 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 General Public License for more details.
# You should have received a copy of the GNU General Public License along with this
# program.  If not, see <http://www.gnu.org/licenses/>.
#
#
#   CITATION:
# When using The Virtual Brain for scientific publications, please cite it as explained here:
# https://www.thevirtualbrain.org/tvb/zwei/neuroscience-publications
#
#

"""
DAO layer for WorkFlow and Burst entities.
"""

from sqlalchemy.exc import SQLAlchemyError
from sqlalchemy.sql.expression import or_
from tvb.core.entities.model.model_burst import Dynamic
from tvb.core.entities.model.model_operation import Algorithm, AlgorithmCategory
from tvb.core.entities.storage.root_dao import RootDAO


[docs] class WorkflowDAO(RootDAO): """ DAO layer for WorkFlow and Burst entities. """
[docs] def get_non_validated_entities(self, reference_time): """ Get a list of all categories and algorithm groups that were not found valid since the reference_time. Used in initializer on each start to filter out any entities that for some reason became invalid. :return tuple (list of entities to get invalidated) (list of entities to be removed) """ try: stored_adapters = self.session.query(Algorithm ).filter(or_(Algorithm.last_introspection_check == None, Algorithm.last_introspection_check < reference_time)).all() categories = self.session.query(AlgorithmCategory ).filter(AlgorithmCategory.last_introspection_check<reference_time).all() result = stored_adapters + categories except SQLAlchemyError as ex: self.logger.exception(ex) result = [] return result
[docs] def get_dynamics_for_user(self, user_id): try: return self.session.query(Dynamic).filter(Dynamic.fk_user == user_id).all() except SQLAlchemyError as exc: self.logger.exception(exc) return []
[docs] def get_dynamic(self, dyn_id): try: return self.session.query(Dynamic).filter(Dynamic.id == dyn_id).one() except SQLAlchemyError as exc: self.logger.exception(exc)
[docs] def get_dynamic_by_name(self, name): try: return self.session.query(Dynamic).filter(Dynamic.name == name).all() except SQLAlchemyError as exc: self.logger.exception(exc)