util.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. /*
  2. * Copyright (c) Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under both the BSD-style license (found in the
  6. * LICENSE file in the root directory of this source tree) and the GPLv2 (found
  7. * in the COPYING file in the root directory of this source tree).
  8. * You may select, at your option, one of the above-listed licenses.
  9. */
  10. #ifndef UTIL_H_MODULE
  11. #define UTIL_H_MODULE
  12. #if defined (__cplusplus)
  13. extern "C" {
  14. #endif
  15. /*-****************************************
  16. * Dependencies
  17. ******************************************/
  18. #include "platform.h" /* PLATFORM_POSIX_VERSION, ZSTD_NANOSLEEP_SUPPORT, ZSTD_SETPRIORITY_SUPPORT */
  19. #include <stddef.h> /* size_t, ptrdiff_t */
  20. #include <sys/types.h> /* stat, utime */
  21. #include <sys/stat.h> /* stat, chmod */
  22. #include "../lib/common/mem.h" /* U64 */
  23. /*-************************************************************
  24. * Avoid fseek()'s 2GiB barrier with MSVC, macOS, *BSD, MinGW
  25. ***************************************************************/
  26. #if defined(_MSC_VER) && (_MSC_VER >= 1400)
  27. # define UTIL_fseek _fseeki64
  28. #elif !defined(__64BIT__) && (PLATFORM_POSIX_VERSION >= 200112L) /* No point defining Large file for 64 bit */
  29. # define UTIL_fseek fseeko
  30. #elif defined(__MINGW32__) && defined(__MSVCRT__) && !defined(__STRICT_ANSI__) && !defined(__NO_MINGW_LFS)
  31. # define UTIL_fseek fseeko64
  32. #else
  33. # define UTIL_fseek fseek
  34. #endif
  35. /*-*************************************************
  36. * Sleep & priority functions: Windows - Posix - others
  37. ***************************************************/
  38. #if defined(_WIN32)
  39. # include <windows.h>
  40. # define SET_REALTIME_PRIORITY SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS)
  41. # define UTIL_sleep(s) Sleep(1000*s)
  42. # define UTIL_sleepMilli(milli) Sleep(milli)
  43. #elif PLATFORM_POSIX_VERSION > 0 /* Unix-like operating system */
  44. # include <unistd.h> /* sleep */
  45. # define UTIL_sleep(s) sleep(s)
  46. # if ZSTD_NANOSLEEP_SUPPORT /* necessarily defined in platform.h */
  47. # define UTIL_sleepMilli(milli) { struct timespec t; t.tv_sec=0; t.tv_nsec=milli*1000000ULL; nanosleep(&t, NULL); }
  48. # else
  49. # define UTIL_sleepMilli(milli) /* disabled */
  50. # endif
  51. # if ZSTD_SETPRIORITY_SUPPORT
  52. # include <sys/resource.h> /* setpriority */
  53. # define SET_REALTIME_PRIORITY setpriority(PRIO_PROCESS, 0, -20)
  54. # else
  55. # define SET_REALTIME_PRIORITY /* disabled */
  56. # endif
  57. #else /* unknown non-unix operating system */
  58. # define UTIL_sleep(s) /* disabled */
  59. # define UTIL_sleepMilli(milli) /* disabled */
  60. # define SET_REALTIME_PRIORITY /* disabled */
  61. #endif
  62. /*-****************************************
  63. * Compiler specifics
  64. ******************************************/
  65. #if defined(__INTEL_COMPILER)
  66. # pragma warning(disable : 177) /* disable: message #177: function was declared but never referenced, useful with UTIL_STATIC */
  67. #endif
  68. #if defined(__GNUC__)
  69. # define UTIL_STATIC static __attribute__((unused))
  70. #elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
  71. # define UTIL_STATIC static inline
  72. #elif defined(_MSC_VER)
  73. # define UTIL_STATIC static __inline
  74. #else
  75. # define UTIL_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */
  76. #endif
  77. /*-****************************************
  78. * Console log
  79. ******************************************/
  80. extern int g_utilDisplayLevel;
  81. /**
  82. * Displays a message prompt and returns success (0) if first character from stdin
  83. * matches any from acceptableLetters. Otherwise, returns failure (1) and displays abortMsg.
  84. * If any of the inputs are stdin itself, then automatically return failure (1).
  85. */
  86. int UTIL_requireUserConfirmation(const char* prompt, const char* abortMsg, const char* acceptableLetters, int hasStdinInput);
  87. /*-****************************************
  88. * File functions
  89. ******************************************/
  90. #if defined(_MSC_VER)
  91. typedef struct __stat64 stat_t;
  92. typedef int mode_t;
  93. #elif defined(__MINGW32__) && defined (__MSVCRT__)
  94. typedef struct _stati64 stat_t;
  95. #else
  96. typedef struct stat stat_t;
  97. #endif
  98. #if defined(_MSC_VER) || defined(__MINGW32__) || defined (__MSVCRT__) /* windows support */
  99. #define PATH_SEP '\\'
  100. #define STRDUP(s) _strdup(s)
  101. #else
  102. #define PATH_SEP '/'
  103. #include <libgen.h>
  104. #define STRDUP(s) strdup(s)
  105. #endif
  106. /**
  107. * Calls platform's equivalent of stat() on filename and writes info to statbuf.
  108. * Returns success (1) or failure (0).
  109. */
  110. int UTIL_stat(const char* filename, stat_t* statbuf);
  111. /**
  112. * Instead of getting a file's stats, this updates them with the info in the
  113. * provided stat_t. Currently sets owner, group, atime, and mtime. Will only
  114. * update this info for regular files.
  115. */
  116. int UTIL_setFileStat(const char* filename, const stat_t* statbuf);
  117. /**
  118. * Set atime to now and mtime to the st_mtim in statbuf.
  119. *
  120. * Directly wraps utime() or utimensat(). Returns -1 on error.
  121. * Does not validate filename is valid.
  122. */
  123. int UTIL_utime(const char* filename, const stat_t *statbuf);
  124. /*
  125. * These helpers operate on a pre-populated stat_t, i.e., the result of
  126. * calling one of the above functions.
  127. */
  128. int UTIL_isRegularFileStat(const stat_t* statbuf);
  129. int UTIL_isDirectoryStat(const stat_t* statbuf);
  130. int UTIL_isFIFOStat(const stat_t* statbuf);
  131. int UTIL_isBlockDevStat(const stat_t* statbuf);
  132. U64 UTIL_getFileSizeStat(const stat_t* statbuf);
  133. /**
  134. * Like chmod(), but only modifies regular files. Provided statbuf may be NULL,
  135. * in which case this function will stat() the file internally, in order to
  136. * check whether it should be modified.
  137. */
  138. int UTIL_chmod(char const* filename, const stat_t* statbuf, mode_t permissions);
  139. /*
  140. * In the absence of a pre-existing stat result on the file in question, these
  141. * functions will do a stat() call internally and then use that result to
  142. * compute the needed information.
  143. */
  144. int UTIL_isRegularFile(const char* infilename);
  145. int UTIL_isDirectory(const char* infilename);
  146. int UTIL_isSameFile(const char* file1, const char* file2);
  147. int UTIL_isCompressedFile(const char* infilename, const char *extensionList[]);
  148. int UTIL_isLink(const char* infilename);
  149. int UTIL_isFIFO(const char* infilename);
  150. #define UTIL_FILESIZE_UNKNOWN ((U64)(-1))
  151. U64 UTIL_getFileSize(const char* infilename);
  152. U64 UTIL_getTotalFileSize(const char* const * fileNamesTable, unsigned nbFiles);
  153. /**
  154. * Take @size in bytes,
  155. * prepare the components to pretty-print it in a scaled way.
  156. * The components in the returned struct should be passed in
  157. * precision, value, suffix order to a "%.*f%s" format string.
  158. * Output policy is sensible to @g_utilDisplayLevel,
  159. * for verbose mode (@g_utilDisplayLevel >= 4),
  160. * does not scale down.
  161. */
  162. typedef struct {
  163. double value;
  164. int precision;
  165. const char* suffix;
  166. } UTIL_HumanReadableSize_t;
  167. UTIL_HumanReadableSize_t UTIL_makeHumanReadableSize(U64 size);
  168. int UTIL_compareStr(const void *p1, const void *p2);
  169. const char* UTIL_getFileExtension(const char* infilename);
  170. void UTIL_mirrorSourceFilesDirectories(const char** fileNamesTable, unsigned int nbFiles, const char *outDirName);
  171. char* UTIL_createMirroredDestDirName(const char* srcFileName, const char* outDirRootName);
  172. /*-****************************************
  173. * Lists of Filenames
  174. ******************************************/
  175. typedef struct
  176. { const char** fileNames;
  177. char* buf; /* fileNames are stored in this buffer (or are read-only) */
  178. size_t tableSize; /* nb of fileNames */
  179. size_t tableCapacity;
  180. } FileNamesTable;
  181. /*! UTIL_createFileNamesTable_fromFileName() :
  182. * read filenames from @inputFileName, and store them into returned object.
  183. * @return : a FileNamesTable*, or NULL in case of error (ex: @inputFileName doesn't exist).
  184. * Note: inputFileSize must be less than 50MB
  185. */
  186. FileNamesTable*
  187. UTIL_createFileNamesTable_fromFileName(const char* inputFileName);
  188. /*! UTIL_assembleFileNamesTable() :
  189. * This function takes ownership of its arguments, @filenames and @buf,
  190. * and store them inside the created object.
  191. * note : this function never fails,
  192. * it will rather exit() the program if internal allocation fails.
  193. * @return : resulting FileNamesTable* object.
  194. */
  195. FileNamesTable*
  196. UTIL_assembleFileNamesTable(const char** filenames, size_t tableSize, char* buf);
  197. /*! UTIL_freeFileNamesTable() :
  198. * This function is compatible with NULL argument and never fails.
  199. */
  200. void UTIL_freeFileNamesTable(FileNamesTable* table);
  201. /*! UTIL_mergeFileNamesTable():
  202. * @return : FileNamesTable*, concatenation of @table1 and @table2
  203. * note: @table1 and @table2 are consumed (freed) by this operation
  204. */
  205. FileNamesTable*
  206. UTIL_mergeFileNamesTable(FileNamesTable* table1, FileNamesTable* table2);
  207. /*! UTIL_expandFNT() :
  208. * read names from @fnt, and expand those corresponding to directories
  209. * update @fnt, now containing only file names,
  210. * @return : 0 in case of success, 1 if error
  211. * note : in case of error, @fnt[0] is NULL
  212. */
  213. void UTIL_expandFNT(FileNamesTable** fnt, int followLinks);
  214. /*! UTIL_createFNT_fromROTable() :
  215. * copy the @filenames pointer table inside the returned object.
  216. * The names themselves are still stored in their original buffer, which must outlive the object.
  217. * @return : a FileNamesTable* object,
  218. * or NULL in case of error
  219. */
  220. FileNamesTable*
  221. UTIL_createFNT_fromROTable(const char** filenames, size_t nbFilenames);
  222. /*! UTIL_allocateFileNamesTable() :
  223. * Allocates a table of const char*, to insert read-only names later on.
  224. * The created FileNamesTable* doesn't hold a buffer.
  225. * @return : FileNamesTable*, or NULL, if allocation fails.
  226. */
  227. FileNamesTable* UTIL_allocateFileNamesTable(size_t tableSize);
  228. /*! UTIL_refFilename() :
  229. * Add a reference to read-only name into @fnt table.
  230. * As @filename is only referenced, its lifetime must outlive @fnt.
  231. * Internal table must be large enough to reference a new member,
  232. * otherwise its UB (protected by an `assert()`).
  233. */
  234. void UTIL_refFilename(FileNamesTable* fnt, const char* filename);
  235. /* UTIL_createExpandedFNT() is only active if UTIL_HAS_CREATEFILELIST is defined.
  236. * Otherwise, UTIL_createExpandedFNT() is a shell function which does nothing
  237. * apart from displaying a warning message.
  238. */
  239. #ifdef _WIN32
  240. # define UTIL_HAS_CREATEFILELIST
  241. #elif defined(__linux__) || (PLATFORM_POSIX_VERSION >= 200112L) /* opendir, readdir require POSIX.1-2001 */
  242. # define UTIL_HAS_CREATEFILELIST
  243. # define UTIL_HAS_MIRRORFILELIST
  244. #else
  245. /* do not define UTIL_HAS_CREATEFILELIST */
  246. #endif
  247. /*! UTIL_createExpandedFNT() :
  248. * read names from @filenames, and expand those corresponding to directories.
  249. * links are followed or not depending on @followLinks directive.
  250. * @return : an expanded FileNamesTable*, where each name is a file
  251. * or NULL in case of error
  252. */
  253. FileNamesTable*
  254. UTIL_createExpandedFNT(const char* const* filenames, size_t nbFilenames, int followLinks);
  255. #if defined(_WIN32) || defined(WIN32)
  256. DWORD CountSetBits(ULONG_PTR bitMask);
  257. #endif
  258. /*-****************************************
  259. * System
  260. ******************************************/
  261. int UTIL_countCores(int logical);
  262. int UTIL_countPhysicalCores(void);
  263. int UTIL_countLogicalCores(void);
  264. #if defined (__cplusplus)
  265. }
  266. #endif
  267. #endif /* UTIL_H_MODULE */