| | |
| | | else: |
| | | from urlparse import urlparse |
| | | from vtk import * |
| | | from . import VTKRendering |
| | | |
| | | #import io |
| | | |
| | | from IPython import embed |
| | |
| | | for h in hosts: |
| | | for r in h['runs']: |
| | | if(r.isFromSnapshot): |
| | | file_list.append(r.snapshotFilename) |
| | | file_list.append(r.snapshotFile) |
| | | else: |
| | | file_list.append(r.tapeFilename) |
| | | file_list.append(main.__file__) |
| | |
| | | |
| | | |
| | | def preview_vtu(args,host): |
| | | #only for localhost at the moment |
| | | if sys.version_info>=(3,0): |
| | | print("Preview works only with python 2.7") |
| | | exit(1) |
| | | from . import VTKRendering |
| | | target_runs=getTargetRunIdxList(args) |
| | | if target_runs==None: |
| | | target_runs=list(range(1,len(host['runs'])+1)) |
| | | if host['name'] == socket.gethostname(): |
| | | VTKRendering.Renderer(args,host) |
| | | for i in target_runs: |
| | | VTKRendering.Renderer(args,host,host['runs'][i-1]) |
| | | else: |
| | | print("VTK rendering currently works on localhost only!") |
| | | |
| | | |
| | | def getListOfHostConfigurationByHostname(hosts,host): |
| | | rhost=[] |
| | |
| | | #print(remote_dir) |
| | | #print(main.__file__) |
| | | #print('python3 '+main.__file__+' -x '+" ".join(argv)) |
| | | output=host['_conn'].execute('cd '+remote_dir+ '; python3 '+main.__file__+' -x --originating-host ' +socket.gethostname()+" ".join(argv)) |
| | | output=host['_conn'].execute('cd '+remote_dir+ '; python3 '+main.__file__+' -x --originating-host ' +socket.gethostname()+" "+" ".join(argv)) |
| | | for line in output: |
| | | print(line.replace('\n','')) |
| | | |