download.py 10.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#   Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import os
20
import os.path as osp
21 22 23 24 25 26 27
import shutil
import requests
import tqdm
import hashlib
import tarfile
import zipfile

28 29
from .voc_utils import merge_and_create_list

30 31 32 33 34
import logging
logger = logging.getLogger(__name__)

__all__ = ['get_weights_path', 'get_dataset_path']

35 36
WEIGHTS_HOME = osp.expanduser("~/.cache/paddle/weights")
DATASET_HOME = osp.expanduser("~/.cache/paddle/dataset")
37

38 39
# dict of {dataset_name: (downalod_info, sub_dirs)}
# download info: (url, md5sum)
40
DATASETS = {
41
    'coco': ([
W
wangguanzhong 已提交
42 43 44 45 46 47 48 49 50
        (
            'http://images.cocodataset.org/zips/train2017.zip',
            'cced6f7f71b7629ddf16f17bbcfab6b2', ),
        (
            'http://images.cocodataset.org/zips/val2017.zip',
            '442b8da7639aecaf257c1dceb8ba8c80', ),
        (
            'http://images.cocodataset.org/annotations/annotations_trainval2017.zip',
            'f4bbac642086de4f52a3fdda2de5fa2c', ),
51 52
    ], ["annotations", "train2017", "val2017"]),
    'voc': ([
W
wangguanzhong 已提交
53 54 55 56 57 58 59 60 61
        (
            'http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar',
            '6cd6e144f989b92b3379bac3b3de84fd', ),
        (
            'http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar',
            'c52e279531787c972589f7e41ab4ae64', ),
        (
            'http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar',
            'b6e924de25625d8de591ea690078ad9f', ),
62
    ], ["VOCdevkit/VOC_all"]),
63 64 65 66 67 68 69 70 71 72 73 74
}

DOWNLOAD_RETRY_LIMIT = 3


def get_weights_path(url):
    """Get weights path from WEIGHT_HOME, if not exists,
    download it from url.
    """
    return get_path(url, WEIGHTS_HOME)


75
def get_dataset_path(path, annotation, image_dir):
76 77 78 79 80
    """
    If path exists, return path.
    Otherwise, get dataset path from DATASET_HOME, if not exists,
    download it.
    """
81
    if _dataset_exists(path, annotation, image_dir):
82 83
        return path

K
Kaipeng Deng 已提交
84
    logger.info("Dataset {} is not valid for reason above, try searching {} or "
85
                "downloading dataset...".format(
86 87
                    osp.realpath(path), DATASET_HOME))

88
    for name, dataset in DATASETS.items():
89
        if os.path.split(path.strip().lower())[-1] == name:
90
            logger.info("Parse dataset_dir {} as dataset "
91
                        "{}".format(path, name))
92 93
            data_dir = osp.join(DATASET_HOME, name)

94
            # For voc, only check merged dir VOC_all
95 96 97 98 99 100 101
            if name == 'voc':
                check_dir = osp.join(data_dir, dataset[1][0])
                if osp.exists(check_dir):
                    logger.info("Found {}".format(check_dir))
                    return data_dir

            for url, md5sum in dataset[0]:
102
                get_path(url, data_dir, md5sum)
103

104
            # voc should merge dir and create list after download
105 106 107
            if name == 'voc':
                logger.info("Download voc dataset successed, merge "
                            "VOC2007 and VOC2012 to VOC_all...")
108 109 110 111 112 113 114 115 116 117 118 119
                output_dir = osp.join(data_dir, dataset[1][0])
                devkit_dir = "/".join(output_dir.split('/')[:-1])
                years = ['2007', '2012']
                # merge dir in output_tmp_dir at first, move to 
                # output_dir after merge sucessed.
                output_tmp_dir = osp.join(data_dir, 'tmp')
                if osp.isdir(output_tmp_dir):
                    shutil.rmtree(output_tmp_dir)
                # NOTE(dengkaipeng): since using auto download VOC
                # dataset, VOC default label list should be used, 
                # do not generate label_list.txt here. For default
                # label, see ../data/source/voc_loader.py
