blob: e84a72a1baab740e5d0f2ce2168ce0f1c1c89d07 (
plain) (
tree)
|
|
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <cjson/cJSON.h>
#include "util.h"
int json_streaming_read(FILE *stream, cJSON **json)
{
size_t n;
int ret;
char *line = NULL;
ret = getline(&line, &n, stream);
if (ret < 0) {
if (errno != 0) {
print_err("%s", strerror(errno));
ret = -errno;
}
ret = -EOF;
goto out_free_line;
}
*json = cJSON_Parse(line);
if (cJSON_IsInvalid(*json)) {
print_err("%s", "Invalid JSON");
ret = -EPERM;
goto out_free_line;
}
out_free_line:
free(line);
return ret;
}
int vpopen(FILE **stream, const char *file, char *const argv[])
{
int fd[2];
int ret;
ret = pipe(fd);
if (ret < 0) {
print_err("%s", strerror(errno));
return -errno;
}
ret = fork();
if (ret < 0) {
print_err("%s", strerror(errno));
close(fd[0]);
close(fd[1]);
return -errno;
} else if (ret > 0) {
close(fd[1]);
*stream = fdopen(fd[0], "r");
if (*stream == NULL) {
print_err("%s", strerror(errno));
return -errno;
}
return 0;
}
close(fd[0]);
ret = dup2(fd[1], STDOUT_FILENO);
if (ret < 0)
goto out_err;
execvp(file, argv);
out_err:
close(fd[1]);
print_err("%s", strerror(errno));
exit(EXIT_FAILURE);
}
|