Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-tools / pithos / tools / lib / transfer.py @ 6e147ecc

History | View | Annotate | Download (4 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

    
44
def upload(client, path, container, prefix, name=None, mimetype=None):
45
    
46
    meta = client.retrieve_container_metadata(container)
47
    blocksize = int(meta['x-container-block-size'])
48
    blockhash = meta['x-container-block-hash']
49
    
50
    size = os.path.getsize(path)
51
    hashes = HashMap(blocksize, blockhash)
52
    hashes.load(open(path))
53
    map = {'bytes': size, 'hashes': [hexlify(x) for x in hashes]}
54
    
55
    objectname = name if name else os.path.split(path)[-1]
56
    object = prefix + objectname
57
    kwargs = {'mimetype':mimetype} if mimetype else {}
58
    v = None
59
    try:
60
        v = client.create_object_by_hashmap(container, object, map, **kwargs)
61
    except Fault, fault:
62
        if fault.status != 409:
63
            raise
64
    else:
65
        return v
66
    
67
    if type(fault.data) == types.StringType:
68
        missing = json.loads(fault.data)
69
    elif type(fault.data) == types.ListType:
70
        missing = fault.data
71
    
72
    if '' in missing:
73
        del missing[missing.index(''):]
74
    
75
    with open(path) as fp:
76
        for hash in missing:
77
            offset = hashes.index(unhexlify(hash)) * blocksize
78
            fp.seek(offset)
79
            block = fp.read(blocksize)
80
            client.update_container_data(container, StringIO(block))
81
    
82
    return client.create_object_by_hashmap(container, object, map, **kwargs)
83

    
84
def download(client, container, object, path):
85
    
86
    res = client.retrieve_object_hashmap(container, object)
87
    blocksize = int(res['block_size'])
88
    blockhash = res['block_hash']
89
    bytes = res['bytes']
90
    map = res['hashes']
91
    
92
    if os.path.exists(path):
93
        h = HashMap(blocksize, blockhash)
94
        h.load(open(path))
95
        hashes = [hexlify(x) for x in h]
96
    else:
97
        open(path, 'w').close()     # Create an empty file
98
        hashes = []
99
    
100
    with open(path, 'a+') as fp:
101
        if bytes != 0:
102
            for i, h in enumerate(map):
103
                if i < len(hashes) and h == hashes[i]:
104
                    continue
105
                start = i * blocksize
106
                end = '' if i == len(map) - 1 else ((i + 1) * blocksize) - 1
107
                data = client.retrieve_object(container, object, range='bytes=%s-%s' % (start, end))
108
                if i != len(map) - 1:
109
                    data += (blocksize - len(data)) * '\x00'
110
                fp.seek(start)
111
                fp.write(data)
112
        fp.truncate(bytes)