Source code for aiida.backends.sqlalchemy.models.settings

# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
# pylint: disable=import-error,no-name-in-module
"""Module to manage node settings for the SQLA backend."""
from pytz import UTC

from sqlalchemy import Column
from sqlalchemy.dialects.postgresql import JSONB
from sqlalchemy.orm.attributes import flag_modified
from sqlalchemy.schema import UniqueConstraint
from sqlalchemy.types import Integer, String, DateTime

from aiida.backends import sqlalchemy as sa
from aiida.backends.sqlalchemy.models.base import Base
from aiida.common import timezone


[docs]class DbSetting(Base): """Class to store node settings using the SQLA backend.""" __tablename__ = 'db_dbsetting' __table_args__ = (UniqueConstraint('key'),) id = Column(Integer, primary_key=True) # pylint: disable=invalid-name key = Column(String(255), index=True, nullable=False) val = Column(JSONB, default={}) # I also add a description field for the variables description = Column(String(255), default='', nullable=False) time = Column(DateTime(timezone=True), default=UTC, onupdate=timezone.now)
[docs] def __str__(self): return f"'{self.key}'={self.getvalue()}"
[docs] @classmethod def set_value(cls, key, value, other_attribs=None, stop_if_existing=False): """Set a setting value.""" other_attribs = other_attribs if other_attribs is not None else {} setting = sa.get_scoped_session().query(DbSetting).filter_by(key=key).first() if setting is not None: if stop_if_existing: return else: setting = cls() setting.key = key setting.val = value flag_modified(setting, 'val') setting.time = timezone.datetime.now(tz=UTC) if 'description' in other_attribs.keys(): setting.description = other_attribs['description'] setting.save()
[docs] def getvalue(self): """This can be called on a given row and will get the corresponding value.""" return self.val
[docs] def get_description(self): """This can be called on a given row and will get the corresponding description.""" return self.description
[docs] @classmethod def del_value(cls, key): """Delete a setting value.""" setting = sa.get_scoped_session().query(DbSetting).filter(key=key) setting.val = None setting.time = timezone.datetime.utcnow() flag_modified(setting, 'val') setting.save()