utils.py 8.44 KB
Newer Older
soumith's avatar
soumith committed
1
import os
soumith's avatar
soumith committed
2
import os.path
soumith's avatar
soumith committed
3
import hashlib
4
import gzip
soumith's avatar
soumith committed
5
import errno
6
7
8
import tarfile
import zipfile

9
import torch
10
from torch.utils.model_zoo import tqdm
11
12


Francisco Massa's avatar
Francisco Massa committed
13
14
15
def gen_bar_updater():
    pbar = tqdm(total=None)

16
    def bar_update(count, block_size, total_size):
Holger Kohr's avatar
Holger Kohr committed
17
18
19
20
        if pbar.total is None and total_size:
            pbar.total = total_size
        progress_bytes = count * block_size
        pbar.update(progress_bytes - pbar.n)
21
22

    return bar_update
soumith's avatar
soumith committed
23

soumith's avatar
soumith committed
24

25
26
27
28
29
30
31
32
33
34
35
36
def calculate_md5(fpath, chunk_size=1024 * 1024):
    md5 = hashlib.md5()
    with open(fpath, 'rb') as f:
        for chunk in iter(lambda: f.read(chunk_size), b''):
            md5.update(chunk)
    return md5.hexdigest()


def check_md5(fpath, md5, **kwargs):
    return md5 == calculate_md5(fpath, **kwargs)


37
def check_integrity(fpath, md5=None):
38
39
    if not os.path.isfile(fpath):
        return False
40
41
    if md5 is None:
        return True
42
    return check_md5(fpath, md5)
43
44


45
46
47
48
49
50
def download_url(url, root, filename=None, md5=None):
    """Download a file from a url and place it in root.

    Args:
        url (str): URL to download file from
        root (str): Directory to place downloaded file in
51
52
        filename (str, optional): Name to save the file under. If None, use the basename of the URL
        md5 (str, optional): MD5 checksum of the download. If None, do not check
53
    """
Philip Meier's avatar
Philip Meier committed
54
    import urllib
55
56

    root = os.path.expanduser(root)
57
58
    if not filename:
        filename = os.path.basename(url)
59
60
    fpath = os.path.join(root, filename)

61
    os.makedirs(root, exist_ok=True)
62

63
    # check if file is already present locally
64
    if check_integrity(fpath, md5):
65
        print('Using downloaded and verified file: ' + fpath)
66
    else:   # download the file
Tzu-Wei Huang's avatar
Tzu-Wei Huang committed
67
68
        try:
            print('Downloading ' + url + ' to ' + fpath)
Holger Kohr's avatar
Holger Kohr committed
69
70
            urllib.request.urlretrieve(
                url, fpath,
Francisco Massa's avatar
Francisco Massa committed
71
                reporthook=gen_bar_updater()
Holger Kohr's avatar
Holger Kohr committed
72
            )
73
        except (urllib.error.URLError, IOError) as e:
Tzu-Wei Huang's avatar
Tzu-Wei Huang committed
74
75
76
77
            if url[:5] == 'https':
                url = url.replace('https:', 'http:')
                print('Failed download. Trying https -> http instead.'
                      ' Downloading ' + url + ' to ' + fpath)
Holger Kohr's avatar
Holger Kohr committed
78
79
                urllib.request.urlretrieve(
                    url, fpath,
Francisco Massa's avatar
Francisco Massa committed
80
                    reporthook=gen_bar_updater()
Holger Kohr's avatar
Holger Kohr committed
81
                )
82
83
            else:
                raise e
84
85
86
        # check integrity of downloaded file
        if not check_integrity(fpath, md5):
            raise RuntimeError("File not found or corrupted.")
Sanyam Kapoor's avatar
Sanyam Kapoor committed
87
88
89
90
91
92
93
94
95
96
97


def list_dir(root, prefix=False):
    """List all directories at a given root

    Args:
        root (str): Path to directory whose folders need to be listed
        prefix (bool, optional): If true, prepends the path to each result, otherwise
            only returns the name of the directories found
    """
    root = os.path.expanduser(root)
98
    directories = [p for p in os.listdir(root) if os.path.isdir(os.path.join(root, p))]
Sanyam Kapoor's avatar
Sanyam Kapoor committed
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
    if prefix is True:
        directories = [os.path.join(root, d) for d in directories]
    return directories


def list_files(root, suffix, prefix=False):
    """List all files ending with a suffix at a given root

    Args:
        root (str): Path to directory whose folders need to be listed
        suffix (str or tuple): Suffix of the files to match, e.g. '.png' or ('.jpg', '.png').
            It uses the Python "str.endswith" method and is passed directly
        prefix (bool, optional): If true, prepends the path to each result, otherwise
            only returns the name of the files found
    """
    root = os.path.expanduser(root)
115
    files = [p for p in os.listdir(root) if os.path.isfile(os.path.join(root, p)) and p.endswith(suffix)]
Sanyam Kapoor's avatar
Sanyam Kapoor committed
116
117
118
    if prefix is True:
        files = [os.path.join(root, d) for d in files]
    return files
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138


