Migrating to Mitaka
[apex.git] / build / cache.sh
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 2016 Red Hat Inc.
4 # Dan Radez <dradez@redhat.com>
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 CACHE_DIR="$(pwd)/cache"
12
13 # Make sure the cache dir exists
14 function cache_dir {
15     if [ ! -d $CACHE_DIR/ ]; then mkdir $CACHE_DIR/; fi
16     if [ ! -f $CACHE_DIR/.cache ]; then touch $CACHE_DIR/.cache; fi
17     echo "Cache Dir: $CACHE_DIR"
18 }
19
20 function cache_git_tar {
21     echo "cache_git_tar git ls-remote"
22 }
23
24 # $1 = download url
25 # $2 = filename to write to
26 function curl_file {
27     echo "Downloading $1"
28     echo "Cache download location: $CACHE_DIR/$2"
29     until curl -C- -L -o $CACHE_DIR/$2 $1  || (( count++ >= 20 )); do
30         echo -n '' #do nothing, we just want to loop
31     done
32     sed -i "/$2/d" $CACHE_DIR/.cache
33     echo "$(md5sum $CACHE_DIR/$2) $2" >> $CACHE_DIR/.cache
34 }
35
36 # $1 =  download url
37 function populate_cache {
38     cache_dir
39
40     # get the file name
41     filename="${1##*/}"
42
43     # check if the cache file exists
44     # and if it has an md5 compare that
45     echo "Checking cache file: $1"
46     if [ ! -f $CACHE_DIR/${filename} ]; then
47         curl_file $1 $filename
48     else
49         remote_md5="$(curl -sf -L ${1}.md5 | awk {'print $1'})"
50         if [ -z "$remote_md5" ]; then
51             echo "Got empty MD5 from remote for $filename, skipping MD5 check"
52         elif [ "$remote_md5" != "$(grep ${filename} $CACHE_DIR/.cache | awk {'print $1'})" ]; then
53             curl_file $1 $filename
54         fi
55     fi
56 }
57
58 # $1 = filename to get from cache
59 function get_cached_file {
60   cp -f $CACHE_DIR/$1 .
61 }