SDL/test/childprocess.c

171 lines
5.5 KiB
C
Raw Permalink Normal View History

2024-08-29 20:06:25 +03:00
#include <SDL3/SDL.h>
#include <SDL3/SDL_main.h>
#include <SDL3/SDL_test.h>
#include <stdio.h>
#include <errno.h>
int main(int argc, char *argv[]) {
SDLTest_CommonState *state;
int i;
bool print_arguments = false;
bool print_environment = false;
bool stdin_to_stdout = false;
2024-09-14 18:58:07 +03:00
bool read_stdin = false;
bool stdin_to_stderr = false;
SDL_IOStream *log_stdin = NULL;
2024-08-29 20:06:25 +03:00
int exit_code = 0;
state = SDLTest_CommonCreateState(argv, 0);
for (i = 1; i < argc;) {
int consumed = SDLTest_CommonArg(state, i);
2024-09-14 18:58:07 +03:00
if (!consumed) {
if (SDL_strcmp(argv[i], "--print-arguments") == 0) {
print_arguments = true;
consumed = 1;
} else if (SDL_strcmp(argv[i], "--print-environment") == 0) {
print_environment = true;
consumed = 1;
} else if (SDL_strcmp(argv[i], "--stdin-to-stdout") == 0) {
stdin_to_stdout = true;
consumed = 1;
} else if (SDL_strcmp(argv[i], "--stdin-to-stderr") == 0) {
stdin_to_stderr = true;
consumed = 1;
} else if (SDL_strcmp(argv[i], "--stdin") == 0) {
read_stdin = true;
consumed = 1;
} else if (SDL_strcmp(argv[i], "--stdout") == 0) {
if (i + 1 < argc) {
fprintf(stdout, "%s", argv[i + 1]);
2024-08-29 20:06:25 +03:00
consumed = 2;
}
2024-09-14 18:58:07 +03:00
} else if (SDL_strcmp(argv[i], "--stderr") == 0) {
if (i + 1 < argc) {
fprintf(stderr, "%s", argv[i + 1]);
consumed = 2;
}
} else if (SDL_strcmp(argv[i], "--log-stdin") == 0) {
if (i + 1 < argc) {
log_stdin = SDL_IOFromFile(argv[i + 1], "w");
if (!log_stdin) {
fprintf(stderr, "Couldn't open %s\n", argv[i + 1]);
return 2;
}
consumed = 2;
}
2024-09-14 18:58:07 +03:00
} else if (SDL_strcmp(argv[i], "--exit-code") == 0) {
if (i + 1 < argc) {
char *endptr = NULL;
exit_code = SDL_strtol(argv[i + 1], &endptr, 0);
if (endptr && *endptr == '\0') {
consumed = 2;
}
}
} else if (SDL_strcmp(argv[i], "--version") == 0) {
int version = SDL_GetVersion();
fprintf(stdout, "SDL version %d.%d.%d",
SDL_VERSIONNUM_MAJOR(version),
SDL_VERSIONNUM_MINOR(version),
SDL_VERSIONNUM_MICRO(version));
fprintf(stderr, "SDL version %d.%d.%d",
SDL_VERSIONNUM_MAJOR(version),
SDL_VERSIONNUM_MINOR(version),
SDL_VERSIONNUM_MICRO(version));
consumed = 1;
break;
} else if (SDL_strcmp(argv[i], "--") == 0) {
i++;
break;
2024-08-29 20:06:25 +03:00
}
}
if (consumed <= 0) {
const char *args[] = {
"[--print-arguments]",
"[--print-environment]",
2024-09-14 18:58:07 +03:00
"[--stdin]",
"[--log-stdin FILE]",
2024-08-29 20:06:25 +03:00
"[--stdin-to-stdout]",
"[--stdout TEXT]",
"[--stdin-to-stderr]",
"[--stderr TEXT]",
"[--exit-code EXIT_CODE]",
"[--] [ARG [ARG ...]]",
NULL
};
SDLTest_CommonLogUsage(state, argv[0], args);
return 1;
}
i += consumed;
}
if (print_arguments) {
int print_i;
for (print_i = 0; i + print_i < argc; print_i++) {
fprintf(stdout, "|%d=%s|\r\n", print_i, argv[i + print_i]);
}
fflush(stdout);
2024-08-29 20:06:25 +03:00
}
2024-09-14 18:58:07 +03:00
if (print_environment) {
char **env = SDL_GetEnvironmentVariables(SDL_GetEnvironment());
if (env) {
for (i = 0; env[i]; ++i) {
2024-09-14 18:58:07 +03:00
fprintf(stdout, "%s\n", env[i]);
2024-08-29 20:06:25 +03:00
}
SDL_free(env);
2024-08-29 20:06:25 +03:00
}
fflush(stdout);
2024-08-29 20:06:25 +03:00
}
2024-09-14 18:58:07 +03:00
if (stdin_to_stdout || stdin_to_stderr || read_stdin) {
2024-08-29 20:06:25 +03:00
for (;;) {
2024-09-14 18:58:07 +03:00
char buffer[4 * 4096];
size_t result;
result = fread(buffer, 1, sizeof(buffer), stdin);
if (result == 0) {
if (!feof(stdin)) {
char error[128];
if (errno == EAGAIN) {
clearerr(stdin);
SDL_Delay(20);
continue;
}
#ifdef SDL_PLATFORM_WINDOWS
if (strerror_s(error, sizeof(error), errno) != 0) {
SDL_strlcpy(error, "Unknown error", sizeof(error));
}
#else
SDL_strlcpy(error, strerror(errno), sizeof(error));
#endif
SDL_Log("Error reading from stdin: %s\n", error);
2024-08-29 20:06:25 +03:00
}
break;
}
if (log_stdin) {
SDL_WriteIO(log_stdin, buffer, result);
SDL_FlushIO(log_stdin);
}
2024-08-29 20:06:25 +03:00
if (stdin_to_stdout) {
2024-09-14 18:58:07 +03:00
fwrite(buffer, 1, result, stdout);
2024-08-29 20:06:25 +03:00
fflush(stdout);
}
if (stdin_to_stderr) {
2024-09-14 18:58:07 +03:00
fwrite(buffer, 1, result, stderr);
2024-08-29 20:06:25 +03:00
}
}
}
if (log_stdin) {
SDL_CloseIO(log_stdin);
}
2024-08-29 20:06:25 +03:00
SDLTest_CommonDestroyState(state);
return exit_code;
}