Statistics
| Branch: | Tag: | Revision:

root / tools / lib / transfer.py @ f546c15e

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

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

    
41

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

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