utils.py 5.53 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
4
import hashlib
import errno
5
from torch.utils.model_zoo import tqdm
6
7


Francisco Massa's avatar
Francisco Massa committed
8
9
10
def gen_bar_updater():
    pbar = tqdm(total=None)

11
    def bar_update(count, block_size, total_size):
Holger Kohr's avatar
Holger Kohr committed
12
13
14
15
        if pbar.total is None and total_size:
            pbar.total = total_size
        progress_bytes = count * block_size
        pbar.update(progress_bytes - pbar.n)
16
17

    return bar_update
soumith's avatar
soumith committed
18

soumith's avatar
soumith committed
19

20
21
22
def check_integrity(fpath, md5=None):
    if md5 is None:
        return True
23
24
    if not os.path.isfile(fpath):
        return False
soumith's avatar
soumith committed
25
    md5o = hashlib.md5()
soumith's avatar
soumith committed
26
    with open(fpath, 'rb') as f:
soumith's avatar
soumith committed
27
        # read in 1MB chunks
28
        for chunk in iter(lambda: f.read(1024 * 1024), b''):
soumith's avatar
soumith committed
29
30
            md5o.update(chunk)
    md5c = md5o.hexdigest()
31
32
33
34
35
    if md5c != md5:
        return False
    return True


36
37
38
39
def makedir_exist_ok(dirpath):
    """
    Python2 support for os.makedirs(.., exist_ok=True)
    """
40
    try:
41
        os.makedirs(dirpath)
42
43
44
45
46
47
    except OSError as e:
        if e.errno == errno.EEXIST:
            pass
        else:
            raise

48

49
50
51
52
53
54
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
55
56
        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
57
    """
58
59
60
    from six.moves import urllib

    root = os.path.expanduser(root)
61
62
    if not filename:
        filename = os.path.basename(url)
63
64
65
66
    fpath = os.path.join(root, filename)

    makedir_exist_ok(root)

67
68
69
70
    # downloads file
    if os.path.isfile(fpath) and check_integrity(fpath, md5):
        print('Using downloaded and verified file: ' + fpath)
    else:
Tzu-Wei Huang's avatar
Tzu-Wei Huang committed
71
72
        try:
            print('Downloading ' + url + ' to ' + fpath)
Holger Kohr's avatar
Holger Kohr committed
73
74
            urllib.request.urlretrieve(
                url, fpath,
Francisco Massa's avatar
Francisco Massa committed
75
                reporthook=gen_bar_updater()
Holger Kohr's avatar
Holger Kohr committed
76
            )
77
        except OSError:
Tzu-Wei Huang's avatar
Tzu-Wei Huang committed
78
79
80
81
            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
82
83
                urllib.request.urlretrieve(
                    url, fpath,
Francisco Massa's avatar
Francisco Massa committed
84
                    reporthook=gen_bar_updater()
Holger Kohr's avatar
Holger Kohr committed
85
                )
Sanyam Kapoor's avatar
Sanyam Kapoor committed
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131


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)
    directories = list(
        filter(
            lambda p: os.path.isdir(os.path.join(root, p)),
            os.listdir(root)
        )
    )

    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)
    files = list(
        filter(
            lambda p: os.path.isfile(os.path.join(root, p)) and p.endswith(suffix),
            os.listdir(root)
        )
    )

    if prefix is True:
        files = [os.path.join(root, d) for d in files]

    return files
132
133
134
135
136
137
138
139
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
174
175
176
177
178
179
180
181
182
183
184
185
186


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)

    makedir_exist_ok(root)

    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()