Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using os.execvp in Python

Tags:

python

shell

exec

I have a question about using os.execvp in Python. I have the following bit of code that's used to create a list of arguments:

args = [ "java"
       , classpath
       , "-Djava.library.path=" + lib_path()
       , ea
       , "-Xmx1000m"
       , "-server"
       , "code_swarm"
       , params
       ]

When I output a string using " ".join(args) and paste that into my shell prompt, the JVM launches fine, and everything works. Everything works if I use os.system(" ".join(args)) in my Python script, too.

But the following bit of code does not work:

os.execvp("java", args)

I get the following error:

Unrecognized option: -classpath [and then the classpath I created, which looks okay]
Could not create the Java virtual machine.

So what gives? Why does copying/pasting into the shell or using os.system() work, but not os.execvp()?

like image 956
mipadi Avatar asked Oct 17 '08 03:10

mipadi


1 Answers

If your "classpath" variable contains for instance "-classpath foo.jar", it will not work, since it is thinking the option name is "-classpath foo.jar". Split it in two arguments: [..., "-classpath", classpath, ...].

The other ways (copy and paste and system()) work because the shell splits the command line at the spaces (unless they are escaped or quoted). The command line is in fact passed down to the called program as an array (unlike on Windows), and the JVM is expecting to find an element with only "-classpath" followed by another element with the classpath.

You can see the difference for yourself by calling the following small Python script instead of the JVM:

#!/usr/bin/python
import sys
print sys.argv
like image 190
CesarB Avatar answered Oct 15 '22 08:10

CesarB