2018-10-11 12:52:19 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
|
|
* in the COPYING file in the root directory of this source tree).
|
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined (__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*-****************************************
|
|
|
|
* Dependencies
|
|
|
|
******************************************/
|
2018-12-20 14:30:30 -08:00
|
|
|
#include "util.h" /* note : ensure that platform.h is included first ! */
|
2019-11-26 15:16:53 -08:00
|
|
|
#include <stdlib.h> /* malloc, realloc, free */
|
2019-11-26 15:25:32 -08:00
|
|
|
#include <stdio.h> /* fprintf */
|
2019-11-26 15:16:53 -08:00
|
|
|
#include <time.h> /* clock_t, clock, CLOCKS_PER_SEC, nanosleep */
|
2018-12-19 18:30:57 -08:00
|
|
|
#include <errno.h>
|
2018-12-20 12:27:12 -08:00
|
|
|
#include <assert.h>
|
2018-12-19 18:30:57 -08:00
|
|
|
|
2019-11-26 15:16:53 -08:00
|
|
|
#if defined(_WIN32)
|
|
|
|
# include <sys/utime.h> /* utime */
|
|
|
|
# include <io.h> /* _chmod */
|
|
|
|
#else
|
|
|
|
# include <unistd.h> /* chown, stat */
|
|
|
|
# if PLATFORM_POSIX_VERSION < 200809L
|
|
|
|
# include <utime.h> /* utime */
|
|
|
|
# else
|
|
|
|
# include <fcntl.h> /* AT_FDCWD */
|
|
|
|
# include <sys/stat.h> /* utimensat */
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2019-09-06 13:20:50 -07:00
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__) || defined (__MSVCRT__)
|
|
|
|
#include <direct.h> /* needed for _mkdir in windows */
|
|
|
|
#endif
|
2018-10-11 12:52:19 -07:00
|
|
|
|
2019-11-05 14:59:45 -08:00
|
|
|
#if defined(__linux__) || (PLATFORM_POSIX_VERSION >= 200112L) /* opendir, readdir require POSIX.1-2001 */
|
|
|
|
# include <dirent.h> /* opendir, readdir */
|
|
|
|
# include <string.h> /* strerror, memcpy */
|
|
|
|
#endif /* #ifdef _WIN32 */
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
|
|
|
|
/*-****************************************
|
|
|
|
* Internal Macros
|
|
|
|
******************************************/
|
|
|
|
|
2019-11-26 15:21:58 -08:00
|
|
|
/* CONTROL is almost like an assert(), but is never disabled.
|
|
|
|
* It's designed for failures that may happen rarely,
|
|
|
|
* but we don't want to maintain a specific error code path for them,
|
|
|
|
* such as a malloc() returning NULL for example.
|
|
|
|
* Since it's always active, this macro can trigger side effects.
|
2019-10-25 16:36:59 -07:00
|
|
|
*/
|
|
|
|
#define CONTROL(c) { \
|
|
|
|
if (!(c)) { \
|
|
|
|
UTIL_DISPLAYLEVEL(1, "Error : %s, %i : %s", \
|
|
|
|
__FILE__, __LINE__, #c); \
|
2019-10-26 00:01:11 -07:00
|
|
|
exit(1); \
|
2019-10-25 16:36:59 -07:00
|
|
|
} }
|
|
|
|
|
2019-11-26 15:21:58 -08:00
|
|
|
/* console log */
|
|
|
|
#define UTIL_DISPLAY(...) fprintf(stderr, __VA_ARGS__)
|
|
|
|
#define UTIL_DISPLAYLEVEL(l, ...) { if (g_utilDisplayLevel>=l) { UTIL_DISPLAY(__VA_ARGS__); } }
|
|
|
|
|
|
|
|
/* A modified version of realloc().
|
2019-11-05 14:59:45 -08:00
|
|
|
* If UTIL_realloc() fails the original block is freed.
|
|
|
|
*/
|
|
|
|
UTIL_STATIC void* UTIL_realloc(void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
void *newptr = realloc(ptr, size);
|
|
|
|
if (newptr) return newptr;
|
|
|
|
free(ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-11-25 13:45:22 -08:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define chmod _chmod
|
|
|
|
#endif
|
|
|
|
|
2019-11-05 14:59:45 -08:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
/*-****************************************
|
|
|
|
* Console log
|
|
|
|
******************************************/
|
|
|
|
int g_utilDisplayLevel;
|
|
|
|
|
|
|
|
|
2019-11-25 13:45:22 -08:00
|
|
|
/*-*************************************
|
|
|
|
* Constants
|
|
|
|
***************************************/
|
|
|
|
#define LIST_SIZE_INCREASE (8*1024)
|
2019-11-26 11:20:26 -08:00
|
|
|
#define MAX_FILE_OF_FILE_NAMES_SIZE (1<<20)*50
|
2019-11-25 13:45:22 -08:00
|
|
|
|
|
|
|
|
|
|
|
/*-*************************************
|
|
|
|
* Functions
|
|
|
|
***************************************/
|
2019-10-25 16:36:59 -07:00
|
|
|
|
2018-12-19 18:30:57 -08:00
|
|
|
int UTIL_fileExist(const char* filename)
|
|
|
|
{
|
|
|
|
stat_t statbuf;
|
2018-12-20 09:16:40 -08:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
int const stat_error = _stat64(filename, &statbuf);
|
|
|
|
#else
|
|
|
|
int const stat_error = stat(filename, &statbuf);
|
|
|
|
#endif
|
|
|
|
return !stat_error;
|
2018-12-19 18:30:57 -08:00
|
|
|
}
|
|
|
|
|
2018-10-11 15:07:12 -07:00
|
|
|
int UTIL_isRegularFile(const char* infilename)
|
|
|
|
{
|
|
|
|
stat_t statbuf;
|
|
|
|
return UTIL_getFileStat(infilename, &statbuf); /* Only need to know whether it is a regular file */
|
|
|
|
}
|
|
|
|
|
|
|
|
int UTIL_getFileStat(const char* infilename, stat_t *statbuf)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
r = _stat64(infilename, statbuf);
|
|
|
|
if (r || !(statbuf->st_mode & S_IFREG)) return 0; /* No good... */
|
|
|
|
#else
|
|
|
|
r = stat(infilename, statbuf);
|
|
|
|
if (r || !S_ISREG(statbuf->st_mode)) return 0; /* No good... */
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-11-25 13:45:22 -08:00
|
|
|
/* like chmod, but avoid changing permission of /dev/null */
|
|
|
|
int UTIL_chmod(char const* filename, mode_t permissions)
|
|
|
|
{
|
|
|
|
if (!strcmp(filename, "/dev/null")) return 0; /* pretend success, but don't change anything */
|
|
|
|
return chmod(filename, permissions);
|
|
|
|
}
|
|
|
|
|
2018-10-11 15:07:12 -07:00
|
|
|
int UTIL_setFileStat(const char *filename, stat_t *statbuf)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
if (!UTIL_isRegularFile(filename))
|
|
|
|
return -1;
|
|
|
|
|
2019-09-12 13:27:05 -07:00
|
|
|
/* set access and modification times */
|
2019-07-30 17:17:07 -07:00
|
|
|
#if defined(_WIN32) || (PLATFORM_POSIX_VERSION < 200809L)
|
2019-09-12 13:27:05 -07:00
|
|
|
{
|
|
|
|
struct utimbuf timebuf;
|
|
|
|
timebuf.actime = time(NULL);
|
|
|
|
timebuf.modtime = statbuf->st_mtime;
|
|
|
|
res += utime(filename, &timebuf);
|
|
|
|
}
|
2019-07-30 17:17:07 -07:00
|
|
|
#else
|
2019-09-12 13:27:05 -07:00
|
|
|
{
|
|
|
|
/* (atime, mtime) */
|
2019-10-04 15:09:52 -07:00
|
|
|
struct timespec timebuf[2] = { {0, UTIME_NOW} };
|
2019-11-19 12:24:00 -08:00
|
|
|
timebuf[1].tv_sec = statbuf->st_mtime;
|
2019-09-12 13:27:05 -07:00
|
|
|
res += utimensat(AT_FDCWD, filename, timebuf, 0);
|
|
|
|
}
|
2019-07-30 17:17:07 -07:00
|
|
|
#endif
|
2018-10-11 15:07:12 -07:00
|
|
|
|
|
|
|
#if !defined(_WIN32)
|
|
|
|
res += chown(filename, statbuf->st_uid, statbuf->st_gid); /* Copy ownership */
|
|
|
|
#endif
|
|
|
|
|
2019-11-25 13:45:22 -08:00
|
|
|
res += UTIL_chmod(filename, statbuf->st_mode & 07777); /* Copy file permissions */
|
2018-10-11 15:07:12 -07:00
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
return -res; /* number of errors is returned */
|
|
|
|
}
|
2018-10-11 12:52:19 -07:00
|
|
|
|
2019-11-25 13:45:22 -08:00
|
|
|
int UTIL_isDirectory(const char* infilename)
|
2018-10-11 12:52:19 -07:00
|
|
|
{
|
|
|
|
stat_t statbuf;
|
|
|
|
#if defined(_MSC_VER)
|
2019-11-25 13:45:22 -08:00
|
|
|
int const r = _stat64(infilename, &statbuf);
|
2018-10-11 12:52:19 -07:00
|
|
|
if (!r && (statbuf.st_mode & _S_IFDIR)) return 1;
|
|
|
|
#else
|
2019-11-25 13:45:22 -08:00
|
|
|
int const r = stat(infilename, &statbuf);
|
2018-10-11 12:52:19 -07:00
|
|
|
if (!r && S_ISDIR(statbuf.st_mode)) return 1;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-10-02 08:08:20 -07:00
|
|
|
int UTIL_compareStr(const void *p1, const void *p2) {
|
|
|
|
return strcmp(* (char * const *) p1, * (char * const *) p2);
|
|
|
|
}
|
2019-09-06 10:17:04 -07:00
|
|
|
|
2019-10-17 10:56:14 -07:00
|
|
|
int UTIL_isSameFile(const char* fName1, const char* fName2)
|
2019-03-23 19:04:56 -07:00
|
|
|
{
|
2019-10-17 10:56:14 -07:00
|
|
|
assert(fName1 != NULL); assert(fName2 != NULL);
|
|
|
|
#if defined(_MSC_VER) || defined(_WIN32)
|
2019-03-23 19:04:56 -07:00
|
|
|
/* note : Visual does not support file identification by inode.
|
2019-10-17 10:56:14 -07:00
|
|
|
* inode does not work on Windows, even with a posix layer, like msys2.
|
2019-03-23 19:04:56 -07:00
|
|
|
* The following work-around is limited to detecting exact name repetition only,
|
|
|
|
* aka `filename` is considered different from `subdir/../filename` */
|
2019-10-17 14:31:42 -07:00
|
|
|
return !strcmp(fName1, fName2);
|
2019-03-23 19:04:56 -07:00
|
|
|
#else
|
2019-10-17 10:56:14 -07:00
|
|
|
{ stat_t file1Stat;
|
|
|
|
stat_t file2Stat;
|
|
|
|
return UTIL_getFileStat(fName1, &file1Stat)
|
|
|
|
&& UTIL_getFileStat(fName2, &file2Stat)
|
|
|
|
&& (file1Stat.st_dev == file2Stat.st_dev)
|
|
|
|
&& (file1Stat.st_ino == file2Stat.st_ino);
|
|
|
|
}
|
2019-03-23 19:04:56 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-11-25 13:45:22 -08:00
|
|
|
/* UTIL_isFIFO : distinguish named pipes */
|
|
|
|
int UTIL_isFIFO(const char* infilename)
|
2019-10-22 15:23:22 -07:00
|
|
|
{
|
|
|
|
/* macro guards, as defined in : https://linux.die.net/man/2/lstat */
|
|
|
|
#if PLATFORM_POSIX_VERSION >= 200112L
|
|
|
|
stat_t statbuf;
|
2019-11-25 13:45:22 -08:00
|
|
|
int const r = UTIL_getFileStat(infilename, &statbuf);
|
2019-10-22 15:23:22 -07:00
|
|
|
if (!r && S_ISFIFO(statbuf.st_mode)) return 1;
|
|
|
|
#endif
|
|
|
|
(void)infilename;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-25 13:45:22 -08:00
|
|
|
int UTIL_isLink(const char* infilename)
|
2018-10-11 12:52:19 -07:00
|
|
|
{
|
|
|
|
/* macro guards, as defined in : https://linux.die.net/man/2/lstat */
|
2019-06-07 12:31:33 -07:00
|
|
|
#if PLATFORM_POSIX_VERSION >= 200112L
|
2018-10-11 12:52:19 -07:00
|
|
|
stat_t statbuf;
|
2019-11-25 13:45:22 -08:00
|
|
|
int const r = lstat(infilename, &statbuf);
|
2018-10-11 12:52:19 -07:00
|
|
|
if (!r && S_ISLNK(statbuf.st_mode)) return 1;
|
|
|
|
#endif
|
|
|
|
(void)infilename;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
U64 UTIL_getFileSize(const char* infilename)
|
|
|
|
{
|
|
|
|
if (!UTIL_isRegularFile(infilename)) return UTIL_FILESIZE_UNKNOWN;
|
|
|
|
{ int r;
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
struct __stat64 statbuf;
|
|
|
|
r = _stat64(infilename, &statbuf);
|
|
|
|
if (r || !(statbuf.st_mode & S_IFREG)) return UTIL_FILESIZE_UNKNOWN;
|
|
|
|
#elif defined(__MINGW32__) && defined (__MSVCRT__)
|
|
|
|
struct _stati64 statbuf;
|
|
|
|
r = _stati64(infilename, &statbuf);
|
|
|
|
if (r || !(statbuf.st_mode & S_IFREG)) return UTIL_FILESIZE_UNKNOWN;
|
|
|
|
#else
|
|
|
|
struct stat statbuf;
|
|
|
|
r = stat(infilename, &statbuf);
|
|
|
|
if (r || !S_ISREG(statbuf.st_mode)) return UTIL_FILESIZE_UNKNOWN;
|
|
|
|
#endif
|
|
|
|
return (U64)statbuf.st_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-25 17:34:29 -07:00
|
|
|
U64 UTIL_getTotalFileSize(const char* const * fileNamesTable, unsigned nbFiles)
|
2018-10-11 12:52:19 -07:00
|
|
|
{
|
|
|
|
U64 total = 0;
|
|
|
|
unsigned n;
|
|
|
|
for (n=0; n<nbFiles; n++) {
|
|
|
|
U64 const size = UTIL_getFileSize(fileNamesTable[n]);
|
2019-10-25 17:34:29 -07:00
|
|
|
if (size == UTIL_FILESIZE_UNKNOWN) return UTIL_FILESIZE_UNKNOWN;
|
2018-10-11 12:52:19 -07:00
|
|
|
total += size;
|
|
|
|
}
|
2019-10-25 17:34:29 -07:00
|
|
|
return total;
|
2018-10-11 12:52:19 -07:00
|
|
|
}
|
|
|
|
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
/* condition : @file must be valid, and not have reached its end.
|
2019-10-28 15:03:32 -07:00
|
|
|
* @return : length of line written into @buf, ended with `\0` instead of '\n',
|
2019-10-25 16:36:59 -07:00
|
|
|
* or 0, if there is no new line */
|
|
|
|
static size_t readLineFromFile(char* buf, size_t len, FILE* file)
|
|
|
|
{
|
|
|
|
assert(!feof(file));
|
|
|
|
CONTROL( fgets(buf, (int) len, file) == buf ); /* requires success */
|
2019-10-28 15:03:32 -07:00
|
|
|
{ size_t linelen = strlen(buf);
|
|
|
|
if (strlen(buf)==0) return 0;
|
|
|
|
if (buf[linelen-1] == '\n') linelen--;
|
|
|
|
buf[linelen] = '\0';
|
|
|
|
return linelen+1;
|
|
|
|
}
|
2019-10-14 23:49:13 -07:00
|
|
|
}
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
/* Conditions :
|
|
|
|
* size of @inputFileName file must be < @dstCapacity
|
|
|
|
* @dst must be initialized
|
|
|
|
* @return : nb of lines
|
|
|
|
* or -1 if there's an error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
readLinesFromFile(void* dst, size_t dstCapacity,
|
|
|
|
const char* inputFileName)
|
|
|
|
{
|
|
|
|
int nbFiles = 0;
|
2019-10-26 00:01:11 -07:00
|
|
|
size_t pos = 0;
|
2019-10-25 16:36:59 -07:00
|
|
|
char* const buf = (char*)dst;
|
|
|
|
FILE* const inputFile = fopen(inputFileName, "r");
|
2019-10-24 02:17:31 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
assert(dst != NULL);
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
if(!inputFile) {
|
|
|
|
if (g_utilDisplayLevel >= 1) perror("zstd:util:readLinesFromFile");
|
|
|
|
return -1;
|
2019-10-14 23:49:13 -07:00
|
|
|
}
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
while ( !feof(inputFile) ) {
|
|
|
|
size_t const lineLength = readLineFromFile(buf+pos, dstCapacity-pos, inputFile);
|
|
|
|
if (lineLength == 0) break;
|
|
|
|
assert(pos + lineLength < dstCapacity);
|
2019-10-28 15:03:32 -07:00
|
|
|
pos += lineLength;
|
2019-10-25 16:36:59 -07:00
|
|
|
++nbFiles;
|
|
|
|
}
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
CONTROL( fclose(inputFile) == 0 );
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
return nbFiles;
|
2019-10-14 23:49:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Note: buf is not freed in case function successfully created table because filesTable->fileNames[0] = buf*/
|
|
|
|
FileNamesTable*
|
2019-10-25 16:36:59 -07:00
|
|
|
UTIL_createFileNamesTable_fromFileName(const char* inputFileName)
|
|
|
|
{
|
|
|
|
size_t nbFiles = 0;
|
|
|
|
char* buf;
|
|
|
|
size_t bufSize;
|
|
|
|
size_t pos = 0;
|
|
|
|
|
|
|
|
if (!UTIL_fileExist(inputFileName) || !UTIL_isRegularFile(inputFileName))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
{ U64 const inputFileSize = UTIL_getFileSize(inputFileName);
|
|
|
|
if(inputFileSize > MAX_FILE_OF_FILE_NAMES_SIZE)
|
|
|
|
return NULL;
|
2019-10-26 00:27:32 -07:00
|
|
|
bufSize = (size_t)(inputFileSize + 1); /* (+1) to add '\0' at the end of last filename */
|
2019-10-14 23:49:13 -07:00
|
|
|
}
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
buf = (char*) malloc(bufSize);
|
|
|
|
CONTROL( buf != NULL );
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
{ int const ret_nbFiles = readLinesFromFile(buf, bufSize, inputFileName);
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
if (ret_nbFiles <= 0) {
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
nbFiles = (size_t)ret_nbFiles;
|
2019-10-14 23:49:13 -07:00
|
|
|
}
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
{ const char** filenamesTable = (const char**) malloc(nbFiles * sizeof(*filenamesTable));
|
|
|
|
CONTROL(filenamesTable != NULL);
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
{ size_t fnb;
|
|
|
|
for (fnb = 0, pos = 0; fnb < nbFiles; fnb++) {
|
|
|
|
filenamesTable[fnb] = buf+pos;
|
|
|
|
pos += strlen(buf+pos)+1; /* +1 for the finishing `\0` */
|
|
|
|
} }
|
|
|
|
assert(pos <= bufSize);
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-11-25 15:34:55 -08:00
|
|
|
return UTIL_assembleFileNamesTable(filenamesTable, nbFiles, buf);
|
2019-10-14 23:49:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-24 06:42:37 -07:00
|
|
|
FileNamesTable*
|
2019-11-25 15:34:55 -08:00
|
|
|
UTIL_assembleFileNamesTable(const char** filenames, size_t tableSize, char* buf)
|
2019-10-25 16:36:59 -07:00
|
|
|
{
|
|
|
|
FileNamesTable* const table = (FileNamesTable*) malloc(sizeof(*table));
|
2019-11-26 15:44:33 -08:00
|
|
|
CONTROL(table != NULL);
|
2019-10-25 16:36:59 -07:00
|
|
|
table->fileNames = filenames;
|
|
|
|
table->buf = buf;
|
|
|
|
table->tableSize = tableSize;
|
2019-11-05 17:02:43 -08:00
|
|
|
table->tableCapacity = tableSize;
|
2019-10-25 16:36:59 -07:00
|
|
|
return table;
|
2019-10-24 06:42:37 -07:00
|
|
|
}
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
void UTIL_freeFileNamesTable(FileNamesTable* table)
|
|
|
|
{
|
|
|
|
if (table==NULL) return;
|
|
|
|
free((void*)table->fileNames);
|
|
|
|
free(table->buf);
|
2019-10-14 23:49:13 -07:00
|
|
|
free(table);
|
|
|
|
}
|
|
|
|
|
2019-11-05 17:02:43 -08:00
|
|
|
FileNamesTable* UTIL_allocateFileNamesTable(size_t tableSize)
|
|
|
|
{
|
|
|
|
const char** const fnTable = (const char**)malloc(tableSize * sizeof(*fnTable));
|
|
|
|
FileNamesTable* fnt;
|
|
|
|
if (fnTable==NULL) return NULL;
|
2019-11-25 15:34:55 -08:00
|
|
|
fnt = UTIL_assembleFileNamesTable(fnTable, tableSize, NULL);
|
2019-11-05 17:02:43 -08:00
|
|
|
fnt->tableSize = 0; /* the table is empty */
|
|
|
|
return fnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UTIL_refFilename(FileNamesTable* fnt, const char* filename)
|
|
|
|
{
|
2019-11-26 14:48:23 -08:00
|
|
|
assert(fnt->tableSize < fnt->tableCapacity);
|
2019-11-05 17:02:43 -08:00
|
|
|
fnt->fileNames[fnt->tableSize] = filename;
|
|
|
|
fnt->tableSize++;
|
|
|
|
}
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
static size_t getTotalTableSize(FileNamesTable* table)
|
|
|
|
{
|
|
|
|
size_t fnb = 0, totalSize = 0;
|
|
|
|
for(fnb = 0 ; fnb < table->tableSize && table->fileNames[fnb] ; ++fnb) {
|
|
|
|
totalSize += strlen(table->fileNames[fnb]) + 1; /* +1 to add '\0' at the end of each fileName */
|
|
|
|
}
|
|
|
|
return totalSize;
|
2019-10-14 23:49:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
FileNamesTable*
|
2019-11-06 09:10:05 -08:00
|
|
|
UTIL_mergeFileNamesTable(FileNamesTable* table1, FileNamesTable* table2)
|
2019-10-25 16:36:59 -07:00
|
|
|
{
|
|
|
|
unsigned newTableIdx = 0;
|
|
|
|
size_t pos = 0;
|
|
|
|
size_t newTotalTableSize;
|
|
|
|
char* buf;
|
2019-10-24 01:39:16 -07:00
|
|
|
|
2019-11-25 15:34:55 -08:00
|
|
|
FileNamesTable* const newTable = UTIL_assembleFileNamesTable(NULL, 0, NULL);
|
2019-10-25 16:36:59 -07:00
|
|
|
CONTROL( newTable != NULL );
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-24 02:12:51 -07:00
|
|
|
newTotalTableSize = getTotalTableSize(table1) + getTotalTableSize(table2);
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
buf = (char*) calloc(newTotalTableSize, sizeof(*buf));
|
|
|
|
CONTROL ( buf != NULL );
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
newTable->buf = buf;
|
2019-10-14 23:49:13 -07:00
|
|
|
newTable->tableSize = table1->tableSize + table2->tableSize;
|
2019-10-25 16:36:59 -07:00
|
|
|
newTable->fileNames = (const char **) calloc(newTable->tableSize, sizeof(*(newTable->fileNames)));
|
|
|
|
CONTROL ( newTable->fileNames != NULL );
|
|
|
|
|
|
|
|
{ unsigned idx1;
|
|
|
|
for( idx1=0 ; (idx1 < table1->tableSize) && table1->fileNames[idx1] && (pos < newTotalTableSize); ++idx1, ++newTableIdx) {
|
|
|
|
size_t const curLen = strlen(table1->fileNames[idx1]);
|
|
|
|
memcpy(buf+pos, table1->fileNames[idx1], curLen);
|
|
|
|
assert(newTableIdx <= newTable->tableSize);
|
|
|
|
newTable->fileNames[newTableIdx] = buf+pos;
|
|
|
|
pos += curLen+1;
|
|
|
|
} }
|
2019-10-14 23:49:13 -07:00
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
{ unsigned idx2;
|
|
|
|
for( idx2=0 ; (idx2 < table2->tableSize) && table2->fileNames[idx2] && (pos < newTotalTableSize) ; ++idx2, ++newTableIdx) {
|
|
|
|
size_t const curLen = strlen(table2->fileNames[idx2]);
|
|
|
|
memcpy(buf+pos, table2->fileNames[idx2], curLen);
|
|
|
|
assert(newTableIdx <= newTable->tableSize);
|
|
|
|
newTable->fileNames[newTableIdx] = buf+pos;
|
|
|
|
pos += curLen+1;
|
|
|
|
} }
|
|
|
|
assert(pos <= newTotalTableSize);
|
|
|
|
newTable->tableSize = newTableIdx;
|
2019-10-24 02:12:51 -07:00
|
|
|
|
2019-10-14 23:49:13 -07:00
|
|
|
UTIL_freeFileNamesTable(table1);
|
|
|
|
UTIL_freeFileNamesTable(table2);
|
|
|
|
|
|
|
|
return newTable;
|
|
|
|
}
|
|
|
|
|
2018-10-11 18:05:15 -07:00
|
|
|
#ifdef _WIN32
|
2019-11-05 14:59:45 -08:00
|
|
|
static int UTIL_prepareFileList(const char* dirName,
|
|
|
|
char** bufStart, size_t* pos,
|
|
|
|
char** bufEnd, int followLinks)
|
2018-10-11 15:51:57 -07:00
|
|
|
{
|
|
|
|
char* path;
|
2019-10-25 18:26:30 -07:00
|
|
|
size_t dirLength, pathLength;
|
|
|
|
int nbFiles = 0;
|
2018-10-11 15:51:57 -07:00
|
|
|
WIN32_FIND_DATAA cFile;
|
|
|
|
HANDLE hFile;
|
|
|
|
|
2019-10-25 16:36:59 -07:00
|
|
|
dirLength = strlen(dirName);
|
2018-10-11 15:51:57 -07:00
|
|
|
path = (char*) malloc(dirLength + 3);
|
|
|
|
if (!path) return 0;
|
|
|
|
|
|
|
|
memcpy(path, dirName, dirLength);
|
|
|
|
path[dirLength] = '\\';
|
|
|
|
path[dirLength+1] = '*';
|
|
|
|
path[dirLength+2] = 0;
|
|
|
|
|
|
|
|
hFile=FindFirstFileA(path, &cFile);
|
|
|
|
if (hFile == INVALID_HANDLE_VALUE) {
|
|
|
|
UTIL_DISPLAYLEVEL(1, "Cannot open directory '%s'\n", dirName);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
free(path);
|
|
|
|
|
|
|
|
do {
|
2019-10-25 16:36:59 -07:00
|
|
|
size_t const fnameLength = strlen(cFile.cFileName);
|
2018-10-11 15:51:57 -07:00
|
|
|
path = (char*) malloc(dirLength + fnameLength + 2);
|
|
|
|
if (!path) { FindClose(hFile); return 0; }
|
|
|
|
memcpy(path, dirName, dirLength);
|
|
|
|
path[dirLength] = '\\';
|
|
|
|
memcpy(path+dirLength+1, cFile.cFileName, fnameLength);
|
|
|
|
pathLength = dirLength+1+fnameLength;
|
|
|
|
path[pathLength] = 0;
|
|
|
|
if (cFile.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
|
2018-12-20 12:27:12 -08:00
|
|
|
if ( strcmp (cFile.cFileName, "..") == 0
|
|
|
|
|| strcmp (cFile.cFileName, ".") == 0 )
|
|
|
|
continue;
|
|
|
|
/* Recursively call "UTIL_prepareFileList" with the new path. */
|
|
|
|
nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd, followLinks);
|
2018-10-11 15:51:57 -07:00
|
|
|
if (*bufStart == NULL) { free(path); FindClose(hFile); return 0; }
|
2018-12-20 12:27:12 -08:00
|
|
|
} else if ( (cFile.dwFileAttributes & FILE_ATTRIBUTE_NORMAL)
|
|
|
|
|| (cFile.dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE)
|
|
|
|
|| (cFile.dwFileAttributes & FILE_ATTRIBUTE_COMPRESSED) ) {
|
2018-10-11 15:51:57 -07:00
|
|
|
if (*bufStart + *pos + pathLength >= *bufEnd) {
|
2018-12-20 12:27:12 -08:00
|
|
|
ptrdiff_t const newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE;
|
2018-10-11 15:51:57 -07:00
|
|
|
*bufStart = (char*)UTIL_realloc(*bufStart, newListSize);
|
|
|
|
if (*bufStart == NULL) { free(path); FindClose(hFile); return 0; }
|
2018-12-20 12:27:12 -08:00
|
|
|
*bufEnd = *bufStart + newListSize;
|
2018-10-11 15:51:57 -07:00
|
|
|
}
|
|
|
|
if (*bufStart + *pos + pathLength < *bufEnd) {
|
2018-12-20 12:27:12 -08:00
|
|
|
memcpy(*bufStart + *pos, path, pathLength+1 /* include final \0 */);
|
2018-10-11 15:51:57 -07:00
|
|
|
*pos += pathLength + 1;
|
|
|
|
nbFiles++;
|
2019-10-25 16:36:59 -07:00
|
|
|
} }
|
2018-10-11 15:51:57 -07:00
|
|
|
free(path);
|
|
|
|
} while (FindNextFileA(hFile, &cFile));
|
|
|
|
|
|
|
|
FindClose(hFile);
|
|
|
|
return nbFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(__linux__) || (PLATFORM_POSIX_VERSION >= 200112L) /* opendir, readdir require POSIX.1-2001 */
|
|
|
|
|
2019-11-05 14:59:45 -08:00
|
|
|
static int UTIL_prepareFileList(const char *dirName,
|
|
|
|
char** bufStart, size_t* pos,
|
|
|
|
char** bufEnd, int followLinks)
|
2018-10-11 15:51:57 -07:00
|
|
|
{
|
2019-10-25 16:36:59 -07:00
|
|
|
DIR* dir;
|
|
|
|
struct dirent * entry;
|
|
|
|
size_t dirLength;
|
2019-10-17 11:01:20 -07:00
|
|
|
int nbFiles = 0;
|
2018-10-11 15:51:57 -07:00
|
|
|
|
|
|
|
if (!(dir = opendir(dirName))) {
|
|
|
|
UTIL_DISPLAYLEVEL(1, "Cannot open directory '%s': %s\n", dirName, strerror(errno));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-10-17 11:01:20 -07:00
|
|
|
dirLength = strlen(dirName);
|
2018-10-11 15:51:57 -07:00
|
|
|
errno = 0;
|
|
|
|
while ((entry = readdir(dir)) != NULL) {
|
2019-10-25 16:36:59 -07:00
|
|
|
char* path;
|
|
|
|
size_t fnameLength, pathLength;
|
2018-10-11 15:51:57 -07:00
|
|
|
if (strcmp (entry->d_name, "..") == 0 ||
|
|
|
|
strcmp (entry->d_name, ".") == 0) continue;
|
2019-10-17 11:01:20 -07:00
|
|
|
fnameLength = strlen(entry->d_name);
|
2018-10-11 15:51:57 -07:00
|
|
|
path = (char*) malloc(dirLength + fnameLength + 2);
|
|
|
|
if (!path) { closedir(dir); return 0; }
|
|
|
|
memcpy(path, dirName, dirLength);
|
|
|
|
|
|
|
|
path[dirLength] = '/';
|
|
|
|
memcpy(path+dirLength+1, entry->d_name, fnameLength);
|
|
|
|
pathLength = dirLength+1+fnameLength;
|
|
|
|
path[pathLength] = 0;
|
|
|
|
|
|
|
|
if (!followLinks && UTIL_isLink(path)) {
|
|
|
|
UTIL_DISPLAYLEVEL(2, "Warning : %s is a symbolic link, ignoring\n", path);
|
2019-07-25 06:07:57 -07:00
|
|
|
free(path);
|
2018-10-11 15:51:57 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UTIL_isDirectory(path)) {
|
|
|
|
nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd, followLinks); /* Recursively call "UTIL_prepareFileList" with the new path. */
|
|
|
|
if (*bufStart == NULL) { free(path); closedir(dir); return 0; }
|
|
|
|
} else {
|
|
|
|
if (*bufStart + *pos + pathLength >= *bufEnd) {
|
|
|
|
ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE;
|
2019-10-17 11:01:20 -07:00
|
|
|
assert(newListSize >= 0);
|
|
|
|
*bufStart = (char*)UTIL_realloc(*bufStart, (size_t)newListSize);
|
2018-10-11 15:51:57 -07:00
|
|
|
*bufEnd = *bufStart + newListSize;
|
|
|
|
if (*bufStart == NULL) { free(path); closedir(dir); return 0; }
|
|
|
|
}
|
|
|
|
if (*bufStart + *pos + pathLength < *bufEnd) {
|
2018-12-20 12:27:12 -08:00
|
|
|
memcpy(*bufStart + *pos, path, pathLength + 1); /* with final \0 */
|
2018-10-11 15:51:57 -07:00
|
|
|
*pos += pathLength + 1;
|
|
|
|
nbFiles++;
|
2019-10-25 16:36:59 -07:00
|
|
|
} }
|
2018-10-11 15:51:57 -07:00
|
|
|
free(path);
|
|
|
|
errno = 0; /* clear errno after UTIL_isDirectory, UTIL_prepareFileList */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errno != 0) {
|
2019-11-26 15:44:33 -08:00
|
|
|
UTIL_DISPLAYLEVEL(1, "readdir(%s) error: %s \n", dirName, strerror(errno));
|
2018-10-11 15:51:57 -07:00
|
|
|
free(*bufStart);
|
|
|
|
*bufStart = NULL;
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
return nbFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2019-11-05 14:59:45 -08:00
|
|
|
static int UTIL_prepareFileList(const char *dirName,
|
|
|
|
char** bufStart, size_t* pos,
|
|
|
|
char** bufEnd, int followLinks)
|
2018-10-11 15:51:57 -07:00
|
|
|
{
|
|
|
|
(void)bufStart; (void)bufEnd; (void)pos; (void)followLinks;
|
2019-11-26 15:44:33 -08:00
|
|
|
UTIL_DISPLAYLEVEL(1, "Directory %s ignored (compiled without _WIN32 or _POSIX_C_SOURCE) \n", dirName);
|
2018-10-11 15:51:57 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* #ifdef _WIN32 */
|
|
|
|
|
2019-10-28 18:21:47 -07:00
|
|
|
int UTIL_isCompressedFile(const char *inputName, const char *extensionList[])
|
2019-10-25 15:49:11 -07:00
|
|
|
{
|
2019-10-29 12:27:54 -07:00
|
|
|
const char* ext = UTIL_getFileExtension(inputName);
|
2019-10-29 15:59:20 -07:00
|
|
|
while(*extensionList!=NULL)
|
2019-10-29 12:56:04 -07:00
|
|
|
{
|
2019-10-29 15:59:20 -07:00
|
|
|
const int isCompressedExtension = strcmp(ext,*extensionList);
|
|
|
|
if(isCompressedExtension==0)
|
|
|
|
return 1;
|
|
|
|
++extensionList;
|
2019-10-29 12:56:04 -07:00
|
|
|
}
|
2019-10-28 14:54:54 -07:00
|
|
|
return 0;
|
2019-10-25 15:49:11 -07:00
|
|
|
}
|
2019-10-28 18:21:47 -07:00
|
|
|
|
2019-10-29 12:27:54 -07:00
|
|
|
/*Utility function to get file extension from file */
|
|
|
|
const char* UTIL_getFileExtension(const char* infilename)
|
|
|
|
{
|
|
|
|
const char* extension = strrchr(infilename, '.');
|
|
|
|
if(!extension || extension==infilename) return "";
|
|
|
|
return extension;
|
|
|
|
}
|
|
|
|
|
2019-11-05 17:02:43 -08:00
|
|
|
|
2019-11-06 09:10:05 -08:00
|
|
|
FileNamesTable*
|
|
|
|
UTIL_createExpandedFNT(const char** inputNames, size_t nbIfns, int followLinks)
|
2018-10-11 15:51:57 -07:00
|
|
|
{
|
2019-11-05 17:02:43 -08:00
|
|
|
unsigned nbFiles;
|
2018-10-11 15:51:57 -07:00
|
|
|
char* buf = (char*)malloc(LIST_SIZE_INCREASE);
|
|
|
|
char* bufend = buf + LIST_SIZE_INCREASE;
|
|
|
|
|
|
|
|
if (!buf) return NULL;
|
|
|
|
|
2019-11-26 17:46:57 -08:00
|
|
|
{ size_t ifnNb, pos;
|
2019-11-05 17:02:43 -08:00
|
|
|
for (ifnNb=0, pos=0, nbFiles=0; ifnNb<nbIfns; ifnNb++) {
|
|
|
|
if (!UTIL_isDirectory(inputNames[ifnNb])) {
|
|
|
|
size_t const len = strlen(inputNames[ifnNb]);
|
|
|
|
if (buf + pos + len >= bufend) {
|
|
|
|
ptrdiff_t newListSize = (bufend - buf) + LIST_SIZE_INCREASE;
|
|
|
|
assert(newListSize >= 0);
|
|
|
|
buf = (char*)UTIL_realloc(buf, (size_t)newListSize);
|
|
|
|
if (!buf) return NULL;
|
2019-11-26 17:46:57 -08:00
|
|
|
bufend = buf + newListSize;
|
2019-11-05 17:02:43 -08:00
|
|
|
}
|
|
|
|
if (buf + pos + len < bufend) {
|
|
|
|
memcpy(buf+pos, inputNames[ifnNb], len+1); /* including final \0 */
|
|
|
|
pos += len + 1;
|
|
|
|
nbFiles++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
nbFiles += (unsigned)UTIL_prepareFileList(inputNames[ifnNb], &buf, &pos, &bufend, followLinks);
|
|
|
|
if (buf == NULL) return NULL;
|
|
|
|
} } }
|
2018-10-11 15:51:57 -07:00
|
|
|
|
|
|
|
if (nbFiles == 0) { free(buf); return NULL; }
|
|
|
|
|
2019-11-26 17:46:57 -08:00
|
|
|
{ size_t ifnNb, pos;
|
2019-11-05 17:02:43 -08:00
|
|
|
const char** const fileNamesTable = (const char**)malloc((nbFiles + 1) * sizeof(*fileNamesTable));
|
|
|
|
if (!fileNamesTable) { free(buf); return NULL; }
|
2018-10-11 15:51:57 -07:00
|
|
|
|
2019-11-05 17:02:43 -08:00
|
|
|
for (ifnNb = 0, pos = 0; ifnNb < nbFiles; ifnNb++) {
|
|
|
|
fileNamesTable[ifnNb] = buf + pos;
|
|
|
|
if (buf + pos > bufend) { free(buf); free((void*)fileNamesTable); return NULL; }
|
|
|
|
pos += strlen(fileNamesTable[ifnNb]) + 1;
|
2019-10-18 14:28:34 -07:00
|
|
|
}
|
2019-11-26 17:46:57 -08:00
|
|
|
return UTIL_assembleFileNamesTable(fileNamesTable, nbFiles, buf);
|
2019-10-18 14:28:34 -07:00
|
|
|
}
|
2018-10-11 15:51:57 -07:00
|
|
|
}
|
|
|
|
|
2019-04-10 12:37:03 -07:00
|
|
|
|
2019-11-06 09:10:05 -08:00
|
|
|
void UTIL_expandFNT(FileNamesTable** fnt, int followLinks)
|
2019-11-05 14:59:45 -08:00
|
|
|
{
|
2019-11-06 09:10:05 -08:00
|
|
|
FileNamesTable* const newFNT = UTIL_createExpandedFNT((*fnt)->fileNames, (*fnt)->tableSize, followLinks);
|
|
|
|
UTIL_freeFileNamesTable(*fnt);
|
|
|
|
*fnt = newFNT;
|
2019-11-05 14:59:45 -08:00
|
|
|
}
|
|
|
|
|
2019-11-06 14:42:13 -08:00
|
|
|
FileNamesTable* UTIL_createFNT_fromROTable(const char** filenames, size_t nbFilenames)
|
|
|
|
{
|
|
|
|
size_t const sizeof_FNTable = nbFilenames * sizeof(*filenames);
|
|
|
|
const char** const newFNTable = (const char**)malloc(sizeof_FNTable);
|
|
|
|
if (newFNTable==NULL) return NULL;
|
2019-11-06 15:23:44 -08:00
|
|
|
memcpy((void*)newFNTable, filenames, sizeof_FNTable); /* void* : mitigate a Visual compiler bug or limitation */
|
2019-11-26 17:46:57 -08:00
|
|
|
return UTIL_assembleFileNamesTable(newFNTable, nbFilenames, NULL);
|
2019-11-06 14:42:13 -08:00
|
|
|
}
|
|
|
|
|
2018-12-20 12:27:12 -08:00
|
|
|
|
2018-10-11 15:07:12 -07:00
|
|
|
/*-****************************************
|
2019-04-10 12:37:03 -07:00
|
|
|
* count the number of physical cores
|
2018-10-11 15:07:12 -07:00
|
|
|
******************************************/
|
|
|
|
|
2018-10-11 17:34:47 -07:00
|
|
|
#if defined(_WIN32) || defined(WIN32)
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
typedef BOOL(WINAPI* LPFN_GLPI)(PSYSTEM_LOGICAL_PROCESSOR_INFORMATION, PDWORD);
|
|
|
|
|
|
|
|
int UTIL_countPhysicalCores(void)
|
|
|
|
{
|
|
|
|
static int numPhysicalCores = 0;
|
|
|
|
if (numPhysicalCores != 0) return numPhysicalCores;
|
|
|
|
|
|
|
|
{ LPFN_GLPI glpi;
|
|
|
|
BOOL done = FALSE;
|
|
|
|
PSYSTEM_LOGICAL_PROCESSOR_INFORMATION buffer = NULL;
|
|
|
|
PSYSTEM_LOGICAL_PROCESSOR_INFORMATION ptr = NULL;
|
|
|
|
DWORD returnLength = 0;
|
|
|
|
size_t byteOffset = 0;
|
|
|
|
|
2019-10-18 17:08:52 -07:00
|
|
|
#if defined(_MSC_VER)
|
2019-10-18 17:05:42 -07:00
|
|
|
/* Visual Studio does not like the following cast */
|
|
|
|
# pragma warning( disable : 4054 ) /* conversion from function ptr to data ptr */
|
|
|
|
# pragma warning( disable : 4055 ) /* conversion from data ptr to function ptr */
|
|
|
|
#endif
|
2019-10-18 15:45:31 -07:00
|
|
|
glpi = (LPFN_GLPI)(void*)GetProcAddress(GetModuleHandle(TEXT("kernel32")),
|
|
|
|
"GetLogicalProcessorInformation");
|
2018-10-11 17:34:47 -07:00
|
|
|
|
|
|
|
if (glpi == NULL) {
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(!done) {
|
|
|
|
DWORD rc = glpi(buffer, &returnLength);
|
|
|
|
if (FALSE == rc) {
|
|
|
|
if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
|
|
|
|
if (buffer)
|
|
|
|
free(buffer);
|
|
|
|
buffer = (PSYSTEM_LOGICAL_PROCESSOR_INFORMATION)malloc(returnLength);
|
|
|
|
|
|
|
|
if (buffer == NULL) {
|
|
|
|
perror("zstd");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* some other error */
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
done = TRUE;
|
2019-11-26 15:44:33 -08:00
|
|
|
} }
|
2018-10-11 17:34:47 -07:00
|
|
|
|
|
|
|
ptr = buffer;
|
|
|
|
|
|
|
|
while (byteOffset + sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION) <= returnLength) {
|
|
|
|
|
|
|
|
if (ptr->Relationship == RelationProcessorCore) {
|
|
|
|
numPhysicalCores++;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr++;
|
|
|
|
byteOffset += sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buffer);
|
|
|
|
|
|
|
|
return numPhysicalCores;
|
|
|
|
}
|
|
|
|
|
|
|
|
failed:
|
|
|
|
/* try to fall back on GetSystemInfo */
|
|
|
|
{ SYSTEM_INFO sysinfo;
|
|
|
|
GetSystemInfo(&sysinfo);
|
|
|
|
numPhysicalCores = sysinfo.dwNumberOfProcessors;
|
|
|
|
if (numPhysicalCores == 0) numPhysicalCores = 1; /* just in case */
|
|
|
|
}
|
|
|
|
return numPhysicalCores;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
|
|
|
/* Use apple-provided syscall
|
|
|
|
* see: man 3 sysctl */
|
|
|
|
int UTIL_countPhysicalCores(void)
|
|
|
|
{
|
|
|
|
static S32 numPhysicalCores = 0; /* apple specifies int32_t */
|
|
|
|
if (numPhysicalCores != 0) return numPhysicalCores;
|
|
|
|
|
|
|
|
{ size_t size = sizeof(S32);
|
|
|
|
int const ret = sysctlbyname("hw.physicalcpu", &numPhysicalCores, &size, NULL, 0);
|
|
|
|
if (ret != 0) {
|
|
|
|
if (errno == ENOENT) {
|
|
|
|
/* entry not present, fall back on 1 */
|
|
|
|
numPhysicalCores = 1;
|
|
|
|
} else {
|
|
|
|
perror("zstd: can't get number of physical cpus");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return numPhysicalCores;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(__linux__)
|
|
|
|
|
|
|
|
/* parse /proc/cpuinfo
|
|
|
|
* siblings / cpu cores should give hyperthreading ratio
|
|
|
|
* otherwise fall back on sysconf */
|
|
|
|
int UTIL_countPhysicalCores(void)
|
|
|
|
{
|
|
|
|
static int numPhysicalCores = 0;
|
|
|
|
|
|
|
|
if (numPhysicalCores != 0) return numPhysicalCores;
|
|
|
|
|
|
|
|
numPhysicalCores = (int)sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
if (numPhysicalCores == -1) {
|
|
|
|
/* value not queryable, fall back on 1 */
|
|
|
|
return numPhysicalCores = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* try to determine if there's hyperthreading */
|
|
|
|
{ FILE* const cpuinfo = fopen("/proc/cpuinfo", "r");
|
|
|
|
#define BUF_SIZE 80
|
|
|
|
char buff[BUF_SIZE];
|
|
|
|
|
|
|
|
int siblings = 0;
|
|
|
|
int cpu_cores = 0;
|
|
|
|
int ratio = 1;
|
|
|
|
|
|
|
|
if (cpuinfo == NULL) {
|
|
|
|
/* fall back on the sysconf value */
|
|
|
|
return numPhysicalCores;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* assume the cpu cores/siblings values will be constant across all
|
|
|
|
* present processors */
|
|
|
|
while (!feof(cpuinfo)) {
|
|
|
|
if (fgets(buff, BUF_SIZE, cpuinfo) != NULL) {
|
|
|
|
if (strncmp(buff, "siblings", 8) == 0) {
|
|
|
|
const char* const sep = strchr(buff, ':');
|
2019-07-29 02:05:50 -07:00
|
|
|
if (sep == NULL || *sep == '\0') {
|
2018-10-11 17:34:47 -07:00
|
|
|
/* formatting was broken? */
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
siblings = atoi(sep + 1);
|
|
|
|
}
|
|
|
|
if (strncmp(buff, "cpu cores", 9) == 0) {
|
|
|
|
const char* const sep = strchr(buff, ':');
|
2019-07-29 02:05:50 -07:00
|
|
|
if (sep == NULL || *sep == '\0') {
|
2018-10-11 17:34:47 -07:00
|
|
|
/* formatting was broken? */
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_cores = atoi(sep + 1);
|
|
|
|
}
|
|
|
|
} else if (ferror(cpuinfo)) {
|
|
|
|
/* fall back on the sysconf value */
|
|
|
|
goto failed;
|
2019-11-26 15:44:33 -08:00
|
|
|
} }
|
2018-10-11 17:34:47 -07:00
|
|
|
if (siblings && cpu_cores) {
|
|
|
|
ratio = siblings / cpu_cores;
|
|
|
|
}
|
|
|
|
failed:
|
|
|
|
fclose(cpuinfo);
|
|
|
|
return numPhysicalCores = numPhysicalCores / ratio;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-04 11:57:12 -08:00
|
|
|
#elif defined(__FreeBSD__)
|
2018-10-11 17:34:47 -07:00
|
|
|
|
2019-01-04 11:57:12 -08:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
|
|
|
/* Use physical core sysctl when available
|
|
|
|
* see: man 4 smp, man 3 sysctl */
|
|
|
|
int UTIL_countPhysicalCores(void)
|
|
|
|
{
|
|
|
|
static int numPhysicalCores = 0; /* freebsd sysctl is native int sized */
|
|
|
|
if (numPhysicalCores != 0) return numPhysicalCores;
|
|
|
|
|
|
|
|
#if __FreeBSD_version >= 1300008
|
|
|
|
{ size_t size = sizeof(numPhysicalCores);
|
|
|
|
int ret = sysctlbyname("kern.smp.cores", &numPhysicalCores, &size, NULL, 0);
|
|
|
|
if (ret == 0) return numPhysicalCores;
|
|
|
|
if (errno != ENOENT) {
|
|
|
|
perror("zstd: can't get number of physical cpus");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
/* sysctl not present, fall through to older sysconf method */
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
numPhysicalCores = (int)sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
if (numPhysicalCores == -1) {
|
|
|
|
/* value not queryable, fall back on 1 */
|
|
|
|
numPhysicalCores = 1;
|
|
|
|
}
|
|
|
|
return numPhysicalCores;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
|
|
|
|
|
|
|
|
/* Use POSIX sysconf
|
|
|
|
* see: man 3 sysconf */
|
2018-10-11 17:34:47 -07:00
|
|
|
int UTIL_countPhysicalCores(void)
|
|
|
|
{
|
|
|
|
static int numPhysicalCores = 0;
|
|
|
|
|
|
|
|
if (numPhysicalCores != 0) return numPhysicalCores;
|
|
|
|
|
|
|
|
numPhysicalCores = (int)sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
if (numPhysicalCores == -1) {
|
|
|
|
/* value not queryable, fall back on 1 */
|
|
|
|
return numPhysicalCores = 1;
|
|
|
|
}
|
|
|
|
return numPhysicalCores;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
int UTIL_countPhysicalCores(void)
|
|
|
|
{
|
|
|
|
/* assume 1 */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-10-11 12:52:19 -07:00
|
|
|
#if defined (__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|