aboutsummaryrefslogtreecommitdiffstats
path: root/func/fetchimg.py
blob: 1ed3def6f38c219f0f4aa8bb739f089b7aba08c6 (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
##############################################################################
# Copyright (c) 2015 Dell Inc  and others.
#
# 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
##############################################################################
import os
import time

IMGSTORE = "/home/opnfv/imgstore"


class FetchImg:

    def __init__(self):
        print 'Fetching Image!'

    @staticmethod
    def download():
        time.sleep(2)
        os.system('mkdir -p Temp_Img')
        filepath = './Temp_Img/QTIP_CentOS.qcow2'
        imgstorepath = IMGSTORE + "/QTIP_CentOS.qcow2"
        if os.path.isfile(imgstorepath):
            os.system("ln -s %s %s" % (imgstorepath, filepath))
            print "QTIP_CentOS.qcow2 exists locally. Skipping the download and using the file from IMG store"
        else:
            print 'Fetching QTIP_CentOS.qcow2'
            os.system('wget http://artifacts.opnfv.org/qtip/QTIP_CentOS.qcow2 -P Temp_Img')

            while not os.path.isfile(filepath):
                time.sleep(10)
            print 'Download Completed!'