123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010, 2012-2013 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2012 Centre National de la Recherche Scientifique
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <starpu.h>
- #include <common/config.h>
- #include <common/utils.h>
- #include <libgen.h>
- #include <errno.h>
- #ifdef __MINGW32__
- #include <io.h>
- #define mkdir(path, mode) mkdir(path)
- #endif
- /* Function with behaviour like `mkdir -p'. This function was adapted from
- * http://niallohiggins.com/2009/01/08/mkpath-mkdir-p-alike-in-c-for-unix/ */
- int _starpu_mkpath(const char *s, mode_t mode)
- {
- int olderrno;
- char *q, *r = NULL, *path = NULL, *up = NULL;
- int rv;
- rv = -1;
- if (strcmp(s, ".") == 0 || strcmp(s, "/") == 0
- #ifdef __MINGW32__
- /* C:/ or C:\ */
- || (s[0] && s[1] == ':' && (s[2] == '/' || s[2] == '\\') && !s[3])
- #endif
- )
- return 0;
- if ((path = strdup(s)) == NULL)
- STARPU_ABORT();
- if ((q = strdup(s)) == NULL)
- STARPU_ABORT();
- if ((r = dirname(q)) == NULL)
- goto out;
- if ((up = strdup(r)) == NULL)
- STARPU_ABORT();
- if ((_starpu_mkpath(up, mode) == -1) && (errno != EEXIST))
- goto out;
- if ((mkdir(path, mode) == -1) && (errno != EEXIST))
- rv = -1;
- else
- rv = 0;
- out:
- olderrno = errno;
- if (up)
- free(up);
- free(q);
- free(path);
- errno = olderrno;
- return rv;
- }
- void _starpu_mkpath_and_check(const char *path, mode_t mode)
- {
- int ret;
- ret = _starpu_mkpath(path, mode);
- if (ret == -1)
- {
- if (errno != EEXIST)
- {
- fprintf(stderr,"Error making StarPU directory %s:\n", path);
- perror("mkdir");
- STARPU_ABORT();
- }
- /* make sure that it is actually a directory */
- struct stat sb;
- stat(path, &sb);
- if (!S_ISDIR(sb.st_mode))
- {
- fprintf(stderr,"Error: %s is not a directory:\n", path);
- STARPU_ABORT();
- }
- }
- }
- int _starpu_check_mutex_deadlock(_starpu_pthread_mutex_t *mutex)
- {
- int ret;
- ret = _STARPU_PTHREAD_MUTEX_TRYLOCK(mutex);
- if (!ret)
- {
- _STARPU_PTHREAD_MUTEX_UNLOCK(mutex);
- return 0;
- }
- if (ret == EBUSY)
- return 0;
- STARPU_ASSERT (ret != EDEADLK);
- return 1;
- }
- char *_starpu_get_home_path(void)
- {
- char *path = getenv("XDG_CACHE_HOME");
- if (!path)
- path = getenv("STARPU_HOME");
- if (!path)
- path = getenv("HOME");
- if (!path)
- path = getenv("USERPROFILE");
- if (!path)
- _STARPU_ERROR("couldn't find a home place to put starpu data\n");
- return path;
- }
- void _starpu_gethostname(char *hostname, size_t size)
- {
- char *forced_hostname = getenv("STARPU_HOSTNAME");
- if (forced_hostname && forced_hostname[0]) {
- snprintf(hostname, size-1, "%s", forced_hostname);
- hostname[size-1] = 0;
- } else {
- char *c;
- gethostname(hostname, size-1);
- hostname[size-1] = 0;
- c = strchr(hostname, '.');
- if (c)
- *c = 0;
- }
- }
|