W
wangguanzhong 已提交
120
                merge_and_create_list(devkit_dir, years, output_tmp_dir)
121 122 123 124
                shutil.move(output_tmp_dir, output_dir)
                # remove source directory VOC2007 and VOC2012
                shutil.rmtree(osp.join(devkit_dir, "VOC2007"))
                shutil.rmtree(osp.join(devkit_dir, "VOC2012"))
125 126 127
            return data_dir

    # not match any dataset in DATASETS
K
Kaipeng Deng 已提交
128 129 130
    raise ValueError("Dataset {} is not valid and cannot parse dataset type "
                     "'{}' for automaticly downloading, which only supports "
                     "'voc' and 'coco' currently".format(path, osp.split(path)[-1]))
131 132


133 134 135 136 137 138 139 140 141 142
def map_path(url, root_dir):
    # parse path after download to decompress under root_dir
    fname = url.split('/')[-1]
    zip_formats = ['.zip', '.tar', '.gz']
    fpath = fname
    for zip_format in zip_formats:
        fpath = fpath.replace(zip_format, '')
    return osp.join(root_dir, fpath)


143 144 145 146 147 148 149 150 151 152 153 154
def get_path(url, root_dir, md5sum=None):
    """ Download from given url to root_dir.
    if file or directory specified by url is exists under
    root_dir, return the path directly, otherwise download
    from url and decompress it, return the path.

    url (str): download url
    root_dir (str): root dir for downloading, it should be
                    WEIGHTS_HOME or DATASET_HOME
    md5sum (str): md5 sum of download package
    """
    # parse path after download to decompress under root_dir
155
    fullpath = map_path(url, root_dir)
156 157 158 159

    # For same zip file, decompressed directory name different
    # from zip file name, rename by following map
    decompress_name_map = {
160
        "VOC": "VOCdevkit/VOC_all",
161 162 163 164 165 166
        "annotations_trainval": "annotations"
    }
    for k, v in decompress_name_map.items():
        if fullpath.find(k) >= 0:
            fullpath = '/'.join(fullpath.split('/')[:-1] + [v])

167
    if osp.exists(fullpath):
168 169 170 171 172 173 174 175
        logger.info("Found {}".format(fullpath))
    else:
        fullname = _download(url, root_dir, md5sum)
        _decompress(fullname)

    return fullpath


176
def _dataset_exists(path, annotation, image_dir):
177 178 179 180
    """
    Check if user define dataset exists
    """
    if not osp.exists(path):
K
Kaipeng Deng 已提交
181 182
        logger.info("Config dataset_dir {} is not exits, "
                "dataset config is not valid".format(path))
183 184
        return False

185 186 187 188
    if annotation:
        annotation_path = osp.join(path, annotation)
        if not osp.isfile(annotation_path):
            logger.info("Config annotation {} is not a "
K
Kaipeng Deng 已提交
189 190
                        "file, dataset config is not "
                        "valid".format(annotation_path))
191 192 193 194 195
            return False
    if image_dir:
        image_path = osp.join(path, image_dir)
        if not osp.isdir(image_path):
            logger.info("Config image_dir {} is not a "
K
Kaipeng Deng 已提交
196 197
                        "directory, dataset config is not "
                        "valid".format(image_path))
198
            return False
199 200 201
    return True


202 203 204 205 206 207 208
def _download(url, path, md5sum=None):
    """
    Download from url, save to path.

    url (str): download url
    path (str): download to given path
    """
209
    if not osp.exists(path):
210 211 212
        os.makedirs(path)

    fname = url.split('/')[-1]
213
    fullname = osp.join(path, fname)
214 215
    retry_cnt = 0

216
    while not (osp.exists(fullname) and _md5check(fullname, md5sum)):
