file_utils.py 7.66 KB
Newer Older
thomwolf's avatar
thomwolf committed
1
2
3
4
5
"""
Utilities for working with the local dataset cache.
This file is adapted from the AllenNLP library at https://github.com/allenai/allennlp
Copyright by the AllenNLP authors.
"""
thomwolf's avatar
thomwolf committed
6
from __future__ import (absolute_import, division, print_function, unicode_literals)
thomwolf's avatar
thomwolf committed
7

thomwolf's avatar
thomwolf committed
8
import json
thomwolf's avatar
thomwolf committed
9
import logging
thomwolf's avatar
thomwolf committed
10
import os
thomwolf's avatar
thomwolf committed
11
12
13
import shutil
import tempfile
from functools import wraps
thomwolf's avatar
thomwolf committed
14
15
from hashlib import sha256
from io import open
thomwolf's avatar
thomwolf committed
16
17
18

import boto3
import requests
thomwolf's avatar
thomwolf committed
19
20
from botocore.exceptions import ClientError
from tqdm import tqdm
thomwolf's avatar
thomwolf committed
21

thomwolf's avatar
thomwolf committed
22
23
24
25
26
27
28
29
30
31
32
33
try:
    from urllib.parse import urlparse
except ImportError:
    from urlparse import urlparse

try:
    from pathlib import Path
    PYTORCH_PRETRAINED_BERT_CACHE = Path(os.getenv('PYTORCH_PRETRAINED_BERT_CACHE',
                                                   Path.home() / '.pytorch_pretrained_bert'))
except ImportError:
    PYTORCH_PRETRAINED_BERT_CACHE = os.getenv('PYTORCH_PRETRAINED_BERT_CACHE',
                                              os.path.join(os.path.expanduser("~"), '.pytorch_pretrained_bert'))
thomwolf's avatar
thomwolf committed
34

thomwolf's avatar
thomwolf committed
35
logger = logging.getLogger(__name__)  # pylint: disable=invalid-name
thomwolf's avatar
thomwolf committed
36
37


thomwolf's avatar
thomwolf committed
38
def url_to_filename(url, etag=None):
thomwolf's avatar
thomwolf committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
    """
    Convert `url` into a hashed filename in a repeatable way.
    If `etag` is specified, append its hash to the url's, delimited
    by a period.
    """
    url_bytes = url.encode('utf-8')
    url_hash = sha256(url_bytes)
    filename = url_hash.hexdigest()

    if etag:
        etag_bytes = etag.encode('utf-8')
        etag_hash = sha256(etag_bytes)
        filename += '.' + etag_hash.hexdigest()

    return filename


thomwolf's avatar
thomwolf committed
56
def filename_to_url(filename, cache_dir=None):
thomwolf's avatar
thomwolf committed
57
58
    """
    Return the url and etag (which may be ``None``) stored for `filename`.
thomwolf's avatar
thomwolf committed
59
    Raise ``EnvironmentError`` if `filename` or its stored metadata do not exist.
thomwolf's avatar
thomwolf committed
60
61
62
63
64
65
    """
    if cache_dir is None:
        cache_dir = PYTORCH_PRETRAINED_BERT_CACHE

    cache_path = os.path.join(cache_dir, filename)
    if not os.path.exists(cache_path):
thomwolf's avatar
thomwolf committed
66
        raise EnvironmentError("file {} not found".format(cache_path))
thomwolf's avatar
thomwolf committed
67
68
69

    meta_path = cache_path + '.json'
    if not os.path.exists(meta_path):
thomwolf's avatar
thomwolf committed
70
        raise EnvironmentError("file {} not found".format(meta_path))
thomwolf's avatar
thomwolf committed
71

thomwolf's avatar
thomwolf committed
72
    with open(meta_path, encoding="utf-8") as meta_file:
thomwolf's avatar
thomwolf committed
73
74
75
76
77
78
79
        metadata = json.load(meta_file)
    url = metadata['url']
    etag = metadata['etag']

    return url, etag


thomwolf's avatar
thomwolf committed
80
def cached_path(url_or_filename, cache_dir=None):
thomwolf's avatar
thomwolf committed
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
    """
    Given something that might be a URL (or might be a local path),
    determine which. If it's a URL, download the file and cache it, and
    return the path to the cached file. If it's already a local path,
    make sure the file exists and then return the path.
    """
    if cache_dir is None:
        cache_dir = PYTORCH_PRETRAINED_BERT_CACHE

    parsed = urlparse(url_or_filename)

    if parsed.scheme in ('http', 'https', 's3'):
        # URL, so get it from the cache (downloading if necessary)
        return get_from_cache(url_or_filename, cache_dir)
    elif os.path.exists(url_or_filename):
        # File, and it exists.
        return url_or_filename
    elif parsed.scheme == '':
        # File, but it doesn't exist.
thomwolf's avatar
thomwolf committed
100
        raise EnvironmentError("file {} not found".format(url_or_filename))
thomwolf's avatar
thomwolf committed
101
102
103
104
105
    else:
        # Something unknown
        raise ValueError("unable to parse {} as a URL or as a local path".format(url_or_filename))


thomwolf's avatar
thomwolf committed
106
def split_s3_path(url):
thomwolf's avatar
thomwolf committed
107
108
109
110
111
112
113
114
115
116
117
118
    """Split a full s3 path into the bucket name and path."""
    parsed = urlparse(url)
    if not parsed.netloc or not parsed.path:
        raise ValueError("bad s3 path {}".format(url))
    bucket_name = parsed.netloc
    s3_path = parsed.path
    # Remove '/' at beginning of path.
    if s3_path.startswith("/"):
        s3_path = s3_path[1:]
    return bucket_name, s3_path


