tiramisu/tiramisu/storage/dictionary/storage.py

62 lines
1.8 KiB
Python
Raw Normal View History

2013-08-14 23:06:31 +02:00
# -*- coding: utf-8 -*-
2019-02-12 06:55:47 +01:00
# Copyright (C) 2013-2019 Team tiramisu (see AUTHORS for all contributors)
2013-08-14 23:06:31 +02:00
#
2013-09-22 22:33:09 +02:00
# 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.
2013-08-14 23:06:31 +02:00
#
2013-09-22 22:33:09 +02:00
# 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.
2013-08-14 23:06:31 +02:00
#
2013-09-22 22:33:09 +02:00
# 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/>.
2013-08-14 23:06:31 +02:00
# ____________________________________________________________
from ...i18n import _
2018-09-13 22:01:27 +02:00
from ...error import ConflictError
2019-12-24 15:24:20 +01:00
from ...asyncinit import asyncinit
class Setting:
2013-09-10 21:04:12 +02:00
"""Dictionary storage has no particular setting.
"""
__slots__ = tuple()
SETTING = Setting()
2013-08-27 09:46:52 +02:00
_list_sessions = []
2019-02-23 12:25:20 +01:00
PERSISTENT = False
2018-09-29 21:58:41 +02:00
def list_sessions():
2013-08-27 09:46:52 +02:00
return _list_sessions
2019-12-24 15:24:20 +01:00
@asyncinit
class Storage:
2013-09-22 20:57:52 +02:00
__slots__ = ('session_id', 'persistent')
storage = 'dictionary'
# if object could be serializable
2013-09-22 20:57:52 +02:00
serializable = True
2019-12-24 15:24:20 +01:00
async def __init__(self, session_id, persistent, test=False):
2018-09-29 21:58:41 +02:00
if not test and session_id in _list_sessions:
raise ConflictError(_('session "{}" already exists').format(session_id))
2018-09-29 21:58:41 +02:00
if persistent:
2013-08-20 22:45:11 +02:00
raise ValueError(_('a dictionary cannot be persistent'))
2013-08-27 09:46:52 +02:00
self.session_id = session_id
2013-09-22 20:57:52 +02:00
self.persistent = persistent
2013-08-27 09:46:52 +02:00
_list_sessions.append(self.session_id)
def __del__(self):
try:
_list_sessions.remove(self.session_id)
2018-09-29 21:58:41 +02:00
except AttributeError:
pass
def getsession():
pass