aboutsummaryrefslogtreecommitdiff
path: root/src/Program.c
blob: 526f64b730583af7efb96889b5657fc4cc706a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "../include/Program.h"
#include <unistd.h>
#include <sys/wait.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>

#define READ_END 0
#define WRITE_END 1

int exec_program(char **args, ProgramOutputCallback output_callback, void *userdata) {
    /* 1 arguments */
    if(args[0] == NULL)
        return -1;
    
    int fd[2];
    if(pipe(fd) == -1) {
        perror("Failed to open pipe");
        return -2;
    }

    pid_t pid = fork();
    if(pid == -1) {
        perror("Failed to fork");
        return -3;
    } else if(pid == 0) { /* child */
        dup2(fd[WRITE_END], STDOUT_FILENO);
        close(fd[READ_END]);
        close(fd[WRITE_END]);

        execv(args[0], args);
        return 0;
    } else { /* parent */
        close(fd[WRITE_END]);

        int status;
        waitpid(pid, &status, 0);
        if(!WIFEXITED(status))
            return -4;

        int exit_status = WEXITSTATUS(status);
        if(exit_status != 0) {
            fprintf(stderr, "Failed to execute program, exit status %d\n", exit_status);
            return -exit_status;
        }

        char buffer[2048];
        int result = 0;

        for(;;) {
            ssize_t bytes_read = read(fd[READ_END], buffer, sizeof(buffer));
            if(bytes_read == 0) {
                break;
            } else if(bytes_read == -1) {
                int err = errno;
                fprintf(stderr, "Failed to read from pipe to program %s, error: %s\n", args[0], strerror(err));
                result = -err;
                break;
            }

            if(output_callback(buffer, bytes_read, userdata) != 0)
                break;
        }

        close(fd[READ_END]);
        return result;
    }
}