thomwolf's avatar
thomwolf committed
119
def s3_request(func):
thomwolf's avatar
thomwolf committed
120
121
122
123
124
125
    """
    Wrapper function for s3 requests in order to create more helpful error
    messages.
    """

    @wraps(func)
thomwolf's avatar
thomwolf committed
126
    def wrapper(url, *args, **kwargs):
thomwolf's avatar
thomwolf committed
127
128
129
130
        try:
            return func(url, *args, **kwargs)
        except ClientError as exc:
            if int(exc.response["Error"]["Code"]) == 404:
thomwolf's avatar
thomwolf committed
131
                raise EnvironmentError("file {} not found".format(url))
thomwolf's avatar
thomwolf committed
132
133
134
135
136
137
138
            else:
                raise

    return wrapper


@s3_request
thomwolf's avatar
thomwolf committed
139
def s3_etag(url):
thomwolf's avatar
thomwolf committed
140
141
142
143
144
145
146
147
    """Check ETag on S3 object."""
    s3_resource = boto3.resource("s3")
    bucket_name, s3_path = split_s3_path(url)
    s3_object = s3_resource.Object(bucket_name, s3_path)
    return s3_object.e_tag


@s3_request
thomwolf's avatar
thomwolf committed
148
def s3_get(url, temp_file):
thomwolf's avatar
thomwolf committed
149
150
151
152
153
154
    """Pull a file directly from S3."""
    s3_resource = boto3.resource("s3")
    bucket_name, s3_path = split_s3_path(url)
    s3_resource.Bucket(bucket_name).download_fileobj(s3_path, temp_file)


thomwolf's avatar
thomwolf committed
155
def http_get(url, temp_file):
thomwolf's avatar
thomwolf committed
156
157
158
159
160
161
162
163
164
165
166
    req = requests.get(url, stream=True)
    content_length = req.headers.get('Content-Length')
    total = int(content_length) if content_length is not None else None
    progress = tqdm(unit="B", total=total)
    for chunk in req.iter_content(chunk_size=1024):
        if chunk: # filter out keep-alive new chunks
            progress.update(len(chunk))
            temp_file.write(chunk)
    progress.close()


thomwolf's avatar
thomwolf committed
167
def get_from_cache(url, cache_dir=None):
thomwolf's avatar
thomwolf committed
168
169
170
171
172
173
174
    """
    Given a URL, look for the corresponding dataset in the local cache.
    If it's not there, download it. Then return the path to the cached file.
    """
    if cache_dir is None:
        cache_dir = PYTORCH_PRETRAINED_BERT_CACHE

thomwolf's avatar
thomwolf committed
175
176
    if not os.path.exists(cache_dir):
        os.makedirs(cache_dir)
thomwolf's avatar
thomwolf committed
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216

    # Get eTag to add to filename, if it exists.
    if url.startswith("s3://"):
        etag = s3_etag(url)
    else:
        response = requests.head(url, allow_redirects=True)
        if response.status_code != 200:
            raise IOError("HEAD request failed for url {} with status code {}"
                          .format(url, response.status_code))
        etag = response.headers.get("ETag")

    filename = url_to_filename(url, etag)

    # get cache path to put the file
    cache_path = os.path.join(cache_dir, filename)

    if not os.path.exists(cache_path):
        # Download to temporary file, then copy to cache dir once finished.
        # Otherwise you get corrupt cache entries if the download gets interrupted.
        with tempfile.NamedTemporaryFile() as temp_file:
            logger.info("%s not found in cache, downloading to %s", url, temp_file.name)

            # GET file object
            if url.startswith("s3://"):
                s3_get(url, temp_file)
            else:
                http_get(url, temp_file)

            # we are copying the file before closing it, so flush to avoid truncation
            temp_file.flush()
            # shutil.copyfileobj() starts at the current position, so go to the start
            temp_file.seek(0)

            logger.info("copying %s to cache at %s", temp_file.name, cache_path)
            with open(cache_path, 'wb') as cache_file:
                shutil.copyfileobj(temp_file, cache_file)

            logger.info("creating metadata file for %s", cache_path)
            meta = {'url': url, 'etag': etag}
            meta_path = cache_path + '.json'
thomwolf's avatar
thomwolf committed
217
            with open(meta_path, 'w', encoding="utf-8") as meta_file:
thomwolf's avatar
thomwolf committed
218
219
220
221
222
223
224
                json.dump(meta, meta_file)

            logger.info("removing temp file %s", temp_file.name)

    return cache_path


thomwolf's avatar
thomwolf committed
225
def read_set_from_file(filename):
thomwolf's avatar
thomwolf committed
226
227
228
229
230
    '''
    Extract a de-duped collection (set) of text from a file.
    Expected file format is one item per line.
    '''
    collection = set()
231
    with open(filename, 'r', encoding='utf-8') as file_:
thomwolf's avatar
thomwolf committed
232
233
234
235
236
        for line in file_:
            collection.add(line.rstrip())
    return collection


thomwolf's avatar
thomwolf committed
237
def get_file_extension(path, dot=True, lower=True):
thomwolf's avatar
thomwolf committed
238
239
240
    ext = os.path.splitext(path)[1]
    ext = ext if dot else ext[1:]
    return ext.lower() if lower else ext