2013-12-25 21:40:33 -08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
2013-11-01 14:33:00 -07:00
|
|
|
|
2015-06-21 22:33:48 -07:00
|
|
|
#include <stdio.h>
|
2013-11-23 22:35:03 -08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2015-02-20 14:52:13 -08:00
|
|
|
#include <sys/statvfs.h>
|
2014-05-14 17:44:32 -07:00
|
|
|
#include <dirent.h>
|
2013-11-01 14:33:00 -07:00
|
|
|
#include <stdlib.h>
|
2015-10-14 20:16:44 -07:00
|
|
|
#include <limits.h>
|
2013-12-07 12:59:19 -08:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <unistd.h>
|
2014-07-27 01:29:39 -07:00
|
|
|
#include <glob.h>
|
2013-12-07 12:59:19 -08:00
|
|
|
#include <time.h>
|
2015-11-18 12:09:13 -08:00
|
|
|
#include <signal.h>
|
2013-11-01 14:33:00 -07:00
|
|
|
|
2015-09-12 19:18:03 -07:00
|
|
|
#include "obsconfig.h"
|
|
|
|
|
2014-07-04 22:20:20 -07:00
|
|
|
#if !defined(__APPLE__)
|
|
|
|
#include <sys/times.h>
|
2015-09-12 19:18:03 -07:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <spawn.h>
|
2014-07-04 22:20:20 -07:00
|
|
|
#endif
|
|
|
|
|
2014-07-27 01:29:39 -07:00
|
|
|
#include "darray.h"
|
2013-11-01 14:33:00 -07:00
|
|
|
#include "dstr.h"
|
|
|
|
#include "platform.h"
|
2015-09-12 19:18:03 -07:00
|
|
|
#include "threading.h"
|
2013-11-01 14:33:00 -07:00
|
|
|
|
|
|
|
void *os_dlopen(const char *path)
|
|
|
|
{
|
2013-12-07 12:59:19 -08:00
|
|
|
struct dstr dylib_name;
|
2014-03-04 06:07:13 -08:00
|
|
|
|
|
|
|
if (!path)
|
|
|
|
return NULL;
|
|
|
|
|
2013-12-07 12:59:19 -08:00
|
|
|
dstr_init_copy(&dylib_name, path);
|
2014-02-09 04:51:06 -08:00
|
|
|
if (!dstr_find(&dylib_name, ".so"))
|
2013-12-07 12:59:19 -08:00
|
|
|
dstr_cat(&dylib_name, ".so");
|
|
|
|
|
|
|
|
void *res = dlopen(dylib_name.array, RTLD_LAZY);
|
2014-02-09 04:51:06 -08:00
|
|
|
if (!res)
|
2013-12-07 12:59:19 -08:00
|
|
|
blog(LOG_ERROR, "os_dlopen(%s->%s): %s\n",
|
|
|
|
path, dylib_name.array, dlerror());
|
|
|
|
|
|
|
|
dstr_free(&dylib_name);
|
|
|
|
return res;
|
2013-11-01 14:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void *os_dlsym(void *module, const char *func)
|
|
|
|
{
|
2013-12-07 12:59:19 -08:00
|
|
|
return dlsym(module, func);
|
2013-11-01 14:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void os_dlclose(void *module)
|
|
|
|
{
|
2013-12-07 12:59:19 -08:00
|
|
|
dlclose(module);
|
2013-11-01 14:33:00 -07:00
|
|
|
}
|
|
|
|
|
2014-07-04 22:20:20 -07:00
|
|
|
#if !defined(__APPLE__)
|
|
|
|
|
|
|
|
struct os_cpu_usage_info {
|
|
|
|
clock_t last_cpu_time, last_sys_time, last_user_time;
|
|
|
|
int core_count;
|
|
|
|
};
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
os_cpu_usage_info_t *os_cpu_usage_info_start(void)
|
2014-07-04 22:20:20 -07:00
|
|
|
{
|
|
|
|
struct os_cpu_usage_info *info = bmalloc(sizeof(*info));
|
|
|
|
struct tms time_sample;
|
|
|
|
|
|
|
|
info->last_cpu_time = times(&time_sample);
|
|
|
|
info->last_sys_time = time_sample.tms_stime;
|
|
|
|
info->last_user_time = time_sample.tms_utime;
|
|
|
|
info->core_count = sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
double os_cpu_usage_info_query(os_cpu_usage_info_t *info)
|
2014-07-04 22:20:20 -07:00
|
|
|
{
|
|
|
|
struct tms time_sample;
|
|
|
|
clock_t cur_cpu_time;
|
|
|
|
double percent;
|
|
|
|
|
|
|
|
if (!info)
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
cur_cpu_time = times(&time_sample);
|
|
|
|
if (cur_cpu_time <= info->last_cpu_time ||
|
|
|
|
time_sample.tms_stime < info->last_sys_time ||
|
|
|
|
time_sample.tms_utime < info->last_user_time)
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
percent = (double)(time_sample.tms_stime - info->last_sys_time +
|
|
|
|
(time_sample.tms_utime - info->last_user_time));
|
|
|
|
percent /= (double)(cur_cpu_time - info->last_cpu_time);
|
|
|
|
percent /= (double)info->core_count;
|
|
|
|
|
|
|
|
info->last_cpu_time = cur_cpu_time;
|
|
|
|
info->last_sys_time = time_sample.tms_stime;
|
|
|
|
info->last_user_time = time_sample.tms_utime;
|
|
|
|
|
|
|
|
return percent * 100.0;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
void os_cpu_usage_info_destroy(os_cpu_usage_info_t *info)
|
2014-07-04 22:20:20 -07:00
|
|
|
{
|
|
|
|
if (info)
|
|
|
|
bfree(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-02-09 04:51:06 -08:00
|
|
|
bool os_sleepto_ns(uint64_t time_target)
|
2013-11-01 14:33:00 -07:00
|
|
|
{
|
2013-12-07 12:59:19 -08:00
|
|
|
uint64_t current = os_gettime_ns();
|
2014-02-09 04:51:06 -08:00
|
|
|
if (time_target < current)
|
|
|
|
return false;
|
|
|
|
|
2013-12-07 12:59:19 -08:00
|
|
|
time_target -= current;
|
2014-02-09 04:51:06 -08:00
|
|
|
|
|
|
|
struct timespec req, remain;
|
2013-12-07 12:59:19 -08:00
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
memset(&remain, 0, sizeof(remain));
|
|
|
|
req.tv_sec = time_target/1000000000;
|
|
|
|
req.tv_nsec = time_target%1000000000;
|
2014-02-09 04:51:06 -08:00
|
|
|
|
|
|
|
while (nanosleep(&req, &remain)) {
|
2013-12-07 12:59:19 -08:00
|
|
|
req = remain;
|
|
|
|
memset(&remain, 0, sizeof(remain));
|
|
|
|
}
|
2014-02-09 04:51:06 -08:00
|
|
|
|
|
|
|
return true;
|
2013-11-01 14:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void os_sleep_ms(uint32_t duration)
|
|
|
|
{
|
2013-12-07 12:59:19 -08:00
|
|
|
usleep(duration*1000);
|
2013-11-01 14:33:00 -07:00
|
|
|
}
|
|
|
|
|
2014-05-14 17:44:32 -07:00
|
|
|
#if !defined(__APPLE__)
|
|
|
|
|
2013-11-01 14:33:00 -07:00
|
|
|
uint64_t os_gettime_ns(void)
|
|
|
|
{
|
2014-01-11 13:08:04 -08:00
|
|
|
struct timespec ts;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
return ((uint64_t) ts.tv_sec * 1000000000ULL + (uint64_t) ts.tv_nsec);
|
2013-11-01 14:33:00 -07:00
|
|
|
}
|
|
|
|
|
2015-01-29 18:02:46 -08:00
|
|
|
/* should return $HOME/.[name], or when using XDG,
|
|
|
|
* should return $HOME/.config/[name] as default */
|
2015-01-15 23:44:38 -08:00
|
|
|
int os_get_config_path(char *dst, size_t size, const char *name)
|
|
|
|
{
|
2015-01-29 18:02:46 -08:00
|
|
|
#ifdef USE_XDG
|
|
|
|
char *xdg_ptr = getenv("XDG_CONFIG_HOME");
|
|
|
|
|
|
|
|
// If XDG_CONFIG_HOME is unset,
|
|
|
|
// we use the default $HOME/.config/[name] instead
|
|
|
|
if (xdg_ptr == NULL) {
|
|
|
|
char *home_ptr = getenv("HOME");
|
|
|
|
if (home_ptr == NULL)
|
|
|
|
bcrash("Could not get $HOME\n");
|
|
|
|
|
2015-07-08 09:19:35 -07:00
|
|
|
if (!name || !*name) {
|
|
|
|
return snprintf(dst, size, "%s/.config", home_ptr);
|
|
|
|
} else {
|
|
|
|
return snprintf(dst, size, "%s/.config/%s", home_ptr,
|
|
|
|
name);
|
|
|
|
}
|
2015-01-29 18:02:46 -08:00
|
|
|
} else {
|
2015-07-08 09:19:35 -07:00
|
|
|
if (!name || !*name)
|
|
|
|
return snprintf(dst, size, "%s", xdg_ptr);
|
|
|
|
else
|
|
|
|
return snprintf(dst, size, "%s/%s", xdg_ptr, name);
|
2015-01-29 18:02:46 -08:00
|
|
|
}
|
|
|
|
#else
|
2015-01-15 23:44:38 -08:00
|
|
|
char *path_ptr = getenv("HOME");
|
|
|
|
if (path_ptr == NULL)
|
|
|
|
bcrash("Could not get $HOME\n");
|
|
|
|
|
2015-07-08 09:19:35 -07:00
|
|
|
if (!name || !*name)
|
|
|
|
return snprintf(dst, size, "%s", path_ptr);
|
|
|
|
else
|
|
|
|
return snprintf(dst, size, "%s/.%s", path_ptr, name);
|
2015-01-29 18:02:46 -08:00
|
|
|
#endif
|
2015-01-15 23:44:38 -08:00
|
|
|
}
|
|
|
|
|
2015-01-29 18:02:46 -08:00
|
|
|
/* should return $HOME/.[name], or when using XDG,
|
|
|
|
* should return $HOME/.config/[name] as default */
|
2015-01-15 23:44:38 -08:00
|
|
|
char *os_get_config_path_ptr(const char *name)
|
2013-11-01 14:33:00 -07:00
|
|
|
{
|
2015-01-29 18:02:46 -08:00
|
|
|
#ifdef USE_XDG
|
|
|
|
struct dstr path;
|
|
|
|
char *xdg_ptr = getenv("XDG_CONFIG_HOME");
|
|
|
|
|
|
|
|
/* If XDG_CONFIG_HOME is unset,
|
|
|
|
* we use the default $HOME/.config/[name] instead */
|
|
|
|
if (xdg_ptr == NULL) {
|
|
|
|
char *home_ptr = getenv("HOME");
|
|
|
|
if (home_ptr == NULL)
|
|
|
|
bcrash("Could not get $HOME\n");
|
|
|
|
|
|
|
|
dstr_init_copy(&path, home_ptr);
|
|
|
|
dstr_cat(&path, "/.config/");
|
|
|
|
dstr_cat(&path, name);
|
|
|
|
} else {
|
|
|
|
dstr_init_copy(&path, xdg_ptr);
|
|
|
|
dstr_cat(&path, "/");
|
|
|
|
dstr_cat(&path, name);
|
|
|
|
}
|
|
|
|
return path.array;
|
|
|
|
#else
|
2013-12-07 12:59:19 -08:00
|
|
|
char *path_ptr = getenv("HOME");
|
|
|
|
if (path_ptr == NULL)
|
|
|
|
bcrash("Could not get $HOME\n");
|
|
|
|
|
2013-12-23 17:59:54 -08:00
|
|
|
struct dstr path;
|
|
|
|
dstr_init_copy(&path, path_ptr);
|
2013-12-23 18:04:41 -08:00
|
|
|
dstr_cat(&path, "/.");
|
2013-12-23 17:59:54 -08:00
|
|
|
dstr_cat(&path, name);
|
|
|
|
return path.array;
|
2015-01-29 18:02:46 -08:00
|
|
|
#endif
|
2013-11-01 14:33:00 -07:00
|
|
|
}
|
2013-11-23 22:35:03 -08:00
|
|
|
|
2014-05-14 17:44:32 -07:00
|
|
|
#endif
|
|
|
|
|
2013-12-12 20:41:46 -08:00
|
|
|
bool os_file_exists(const char *path)
|
|
|
|
{
|
|
|
|
return access(path, F_OK) == 0;
|
|
|
|
}
|
|
|
|
|
2015-10-14 20:16:44 -07:00
|
|
|
size_t os_get_abs_path(const char *path, char *abspath, size_t size)
|
|
|
|
{
|
|
|
|
size_t min_size = size < PATH_MAX ? size : PATH_MAX;
|
|
|
|
char newpath[PATH_MAX];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!abspath)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!realpath(path, newpath))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = snprintf(abspath, min_size, "%s", newpath);
|
|
|
|
return ret >= 0 ? ret : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *os_get_abs_path_ptr(const char *path)
|
|
|
|
{
|
|
|
|
char *ptr = bmalloc(512);
|
|
|
|
|
|
|
|
if (!os_get_abs_path(path, ptr, 512)) {
|
|
|
|
bfree(ptr);
|
|
|
|
ptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2014-05-14 17:44:32 -07:00
|
|
|
struct os_dir {
|
|
|
|
const char *path;
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *cur_dirent;
|
|
|
|
struct os_dirent out;
|
|
|
|
};
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
os_dir_t *os_opendir(const char *path)
|
2014-05-14 17:44:32 -07:00
|
|
|
{
|
|
|
|
struct os_dir *dir;
|
|
|
|
DIR *dir_val;
|
|
|
|
|
|
|
|
dir_val = opendir(path);
|
|
|
|
if (!dir_val)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
dir = bzalloc(sizeof(struct os_dir));
|
2014-05-18 17:44:10 -07:00
|
|
|
dir->dir = dir_val;
|
|
|
|
dir->path = path;
|
2014-05-14 17:44:32 -07:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2014-07-27 01:29:39 -07:00
|
|
|
static inline bool is_dir(const char *path)
|
|
|
|
{
|
|
|
|
struct stat stat_info;
|
|
|
|
if (stat(path, &stat_info) == 0)
|
|
|
|
return !!S_ISDIR(stat_info.st_mode);
|
|
|
|
|
|
|
|
blog(LOG_DEBUG, "is_dir: stat for %s failed, errno: %d", path, errno);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
struct os_dirent *os_readdir(os_dir_t *dir)
|
2014-05-14 17:44:32 -07:00
|
|
|
{
|
|
|
|
struct dstr file_path = {0};
|
|
|
|
|
|
|
|
if (!dir) return NULL;
|
|
|
|
|
|
|
|
dir->cur_dirent = readdir(dir->dir);
|
|
|
|
if (!dir->cur_dirent)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
strncpy(dir->out.d_name, dir->cur_dirent->d_name, 255);
|
|
|
|
|
|
|
|
dstr_copy(&file_path, dir->path);
|
|
|
|
dstr_cat(&file_path, "/");
|
|
|
|
dstr_cat(&file_path, dir->out.d_name);
|
|
|
|
|
2014-07-27 01:29:39 -07:00
|
|
|
dir->out.directory = is_dir(file_path.array);
|
2014-05-14 17:44:32 -07:00
|
|
|
|
|
|
|
dstr_free(&file_path);
|
|
|
|
|
|
|
|
return &dir->out;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
void os_closedir(os_dir_t *dir)
|
2014-05-14 17:44:32 -07:00
|
|
|
{
|
|
|
|
if (dir) {
|
|
|
|
closedir(dir->dir);
|
|
|
|
bfree(dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:13 -08:00
|
|
|
int64_t os_get_free_space(const char *path)
|
|
|
|
{
|
|
|
|
struct statvfs info;
|
|
|
|
int64_t ret = (int64_t)statvfs(path, &info);
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
ret = (int64_t)info.f_bsize * (int64_t)info.f_bfree;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-07-27 01:29:39 -07:00
|
|
|
struct posix_glob_info {
|
|
|
|
struct os_glob_info base;
|
|
|
|
glob_t gl;
|
|
|
|
};
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
int os_glob(const char *pattern, int flags, os_glob_t **pglob)
|
2014-07-27 01:29:39 -07:00
|
|
|
{
|
|
|
|
struct posix_glob_info pgi;
|
|
|
|
int ret = glob(pattern, 0, NULL, &pgi.gl);
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
DARRAY(struct os_globent) list;
|
|
|
|
da_init(list);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < pgi.gl.gl_pathc; i++) {
|
|
|
|
struct os_globent ent = {0};
|
|
|
|
|
|
|
|
ent.path = pgi.gl.gl_pathv[i];
|
|
|
|
ent.directory = is_dir(ent.path);
|
|
|
|
da_push_back(list, &ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
pgi.base.gl_pathc = list.num;
|
|
|
|
pgi.base.gl_pathv = list.array;
|
|
|
|
|
|
|
|
*pglob = bmemdup(&pgi, sizeof(pgi));
|
|
|
|
} else {
|
|
|
|
*pglob = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
UNUSED_PARAMETER(flags);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
void os_globfree(os_glob_t *pglob)
|
2014-07-27 01:29:39 -07:00
|
|
|
{
|
|
|
|
if (pglob) {
|
2014-07-27 14:33:10 -07:00
|
|
|
struct posix_glob_info *pgi = (struct posix_glob_info*)pglob;
|
2014-07-27 01:29:39 -07:00
|
|
|
globfree(&pgi->gl);
|
|
|
|
|
|
|
|
bfree(pgi->base.gl_pathv);
|
|
|
|
bfree(pgi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-14 17:44:32 -07:00
|
|
|
int os_unlink(const char *path)
|
|
|
|
{
|
|
|
|
return unlink(path);
|
|
|
|
}
|
|
|
|
|
2015-06-29 00:39:21 -07:00
|
|
|
int os_rmdir(const char *path)
|
|
|
|
{
|
|
|
|
return rmdir(path);
|
|
|
|
}
|
|
|
|
|
2013-11-23 22:35:03 -08:00
|
|
|
int os_mkdir(const char *path)
|
|
|
|
{
|
2015-06-21 15:10:57 -07:00
|
|
|
if (mkdir(path, 0755) == 0)
|
2013-11-23 22:35:03 -08:00
|
|
|
return MKDIR_SUCCESS;
|
|
|
|
|
|
|
|
return (errno == EEXIST) ? MKDIR_EXISTS : MKDIR_ERROR;
|
|
|
|
}
|
2014-08-21 20:21:27 -07:00
|
|
|
|
2015-06-21 22:33:48 -07:00
|
|
|
int os_rename(const char *old_path, const char *new_path)
|
|
|
|
{
|
|
|
|
return rename(old_path, new_path);
|
|
|
|
}
|
|
|
|
|
2014-08-21 20:21:27 -07:00
|
|
|
#if !defined(__APPLE__)
|
2014-09-25 17:44:05 -07:00
|
|
|
os_performance_token_t *os_request_high_performance(const char *reason)
|
2014-08-21 20:21:27 -07:00
|
|
|
{
|
|
|
|
UNUSED_PARAMETER(reason);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
void os_end_high_performance(os_performance_token_t *token)
|
2014-08-21 20:21:27 -07:00
|
|
|
{
|
|
|
|
UNUSED_PARAMETER(token);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-06-29 00:39:56 -07:00
|
|
|
int os_copyfile(const char *file_path_in, const char *file_path_out)
|
|
|
|
{
|
|
|
|
FILE *file_out = NULL;
|
|
|
|
FILE *file_in = NULL;
|
|
|
|
uint8_t data[4096];
|
|
|
|
int ret = -1;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
if (os_file_exists(file_path_out))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
file_in = fopen(file_path_in, "rb");
|
|
|
|
if (!file_in)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
file_out = fopen(file_path_out, "ab+");
|
|
|
|
if (!file_out)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
do {
|
|
|
|
size = fread(data, 1, sizeof(data), file_in);
|
|
|
|
if (size)
|
|
|
|
size = fwrite(data, 1, size, file_out);
|
|
|
|
} while (size == sizeof(data));
|
|
|
|
|
|
|
|
ret = feof(file_in) ? 0 : -1;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (file_out)
|
|
|
|
fclose(file_out);
|
|
|
|
fclose(file_in);
|
|
|
|
return ret;
|
|
|
|
}
|
2015-07-16 00:50:21 -07:00
|
|
|
|
|
|
|
char *os_getcwd(char *path, size_t size)
|
|
|
|
{
|
|
|
|
return getcwd(path, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
int os_chdir(const char *path)
|
|
|
|
{
|
|
|
|
return chdir(path);
|
|
|
|
}
|
2015-09-12 19:18:03 -07:00
|
|
|
|
|
|
|
#if !defined(__APPLE__)
|
|
|
|
|
|
|
|
#if HAVE_DBUS
|
|
|
|
struct dbus_sleep_info;
|
|
|
|
|
|
|
|
extern struct dbus_sleep_info *dbus_sleep_info_create(void);
|
|
|
|
extern void dbus_inhibit_sleep(struct dbus_sleep_info *dbus, const char *sleep,
|
|
|
|
bool active);
|
|
|
|
extern void dbus_sleep_info_destroy(struct dbus_sleep_info *dbus);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct os_inhibit_info {
|
|
|
|
#if HAVE_DBUS
|
|
|
|
struct dbus_sleep_info *dbus;
|
|
|
|
#endif
|
|
|
|
pthread_t screensaver_thread;
|
|
|
|
os_event_t *stop_event;
|
|
|
|
char *reason;
|
|
|
|
posix_spawnattr_t attr;
|
|
|
|
bool active;
|
|
|
|
};
|
|
|
|
|
|
|
|
os_inhibit_t *os_inhibit_sleep_create(const char *reason)
|
|
|
|
{
|
|
|
|
struct os_inhibit_info *info = bzalloc(sizeof(*info));
|
|
|
|
sigset_t set;
|
|
|
|
|
|
|
|
#if HAVE_DBUS
|
|
|
|
info->dbus = dbus_sleep_info_create();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
os_event_init(&info->stop_event, OS_EVENT_TYPE_AUTO);
|
|
|
|
posix_spawnattr_init(&info->attr);
|
|
|
|
|
|
|
|
sigemptyset(&set);
|
|
|
|
posix_spawnattr_setsigmask(&info->attr, &set);
|
|
|
|
sigaddset(&set, SIGPIPE);
|
|
|
|
posix_spawnattr_setsigdefault(&info->attr, &set);
|
|
|
|
posix_spawnattr_setflags(&info->attr,
|
|
|
|
POSIX_SPAWN_SETSIGDEF | POSIX_SPAWN_SETSIGMASK);
|
|
|
|
|
|
|
|
info->reason = bstrdup(reason);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern char **environ;
|
|
|
|
|
|
|
|
static void reset_screensaver(os_inhibit_t *info)
|
|
|
|
{
|
|
|
|
char *argv[3] = {(char*)"xdg-screensaver", (char*)"reset", NULL};
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
int err = posix_spawnp(&pid, "xdg-screensaver", NULL, &info->attr,
|
|
|
|
argv, environ);
|
|
|
|
if (err == 0) {
|
|
|
|
int status;
|
|
|
|
while (waitpid(pid, &status, 0) == -1);
|
|
|
|
} else {
|
|
|
|
blog(LOG_WARNING, "Failed to create xdg-screensaver: %d", err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *screensaver_thread(void *param)
|
|
|
|
{
|
|
|
|
os_inhibit_t *info = param;
|
|
|
|
|
|
|
|
while (os_event_timedwait(info->stop_event, 30000) == ETIMEDOUT)
|
|
|
|
reset_screensaver(info);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool os_inhibit_sleep_set_active(os_inhibit_t *info, bool active)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!info)
|
|
|
|
return false;
|
|
|
|
if (info->active == active)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
#if HAVE_DBUS
|
|
|
|
if (info->dbus)
|
|
|
|
dbus_inhibit_sleep(info->dbus, info->reason, active);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!info->stop_event)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (active) {
|
|
|
|
ret = pthread_create(&info->screensaver_thread, NULL,
|
|
|
|
&screensaver_thread, info);
|
|
|
|
if (ret < 0) {
|
|
|
|
blog(LOG_ERROR, "Failed to create screensaver "
|
|
|
|
"inhibitor thread");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
os_event_signal(info->stop_event);
|
|
|
|
pthread_join(info->screensaver_thread, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
info->active = active;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void os_inhibit_sleep_destroy(os_inhibit_t *info)
|
|
|
|
{
|
|
|
|
if (info) {
|
|
|
|
os_inhibit_sleep_set_active(info, false);
|
|
|
|
#if HAVE_DBUS
|
|
|
|
dbus_sleep_info_destroy(info->dbus);
|
|
|
|
#endif
|
|
|
|
os_event_destroy(info->stop_event);
|
|
|
|
posix_spawnattr_destroy(&info->attr);
|
|
|
|
bfree(info->reason);
|
|
|
|
bfree(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2015-11-18 12:09:13 -08:00
|
|
|
|
|
|
|
void os_breakpoint()
|
|
|
|
{
|
2015-11-18 18:59:54 -08:00
|
|
|
raise(SIGTRAP);
|
2015-11-18 12:09:13 -08:00
|
|
|
}
|