Skip to content

Commit

Permalink
Merge pull request #45 from puremourning/variables-ref-variables
Browse files Browse the repository at this point in the history
Allow dependent groups of variables in a list
  • Loading branch information
mergify[bot] authored Jul 26, 2019
2 parents 80f398a + dbf3de9 commit 0813382
Showing 1 changed file with 41 additions and 25 deletions.
66 changes: 41 additions & 25 deletions python3/vimspector/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ def SetUpLogging( logger ):
logger.addHandler( _log_handler )


_logger = logging.getLogger( __name__ )
SetUpLogging( _logger )


def BufferNumberForFile( file_name ):
return int( vim.eval( 'bufnr( "{0}", 1 )'.format( file_name ) ) )

Expand Down Expand Up @@ -343,33 +347,45 @@ def expand_refs_in_object( obj ):
obj[ k ] = expand_refs_in_object( obj[ k ] )


def ParseVariables( variables, mapping, **kwargs ):
def ParseVariables( variables_list, mapping, **kwargs ):
new_variables = {}
for n, v in variables.items():
if isinstance( v, dict ):
if 'shell' in v:
import subprocess
import shlex

new_v = v.copy()
# Bit of a hack. Allows environment variables to be used.
ExpandReferencesInDict( new_v, mapping, **kwargs )

env = os.environ.copy()
env.update( new_v.get( 'env' ) or {} )
cmd = new_v[ 'shell' ]
if not isinstance( cmd, list ):
cmd = shlex.split( cmd )

new_variables[ n ] = subprocess.check_output(
cmd,
cwd = new_v.get( 'cwd' ) or os.getcwd(),
env = env ).decode( 'utf-8' ).strip()
new_mapping = mapping.copy()

if not isinstance( variables_list, list ):
variables_list = [ variables_list ]

for variables in variables_list:
new_mapping.update( new_variables )
for n, v in variables.items():
if isinstance( v, dict ):
if 'shell' in v:
import subprocess
import shlex

new_v = v.copy()
# Bit of a hack. Allows environment variables to be used.
ExpandReferencesInDict( new_v, new_mapping, **kwargs )

env = os.environ.copy()
env.update( new_v.get( 'env' ) or {} )
cmd = new_v[ 'shell' ]
if not isinstance( cmd, list ):
cmd = shlex.split( cmd )

new_variables[ n ] = subprocess.check_output(
cmd,
cwd = new_v.get( 'cwd' ) or os.getcwd(),
env = env ).decode( 'utf-8' ).strip()

_logger.debug( "Set new_variables[ %s ] to '%s' from %s",
n,
new_variables[ n ],
new_v )
else:
raise ValueError(
"Unsupported variable defn {}: Missing 'shell'".format( n ) )
else:
raise ValueError(
"Unsupported variable defn {}: Missing 'shell'".format( n ) )
else:
new_variables[ n ] = v
new_variables[ n ] = v

return new_variables

Expand Down

0 comments on commit 0813382

Please sign in to comment.