source: src/tests/pybin/tools.py @ c198b69

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since c198b69 was a95c117, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Fixed handling of paths when regenerating tests

  • Property mode set to 100644
File size: 6.6 KB
Line 
1from __future__ import print_function
2
3import __main__
4import argparse
5import multiprocessing
6import os
7import re
8import signal
9import stat
10import sys
11import fileinput
12
13from pybin import settings
14from subprocess import Popen, PIPE, STDOUT
15
16################################################################################
17#               shell helpers
18################################################################################
19
20# helper functions to run terminal commands
21def sh(cmd, print2stdout = True, input = None):
22        # add input redirection if needed
23        if input and os.path.isfile(input):
24                cmd += " < %s" % input
25
26        # if this is a dry_run, only print the commands that would be ran
27        if settings.dry_run :
28                print("cmd: %s" % cmd)
29                return 0, None
30
31        # otherwise create a pipe and run the desired command
32        else :
33                proc = Popen(cmd, stdout=None if print2stdout else PIPE, stderr=STDOUT, shell=True)
34                out, err = proc.communicate()
35                return proc.returncode, out
36
37def is_ascii(fname):
38        if not os.path.isfile(fname):
39                return False
40
41        code, out = sh("file %s" % fname, print2stdout = False)
42        if code != 0:
43                return False
44
45        match = re.search(".*: (.*)", out)
46
47        if not match:
48                return False
49
50        return match.group(1) == "ASCII text"
51
52# Remove 1 or more files silently
53def rm( files ):
54        try:
55                for file in files:
56                        sh("rm -f %s > /dev/null 2>&1" % file )
57        except TypeError:
58                sh("rm -f %s > /dev/null 2>&1" % files )
59
60# Create 1 or more directory
61def mkdir( files ):
62        try:
63                for file in files:
64                        sh("mkdir -p %s" % os.path.dirname(file) )
65        except TypeError:
66                sh("mkdir -p %s" % os.path.dirname(files) )
67
68def chdir( dest = __main__.__file__ ):
69        abspath = os.path.abspath(dest)
70        dname = os.path.dirname(abspath)
71        os.chdir(dname)
72
73# diff two files
74def diff( lhs, rhs ):
75        # diff the output of the files
76        diff_cmd = ("diff --ignore-all-space "
77                                "--ignore-blank-lines "
78                                "--old-group-format='\t\tmissing lines :\n"
79                                "%%<' \\\n"
80                                "--new-group-format='\t\tnew lines :\n"
81                                "%%>' \\\n"
82                                "--unchanged-group-format='%%=' \\"
83                                "--changed-group-format='\t\texpected :\n"
84                                "%%<"
85                                "\t\tgot :\n"
86                                "%%>\n' \\\n"
87                                "--new-line-format='\t\t%%dn\t%%L' \\\n"
88                                "--old-line-format='\t\t%%dn\t%%L' \\\n"
89                                "--unchanged-line-format='' \\\n"
90                                "%s %s")
91
92        # fetch return code and error from the diff command
93        return sh(diff_cmd % (lhs, rhs), False)
94
95# call make
96def make(target, flags = '', redirects = '', error_file = None, silent = False):
97        test_param = """test="%s" """ % (error_file) if error_file else ''
98        cmd = ' '.join([
99                settings.make,
100                '-s' if silent else '',
101                test_param,
102                settings.debug.flags,
103                flags,
104                target,
105                redirects
106        ])
107        return sh(cmd)
108
109def which(program):
110    import os
111    def is_exe(fpath):
112        return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
113
114    fpath, fname = os.path.split(program)
115    if fpath:
116        if is_exe(program):
117            return program
118    else:
119        for path in os.environ["PATH"].split(os.pathsep):
120            exe_file = os.path.join(path, program)
121            if is_exe(exe_file):
122                return exe_file
123
124    return None
125################################################################################
126#               file handling
127################################################################################
128
129# helper function to replace patterns in a file
130def file_replace(fname, pat, s_after):
131        file = fileinput.FileInput(fname, inplace=True, backup='.bak')
132        for line in file:
133                print(line.replace(pat, s_after), end='')
134        file.close()
135
136# helper function to check if a files contains only a specific string
137def fileContainsOnly(file, text) :
138        with open(file) as f:
139                ff = f.read().strip()
140                result = ff == text.strip()
141
142                return result;
143
144# check whether or not a file is executable
145def fileIsExecutable(file) :
146        try :
147                fileinfo = os.stat(file)
148                return bool(fileinfo.st_mode & stat.S_IXUSR)
149        except Exception as inst:
150                print(type(inst))    # the exception instance
151                print(inst.args)     # arguments stored in .args
152                print(inst)
153                return False
154
155# transform path to canonical form
156def canonicalPath(path):
157        abspath = os.path.abspath(__main__.__file__)
158        dname = os.path.dirname(abspath)
159        return os.path.join(dname, os.path.normpath(path) )
160
161# compare path even if form is different
162def pathCmp(lhs, rhs):
163        return canonicalPath( lhs ) == canonicalPath( rhs )
164
165# walk all files in a path
166def pathWalk( op ):
167        def step(_, dirname, names):
168                for name in names:
169                        path = os.path.join(dirname, name)
170                        op( path )
171
172        # Start the walk
173        abspath = os.path.abspath(__main__.__file__)
174        dname = os.path.dirname(abspath)
175        os.path.walk(dname, step, '')
176
177################################################################################
178#               system
179################################################################################
180# count number of jobs to create
181def jobCount( options, tests ):
182        # check if the user already passed in a number of jobs for multi-threading
183        if not options.jobs:
184                make_flags = os.environ.get('MAKEFLAGS')
185                force = bool(make_flags)
186                make_jobs_fds = re.search("--jobserver-(auth|fds)=\s*([0-9]+),([0-9]+)", make_flags) if make_flags else None
187                if make_jobs_fds :
188                        tokens = os.read(int(make_jobs_fds.group(2)), 1024)
189                        options.jobs = len(tokens)
190                        os.write(int(make_jobs_fds.group(3)), tokens)
191                else :
192                        options.jobs = multiprocessing.cpu_count()
193        else :
194                force = True
195
196        # make sure we have a valid number of jobs that corresponds to user input
197        if options.jobs <= 0 :
198                print('ERROR: Invalid number of jobs', file=sys.stderr)
199                sys.exit(1)
200
201        return min( options.jobs, len(tests) ), force
202
203# setup a proper processor pool with correct signal handling
204def setupPool(jobs):
205        original_sigint_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
206        pool = multiprocessing.Pool(jobs)
207        signal.signal(signal.SIGINT, original_sigint_handler)
208
209        return pool
210
211# handle signals in scope
212class SignalHandling():
213        def __enter__(self):
214                # enable signal handling
215                signal.signal(signal.SIGINT, signal.SIG_DFL)
216
217        def __exit__(self, type, value, traceback):
218                # disable signal handling
219                signal.signal(signal.SIGINT, signal.SIG_IGN)
220
221################################################################################
222#               misc
223################################################################################
224
225# check if arguments is yes or no
226def yes_no(string):
227        if string == "yes" :
228                return True
229        if string == "no" :
230                return False
231        raise argparse.ArgumentTypeError(msg)
232        return False
233
234def fancy_print(text):
235        column = which('column')
236        if column:
237                cmd = "%s 2> /dev/null" % column
238                print(cmd)
239                proc = Popen(cmd, stdin=PIPE, stderr=None, shell=True)
240                proc.communicate(input=text)
241        else:
242                print(text)
Note: See TracBrowser for help on using the repository browser.