|
| 1 | +#!/usr/bin/python |
| 2 | + |
| 3 | +import os |
| 4 | + |
| 5 | +def safely_remove_file(path): |
| 6 | + if os.path.isfile(path): |
| 7 | + os.system("rm "+path) |
| 8 | + return |
| 9 | + |
| 10 | +def safely_remove_dir(path): |
| 11 | + if os.path.isdir(path): |
| 12 | + os.system("rm -r "+path) |
| 13 | + return |
| 14 | + |
| 15 | +def change_file_name(file_path, suffix): |
| 16 | + # Simply adds a suffix to an existing file. |
| 17 | + if os.path.isfile(file_path): |
| 18 | + os.system("mv "+file_path+" "+file_path+suffix) |
| 19 | + else: |
| 20 | + print "Couldn\'t find "+file_path |
| 21 | + return |
| 22 | + |
| 23 | + |
| 24 | +def get_highest_folder(path, prefix): |
| 25 | + # Assumes that the folders in path are part of a series with an integer ID |
| 26 | + # as the suffix. |
| 27 | + # Assumes integer ranks |
| 28 | + highest = -1 |
| 29 | + folders = [x for x in os.listdir(path) if os.path.isdir(path+"/"+x)] |
| 30 | + for folder in folders: |
| 31 | + folder_id = int(folder.replace(prefix, "")) |
| 32 | + if folder_id > highest: |
| 33 | + highest = folder_id |
| 34 | + return highest |
| 35 | + |
| 36 | + |
| 37 | +def get_time_folders(case_path="./"): |
| 38 | + time_folders = [ x for x in os.listdir(case_path) \ |
| 39 | + if os.path.isdir(case_path+"/"+x) \ |
| 40 | + and (("." in x) or (x.isdigit())) \ |
| 41 | + and x != "0"] |
| 42 | + return time_folders |
| 43 | + |
| 44 | +def leave_last_time(case_path="./"): |
| 45 | + # if os.path.isdir(case_path+"/processor0"): |
| 46 | + # os.system("reconstructPar -latestTime -case "+case_path) |
| 47 | + # os.system("rm -r processor*") |
| 48 | + time_folders = get_time_folders(case_path) |
| 49 | + times = [ float(x) for x in time_folders ] |
| 50 | + times = [ int(x) if x.is_integer() else x for x in times ] |
| 51 | + times.sort() |
| 52 | + time_folders = [ str(x) for x in times ] |
| 53 | + # print "Here comes the annoying warning" |
| 54 | + if len(time_folders) > 1: |
| 55 | + time_folders_string = ' '.join(time_folders[0:-1]) |
| 56 | + os.system("rm -r "+time_folders_string) |
| 57 | + # print "There goes the annoying warning" |
| 58 | + return |
| 59 | + |
| 60 | +def clean_case(case_path="./"): |
| 61 | + # This removes all non-standard FOLDERS. |
| 62 | + current_folders = os.listdir(case_path) |
| 63 | + standard_folders = ["0", "system", "constant", "openfoam_python"] |
| 64 | + # First make sure this is a case! |
| 65 | + for sf in standard_folders: |
| 66 | + if sf not in current_folders: |
| 67 | + print "This is not an OpenFOAM case directory! Be careful! Exiting." |
| 68 | + return |
| 69 | + # Then filter out folders that are not standard folders and remove. |
| 70 | + folders = [ case_path+"/"+x for x in current_folders \ |
| 71 | + if os.path.isdir(case_path+"/"+x) and x not in standard_folders ] |
| 72 | + if len(folders) > 0: |
| 73 | + os.system("rm -r "+' '.join(folders)) |
| 74 | + # File removal |
| 75 | + if os.path.isfile(case_path+"/geometry.dat"): |
| 76 | + os.system("rm "+case_path+"/geometry.dat") |
| 77 | + if os.path.isdir(case_path+"/constant/polyMesh"): |
| 78 | + os.system("rm -r "+case_path+"/constant/polyMesh") |
| 79 | + if os.path.isfile(case_path+"/main.msh"): |
| 80 | + os.system("rm "+case_path+"/main.msh") |
| 81 | + if os.path.isfile(case_path+"/forces.txt"): |
| 82 | + os.system("rm "+case_path+"/forces.txt") |
| 83 | + # We assume we have reconstructed already. |
| 84 | + if os.path.isdir(case_path+"/processor0"): |
| 85 | + os.system("rm -r "+case_path+"/processor*") |
| 86 | + return |
| 87 | + |
| 88 | +def change_line(file_path, included_strings, excluded_strings, replacement): |
| 89 | + """ |
| 90 | + Goes through file_path line-by-line and if all of included_strings are in |
| 91 | + the line and all of excluded_strings are not in the line, then the whole line |
| 92 | + is replaced by replacement. |
| 93 | + Assumes file_path+'_temp' is not already a file. |
| 94 | + """ |
| 95 | + if not os.path.isfile(file_path): |
| 96 | + print file_path+" file not found!" |
| 97 | + return |
| 98 | + temp_path = file_path+"_temp" |
| 99 | + temp_file = open(temp_path, 'w') |
| 100 | + with open(file_path, 'r') as f: |
| 101 | + for line in f: |
| 102 | + if all([x in line for x in included_strings]) and \ |
| 103 | + all([x not in line for x in excluded_strings]): |
| 104 | + temp_file.write(replacement) |
| 105 | + else: |
| 106 | + temp_file.write(line) |
| 107 | + temp_file.close() |
| 108 | + os.system("mv "+temp_path+" "+file_path) |
| 109 | + return |
0 commit comments