X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d604bedd645c4eac1766ac6f0deba3e55078219b..1c4d458b5df83facce7cf71b39ab247eb1447491:/lib/base/console.cpp diff --git a/lib/base/console.cpp b/lib/base/console.cpp index 3ed0f102..a29772d8 100644 --- a/lib/base/console.cpp +++ b/lib/base/console.cpp @@ -8,7 +8,7 @@ #include #include -int bidirpipe(int pfd[], char *cmd , char *argv[]) +int bidirpipe(int pfd[], const char *cmd , const char * const argv[]) { int pfdin[2]; /* from child to parent */ int pfdout[2]; /* from parent to child */ @@ -37,7 +37,8 @@ int bidirpipe(int pfd[], char *cmd , char *argv[]) for (unsigned int i=3; i < 90; ++i ) close(i); - execvp(cmd,argv); + execvp(cmd, (char * const *)argv); + /* the vfork will actually suspend the parent thread until execvp is called. thus it's ok to use the shared arg/cmdline pointers here. */ _exit(0); } if (close(pfdout[0]) == -1 || close(pfdin[1]) == -1 || close(pfderr[1]) == -1) @@ -80,11 +81,6 @@ static char *find_bracket(char ch) int eConsoleAppContainer::execute( const char *cmd ) { - if (running()) - return -1; - pid=-1; - killstate=0; - int cnt=0, slen=strlen(cmd); char buf[slen+1]; char *tmp=0, *argv[64], *path=buf, *cmds = buf; @@ -149,9 +145,19 @@ int eConsoleAppContainer::execute( const char *cmd ) // int tmp=0; // while(argv[tmp]) // eDebug("%d is %s", tmp, argv[tmp++]); + return execute(argv[0], argv); +} + +int eConsoleAppContainer::execute(const char *cmdline, const char * const argv[]) +{ + if (running()) + return -1; + + pid=-1; + killstate=0; // get one read ,one write and the err pipe to the prog.. - pid = bidirpipe(fd, argv[0], argv); + pid = bidirpipe(fd, cmdline, argv); if ( pid == -1 ) return -3; @@ -168,6 +174,28 @@ int eConsoleAppContainer::execute( const char *cmd ) return 0; } +int eConsoleAppContainer::execute( PyObject *cmdline, PyObject *args ) +{ + if (!PyString_Check(cmdline)) + return -1; + if (!PyList_Check(args)) + return -1; + const char *argv[PyList_Size(args) + 1]; + int i; + for (i = 0; i < PyList_Size(args); ++i) + { + PyObject *arg = PyList_GetItem(args, i); /* borrowed ref */ + if (!arg) + return -1; + if (!PyString_Check(arg)) + return -1; + argv[i] = PyString_AsString(arg); /* borrowed pointer */ + } + argv[i] = 0; + + return execute(PyString_AsString(cmdline), argv); /* borrowed pointer */ +} + eConsoleAppContainer::~eConsoleAppContainer() { kill(); @@ -305,7 +333,18 @@ void eConsoleAppContainer::write( const char *data, int len ) char *tmp = new char[len]; memcpy(tmp, data, len); outbuf.push(queue_data(tmp,len)); - out->start(); + if (out) + out->start(); +} + +void eConsoleAppContainer::write( PyObject *data ) +{ + char *buffer; + int length; + if (PyString_AsStringAndSize(data, &buffer, &length)) + return; + if (buffer && length) + write(buffer, length); } void eConsoleAppContainer::readyWrite(int what)