Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-backend / pithos / backends / lib / sqlalchemy / xfeatures.py @ 29148653

History | View | Annotate | Download (7.8 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from collections import defaultdict
35
from sqlalchemy import Table, Column, String, Integer, MetaData, ForeignKey
36
from sqlalchemy.sql import select, and_
37
from sqlalchemy.schema import Index
38
from sqlalchemy.exc import NoSuchTableError
39

    
40
from dbworker import DBWorker
41

    
42

    
43
def create_tables(engine):
44
    metadata = MetaData()
45
    columns = []
46
    columns.append(Column('feature_id', Integer, primary_key=True))
47
    columns.append(Column('path', String(2048)))
48
    xfeatures = Table('xfeatures', metadata, *columns, mysql_engine='InnoDB')
49
    # place an index on path
50
    Index('idx_features_path', xfeatures.c.path, unique=True)
51

    
52
    columns = []
53
    columns.append(Column('feature_id', Integer,
54
                          ForeignKey('xfeatures.feature_id',
55
                                     ondelete='CASCADE'),
56
                          primary_key=True))
57
    columns.append(Column('key', Integer, primary_key=True,
58
                          autoincrement=False))
59
    columns.append(Column('value', String(256), primary_key=True))
60
    Table('xfeaturevals', metadata, *columns, mysql_engine='InnoDB')
61

    
62
    metadata.create_all(engine)
63
    return metadata.sorted_tables
64

    
65

    
66
class XFeatures(DBWorker):
67
    """XFeatures are path properties that allow non-nested
68
       inheritance patterns. Currently used for storing permissions.
69
    """
70

    
71
    def __init__(self, **params):
72
        DBWorker.__init__(self, **params)
73
        try:
74
            metadata = MetaData(self.engine)
75
            self.xfeatures = Table('xfeatures', metadata, autoload=True)
76
            self.xfeaturevals = Table('xfeaturevals', metadata, autoload=True)
77
        except NoSuchTableError:
78
            tables = create_tables(self.engine)
79
            map(lambda t: self.__setattr__(t.name, t), tables)
80

    
81
#     def xfeature_inherit(self, path):
82
#         """Return the (path, feature) inherited by the path, or None."""
83
#
84
#         s = select([self.xfeatures.c.path, self.xfeatures.c.feature_id])
85
#         s = s.where(self.xfeatures.c.path <= path)
86
#         s = s.where(self.xfeatures.c.path.like(
87
#           self.escape_like(path) + '%', escape='\\'))  # XXX: Escape like...
88
#         s = s.order_by(desc(self.xfeatures.c.path))
89
#         r = self.conn.execute(s)
90
#         l = r.fetchall()
91
#         r.close()
92
#         return l
93

    
94
    def xfeature_get(self, path):
95
        """Return feature for path."""
96

    
97
        s = select([self.xfeatures.c.feature_id])
98
        s = s.where(self.xfeatures.c.path == path)
99
        s = s.order_by(self.xfeatures.c.path)
100
        r = self.conn.execute(s)
101
        row = r.fetchone()
102
        r.close()
103
        if row:
104
            return row[0]
105
        return None
106

    
107
    def xfeature_create(self, path):
108
        """Create and return a feature for path.
109
           If the path has a feature, return it.
110
        """
111

    
112
        feature = self.xfeature_get(path)
113
        if feature is not None:
114
            return feature
115
        s = self.xfeatures.insert()
116
        r = self.conn.execute(s, path=path)
117
        inserted_primary_key = r.inserted_primary_key[0]
118
        r.close()
119
        return inserted_primary_key
120

    
121
    def xfeature_destroy(self, path):
122
        """Destroy a feature and all its key, value pairs."""
123

    
124
        s = self.xfeatures.delete().where(self.xfeatures.c.path == path)
125
        r = self.conn.execute(s)
126
        r.close()
127

    
128
    def xfeature_destroy_bulk(self, paths):
129
        """Destroy features and all their key, value pairs."""
130

    
131
        if not paths:
132
            return
133
        s = self.xfeatures.delete().where(self.xfeatures.c.path.in_(paths))
134
        r = self.conn.execute(s)
135
        r.close()
136

    
137
    def feature_dict(self, feature):
138
        """Return a dict mapping keys to list of values for feature."""
139

    
140
        s = select([self.xfeaturevals.c.key, self.xfeaturevals.c.value])
141
        s = s.where(self.xfeaturevals.c.feature_id == feature)
142
        r = self.conn.execute(s)
143
        d = defaultdict(list)
144
        for key, value in r.fetchall():
145
            d[key].append(value)
146
        r.close()
147
        return d
148

    
149
    def feature_set(self, feature, key, value):
150
        """Associate a key, value pair with a feature."""
151

    
152
        s = self.xfeaturevals.select()
153
        s = s.where(self.xfeaturevals.c.feature_id == feature)
154
        s = s.where(self.xfeaturevals.c.key == key)
155
        s = s.where(self.xfeaturevals.c.value == value)
156
        r = self.conn.execute(s)
157
        xfeaturevals = r.fetchall()
158
        r.close()
159
        if len(xfeaturevals) == 0:
160
            s = self.xfeaturevals.insert()
161
            r = self.conn.execute(s, feature_id=feature, key=key, value=value)
162
            r.close()
163

    
164
    def feature_setmany(self, feature, key, values):
165
        """Associate the given key, and values with a feature."""
166

    
167
        #TODO: more efficient way to do it
168
        for v in values:
169
            self.feature_set(feature, key, v)
170

    
171
    def feature_unset(self, feature, key, value):
172
        """Disassociate a key, value pair from a feature."""
173

    
174
        s = self.xfeaturevals.delete()
175
        s = s.where(and_(self.xfeaturevals.c.feature_id == feature,
176
                         self.xfeaturevals.c.key == key,
177
                         self.xfeaturevals.c.value == value))
178
        r = self.conn.execute(s)
179
        r.close()
180

    
181
    def feature_unsetmany(self, feature, key, values):
182
        """Disassociate the key for the values given, from a feature."""
183

    
184
        for v in values:
185
            conditional = and_(self.xfeaturevals.c.feature_id == feature,
186
                               self.xfeaturevals.c.key == key,
187
                               self.xfeaturevals.c.value == v)
188
            s = self.xfeaturevals.delete().where(conditional)
189
            r = self.conn.execute(s)
190
            r.close()
191

    
192
    def feature_get(self, feature, key):
193
        """Return the list of values for a key of a feature."""
194

    
195
        s = select([self.xfeaturevals.c.value])
196
        s = s.where(and_(self.xfeaturevals.c.feature_id == feature,
197
                         self.xfeaturevals.c.key == key))
198
        r = self.conn.execute(s)
199
        l = [row[0] for row in r.fetchall()]
200
        r.close()
201
        return l
202

    
203
    def feature_clear(self, feature, key):
204
        """Delete all key, value pairs for a key of a feature."""
205

    
206
        s = self.xfeaturevals.delete()
207
        s = s.where(and_(self.xfeaturevals.c.feature_id == feature,
208
                         self.xfeaturevals.c.key == key))
209
        r = self.conn.execute(s)
210
        r.close()