2021-04-18 15:19:21 +02:00
|
|
|
#include "fastfetch.h"
|
2022-07-25 14:48:59 +02:00
|
|
|
#include "common/processing.h"
|
2023-01-28 12:40:12 +01:00
|
|
|
#include "common/io/io.h"
|
2021-04-18 15:19:21 +02:00
|
|
|
|
2022-06-18 14:25:31 +02:00
|
|
|
#include <stdlib.h>
|
2021-04-18 15:19:21 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
2022-09-21 16:03:51 +08:00
|
|
|
const char* ffProcessAppendStdOut(FFstrbuf* buffer, char* const argv[])
|
2021-04-18 15:19:21 +02:00
|
|
|
{
|
|
|
|
|
int pipes[2];
|
|
|
|
|
|
|
|
|
|
if(pipe(pipes) == -1)
|
2022-09-21 16:03:51 +08:00
|
|
|
return "pipe() failed";
|
2021-04-18 15:19:21 +02:00
|
|
|
|
|
|
|
|
pid_t childPid = fork();
|
|
|
|
|
if(childPid == -1)
|
2022-09-21 16:03:51 +08:00
|
|
|
return "fork() failed";
|
2021-04-18 15:19:21 +02:00
|
|
|
|
2022-03-17 16:52:19 +01:00
|
|
|
//Child
|
2021-04-18 15:19:21 +02:00
|
|
|
if(childPid == 0)
|
|
|
|
|
{
|
|
|
|
|
dup2(pipes[1], STDOUT_FILENO);
|
|
|
|
|
close(pipes[0]);
|
|
|
|
|
close(pipes[1]);
|
2021-05-01 21:27:46 +02:00
|
|
|
close(STDERR_FILENO);
|
2021-04-18 15:19:21 +02:00
|
|
|
execvp(argv[0], argv);
|
|
|
|
|
exit(901);
|
|
|
|
|
}
|
2022-03-17 16:52:19 +01:00
|
|
|
|
|
|
|
|
//Parent
|
|
|
|
|
close(pipes[1]);
|
2022-09-21 16:03:51 +08:00
|
|
|
|
2023-02-23 11:13:50 +08:00
|
|
|
int FF_AUTO_CLOSE_FD childPipeFd = pipes[0];
|
|
|
|
|
int status = -1;
|
|
|
|
|
if(waitpid(childPid, &status, 0) < 0)
|
|
|
|
|
return "waitpid(childPid, &status, 0) failed";
|
|
|
|
|
|
|
|
|
|
if (!WIFEXITED(status))
|
|
|
|
|
return "WIFEXITED(status) == false";
|
|
|
|
|
|
|
|
|
|
if(WEXITSTATUS(status) == 901)
|
|
|
|
|
return "WEXITSTATUS(status) == 901 ( execvp failed )";
|
|
|
|
|
|
|
|
|
|
if(!ffAppendFDBuffer(childPipeFd, buffer))
|
|
|
|
|
return "ffAppendFDBuffer(childPipeFd, buffer) failed";
|
|
|
|
|
|
|
|
|
|
return NULL;
|
2021-04-18 15:19:21 +02:00
|
|
|
}
|