Statistics
| Branch: | Tag: | Revision:

root / tools / lib / transfer.py @ 2db16f05

History | View | Annotate | Download (3.8 kB)

1
# Copyright 2011 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

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

    
42

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

    
83
def download(client, container, object, file):
84
    
85
    meta = client.retrieve_container_metadata(container)
86
    blocksize = int(meta['x-container-block-size'])
87
    blockhash = meta['x-container-block-hash']
88
    
89
    if os.path.isfile(file):
90
        size = os.path.getsize(file)
91
        hashes = HashMap(blocksize, blockhash)
92
        hashes.load(file)
93
    else:
94
        size = 0
95
        hashes = []
96
    
97
    map = client.retrieve_object_hashmap(container, object)
98
    
99
    with open(file, 'a') as fp:
100
        for i, h in enumerate(map):
101
            if i < len(hashes) and h == hashes[i]:
102
                continue
103
            start = i * blocksize
104
            end = '' if i == len(map) - 1 else (i + 1) * blocksize
105
            data = client.retrieve_object(container, object, range='bytes=%s-%s' % (start, end))
106
            fp.seek(start)
107
            fp.write(data)