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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
|
#!/usr/bin/env python3
'''
mcgui program
Initial version: spring of 2015.
Release version: fall 2016.
'''
import sys
import os
import webbrowser
import subprocess
import time
import re
import pathlib
import shutil
try:
from PyQt6 import QtWidgets, QtCore
from PyQt6.QtWidgets import QApplication, QWidget
from PyQt6.QtGui import QFont, QFontDatabase
import PyQt6 as PyQt
try:
from PyQt6 import Qsci
except ImportError:
Qsci = None
except ImportError:
from PyQt5 import QtWidgets, QtCore
from PyQt5.QtWidgets import QApplication, QWidget
from PyQt5.QtGui import QFont, QFontDatabase
import PyQt5 as PyQt
try:
from PyQt5 import Qsci
except ImportError:
Qsci = None
from viewclasses import McView
from datetime import datetime
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
from mccodelib import mccode_config, utils
from mccodelib.utils import ComponentParser, get_instr_site, get_instr_comp_files, save_instrfile, get_file_contents, make_executable
''' Message emitter
Status and message log and signalling.
'''
class McMessageEmitter(QtCore.QObject):
statusUpdate = QtCore.pyqtSignal(str)
__statusLog = []
# logMessageUpdate(msg, flag_err_red, flag_gui_blue, flag_clear)
logMessageUpdate = QtCore.pyqtSignal(str, bool, bool, bool)
__msgLog = []
def status(self, status):
''' status / current general state info
'''
if status == None:
return
self.statusUpdate.emit(status)
self.__statusLog.append(status)
def message(self, msg, err_msg=False, gui=False, clear=False):
''' message log messages (simulation progress etc.)
'''
if msg == None:
return
self.logMessageUpdate.emit(msg, err_msg, gui, clear)
self.__msgLog.append(msg)
# NOTE: calling processEvents too often can lead to some sort of stack overflow, but side effects are to be investigated
#QtWidgets.QApplication.processEvents()
def clear(self, msg):
'''clear Log/History'''
self.logMessageUpdate.emit(msg, False, True, True)
''' Asynchronous process execution QThread
'''
class McRunQThread(QtCore.QThread):
thread_exception = QtCore.pyqtSignal(str)
error = QtCore.pyqtSignal(str)
message = QtCore.pyqtSignal(str)
cmd = ''
cwd = ''
process_returncode = None
def run(self, *args, **kwargs):
try:
# check cmd is set
if self.cmd == '':
raise Exception("McRunQThread: Set cmd before running 'start'")
# open a subprocess with shell=True, otherwise stdout will be buffered and thus
# not readable live
process = subprocess.Popen(self.cmd,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
stdin=subprocess.PIPE,
shell=True,
universal_newlines=True,
cwd=self.cwd)
for stdoutdata in process.stdout:
self.message.emit(stdoutdata.rstrip('\n'))
self.process_returncode = process.returncode
except Exception as e:
self.thread_exception.emit(str(e))
''' State
Holds unique state values and mediates some low-level actions.
'''
class McGuiState(QtCore.QObject):
__instrFile = ''
__emitter = None
# <instrument>, <work dir>
instrumentUpdated = QtCore.pyqtSignal(list, str)
# [<canRun>, <canPlot>] each can be str 'True' or 'False'
simStateUpdated = QtCore.pyqtSignal(list)
__cFile = None
__binaryFile = None
__dataDir = ""
def __init__(self, emitter):
super(McGuiState, self).__init__()
self.setWorkDir(os.getcwd())
self.__emitter = emitter
def __fireInstrUpdate(self):
self.instrumentUpdated.emit([self.getInstrumentFile(), self.getWorkDir()], self.getInstrumentFile())
def __fireSimStateUpdate(self):
self.simStateUpdated.emit([str(self.canRun()), str(self.canPlot()), str(self.isSimRunning())])
def init(self):
''' must be called after construction to emit events used for sync'ing to initial state '''
self.__fireInstrUpdate()
self.__fireSimStateUpdate()
def getInstrumentFile(self):
return self.__instrFile
def loadInstrument(self, instr_file):
def get_bin_and_c_filenames(instr):
# assume instr exists
base = os.path.splitext(instr)[0]
c_fn = base + '.c'
c_fn_exists = os.path.exists(c_fn)
bin_fn = base + '.out'
bin_fn_exists = os.path.exists(bin_fn)
return c_fn if c_fn_exists else None, bin_fn if bin_fn_exists else None
# makes sure this is not a qstring
instr_file = str(instr_file)
# file must exist:
if os.path.exists(instr_file):
# handle .instr files loaded without full path
if os.path.dirname(instr_file) != '':
realdir = os.path.dirname(os.path.abspath(instr_file))
self.setWorkDir(realdir)
instr_file = os.path.join(self.getWorkDir(), os.path.basename(instr_file))
self.__instrFile = instr_file
self.__cFile, self.__binaryFile = get_bin_and_c_filenames(self.__instrFile)
self.__fireInstrUpdate()
self.__emitter.status("Instrument: " + os.path.basename(self.__instrFile))
self.__fireSimStateUpdate()
else:
# TODO: throw exception
self.__emitter.status('Could not load file: ' + instr_file)
#raise Exception("McGuiState.loadInstrument: Error. File: " + instr_file)
def unloadInstrument(self):
self.__instrFile = ''
self.__cFile = None
self.__binaryFile = None
self.__fireInstrUpdate()
self.__fireSimStateUpdate()
return True
def saveInstrumentIfFileExists(self, text):
instr = self.getInstrumentFile()
if not os.path.exists(instr):
return False
save_instrfile(instr, text)
return True
def getWorkDir(self):
return os.getcwd()
def getDataDir(self):
return self.__dataDir
def checkInstrFileCandidate(self, instr):
if ' ' in instr:
raise Exception("checkInstrFileCandidate: ' ' char in instr filename")
def setWorkDir(self, newdir):
if not os.path.isdir(newdir):
raise Exception('McGuiState.setWorkDir: invalid work dir - "' + newdir + '"')
os.chdir(newdir)
def canCompile(self):
return self.__instrFile != ""
def canRun(self):
return self.__instrFile != ""
def canPlot(self):
return ((self.__instrFile != "") and (not self.isSimRunning()))
__thread_exc_signal = QtCore.pyqtSignal(str)
def compile(self, mpi=False):
# using Qt in-built cross-thread signaling
self.__thread_exc_signal.connect(handleExceptionMsg)
# clear any existing .c and .out files
if self.__binaryFile:
if os.path.isfile(self.__binaryFile):
os.remove(self.__binaryFile)
self.__binaryFile = ''
if self.__cFile:
if os.path.isfile(self.__cFile):
os.remove(self.__cFile)
self.__cFile = ''
# that wait cursor
QtWidgets.QApplication.setOverrideCursor(QtCore.Qt.CursorShape.WaitCursor)
def compile_complete():
self.__emitter.message('compile thread done\n')
QtWidgets.QApplication.restoreOverrideCursor()
# compile simulation in a background thread
self.compilethread = QtCore.QThread()
self.compilethread.run = lambda: self.compileAsync(mpi, self.__thread_exc_signal)
self.compilethread.finished.connect(compile_complete)
self.compilethread.start()
def compileAsync(self, mpi, thread_exc_signal):
try:
# generate mcstas .c file from instrument
nf = os.path.basename(self.__instrFile)
# paths and filenames
spl = os.path.splitext(os.path.basename(str(nf)))
basenoext = spl[0]
cf = basenoext + '.c'
bf = basenoext + '.' + mccode_config.platform["EXESUFFIX"]
# Honour CFLAGS etc. in terminal environment:
os.environ[mccode_config.configuration["MCCODE"].upper() + "_OVERRIDE"] = mccode_config.configuration["MCCODE_LIB_DIR"]
os.environ[mccode_config.configuration["MCCODE"].upper() + "_CFLAGS_OVERRIDE"] = mccode_config.compilation["CFLAGS"]
os.environ[mccode_config.configuration["MCCODE"].upper() + "_CC_OVERRIDE"] = mccode_config.compilation["CC"]
os.environ[mccode_config.configuration["MCCODE"].upper() + "_MPICC_OVERRIDE"] = mccode_config.compilation["MPICC"]
if mpi:
cmd = mccode_config.configuration["MCRUN"] + ' -c --mpi=1 ' + nf + ' -n0 '
else:
cmd = mccode_config.configuration["MCRUN"] + ' -c ' + nf + ' -n0 '
process = subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True,
universal_newlines=True,
cwd=os.path.dirname(self.__instrFile))
self.__emitter.status('Compiling instrument via ' + mccode_config.configuration["MCRUN"])
self.__emitter.message('Setting environment:', gui=True)
self.__emitter.message(mccode_config.configuration["MCCODE"].upper() + "_OVERRIDE" + "=\n " + mccode_config.configuration["MCCODE_LIB_DIR"] + "\n", gui=True)
self.__emitter.message(mccode_config.configuration["MCCODE"].upper() + "_CFLAGS_OVERRIDE" + "=\n " + mccode_config.compilation["CFLAGS"] + "\n", gui=True)
self.__emitter.message(mccode_config.configuration["MCCODE"].upper() + "_CC_OVERRIDE" + "=\n " + mccode_config.compilation["CC"] + "\n", gui=True)
self.__emitter.message(mccode_config.configuration["MCCODE"].upper() + "_MPICC_OVERRIDE" + "=\n " + mccode_config.compilation["MPICC"] + "\n", gui=True)
self.__emitter.message(cmd, gui=True)
# read program output while the process is active
while process.poll() == None:
stdoutdata = process.stdout.readline().rstrip('\n')
self.__emitter.message(stdoutdata)
stderrdata = process.stderr.readline().rstrip('\n')
self.__emitter.message(stderrdata, err_msg=True)
time.sleep(0.05)
# flush until EOF
for stdoutdata in process.stdout:
self.__emitter.message(stdoutdata.rstrip('\n'))
for stderrdata in process.stderr:
self.__emitter.message(stderrdata.rstrip('\n'), err_msg=True)
self.__fireSimStateUpdate()
except:
self.__emitter.status("")
(type, value, traceback) = sys.exc_info()
if thread_exc_signal:
thread_exc_signal.emit(value.message)
else:
raise
__runthread = None
def isSimRunning(self):
if self.__runthread != None:
return self.__runthread.isRunning()
else:
return False
def interrupt(self):
# interrupts any running simulation
if self.__runthread:
if self.__runthread.isRunning():
self.__runthread.terminate()
else:
raise Exception('State.interrupt: no __runthread')
def run(self, fixed_params, params, inspect=None):
''' fixed_params[]:
0 - simulation = 0, trace = 1, optimize=2
1 - neutron/photon count (int)
2 - steps count (int)
3 - gravity (bool)
4 - clustering 0/1/2 (single/MPI/MPIrecompile) (int)
5 - clustering # nodes (int)
6 - random seed (int)
7 - output directory (str)
8 - autoplotter
9 - format
10 - Monitor_nD buffersize
params[]:
[<par_name>, <value>] pairs
'''
mcrunparms = ' '
# mpi-related
clustering = fixed_params[4]
mpicount = fixed_params[5]
Format = fixed_params[9]
if mpicount == '':
mpicount = 'auto'
if clustering == 1:
mcrunparms = ' --mpi=' + mpicount + ' '
elif clustering == 2:
mcrunparms = ' -c --mpi=' + mpicount + ' '
elif clustering == 3:
mcrunparms = ' --openacc '
elif clustering == 4:
mcrunparms = ' -c --openacc '
elif clustering == 5:
mcrunparms = ' --openacc --mpi=' + mpicount + ' '
elif clustering == 6:
mcrunparms = ' -c --openacc --mpi=' + mpicount + ' '
# sim/trace and output directory
simtrace = fixed_params[0]
if simtrace == 0 or simtrace == 2: # simulate/optimize (mcrun)
output_dir = str(fixed_params[7])
if output_dir == '':
DATE_FORMAT_PATH = "%Y%m%d_%H%M%S"
output_dir = "%s_%s" % \
(os.path.splitext(self.__instrFile)[0],
datetime.strftime(datetime.now(), DATE_FORMAT_PATH))
runstr = mccode_config.configuration["MCRUN"] + mcrunparms + os.path.basename(self.__instrFile) + ' -d ' + output_dir
if simtrace == 2:
runstr = runstr + ' --optimize '
if inspect:
runstr = runstr + ' --optimize-monitor=' + inspect
self.__dataDir = output_dir
elif simtrace == 1: # trace (mcdisplay)
if inspect:
runstr = mccode_config.configuration["MCDISPLAY"] + ' ' + os.path.basename(self.__instrFile) + ' --inspect=' + inspect
else:
runstr = mccode_config.configuration["MCDISPLAY"] + ' ' + os.path.basename(self.__instrFile)
else:
raise Exception('mcgui.run: invalid execution mode (simulate/trace/optimize).')
# neutron/photon count
ncount = fixed_params[1]
if int(float(ncount)) > 0:
runstr = runstr + ' -n ' + str(ncount)
# steps count
nsteps = fixed_params[2]
if nsteps != '':
if int(nsteps) > 1:
print('Nsteps is ' + nsteps)
runstr = runstr + ' -N ' + str(nsteps)
# gravity
if fixed_params[3]:
gravity = True
runstr = runstr + ' --gravity '
# random seed
random_seed = fixed_params[6]
if (random_seed):
if int(random_seed) > 0:
runstr = runstr + ' -s ' + str(random_seed)
# autoplot
autoplot = fixed_params[8]
if autoplot and simtrace == 0:
runstr = runstr + ' --autoplot' + ' --autoplotter=' + mccode_config.configuration["MCPLOT"]
# format
Format = fixed_params[9]
if Format and simtrace == 0:
print("REDEFINING FORMAT: " + mccode_config.configuration["FORMAT"])
runstr = runstr + ' --format=' + mccode_config.configuration["FORMAT"]
# Monitor_nD buffersize
Bufsiz = fixed_params[10]
if Bufsiz and simtrace == 0:
runstr = runstr + ' --bufsiz=' + Bufsiz
# parse instrument params
for p in params:
runstr = runstr + ' ' + p[0] + '=' + p[1]
print('Running: ' + runstr)
# Add & for backgrounding on Unix systems
if simtrace == 1 and not os.name == 'nt':
runstr = runstr + ' &'
# Add prefix 'start' to background on Windows systems
if os.name == 'nt':
runstr = 'start ' + runstr
# Ensure assembled runstr is a string, not a QString
runstr = str(runstr)
if not os.name=='nt':
# run simulation in a background thread
self.__runthread = McRunQThread()
self.__runthread.cmd = runstr
self.__runthread.cwd = os.path.dirname(self.__instrFile)
self.__runthread.finished.connect(lambda: self.__runFinished(self.__runthread.process_returncode))
self.__runthread.thread_exception.connect(handleExceptionMsg)
self.__runthread.error.connect(lambda msg: self.__emitter.message(msg, err_msg=True))
self.__runthread.message.connect(lambda msg: self.__emitter.message(msg))
self.__runthread.start()
self.__emitter.message(runstr, gui=True)
self.__emitter.status('Running simulation ...')
self.__fireSimStateUpdate()
else:
self.__emitter.message(runstr, gui=True)
self.__emitter.status('Started simulation/trace in background shell...')
subprocess.Popen(runstr, shell=True)
def __runFinished(self, process_returncode):
self.__fireSimStateUpdate()
if process_returncode == 0:
self.__emitter.message('simulation done', gui=True)
self.__emitter.message('')
self.__emitter.status('')
''' Controller
Implements ui and data callbacks.
'''
class McGuiAppController():
def __init__(self):
self.emitter = McMessageEmitter()
self.view = McView()
self.state = McGuiState(self.emitter)
self.connectCallbacks()
self.initDynamicView()
self.state.init()
# Print MCCODE version info in main window
cmd = mccode_config.configuration["MCCODE"] + ' -v '
process = subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True,
universal_newlines=True)
(stdoutdata, stderrdata) = process.communicate()
self.emitter.message(str(datetime.now()), gui=True)
self.emitter.message(stdoutdata.rstrip('\n'))
self.emitter.message(stderrdata.rstrip('\n'))
# Print MCCODE revision data if these exist
comprev = os.path.join(mccode_config.configuration["MCCODE_LIB_DIR"], "revision")
if os.path.exists(comprev):
self.emitter.message(open(comprev).read(), gui=True)
# load instrument file from command line pars, skipping scriptfile
for a in sys.argv:
if os.path.isfile(a):
if not os.path.splitext(a)[1] == '.py':
if self.state.getInstrumentFile() == '':
self.state.loadInstrument(a)
# Shouldn't really be necessary, but otherwise App menu is inactive on macOS
# (was initially put in message/status update mechanism, but that caused other side-effects, see
# https://github.com/McStasMcXtrace/McCode/issues/570 )
QtWidgets.QApplication.processEvents()
self.view.showMainWindow()
def initDynamicView(self):
# load installed mcstas instruments:
# construct args = [site, instr_fullpath[], instr_path_lst[]]
args = []
files_instr, files_comp = get_instr_comp_files(mccode_config.configuration["MCCODE_LIB_DIR"])
# temporary list consisting of instrument files with site names:
files_instr_and_site = []
for f in files_instr:
files_instr_and_site.append([f, get_instr_site(f)])
# order instrument files by site:
sites = {s for s in list(map(lambda f: f[1], files_instr_and_site))}
for s in sites:
# extract instruments file paths of this site
instr_path_lst = list(map(lambda f: f[0], filter(lambda f: f[1] in [s], files_instr_and_site)))
# sort instrument of this site by file name
instr_path_lst.sort(key=lambda instrpath: os.path.splitext(os.path.basename(instrpath))[0])
# extract file names
instr_name_lst = list(map(lambda instrpath: os.path.splitext(os.path.basename(instrpath))[0], instr_path_lst))
arg = []
arg.append(s)
arg.append(instr_name_lst)
arg.append(instr_path_lst)
args.append(arg)
# sort sites
args.sort(key=lambda arg: arg[0])
# hand on for menu generation
self.view.initMainWindowDynamicElements(args, self.handleNewFromTemplate)
# load installed mcstas/mcxtrace components:
# args - [category, comp_names[], comp_parsers[]]
args = []
if mccode_config.configuration["MCCODE"]=="mcstas":
categories = {0 : 'Source', 1 : 'Optics', 2 : 'Sample', 3 : 'Monitor', 4 : 'Misc', 5 : 'Contrib', 6: 'Union', 7 : 'SASmodels', 8 : 'Obsolete'}
dirnames = {0 : 'sources', 1 : 'optics', 2 : 'samples', 3 : 'monitors', 4 : 'misc', 5 : 'contrib', 6: 'union', 7 : 'sasmodels', 8 : 'obsolete'}
numcat=7
if mccode_config.configuration["MCCODE"]=="mcxtrace":
categories = {0 : 'Source', 1 : 'Optics', 2 : 'Sample', 3 : 'Monitor', 4 : 'Misc', 5 : 'Contrib', 6: 'Union', 7 : 'SASmodels', 8 : 'AstroX', 9 : 'Obsolete'}
dirnames = {0 : 'sources', 1 : 'optics', 2 : 'samples', 3 : 'monitors', 4 : 'misc', 5 : 'contrib', 6: 'union', 7 : 'sasmodels', 8: 'astrox', 9 : 'obsolete'}
numcat=8
i = 0
while i < numcat+1:
arg = [] # arg - category, comp_names[], comp_parsers[]
compnames = []
parsers = []
for f in files_comp:
if i==numcat-1:
if re.search(dirnames[i], os.path.dirname(f)):
compnames.append(os.path.splitext(os.path.basename(f))[0]) # get filename without extension - this is the component name
parsers.append(ComponentParser(f)) # append a parser, for ease of parsing on-the-fly
else:
if re.search(dirnames[i], os.path.basename(os.path.dirname(f))):
compnames.append(os.path.splitext(os.path.basename(f))[0]) # get filename without extension - this is the component name
parsers.append(ComponentParser(f)) # append a parser, for ease of parsing on-the-fly
arg.append(categories[i])
arg.append(compnames)
arg.append(parsers)
args.append(arg)
i += 1
# sort components in each category (using Python default string sort on filename)
for arg in args:
arg[1].sort()
arg[2].sort(key=lambda parser: os.path.splitext(os.path.basename(parser.file))[0])
# hand on for menu generation
self.view.initCodeEditorComponentMenu(args)
''' UI callbacks
'''
def handleRunOrInterruptSim(self):
if self.state.isSimRunning():
self.state.interrupt()
else:
# ensure auto-save
self.view.ew.save()
self.emitter.status("Getting instrument params...")
QtWidgets.QApplication.setOverrideCursor(QtCore.Qt.CursorShape.WaitCursor)
self.view.disableRunBtn()
try:
class ThreadInfoHandler():
def __init__(self, forwardmsg=None):
self.stdout_lst = []
self.finished = False
self.forwardmsg = forwardmsg
def stdout(self, msg):
self.stdout_lst.append(msg)
if self.forwardmsg:
self.forwardmsg(msg)
def finish(self):
self.finished = True
def msg(msg, em=self.emitter):
em.message(msg)
handler = ThreadInfoHandler(lambda msg, em=self.emitter: em.message(msg))
somethread = McRunQThread()
somethread.cmd = mccode_config.configuration["MCRUN"] + ' ' + os.path.basename(self.state.getInstrumentFile()) + " --info"
somethread.cwd = os.path.dirname(self.state.getInstrumentFile())
somethread.finished.connect(handler.finish)
somethread.thread_exception.connect(handleExceptionMsg)
somethread.error.connect(lambda msg: self.emitter.message(msg, err_msg=True))
somethread.message.connect(handler.stdout)
somethread.start()
while not handler.finished:
time.sleep(0.2)
QtWidgets.QApplication.processEvents()
params = []
for l in handler.stdout_lst:
if 'Param:' in l:
s = l.split()
s[0]=""
s = ' '.join(s)
# Split on first = occurence only, there may be strings including = on the right...
s = s.split('=', 1)
params.append(s)
if 'syntax error' in l and not 'potential syntax error' in l:
self.emitter.status("!!! Instrument syntax error !!!")
return
if 'Errors encountered' in l:
self.emitter.status("!!! Instrument compile: errors encountered !!!")
instr_params = params
except:
self.emitter.status("!!! Instrument compile error !!!")
raise
finally:
QtWidgets.QApplication.restoreOverrideCursor()
self.view.enableRunBtn()
def get_compnames(text):
''' return a list of compnames from an instrument definition code text '''
comps = []
pat = r'COMPONENT[ ]+([\w0-9]+)[ ]*='
for l in text.splitlines():
m = re.search(pat, l)
if m:
comps.append(m.group(1))
return comps
comps = get_compnames(text=open(self.state.getInstrumentFile(), 'rb').read().decode())
_a, mcplots, mcdisplays, formats = mccode_config.get_options()
fixed_params, new_instr_params, inspect, mcdisplay, autoplotter, Format = self.view.showStartSimDialog(
instr_params, comps, mcdisplays, mcplots, formats, mccode_config.configuration["NDBUFFERSIZE"])
if Format != None:
print("SETTING FORMAT: " + Format)
mccode_config.configuration["FORMAT"] = Format
if mcdisplay != None:
mccode_config.configuration["MCDISPLAY"] = mcdisplay
if autoplotter != None:
mccode_config.configuration["MCPLOT"] = autoplotter
self.emitter.status("")
if fixed_params != None:
self.state.run(fixed_params, new_instr_params, inspect)
def handleConfiguration(self):
self.view.showConfigDialog()
def handleChangeWorkDir(self):
workDir = self.view.showChangeWorkDirDlg(self.state.getWorkDir())
if workDir:
self.state.setWorkDir(workDir)
def handleExit(self):
if self.view.closeCodeEditorWindow():
sys.exit()
def clearConsole(self):
self.emitter.clear(str(datetime.now()))
def handlePlotResults(self):
self.emitter.status('')
resultdir = self.state.getDataDir()
cmd = mccode_config.configuration["MCPLOT"] + ' ' + resultdir
cwd = os.path.dirname(self.state.getInstrumentFile())
self._runthread = McRunQThread()
self._runthread.cmd = cmd
self._runthread.cwd = cwd
self._runthread.finished.connect(lambda: None)
self._runthread.thread_exception.connect(handleExceptionMsg)
self._runthread.error.connect(lambda msg: self.emitter.message(msg, err_msg=True))
self._runthread.message.connect(lambda msg: self.emitter.message(msg))
self._runthread.start()
self.emitter.message(cmd, gui=True)
self.emitter.status('Running plotter ...')
def handlePlotOtherResults(self):
self.emitter.status('')
resultdir = self.view.showOpenPlotDirDlg(os.getcwd())
if resultdir != "":
cmd = mccode_config.configuration["MCPLOT"] + ' ' + resultdir
cwd = os.path.dirname(os.path.dirname(resultdir))
self._runthread = McRunQThread()
self._runthread.cmd = cmd
self._runthread.cwd = cwd
self._runthread.finished.connect(lambda: None)
self._runthread.thread_exception.connect(handleExceptionMsg)
self._runthread.error.connect(lambda msg: self.emitter.message(msg, err_msg=True))
self._runthread.message.connect(lambda msg: self.emitter.message(msg))
self._runthread.start()
self.emitter.message(cmd, gui=True)
self.emitter.status('Running plotter ...')
def handleMcDisplayWeb(self):
if mccode_config.configuration["MCCODE"]=="mcstas":
DISPLAY="mcdisplay"
else:
DISPLAY="mxdisplay"
self.emitter.status('Running ' + DISPLAY + '-webgl...')
try:
cmd = DISPLAY+'-webgl --default -n100 ' + os.path.basename(self.state.getInstrumentFile()) + '&'
self.emitter.message(cmd, gui=True)
self.emitter.message('', gui=True)
def messg(s): self.emitter.message(s)
def messg_err(s): self.emitter.message(s, err_msg=True)
utils.run_subtool_to_completion(cmd, stdout_cb=messg, stderr_cb=messg_err)
finally:
self.emitter.status('')
def handleMcDisplay2D(self):
if mccode_config.configuration["MCCODE"]=="mcstas":
DISPLAY="mcdisplay"
else:
DISPLAY="mxdisplay"
self.emitter.status('Running ' + DISPLAY + '-pyqtgraph...')
try:
cmd = DISPLAY+'-pyqtgraph --default -n100 ' + os.path.basename(self.state.getInstrumentFile()) + '&'
self.emitter.message(cmd, gui=True)
self.emitter.message('', gui=True)
def messg(s): self.emitter.message(s)
def messg_err(s): self.emitter.message(s, err_msg=True)
utils.run_subtool_to_completion(cmd, stdout_cb=messg, stderr_cb=messg_err)
finally:
self.emitter.status('')
def handleHelpWeb(self):
# open the mcstas homepage
mcurl = 'http://www.'+mccode_config.configuration["MCCODE"]+'.org'
webbrowser.open_new_tab(mcurl)
def handleHelpPdf(self):
# TODO: make it cross-platform (e.g. os.path.realpath(__file__) + ..)
mcman = os.path.join(mccode_config.configuration["MCCODE_LIB_DIR"], "doc", "manuals", mccode_config.configuration["MCCODE"]+"-manual.pdf")
webbrowser.open_new_tab("file://" + mcman)
def handleHelpPdfComponents(self):
# TODO: make it cross-platform (e.g. os.path.realpath(__file__) + ...)
mcman = os.path.join(mccode_config.configuration["MCCODE_LIB_DIR"], "doc", "manuals", mccode_config.configuration["MCCODE"]+"-components.pdf")
webbrowser.open_new_tab("file://" + mcman)
def handleHelpAbout(self):
# get mcstas version using 'mcstas/mcxtrace -v'
process = subprocess.Popen(mccode_config.configuration["MCCODE"] +' -v',
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=True,
universal_newlines=True)
# synchronous
(stdoutdata, stderrdata) = process.communicate()
self.view.showAboutBox(stdoutdata)
def handleEditInstrument(self):
instr = self.state.getInstrumentFile()
self.view.showCodeEditorWindow(instr)
self.emitter.status("Editing instrument: " + os.path.basename(str(instr)))
def handleEditExtInstrument(self):
instr = self.state.getInstrumentFile()
process = subprocess.Popen(mccode_config.configuration["EDITOR"] + ' ' + os.path.basename(str(instr)),
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=True,
universal_newlines=True)
self.emitter.status("Editing instrument: " + os.path.basename(str(instr)))
def handleJuPyInstrument(self):
instr = self.state.getInstrumentFile()
terminal = mccode_config.configuration["TERMINAL"]
wrapper = ""
suffix = ""
scriptfile = str(mccode_config.configuration["MCCODE"] + '-labenv')
if not sys.platform == 'win32':
scriptfile = str(mccode_config.configuration["MCCODE"] + '-labenv')
scriptfile = str(pathlib.Path(__file__).parent.parent.parent.parent.resolve() / scriptfile)
wrapper += f'#!/usr/bin/env bash\n\n'
wrapper += f'# cd to location of taget .instr file\n'
wrapper += f'cd ' + os.path.dirname(instr) + '\n\n'
if os.environ.get('CONDA_PREFIX'):
wrapper += f'# Activate our "current" conda env.\n'
wrapper += f'. ' + os.environ.get('CONDA_PREFIX') + '/bin/activate \n\n'
wrapper += f'# Call jupylab wrapper script from new directory, with input of base instr file.\n'
wrapper += f'' + scriptfile + ' ' + os.path.basename(instr) + '\nret_code1=$?\n\n'
# Remove script post jupyter exit
wrapper += f'# Remove script post jupyter exit if jupyter exited cleanly\n'
wrapper += f'if [ \"$ret_code1\" -eq \"0\" ];'
wrapper += f'then\n rm -f $0\nfi\n\n'
wrapper += f'# End of wrapper script\n'
suffix = ".command"
else:
wrapper += f'@REM cd to location of taget .instr file\n'
wrapper += f'cd ' + os.path.dirname(instr) + '\n\n'
if os.environ.get('CONDA_PREFIX'):
wrapper += f'REM Activate our "current" conda env.\n'
wrapper += f'call '+ os.environ.get('CONDA_PREFIX') + '\\Scripts\\activate \n\n'
wrapper += f'"REM call jupylab wrapper script from new directory, with input of base instr file.\n'
wrapper += f'' + scriptfile + ' ' + os.path.basename(instr) + '\n\n'
wrapper += f'@REM Remove script post jupyter exit \n\n@del %~dpnx0\n@exit\n'
wrapper += f'@REM End of wrapper script\n'
suffix = ".bat"
# Write temporary script to cwd with write perms
import random, string
TMP=''.join(random.SystemRandom().choice(string.ascii_uppercase + string.digits) for _ in range(5))
scriptfile = str(pathlib.Path(instr).stem + '_' + TMP + suffix)
scriptfile = os.path.join(os.getcwd(),scriptfile)
ff = open(scriptfile,"w")
ff.write(wrapper)
ff.close
make_executable(scriptfile)
print(terminal + ' ' + scriptfile)
subprocess.Popen(terminal + ' ' + scriptfile , shell=True)
self.emitter.status("Spawning Jupyter... ")
def handleCloseInstrument(self):
if self.view.closeCodeEditorWindow():
self.state.unloadInstrument()
self.emitter.message("Instrument closed", gui=True)
self.emitter.status("Instrument closed")
def handleSaveInstrument(self, text):
result = self.state.saveInstrumentIfFileExists(text)
if result:
self.view.ew.assumeDataSaved()
self.emitter.status("Instrument saved: " + os.path.basename(self.state.getInstrumentFile()))
def displayNotSavedWhitespaceError(self, can_throw_func, raise_err=False):
try:
return can_throw_func()
except Exception as e:
self.emitter.status("Instrument not saved")
self.view.showErrorDialogue("Error: Instrument not saved", "Instrument files or paths should not contain white-spaces.")
if raise_err:
raise e
return False
def handleSaveAs(self):
oldinstr = self.state.getInstrumentFile()
if oldinstr != '':
newinstr = self.view.showSaveAsDialog(oldinstr)
if self.displayNotSavedWhitespaceError(lambda: self.state.checkInstrFileCandidate(newinstr))==False:
return
if newinstr != '':
self.state.unloadInstrument()
text = get_file_contents(oldinstr)
created_instr = save_instrfile(newinstr, text)
if created_instr != '':
self.state.loadInstrument(created_instr)
self.emitter.status("Instrument saved as: " + newinstr)
def handleNewInstrument(self):
if not self.state.getInstrumentFile() == '':
instrbase = pathlib.PurePath(self.state.getInstrumentFile())
wd = pathlib.PurePath(self.state.getWorkDir())
if wd.stem==instrbase.stem:
self.state.setWorkDir("..")
new_instr_req = self.view.showNewInstrDialog(self.state.getWorkDir())
if self.displayNotSavedWhitespaceError(lambda: self.state.checkInstrFileCandidate(new_instr_req))==False:
return
if new_instr_req != '':
template_text = open(os.path.join(mccode_config.configuration["MCCODE_LIB_DIR"], "examples", "Templates", "template_simple", "template_simple.instr")).read()
new_instr = save_instrfile(new_instr_req, template_text)
if new_instr != '':
if self.view.closeCodeEditorWindow():
self.state.unloadInstrument()
self.state.loadInstrument(new_instr)
self.view.showCodeEditorWindow(new_instr)
self.emitter.status("Editing new instrument: " + os.path.basename(str(new_instr)))
def handleNewFromTemplate(self, instr_templ=''):
if not self.state.getInstrumentFile() == '':
instrbase = pathlib.PurePath(self.state.getInstrumentFile())
wd = pathlib.PurePath(self.state.getWorkDir())
if wd.stem==instrbase.stem:
self.state.setWorkDir("..")
new_instr_req = self.view.showNewInstrFromTemplateDialog(os.path.join(self.state.getWorkDir(), os.path.basename(os.path.dirname(str(instr_templ)))))
if self.displayNotSavedWhitespaceError(lambda: self.state.checkInstrFileCandidate(new_instr_req))==False:
return
if new_instr_req != '':
if self.view.closeCodeEditorWindow():
text = get_file_contents(instr_templ)
self.state.unloadInstrument()
# Templates are now copied including their containing folder
srcdir = os.path.dirname(str(instr_templ))
trgdir = pathlib.Path(new_instr_req)
# Case 1: destination folder already exists, "merge":
if pathlib.Path.exists(trgdir):
files=os.listdir(srcdir)
for fname in files:
shutil.copy2(os.path.join(srcdir,fname), trgdir)
else:
# Case 2: create a new folder:
shutil.copytree(srcdir,trgdir)
new_instr = os.path.join(trgdir, os.path.basename(str(instr_templ)))
self.state.loadInstrument(new_instr)
self.emitter.status("Instrument created: " + os.path.basename(str(new_instr)))
def handleOpenInstrument(self):
instr = self.view.showOpenInstrumentDlg(self.state.getWorkDir())
if not instr:
return
if not os.path.isfile(instr):
self.emitter.status("Please select a file rather than a folder. Folder load not supported.")
return
if self.displayNotSavedWhitespaceError(lambda: self.state.checkInstrFileCandidate(instr))==False:
return
if instr:
if self.view.closeCodeEditorWindow():
self.state.unloadInstrument()
self.state.loadInstrument(instr)
self.emitter.message("Instrument opened: " + os.path.basename(str(instr)), gui=True)
self.emitter.status("Instrument: " + os.path.basename(str(instr)))
def handleMcdoc(self):
cmd='%sdoc' % mccode_config.get_mccode_prefix()
if sys.platform == "win32":
cmd='start ' + cmd + '.bat'
subprocess.Popen(cmd, shell=True)
def handleMcdocCurrentInstr(self):
cmd='%sdoc' % mccode_config.get_mccode_prefix()
if sys.platform == "win32":
cmd ='start ' + cmd + '.bat'
cmd = cmd + ' %s' % self.state.getInstrumentFile()
subprocess.Popen(cmd, shell=True)
def handleEnvironment(self):
terminal = mccode_config.configuration["TERMINAL"]
if not sys.platform == 'win32':
scriptfile = str(mccode_config.configuration["MCCODE"] + '-environment')
scriptfile = str(pathlib.Path(__file__).parent.parent.parent.parent.resolve() / scriptfile)
else:
scriptfile = mccode_config.directories["bindir"] + '\\' + mccode_config.configuration["MCCODE"] + 'go.bat'
subprocess.Popen(terminal + ' ' + scriptfile, shell=True)
def handleDefault(self):
reply = QtWidgets.QMessageBox.question(self.view.mw,
'Define system default?',
'Do you want to make the current ' + mccode_config.configuration["MCCODE"] + ' the system default?'),
if reply == QtWidgets.QMessageBox.Yes:
subprocess.Popen(mccode_config.configuration["MCCODE"] +'-postinst set_mccode_default', shell=True)
''' Connect UI and state callbacks
'''
def connectCallbacks(self):
# connect UI widget signals to our handlers/logics
# NOTICE: This explicit widget access is an exception - all widget access is otherwise handled by the view classes
mwui = self.view.mw.ui
mwui.actionQuit.triggered.connect(self.handleExit)
mwui.actionClear_Console.triggered.connect(self.clearConsole)
mwui.actionOpen_instrument.triggered.connect(self.handleOpenInstrument)
mwui.actionClose_Instrument.triggered.connect(self.handleCloseInstrument)
mwui.actionEdit_Instrument.triggered.connect(self.handleEditInstrument)
mwui.actionEditExt_Instrument.triggered.connect(self.handleEditExtInstrument)
mwui.actionSave_As.triggered.connect(self.handleSaveAs)
mwui.actionNew_Instrument.triggered.connect(self.handleNewInstrument)
mwui.actionConfiguration.triggered.connect(self.handleConfiguration)
self.view.mw.add_conf_menu('Open terminal env.').triggered.connect(self.handleEnvironment)
# On macOS
# 1) add a copy of the configuration menu to File
# 2) add menu points for changing what the bundle opens
if sys.platform == 'darwin':
self.view.mw.add_conf_menu('Configuration').triggered.connect(self.handleConfiguration)
# If not on Windows add menu point to make current mccode the system default
if not sys.platform == 'win32':
self.view.mw.add_conf_menu('Set as default').triggered.connect(self.handleDefault)
mwui.btnDoc.clicked.connect(self.handleMcdoc)
mwui.btnJuPy.clicked.connect(self.handleJuPyInstrument)
mwui.btnRun.clicked.connect(self.handleRunOrInterruptSim)
mwui.btnPlot.clicked.connect(self.handlePlotResults)
if Qsci:
mwui.btnEdit.clicked.connect(self.handleEditInstrument)
else:
mwui.btnEdit.clicked.connect(self.handleEditExtInstrument)
mwui.btnOpenInstrument.clicked.connect(self.handleOpenInstrument)
mwui.actionCompile_Instrument.triggered.connect(self.state.compile)
mwui.actionCompile_Instrument_MPI.triggered.connect(lambda: self.state.compile(mpi=True))
mwui.actionRun_Simulation.triggered.connect(self.handleRunOrInterruptSim)
mwui.actionPlot.triggered.connect(self.handlePlotResults)
mwui.actionPlotOther.triggered.connect(self.handlePlotOtherResults)
mwui.actionDisplay.triggered.connect(self.handleMcDisplayWeb)
mwui.actionDisplay_2d.triggered.connect(self.handleMcDisplay2D)
mwui.actionMcDocCurrent.triggered.connect(self.handleMcdocCurrentInstr)
mwui.actionMcdoc.triggered.connect(self.handleMcdoc)
mwui.actionMcstas_Web_Page.triggered.connect(self.handleHelpWeb)
mwui.actionMcstas_User_Manual.triggered.connect(self.handleHelpPdf)
mwui.actionMcstas_Component_Manual.triggered.connect(self.handleHelpPdfComponents)
mwui.actionAbout.triggered.connect(self.handleHelpAbout)
self.view.ew.ui.actionSave_As.triggered.connect(self.handleSaveAs)
ew = self.view.ew
ew.saveRequest.connect(self.handleSaveInstrument)
st = self.state
st.simStateUpdated.connect(self.view.updateSimState)
st.instrumentUpdated.connect(self.view.updateInstrument)
emitter = self.emitter
emitter.statusUpdate.connect(self.view.updateStatus)
emitter.logMessageUpdate.connect(self.view.updateLog)
''' Last resort exception handler
'''
def handleExceptionMsg(msg):
print(msg)
''' Program execution
'''
def main():
# ensure keyboardinterrupt ctr-c
import signal
signal.signal(signal.SIGINT, signal.SIG_DFL)
try:
mccode_config.load_config("user")
mccode_config.check_env_vars()
mcguiApp = QtWidgets.QApplication(sys.argv)
mcguiApp.ctr = McGuiAppController()
font = QFont()
font.setFixedPitch(True)
font.setPointSize(int(mccode_config.configuration["GUIFONTSIZE"]))
mcguiApp.setFont(font)
sys.exit(mcguiApp.exec())
except Exception as e:
print(e)
raise
if __name__ == '__main__':
main()
|