70 std::vector<std::string>
72 std::vector<std::string> &commandStderr,
73 const std::vector<std::string> &commandList
81 if( pipe( link ) == -1 )
83 mxPError(
"mx::ipc::runCommand", errno,
"piping stdout" );
87 if( pipe( errlink ) == -1 )
89 mxPError(
"mx::ipc::runCommand", errno,
"piping stderr" );
93 if( ( pid = fork() ) == -1 )
95 mxPError(
"mx::ipc::runCommand", errno,
"forking" );
101 if( dup2( link[1], STDOUT_FILENO ) < 0 )
103 mxPError(
"mx::ipc::runCommand", errno,
"dup2" );
107 if( close( link[0] ) < 0 )
109 mxPError(
"mx::ipc::runCommand", errno,
"close" );
113 if( close( link[1] ) < 0 )
115 mxPError(
"mx::ipc::runCommand", errno,
"close" );
119 if( dup2( errlink[1], STDERR_FILENO ) < 0 )
121 mxPError(
"mx::ipc::runCommand", errno,
"dup2" );
125 if( close( errlink[0] ) < 0 )
127 mxPError(
"mx::ipc::runCommand", errno,
"close" );
131 if( close( errlink[1] ) < 0 )
133 mxPError(
"mx::ipc::runCommand", errno,
"close" );
137 std::vector<const char *> charCommandList( commandList.size() + 1, NULL );
139 for(
int index = 0; index < (int)commandList.size(); ++index )
141 charCommandList[index] = commandList[index].c_str();
143 execvp( charCommandList[0],
const_cast<char **
>( charCommandList.data() ) );
145 mxPError(
"mx::ipc::runCommand", errno,
"execvp returned" );
151 char commandOutput_c[4096];
155 pid_t rvid = waitpid( pid, &status, 0 );
159 mxPError(
"mx::ipc::runCommand", errno,
"waitpid" );
163 if( WIFEXITED( status ) )
165 retVal = WEXITSTATUS( status );
169 mxError(
"mx::ipc::runCommand", MXE_PROCERR,
"child did not exit" );
173 if( close( link[1] ) < 0 )
175 mxPError(
"mx::ipc::runCommand", errno,
"close" );
179 if( close( errlink[1] ) < 0 )
181 mxPError(
"mx::ipc::runCommand", errno,
"close" );
186 if( ( rd = read( link[0], commandOutput_c,
sizeof( commandOutput_c ) ) ) < 0 )
188 mxPError(
"mx::ipc::runCommand", errno,
"read" );
190 if( close( errlink[0] ) < 0 )
191 mxPError(
"mx::ipc::runCommand", errno,
"close" );
192 if( close( link[0] ) < 0 )
193 mxPError(
"mx::ipc::runCommand", errno,
"close" );
198 if( close( link[0] ) < 0 )
200 mxPError(
"mx::ipc::runCommand", errno,
"close" );
201 if( close( errlink[0] ) < 0 )
202 mxPError(
"mx::ipc::runCommand", errno,
"close" );
208 commandOutput_c[rd] =
'\0';
209 std::string commandOutputString( commandOutput_c );
211 std::istringstream iss( commandOutputString );
213 while( getline( iss, line ) )
215 commandOutput.push_back( line );
219 if( ( rd = read( errlink[0], commandOutput_c,
sizeof( commandOutput_c ) ) ) < 0 )
221 commandStderr.push_back( std::string(
"Read error on stderr: " ) + strerror( errno ) );
222 if( close( errlink[0] ) < 0 )
223 mxPError(
"mx::ipc::runCommand", errno,
"close" );
227 if( close( errlink[0] ) < 0 )
229 mxPError(
"mx::ipc::runCommand", errno,
"close" );
233 commandOutput_c[rd] =
'\0';
234 commandOutputString = commandOutput_c;
236 std::istringstream iss2( commandOutputString );
238 while( getline( iss2, line ) )
240 commandStderr.push_back( line );
int runCommand(int &retVal, std::vector< std::string > &commandOutput, std::vector< std::string > &commandStderr, const std::vector< std::string > &commandList)
Runs a command (with parameters) passed in using fork/exec.