Changeset 27119


Ignore:
Timestamp:
06/29/22 05:47:32 (3 years ago)
Author:
bdef
Message:

BUG: fixing some subprocess calls to return strings rather than bytes

Location:
issm/trunk-jpl/src/m
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/coordsystems/epsg2proj.py

    r25455 r27119  
    22
    33
    4 def epsg2proj(epsg): #{{{
    5     """EPSG2PROJ - uses gdalsrsinfo to provide PROJ.4 compatible string 
     4def epsg2proj(epsg):  #{{{
     5    """EPSG2PROJ - uses gdalsrsinfo to provide PROJ.4 compatible string
    66    from EPSG code
    77
     
    2121    #First, get GDAL version
    2222    subproc_args = "gdalsrsinfo --version | awk '{print $2}' | cut -d '.' -f1"
    23     subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
     23    subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
    2424    outs, errs = subproc.communicate()
    2525    if errs != '':
     
    2929
    3030    subproc_args = "gdalsrsinfo epsg:{} | command grep PROJ.4 | tr -d '\n' | sed 's/PROJ.4 : //'".format(epsg)
    31     subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
     31    subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
    3232    outs, errs = subproc.communicate()
    3333    if errs != '':
     
    3535
    3636    if version_major == 1:
    37         r = r[1:-1]
     37        outs = outs[1:-1]
    3838
    3939    return outs
  • issm/trunk-jpl/src/m/coordsystems/gdaltransform.py

    r25455 r27119  
    4646
    4747    subproc_args = shlex.split("gdaltransform -s_srs '{}' -t_srs '{}'".format(proj_in, proj_out))
    48     subproc = subprocess.Popen(subproc_args, bufsize=-1, stdin=file_in, stdout=file_out, stderr=subprocess.PIPE, close_fds=True)
     48    subproc = subprocess.Popen(subproc_args, bufsize=-1, stdin=file_in, stdout=file_out, stderr=subprocess.PIPE, close_fds=True, universal_newlines=True)
    4949    outs, errs = subproc.communicate()
    5050    if errs != '':
  • issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py

    r26410 r27119  
    11import subprocess
    2 
    32import numpy as np
    4 
    53from MatlabFuncs import *
    64from mesh3dsurface import *
     
    2624    # Get Gmsh version
    2725    subproc_args = 'gmsh -info 2>&1 | command grep \'Version\' | sed -e \'s/Version[[:blank:]]*:[[:blank:]]//\' | cut -d \'.\' -f1'
    28     subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
     26    subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
    2927    outs, errs = subproc.communicate()
    30 
    31     if ((not isinstance(errs,bytes)) & (errs != '')) or (isinstance(errs,bytes) & (errs.decode() != '')):
     28    if ((not isinstance(errs, bytes)) & (errs != '')) or (isinstance(errs, bytes) & (errs.decode() != '')):
    3229        raise Exception('gmshplanet: call to gmsh failed: {}'.format(errs))
    3330    gmshmajorversion = int(outs)
     
    5148    #
    5249    # NOTE:
    53     # - The default format in Gmsh 3 is "msh2". Rather than conditionally 
    54     # modifying our parsing scheme for Gmsh 4, for now, we simply set the 
     50    # - The default format in Gmsh 3 is "msh2". Rather than conditionally
     51    # modifying our parsing scheme for Gmsh 4, for now, we simply set the
    5552    # 'Mesh.MshFileVersion' option.
    56     # - Decreasing the value of the 'Mesh.RandomFactor' option leads to an 
    57     # equal number of nodes and elements being produced under macOS and Linux 
     53    # - Decreasing the value of the 'Mesh.RandomFactor' option leads to an
     54    # equal number of nodes and elements being produced under macOS and Linux
    5855    # at certain resolutions using certain meshing algorithms.
    5956    #
     
    126123        for i in range(meshini.numberofelements):
    127124            fid.write('ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%g,%g,%g};\n'
    128                 % (meshini.x[meshini.elements[i, 0]-1], meshini.y[meshini.elements[i, 0]-1], meshini.z[meshini.elements[i, 0]-1],
    129                 meshini.x[meshini.elements[i, 1]-1], meshini.y[meshini.elements[i, 1]-1], meshini.z[meshini.elements[i, 1]-1],
    130                 meshini.x[meshini.elements[i, 2]-1], meshini.y[meshini.elements[i, 2]-1], meshini.z[meshini.elements[i, 2]-1],
    131                 metric[meshini.elements[i, 0]-1], metric[meshini.elements[i, 1]-1], metric[meshini.elements[i, 2]-1]))
     125                      % (meshini.x[meshini.elements[i, 0] - 1], meshini.y[meshini.elements[i, 0] - 1], meshini.z[meshini.elements[i, 0] - 1],
     126                         meshini.x[meshini.elements[i, 1] - 1], meshini.y[meshini.elements[i, 1] - 1], meshini.z[meshini.elements[i, 1] - 1],
     127                         meshini.x[meshini.elements[i, 2] - 1], meshini.y[meshini.elements[i, 2] - 1], meshini.z[meshini.elements[i, 2] - 1],
     128                         metric[meshini.elements[i, 0] - 1], metric[meshini.elements[i, 1] - 1], metric[meshini.elements[i, 2] - 1]))
    132129        fid.write('};\n')
    133130        fid.close()
    134131        #}}}
    135132
     133    # Call gmsh
     134    #
     135    # NOTE: The default format in Gmsh 3 is "msh2". Rather than conditionally
     136    #       modifying our parsing scheme for Gmsh 4, for now, we simply set the
     137    #       "-format" option.
     138    #
    136139    if options.exist('refine'):
    137140        subprocess.call('gmsh -2 sphere.geo -bgm sphere.pos', shell=True)
     
    187190    #}}}
    188191
    189     # A little technicality here. The mesh is not exactly on the sphere. We 
     192    # A little technicality here. The mesh is not exactly on the sphere. We
    190193    # create lat,long coordiantes, and reproject onto an exact sphere.
    191194    mesh.r = np.sqrt(mesh.x ** 2 + mesh.y ** 2 + mesh.z ** 2)
  • issm/trunk-jpl/src/m/solve/waitonlock.py

    r26435 r27119  
    1111    """WAITONLOCK - wait for a file
    1212
    13     This routine will return when a file named 'lockfilename' is written to 
    14     disk. Also check for outlog file because it might be written several 
     13    This routine will return when a file named 'lockfilename' is written to
     14    disk. Also check for outlog file because it might be written several
    1515    seconds after the lock file.
    1616
     
    2121
    2222    TODO:
    23     - Uncomment import of localpfe and check on cluster type once localpfe.py 
     23    - Uncomment import of localpfe and check on cluster type once localpfe.py
    2424    has been translated from localpfe.m.
    2525    """
     
    7979            sys.stdout.write('\rchecking for job completion (time: {} min {} sec)      '.format(floor(elapsedtime / 60), floor(rem(elapsedtime, 60)))) # TODO: After Python 2 is deprecated, we can change this call to print([...], end='')
    8080            elapsedtime = elapsedtime / 60 # Converts time from sec to min
    81             subproc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    82             outs, errs = subproc.communicate() # NOTE: Need to consume output before checking return code
     81            subproc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
     82            outs, errs = subproc.communicate()  # NOTE: Need to consume output before checking return code
    8383
    8484            # TODO: Debug the following check under Linux (exits after first iteration with errs = "b")
    8585            # UPDATE: Works in testing under Debian Linux system. Leaving comment for now so that it is easier to backtrace this issue if someone else encounters it.
     86            # FIXED: comunicates returns stuff in bytes in Python 3 unless you set "universal_newlines=True"
    8687            #
    87             #if errs != '':
    88             #    raise Exception('waitonlock: check for existence of files failed: {}'.format(errs))
     88            if errs != '':
     89               raise Exception('waitonlock: check for existence of files failed: {}'.format(errs))
    8990            ispresent = not subproc.returncode
    9091            if ispresent:
Note: See TracChangeset for help on using the changeset viewer.