summaryrefslogtreecommitdiffstats
path: root/build/cache.sh
blob: 4d41a7a225bb83b89894ff99086153d4806b0e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/sh
##############################################################################
# Copyright (c) 2016 Red Hat Inc.
# Dan Radez <dradez@redhat.com>
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

CACHE_DIR="$(pwd)/cache"

# Make sure the cache dir exists
function cache_dir {
    if [ ! -d $CACHE_DIR/ ]; then mkdir $CACHE_DIR/; fi
    if [ ! -f $CACHE_DIR/.cache ]; then touch $CACHE_DIR/.cache; fi
    echo "Cache Dir: $CACHE_DIR"
}

function cache_git_tar {
    echo "cache_git_tar git ls-remote"
}

# $1 = download url
# $2 = filename to write to
function curl_file {
    if [ -f $CACHE_DIR/$2 ]; then
    echo "Removing stale $2"
        rm -f $CACHE_DIR/$2
    fi
    echo "Downloading $1"
    echo "Cache download location: $CACHE_DIR/$2"
    until curl -C- -L -o $CACHE_DIR/$2 $1  || (( count++ >= 20 )); do
        echo -n '' #do nothing, we just want to loop
    done
    sed -i "/$2/d" $CACHE_DIR/.cache
    echo "$(md5sum $CACHE_DIR/$2) $2" >> $CACHE_DIR/.cache
}

# $1 =  download url
function populate_cache {
    local my_md5
    cache_dir

    # get the file name
    filename="${1##*/}"

    # check if the cache file exists
    # and if it has an md5 compare that
    echo "Checking cache file exists: ${filename}"
    if [ ! -f $CACHE_DIR/${filename} ]; then
        echo "Cache file: ${CACHE_DIR}/${filename} missing...will download..."
        curl_file $1 $filename
    else
        echo "Cache file exists...comparing MD5 checksum"
        remote_md5="$(curl -sf -L ${1}.md5 | awk {'print $1'})"
        if [ -z "$remote_md5" ]; then
            echo "Got empty MD5 from remote for $filename, skipping MD5 check"
            curl_file $1 $filename
        else
            my_md5=$(grep ${filename} $CACHE_DIR/.cache | awk {'print $1'})
            if [ "$remote_md5" != "$my_md5" ]; then
                echo "MD5 mismatch, cache file MD5 is ${my_md5}"
                echo "Downloading $filename"
                curl_file $1 $filename
            else
              echo "Will use cache for ${filename}"
            fi
        fi
    fi
}

# $1 = filename to get from cache
function get_cached_file {
  cp -f $CACHE_DIR/$1 .
}