Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-backend / pithos / backends / lib / hashfiler / blocker.py @ d50ed8d4

History | View | Annotate | Download (7.1 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 os import makedirs
35
from os.path import isdir, realpath, exists, join
36
from hashlib import new as newhasher
37
from binascii import hexlify
38

    
39
from context_file import ContextFile, file_sync_read_chunks
40

    
41

    
42
class Blocker(object):
43
    """Blocker.
44
       Required constructor parameters: blocksize, blockpath, hashtype.
45
    """
46

    
47
    blocksize = None
48
    blockpath = None
49
    hashtype = None
50

    
51
    def __init__(self, **params):
52
        blocksize = params['blocksize']
53
        blockpath = params['blockpath']
54
        blockpath = realpath(blockpath)
55
        if not isdir(blockpath):
56
            if not exists(blockpath):
57
                makedirs(blockpath)
58
            else:
59
                raise ValueError("Variable blockpath '%s' is not a directory" %
60
                                 (blockpath,))
61

    
62
        hashtype = params['hashtype']
63
        try:
64
            hasher = newhasher(hashtype)
65
        except ValueError:
66
            msg = "Variable hashtype '%s' is not available from hashlib"
67
            raise ValueError(msg % (hashtype,))
68

    
69
        hasher.update("")
70
        emptyhash = hasher.digest()
71

    
72
        self.blocksize = blocksize
73
        self.blockpath = blockpath
74
        self.hashtype = hashtype
75
        self.hashlen = len(emptyhash)
76
        self.emptyhash = emptyhash
77

    
78
    def _pad(self, block):
79
        return block + ('\x00' * (self.blocksize - len(block)))
80

    
81
    def _get_rear_block(self, blkhash, create=0):
82
        filename = hexlify(blkhash)
83
        dir = join(self.blockpath, filename[0:2], filename[2:4], filename[4:6])
84
        if not exists(dir):
85
            makedirs(dir)
86
        name = join(dir, filename)
87
        return ContextFile(name, create)
88

    
89
    def _check_rear_block(self, blkhash):
90
        filename = hexlify(blkhash)
91
        dir = join(self.blockpath, filename[0:2], filename[2:4], filename[4:6])
92
        name = join(dir, filename)
93
        return exists(name)
94

    
95
    def block_hash(self, data):
96
        """Hash a block of data"""
97
        hasher = newhasher(self.hashtype)
98
        hasher.update(data.rstrip('\x00'))
99
        return hasher.digest()
100

    
101
    def block_ping(self, hashes):
102
        """Check hashes for existence and
103
           return those missing from block storage.
104
        """
105
        notfound = []
106
        append = notfound.append
107

    
108
        for h in hashes:
109
            if h not in notfound and not self._check_rear_block(h):
110
                append(h)
111

    
112
        return notfound
113

    
114
    def block_retr(self, hashes):
115
        """Retrieve blocks from storage by their hashes."""
116
        blocksize = self.blocksize
117
        blocks = []
118
        append = blocks.append
119
        block = None
120

    
121
        for h in hashes:
122
            if h == self.emptyhash:
123
                append(self._pad(''))
124
                continue
125
            with self._get_rear_block(h, 0) as rbl:
126
                if not rbl:
127
                    break
128
                for block in rbl.sync_read_chunks(blocksize, 1, 0):
129
                    break  # there should be just one block there
130
            if not block:
131
                break
132
            append(self._pad(block))
133

    
134
        return blocks
135

    
136
    def block_stor(self, blocklist):
137
        """Store a bunch of blocks and return (hashes, missing).
138
           Hashes is a list of the hashes of the blocks,
139
           missing is a list of indices in that list indicating
140
           which blocks were missing from the store.
141
        """
142
        block_hash = self.block_hash
143
        hashlist = [block_hash(b) for b in blocklist]
144
        mf = None
145
        missing = [i for i, h in enumerate(hashlist)
146
                   if not self._check_rear_block(h)]
147
        for i in missing:
148
            with self._get_rear_block(hashlist[i], 1) as rbl:
149
                rbl.sync_write(blocklist[i])  # XXX: verify?
150

    
151
        return hashlist, missing
152

    
153
    def block_delta(self, blkhash, offset, data):
154
        """Construct and store a new block from a given block
155
           and a data 'patch' applied at offset. Return:
156
           (the hash of the new block, if the block already existed)
157
        """
158

    
159
        blocksize = self.blocksize
160
        if offset >= blocksize or not data:
161
            return None, None
162

    
163
        block = self.block_retr((blkhash,))
164
        if not block:
165
            return None, None
166

    
167
        block = block[0]
168
        newblock = block[:offset] + data
169
        if len(newblock) > blocksize:
170
            newblock = newblock[:blocksize]
171
        elif len(newblock) < blocksize:
172
            newblock += block[len(newblock):]
173

    
174
        h, a = self.block_stor((newblock,))
175
        return h[0], 1 if a else 0
176

    
177
    def block_hash_file(self, openfile):
178
        """Return the list of hashes (hashes map)
179
           for the blocks in a buffered file.
180
           Helper method, does not affect store.
181
        """
182
        hashes = []
183
        append = hashes.append
184
        block_hash = self.block_hash
185

    
186
        for block in file_sync_read_chunks(openfile, self.blocksize, 1, 0):
187
            append(block_hash(block))
188

    
189
        return hashes
190

    
191
    def block_stor_file(self, openfile):
192
        """Read blocks from buffered file object and store them. Return:
193
           (bytes read, list of hashes, list of hashes that were missing)
194
        """
195
        blocksize = self.blocksize
196
        block_stor = self.block_stor
197
        hashlist = []
198
        hextend = hashlist.extend
199
        storedlist = []
200
        sextend = storedlist.extend
201
        lastsize = 0
202

    
203
        for block in file_sync_read_chunks(openfile, blocksize, 1, 0):
204
            hl, sl = block_stor((block,))
205
            hextend(hl)
206
            sextend(sl)
207
            lastsize = len(block)
208

    
209
        size = (len(hashlist) - 1) * blocksize + lastsize if hashlist else 0
210
        return size, hashlist, storedlist