def download_file_from_google_drive(file_id, root, filename=None, md5=None):
    """Download a Google Drive file from  and place it in root.

    Args:
        file_id (str): id of file to be downloaded
        root (str): Directory to place downloaded file in
        filename (str, optional): Name to save the file under. If None, use the id of the file.
        md5 (str, optional): MD5 checksum of the download. If None, do not check
    """
    # Based on https://stackoverflow.com/questions/38511444/python-download-files-from-google-drive-using-url
    import requests
    url = "https://docs.google.com/uc?export=download"

    root = os.path.expanduser(root)
    if not filename:
        filename = file_id
    fpath = os.path.join(root, filename)

139
    os.makedirs(root, exist_ok=True)
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173

    if os.path.isfile(fpath) and check_integrity(fpath, md5):
        print('Using downloaded and verified file: ' + fpath)
    else:
        session = requests.Session()

        response = session.get(url, params={'id': file_id}, stream=True)
        token = _get_confirm_token(response)

        if token:
            params = {'id': file_id, 'confirm': token}
            response = session.get(url, params=params, stream=True)

        _save_response_content(response, fpath)


def _get_confirm_token(response):
    for key, value in response.cookies.items():
        if key.startswith('download_warning'):
            return value

    return None


def _save_response_content(response, destination, chunk_size=32768):
    with open(destination, "wb") as f:
        pbar = tqdm(total=None)
        progress = 0
        for chunk in response.iter_content(chunk_size):
            if chunk:  # filter out keep-alive new chunks
                f.write(chunk)
                progress += len(chunk)
                pbar.update(progress - pbar.n)
        pbar.close()
174
175


Ardalan's avatar
Ardalan committed
176
177
178
179
def _is_tarxz(filename):
    return filename.endswith(".tar.xz")


180
181
182
183
184
185
186
187
def _is_tar(filename):
    return filename.endswith(".tar")


def _is_targz(filename):
    return filename.endswith(".tar.gz")


188
189
190
191
def _is_tgz(filename):
    return filename.endswith(".tgz")


192
193
194
195
196
197
198
199
def _is_gzip(filename):
    return filename.endswith(".gz") and not filename.endswith(".tar.gz")


def _is_zip(filename):
    return filename.endswith(".zip")


200
201
202
203
def extract_archive(from_path, to_path=None, remove_finished=False):
    if to_path is None:
        to_path = os.path.dirname(from_path)

204
    if _is_tar(from_path):
205
        with tarfile.open(from_path, 'r') as tar:
206
            tar.extractall(path=to_path)
207
    elif _is_targz(from_path) or _is_tgz(from_path):
208
209
        with tarfile.open(from_path, 'r:gz') as tar:
            tar.extractall(path=to_path)
Philip Meier's avatar
Philip Meier committed
210
    elif _is_tarxz(from_path):
Ardalan's avatar
Ardalan committed
211
212
        with tarfile.open(from_path, 'r:xz') as tar:
            tar.extractall(path=to_path)
213
214
215
216
217
218
219
220
221
222
223
    elif _is_gzip(from_path):
        to_path = os.path.join(to_path, os.path.splitext(os.path.basename(from_path))[0])
        with open(to_path, "wb") as out_f, gzip.GzipFile(from_path) as zip_f:
            out_f.write(zip_f.read())
    elif _is_zip(from_path):
        with zipfile.ZipFile(from_path, 'r') as z:
            z.extractall(to_path)
    else:
        raise ValueError("Extraction of {} not supported".format(from_path))

    if remove_finished:
224
225
226
227
228
229
230
231
232
233
        os.remove(from_path)


def download_and_extract_archive(url, download_root, extract_root=None, filename=None,
                                 md5=None, remove_finished=False):
    download_root = os.path.expanduser(download_root)
    if extract_root is None:
        extract_root = download_root
    if not filename:
        filename = os.path.basename(url)
234

235
    download_url(url, download_root, filename, md5)
236

237
238
239
    archive = os.path.join(download_root, filename)
    print("Extracting {} to {}".format(archive, extract_root))
    extract_archive(archive, extract_root, remove_finished)
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268


def iterable_to_str(iterable):
    return "'" + "', '".join([str(item) for item in iterable]) + "'"


def verify_str_arg(value, arg=None, valid_values=None, custom_msg=None):
    if not isinstance(value, torch._six.string_classes):
        if arg is None:
            msg = "Expected type str, but got type {type}."
        else:
            msg = "Expected type str for argument {arg}, but got type {type}."
        msg = msg.format(type=type(value), arg=arg)
        raise ValueError(msg)

    if valid_values is None:
        return value

    if value not in valid_values:
        if custom_msg is not None:
            msg = custom_msg
        else:
            msg = ("Unknown value '{value}' for argument {arg}. "
                   "Valid values are {{{valid_values}}}.")
            msg = msg.format(value=value, arg=arg,
                             valid_values=iterable_to_str(valid_values))
        raise ValueError(msg)

    return value