Statistics
| Branch: | Tag: | Revision:

root / contrib / snf-pithos-tools / pithos / tools / lib / transfer.py @ a5cb2e20

History | View | Annotate | Download (4.2 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
import os
35
import types
36
import json
37

    
38
from hashmap import HashMap
39
from binascii import hexlify, unhexlify
40
from cStringIO import StringIO
41
from client import Fault
42

    
43
from progress.bar import IncrementalBar
44

    
45

    
46
def upload(client, path, container, prefix, name=None, mimetype=None):
47

    
48
    meta = client.retrieve_container_metadata(container)
49
    blocksize = int(meta['x-container-block-size'])
50
    blockhash = meta['x-container-block-hash']
51

    
52
    size = os.path.getsize(path)
53
    hashes = HashMap(blocksize, blockhash)
54
    hashes.load(open(path))
55
    map = {'bytes': size, 'hashes': [hexlify(x) for x in hashes]}
56

    
57
    objectname = name if name else os.path.split(path)[-1]
58
    object = prefix + objectname
59
    kwargs = {'mimetype': mimetype} if mimetype else {}
60
    v = None
61
    try:
62
        v = client.create_object_by_hashmap(container, object, map, **kwargs)
63
    except Fault, fault:
64
        if fault.status != 409:
65
            raise
66
    else:
67
        return v
68

    
69
    if isinstance(fault.data, types.StringType):
70
        missing = json.loads(fault.data)
71
    elif isinstance(fault.data, types.ListType):
72
        missing = fault.data
73

    
74
    if '' in missing:
75
        del missing[missing.index(''):]
76

    
77
    bar = IncrementalBar('Uploading', max=len(missing))
78
    bar.suffix = '%(percent).1f%% - %(eta)ds'
79
    with open(path) as fp:
80
        for hash in missing:
81
            offset = hashes.index(unhexlify(hash)) * blocksize
82
            fp.seek(offset)
83
            block = fp.read(blocksize)
84
            client.update_container_data(container, StringIO(block))
85
            bar.next()
86
    bar.finish()
87

    
88
    return client.create_object_by_hashmap(container, object, map, **kwargs)
89

    
90

    
91
def download(client, container, object, path):
92

    
93
    res = client.retrieve_object_hashmap(container, object)
94
    blocksize = int(res['block_size'])
95
    blockhash = res['block_hash']
96
    bytes = res['bytes']
97
    map = res['hashes']
98

    
99
    if os.path.exists(path):
100
        h = HashMap(blocksize, blockhash)
101
        h.load(open(path))
102
        hashes = [hexlify(x) for x in h]
103
    else:
104
        open(path, 'w').close()     # Create an empty file
105
        hashes = []
106

    
107
    with open(path, 'a+') as fp:
108
        if bytes != 0:
109
            for i, h in enumerate(map):
110
                if i < len(hashes) and h == hashes[i]:
111
                    continue
112
                start = i * blocksize
113
                end = '' if i == len(map) - 1 else ((i + 1) * blocksize) - 1
114
                data = client.retrieve_object(
115
                    container, object, range='bytes=%s-%s' % (start, end))
116
                if i != len(map) - 1:
117
                    data += (blocksize - len(data)) * '\x00'
118
                fp.seek(start)
119
                fp.write(data)
120
        fp.truncate(bytes)