217 218 219 220 221 222 223 224 225 226 227 228 229
        if retry_cnt < DOWNLOAD_RETRY_LIMIT:
            retry_cnt += 1
        else:
            raise RuntimeError("Download from {} failed. "
                               "Retry limit reached".format(url))

        logger.info("Downloading {} from {}".format(fname, url))

        req = requests.get(url, stream=True)
        if req.status_code != 200:
            raise RuntimeError("Downloading from {} failed with code "
                               "{}!".format(url, req.status_code))

K
Kaipeng Deng 已提交
230 231 232 233
        # For protecting download interupted, download to
        # tmp_fullname firstly, move tmp_fullname to fullname
        # after download finished
        tmp_fullname = fullname + "_tmp"
234
        total_size = req.headers.get('content-length')
K
Kaipeng Deng 已提交
235
        with open(tmp_fullname, 'wb') as f:
236 237 238 239 240 241 242 243 244 245
            if total_size:
                for chunk in tqdm.tqdm(
                        req.iter_content(chunk_size=1024),
                        total=(int(total_size) + 1023) // 1024,
                        unit='KB'):
                    f.write(chunk)
            else:
                for chunk in req.iter_content(chunk_size=1024):
                    if chunk:
                        f.write(chunk)
K
Kaipeng Deng 已提交
246
        shutil.move(tmp_fullname, fullname)
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277

    return fullname


def _md5check(fullname, md5sum=None):
    if md5sum is None:
        return True

    logger.info("File {} md5 checking...".format(fullname))
    md5 = hashlib.md5()
    with open(fullname, 'rb') as f:
        for chunk in iter(lambda: f.read(4096), b""):
            md5.update(chunk)
    calc_md5sum = md5.hexdigest()

    if calc_md5sum != md5sum:
        logger.info("File {} md5 check failed, {}(calc) != "
                    "{}(base)".format(fullname, calc_md5sum, md5sum))
        return False
    return True


def _decompress(fname):
    """
    Decompress for zip and tar file
    """
    logger.info("Decompressing {}...".format(fname))

    # For protecting decompressing interupted,
    # decompress to fpath_tmp directory firstly, if decompress
    # successed, move decompress files to fpath and delete
278
    # fpath_tmp and remove download compress file.
279
    fpath = '/'.join(fname.split('/')[:-1])
280 281
    fpath_tmp = osp.join(fpath, 'tmp')
    if osp.isdir(fpath_tmp):
282 283 284 285 286 287 288 289 290 291 292 293 294
        shutil.rmtree(fpath_tmp)
        os.makedirs(fpath_tmp)

    if fname.find('tar') >= 0:
        with tarfile.open(fname) as tf:
            tf.extractall(path=fpath_tmp)
    elif fname.find('zip') >= 0:
        with zipfile.ZipFile(fname) as zf:
            zf.extractall(path=fpath_tmp)
    else:
        raise TypeError("Unsupport compress file type {}".format(fname))

    for f in os.listdir(fpath_tmp):
295 296 297 298 299
        src_dir = osp.join(fpath_tmp, f)
        dst_dir = osp.join(fpath, f)
        _move_and_merge_tree(src_dir, dst_dir)

    shutil.rmtree(fpath_tmp)
300
    os.remove(fname)
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321


def _move_and_merge_tree(src, dst):
    """
    Move src directory to dst, if dst is already exists, 
    merge src to dst
    """
    if not osp.exists(dst):
        shutil.move(src, dst)
    else:
        for fp in os.listdir(src):
            src_fp = osp.join(src, fp)
            dst_fp = osp.join(dst, fp)
            if osp.isdir(src_fp):
                if osp.isdir(dst_fp):
                    _move_and_merge_tree(src_fp, dst_fp)
                else:
                    shutil.move(src_fp, dst_fp)
            elif osp.isfile(src_fp) and \
                    not osp.isfile(dst_fp):
                shutil.move(src_fp, dst_fp)