summaryrefslogtreecommitdiff
path: root/ick2/persistent.py
blob: d86520748b4f66ccbb7a2606f3401153c27e2f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# Copyright (C) 2018-2019  Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.


import copy
import os
import urllib.parse


import yaml


import ick2


class PersistentStateInterface:  # pragma: no cover

    def get_resource_ids(self, token, kind):
        raise NotImplementedError()

    def has_resource(self, token, kind, rid):
        raise NotImplementedError()

    def get_resource(self, token, kind, rid):
        raise NotImplementedError()

    def get_resources(self, token, kind):
        return [
            self.get_resource(token, kind, rid)
            for rid in self.get_resource_ids(token, kind)
        ]

    def write_resource(self, token, kind, rid, resource):
        raise NotImplementedError()

    def remove_resource(self, token, kind, rid):
        raise NotImplementedError()


class MemoryPersistentState(PersistentStateInterface):

    def __init__(self):
        self._res = {}

    def get_resource_ids(self, token, kind):
        if kind not in self._res:
            return []
        return list(self._res[kind].keys())

    def has_resource(self, token, kind, rid):
        return kind in self._res and rid in self._res[kind]

    def get_resource(self, token, kind, rid):
        if kind not in self._res or rid not in self._res[kind]:
            raise ick2.NotFound(kind=kind, rid=rid)
        return self._res[kind][rid]

    def write_resource(self, token, kind, rid, resource):
        if kind not in self._res:
            self._res[kind] = {}
        self._res[kind][rid] = resource

    def remove_resource(self, token, kind, rid):
        if kind not in self._res or rid not in self._res[kind]:
            raise ick2.NotFound(kind=kind, rid=rid)
        del self._res[kind][rid]


class MuckPersistentState(PersistentStateInterface):

    def __init__(self):
        self._res = {}

    def get_resource_ids(self, token, kind):
        if kind not in self._res:
            return []
        return list(self._res[kind].keys())

    def has_resource(self, token, kind, rid):
        return kind in self._res and rid in self._res[kind]

    def get_resource(self, token, kind, rid):
        if kind not in self._res or rid not in self._res[kind]:
            raise ick2.NotFound(kind=kind, rid=rid)
        return self._res[kind][rid]

    def write_resource(self, token, kind, rid, resource):
        if kind not in self._res:
            self._res[kind] = {}
        self._res[kind][rid] = resource

    def remove_resource(self, token, kind, rid):
        if kind not in self._res or rid not in self._res[kind]:
            raise ick2.NotFound(kind=kind, rid=rid)
        del self._res[kind][rid]


class NotFound(Exception):

    def __init__(self, kind, rid):
        super().__init__(
            'Resource {}:{} not found'.format(
                kind or "unknown", rid or "unknown"))


class Resource:  # pragma: no cover

    def __init__(self, as_dict=None):
        self._dict = copy.deepcopy(as_dict or {})

    def as_dict(self):
        return copy.deepcopy(self._dict)

    def __getitem__(self, key):
        return self._dict[key]

    def __setitem__(self, key, value):
        self._dict[key] = value

    def __contains__(self, key):
        return key in self._dict

    def __len__(self):
        return len(self._dict)

    def get(self, key, default=None):
        return self._dict.get(key, default)

    def from_dict(self, as_dict):
        self._dict.clear()
        for key in as_dict:
            self[key] = as_dict[key]


def resource_from_dict(as_dict):  # pragma: no cover
    return Resource(as_dict)