ctpv/utils.c
2022-06-08 10:39:05 +05:00

149 lines
3.0 KiB
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include "error.h"
#include "utils.h"
char *program = NULL;
int spawn_redirect(const void *arg)
{
int *fds = (int *)arg;
ERRCHK_RET(close(fds[0]) == -1, FUNCFAILED("close"), ERRNOS);
ERRCHK_RET(dup2(fds[1], fds[2]) == -1, FUNCFAILED("dup2"), ERRNOS);
return OK;
}
int spawn_wait(pid_t pid, int *exitcode)
{
int stat;
ERRCHK_RET(waitpid(pid, &stat, 0) == -1, FUNCFAILED("waitpid"), ERRNOS);
if (exitcode && WIFEXITED(stat))
*exitcode = WEXITSTATUS(stat);
return OK;
}
/*
* Run command
*
* If cpid is NULL, wait for the command to finish executing;
* otherwise store pid in cpid
*
* cfunc is a function to call when child process is created
*/
int spawn(char *args[], pid_t *cpid, int *exitcode, int (*cfunc)(const void *),
const void *carg)
{
if (exitcode)
*exitcode = -1;
pid_t pid = fork();
ERRCHK_RET(pid == -1, FUNCFAILED("fork"), ERRNOS);
/* Child process */
if (pid == 0) {
if (cfunc && (cfunc(carg) != OK))
exit(EXIT_FAILURE);
execvp(args[0], args);
if (errno == ENOENT)
exit(NOTEXIST_EC);
PRINTINTERR(FUNCFAILED("exec"), ERRNOS);
exit(EXIT_FAILURE);
}
if (cpid)
*cpid = pid;
if (exitcode)
ERRCHK_RET_OK(spawn_wait(pid, exitcode));
return OK;
}
int strcmpnull(const char *s1, const char *s2)
{
if (!s1 && !s2)
return 0;
else if (s1 && !s2)
return 1;
else if (!s1 && s2)
return -1;
return strcmp(s1, s2);
}
int strlennull(const char *s)
{
return s ? strlen(s) : 0;
}
static int get_xdg_dir(char *buf, size_t len, char *var, char *var_sub, char *name)
{
char *home, *dir, dir_buf[FILENAME_MAX];
if (!(dir = getenv(var))) {
home = getenv("HOME");
ERRCHK_RET(!home, "HOME env var does not exist");
snprintf(dir_buf, LEN(dir_buf)-1, "%s/%s", home, var_sub);
dir = dir_buf;
}
snprintf(buf, len - 1, "%s/%s", dir, name);
return OK;
}
int get_cache_dir(char *buf, size_t len, char *name)
{
return get_xdg_dir(buf, len, "XDG_CACHE_HOME", ".cache", name);
}
int get_config_dir(char *buf, size_t len, char *name)
{
return get_xdg_dir(buf, len, "XDG_CONFIG_HOME", ".config", name);
}
int mkpath(char* file_path, mode_t mode)
{
for (char* p = strchr(file_path + 1, '/'); p; p = strchr(p + 1, '/')) {
*p = '\0';
if (mkdir(file_path, mode) == -1) {
if (errno != EEXIST) {
*p = '/';
return -1;
}
}
*p = '/';
}
return 0;
}
const char *get_ext(const char *path)
{
const char *base;
if ((base = strrchr(path, '/')))
base += sizeof(*base);
else
base = path;
const char *dot = strchr(base, '.');
if (!dot || dot == base)
return NULL;
return &dot[1];
}