parse pid printed when backgrounding a process

This commit is contained in:
cody burkard
2014-08-27 08:44:08 -07:00
parent 92075113d8
commit c11d577349
2 changed files with 12 additions and 3 deletions
+1 -1
View File
@@ -740,7 +740,7 @@ class Mininet( object ):
sleep( 1 )
outputs.append( quietRun( cmd ).strip() )
for h in hosts:
h.cmd( 'kill %1' )
h.cmd( 'kill $!' )
cpu_fractions = []
for test_output in outputs:
# Split by line. Ignore first line, which looks like this:
+11 -2
View File
@@ -160,6 +160,7 @@ class Node( object ):
self.pollOut.poll()
self.waiting = False
self.cmd( 'stty -echo' )
self.cmd( 'set +m' )
def cleanup( self ):
"Help python collect its garbage."
@@ -241,9 +242,13 @@ class Node( object ):
if printPid and not isShellBuiltin( cmd ):
if len( cmd ) > 0 and cmd[ -1 ] == '&':
# print ^A{pid}\n so monitor() can set lastPid
cmd += ' printf "\\001%d\n" $! \n'
cmd += ' printf "\\001%d\\012" $! '
else:
cmd = 'mnexec -p ' + cmd
# if a builtin command is backgrounded, it yields a PID
elif isShellBuiltin( cmd ):
if len( cmd ) > 0 and cmd[ -1 ] == '&':
cmd += ' printf "\\001%d\\012" $! '
self.write( cmd + '\n' )
self.lastPid = None
self.waiting = True
@@ -258,9 +263,13 @@ class Node( object ):
timeoutms: timeout in ms or None to wait indefinitely."""
self.waitReadable( timeoutms )
data = self.read( 1024 )
pidre = r'\[\d+\] \d+\r\n'
# Look for PID
marker = chr( 1 ) + r'\d+\r\n'
if findPid and chr( 1 ) in data:
# suppress the job and PID of a backgrounded command
if re.findall( pidre, data ):
data = re.sub( pidre, '', data )
# Marker can be read in chunks; continue until all of it is read
while not re.findall( marker, data ):
data += self.read( 1024 )
@@ -1262,7 +1271,7 @@ class Controller( Node ):
if self.cdir is not None:
self.cmd( 'cd ' + self.cdir )
self.cmd( self.command + ' ' + self.cargs % self.port +
' 1>' + cout + ' 2>' + cout + '&' )
' 1>' + cout + ' 2>' + cout + ' &' )
self.execed = False
def stop( self ):