forked from OpenFAST/r-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
updateBaselineSolutions.py
73 lines (59 loc) · 2.8 KB
/
updateBaselineSolutions.py
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
#
# Copyright 2017 National Renewable Energy Laboratory
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""
This program copies locally generated solutions into the appropriate machine - compiler
specific directory to update the baseline solutions.
Usage: python updateBaselineSolutions.py input_case_list source_solution_parent target_solution_parent system_name compiler_id
input_case_list - a text file listing all the cases to copy
source_solution_parent - the location to copy the files from. this is the parent directory of the cases; for example, `openfast/build/reg_tests/openfast`
target_solution_parent - the location to copy the files to. this is the parent directory of the target cases; for example, `openfast/reg_tests/r-test/openfast`
Example: python updateBaselineSolutions.py caselist.txt source/solution/parent target/solution/parent [macos,linux,windows] [intel,gnu]
"""
import sys
import os
import shutil
##### Helper functions
def exitWithError(error):
print(error)
sys.exit(1)
def exitWithDirNotFound(dir):
exitWithError("Directory does not exist: {}\n".format(dir))
##### Main
### Verify input arguments
if len(sys.argv) != 6:
exitWithError("Invalid arguments: {}\n".format(" ".join(sys.argv)) +
"Usage: python updateBaselineSolutions.py caselist.txt local/solution/parent baseline/solution/parent [macos,linux,windows] [intel,gnu]")
with open(sys.argv[1]) as listfile:
content = listfile.readlines()
casenames = [x.rstrip("\n\r").strip() for x in content if "#" not in x]
sourceParent = sys.argv[2]
targetParent = sys.argv[3]
machine = sys.argv[4]
compiler = sys.argv[5]
for case in casenames:
# verify source directory exists. if not, bail
if not os.path.isdir(sourceParent):
exitWithDirNotFound(sourceParent)
# verify destination directory exists. if not, make it
destinationDir = os.path.join(targetParent, case, "{}-{}".format(machine, compiler))
if not os.path.isdir(destinationDir):
os.makedirs(destinationDir)
caseDir = os.path.join(sourceParent, case)
sourceFiles = os.listdir(caseDir)
targetExtensions = [".out", ".outb", ".sum"]
targetFiles = [s for s in sourceFiles for t in targetExtensions if t in s]
for f in targetFiles:
shutil.copyfile(os.path.join(caseDir, f), os.path.join(destinationDir,f))