common.py: allow specifying number of attempts in exec_cmd
[fuel.git] / deploy / common.py
1 ###############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # szilard.cserey@ericsson.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ###############################################################################
9
10
11 import subprocess
12 import sys
13 import os
14 import logging
15 import argparse
16 import shutil
17 import stat
18 import errno
19 import time
20
21 N = {'id': 0, 'status': 1, 'name': 2, 'cluster': 3, 'ip': 4, 'mac': 5,
22      'roles': 6, 'pending_roles': 7, 'online': 8, 'group_id': 9}
23 E = {'id': 0, 'status': 1, 'name': 2, 'release_id': 3, 'pending_release_id': 4}
24 R = {'id': 0, 'name': 1, 'state': 2, 'operating_system': 3, 'version': 4}
25 RO = {'name': 0, 'conflicts': 1}
26 CWD = os.getcwd()
27 LOG = logging.getLogger(__name__)
28 LOG.setLevel(logging.DEBUG)
29 formatter = logging.Formatter('%(message)s')
30 out_handler = logging.StreamHandler(sys.stdout)
31 out_handler.setFormatter(formatter)
32 LOG.addHandler(out_handler)
33 LOGFILE = 'autodeploy.log'
34 if os.path.isfile(LOGFILE):
35     os.remove(LOGFILE)
36 out_handler = logging.FileHandler(LOGFILE, mode='w')
37 out_handler.setFormatter(formatter)
38 LOG.addHandler(out_handler)
39 os.chmod(LOGFILE, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)
40
41 def exec_cmd(cmd, check=True, attempts=1, delay=5, verbose=False):
42     # a negative value means forever
43     while attempts != 0:
44         attempts = attempts - 1
45         process = subprocess.Popen(cmd,
46                                    stdout=subprocess.PIPE,
47                                    stderr=subprocess.PIPE,
48                                    shell=True)
49         (response, stderr) = process.communicate()
50         return_code = process.returncode
51         if return_code == 0 or attempts == 0:
52             break
53         time.sleep(delay)
54         if verbose:
55             log('%d attempts left: %s' % (attempts, cmd))
56
57     response = response.strip()
58     if check:
59         if return_code > 0:
60             stderr = stderr.strip()
61             print "Failed command: " + str(cmd)
62             print "Command returned response: " + str(stderr)
63             print "Command return code: " + str(return_code)
64             raise Exception(stderr)
65         else:
66             print "Command: " + str(cmd)
67             print str(response)
68             return response
69     return response, return_code
70
71
72 def run_proc(cmd):
73     process = subprocess.Popen(cmd,
74                                stdout=subprocess.PIPE,
75                                stderr=subprocess.STDOUT,
76                                shell=True)
77     return process
78
79
80 def parse(printout):
81     parsed_list = []
82     lines = printout.splitlines()
83     for l in lines[2:]:
84         parsed = [e.strip() for e in l.split('|')]
85         parsed_list.append(parsed)
86     return parsed_list
87
88
89 def clean(lines):
90     parsed_list = []
91     parsed = []
92     for l in lines.strip().splitlines():
93         parsed = []
94         cluttered = [e.strip() for e in l.split(' ')]
95         for p in cluttered:
96             if p:
97                 parsed.append(p)
98         parsed_list.append(parsed)
99     return parsed if len(parsed_list) == 1 else parsed_list
100
101
102 def err(message):
103     LOG.error('%s\n' % message)
104     sys.exit(1)
105
106
107 def warn(message):
108     LOG.warning('%s\n' % message)
109
110
111 def check_file_exists(file_path):
112     if not os.path.dirname(file_path):
113         file_path = '%s/%s' % (CWD, file_path)
114     if not os.path.isfile(file_path):
115         err('ERROR: File %s not found\n' % file_path)
116
117
118 def check_dir_exists(dir_path):
119     if not os.path.dirname(dir_path):
120         dir_path = '%s/%s' % (CWD, dir_path)
121     if not os.path.isdir(dir_path):
122         err('ERROR: Directory %s not found\n' % dir_path)
123
124
125 def create_dir_if_not_exists(dir_path):
126     if not os.path.isdir(dir_path):
127         log('Creating directory %s' % dir_path)
128         os.makedirs(dir_path)
129
130
131 def delete(f):
132     if os.path.isfile(f):
133         log('Deleting file %s' % f)
134         os.remove(f)
135     elif os.path.isdir(f):
136         log('Deleting directory %s' % f)
137         shutil.rmtree(f)
138
139
140 def commafy(comma_separated_list):
141     l = [c.strip() for c in comma_separated_list.split(',')]
142     return ','.join(l)
143
144
145 def check_if_root():
146     uid = os.getuid()
147     if uid != 0:
148         err('You need be root to run this application')
149
150
151 def log(message):
152     LOG.debug('%s\n' % message)
153
154
155 class ArgParser(argparse.ArgumentParser):
156
157     def error(self, message):
158         sys.stderr.write('ERROR: %s\n' % message)
159         self.print_help()
160         sys.exit(2)
161
162
163 def backup(path):
164     src = path
165     dst = path + '_orig'
166     delete(dst)
167     try:
168         shutil.copytree(src, dst)
169     except OSError as e:
170         if e.errno == errno.ENOTDIR:
171             shutil.copy(src, dst)
172         else:
173             raise