You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

170 lines
5.7KB

  1. #pragma once
  2. #include <list>
  3. #include <vector>
  4. #include <common.hpp>
  5. namespace rack {
  6. /** Cross-platform functions for operating systems routines
  7. */
  8. namespace system {
  9. // Filesystem
  10. /** Joins two paths with a directory separator.
  11. If `path2` is an empty string, returns `path1`.
  12. */
  13. std::string join(const std::string& path1, const std::string& path2 = "");
  14. /** Join an arbitrary number of paths, from left to right. */
  15. template <typename... Paths>
  16. std::string join(const std::string& path1, const std::string& path2, Paths... paths) {
  17. return join(join(path1, path2), paths...);
  18. }
  19. /** Returns a list of all entries (directories, files, symbolic links, etc) in a directory.
  20. `depth` is the number of directories to recurse. 0 depth does not recurse. -1 depth recurses infinitely.
  21. */
  22. std::list<std::string> getEntries(const std::string& dirPath, int depth = 0);
  23. bool exists(const std::string& path);
  24. /** Returns whether the given path is a file. */
  25. bool isFile(const std::string& path);
  26. /** Returns whether the given path is a directory. */
  27. bool isDirectory(const std::string& path);
  28. uint64_t getFileSize(const std::string& path);
  29. /** Moves a file or directory.
  30. Does not overwrite the destination. If this behavior is needed, use remove() or removeRecursively() before moving.
  31. Returns whether the rename was successful.
  32. */
  33. bool rename(const std::string& srcPath, const std::string& destPath);
  34. /** Copies a file or directory recursively.
  35. Returns whether the copy was successful.
  36. */
  37. bool copy(const std::string& srcPath, const std::string& destPath);
  38. /** Creates a directory.
  39. The parent directory must exist.
  40. Returns whether the creation was successful.
  41. */
  42. bool createDirectory(const std::string& path);
  43. /** Creates all directories up to the path.
  44. Returns whether the creation was successful.
  45. */
  46. bool createDirectories(const std::string& path);
  47. /** Deletes a file or empty directory.
  48. Returns whether the deletion was successful.
  49. */
  50. bool remove(const std::string& path);
  51. /** Deletes a file or directory recursively.
  52. Returns the number of files and directories that were deleted.
  53. */
  54. int removeRecursively(const std::string& path);
  55. std::string getWorkingDirectory();
  56. void setWorkingDirectory(const std::string& path);
  57. std::string getTempDirectory();
  58. /** Returns the absolute path beginning with "/". */
  59. std::string getAbsolute(const std::string& path);
  60. /** Returns the canonical (unique) path, following symlinks and "." and ".." fake directories.
  61. The path must exist on the filesystem.
  62. Examples:
  63. getCanonical("/foo/./bar/.") // "/foo/bar"
  64. */
  65. std::string getCanonical(const std::string& path);
  66. /** Extracts the parent directory of the path.
  67. Examples:
  68. getDirectory("/var/tmp/example.txt") // "/var/tmp"
  69. getDirectory("/") // ""
  70. getDirectory("/var/tmp/.") // "/var/tmp"
  71. */
  72. std::string getDirectory(const std::string& path);
  73. /** Extracts the filename of the path.
  74. Examples:
  75. getFilename("/foo/bar.txt") // "bar.txt"
  76. getFilename("/foo/.bar") // ".bar"
  77. getFilename("/foo/bar/") // "."
  78. getFilename("/foo/.") // "."
  79. getFilename("/foo/..") // ".."
  80. getFilename(".") // "."
  81. getFilename("..") // ".."
  82. getFilename("/") // "/"
  83. */
  84. std::string getFilename(const std::string& path);
  85. /** Extracts the portion of a filename without the extension.
  86. Examples:
  87. getStem("/foo/bar.txt") // "bar"
  88. getStem("/foo/.bar") // ""
  89. getStem("/foo/foo.tar.ztd") // "foo.tar"
  90. */
  91. std::string getStem(const std::string& path);
  92. /** Extracts the extension of a filename, including the dot.
  93. Examples:
  94. getExtension("/foo/bar.txt") // ".txt"
  95. getExtension("/foo/bar.") // "."
  96. getExtension("/foo/bar") // ""
  97. getExtension("/foo/bar.txt/bar.cc") // ".cc"
  98. getExtension("/foo/bar.txt/bar.") // "."
  99. getExtension("/foo/bar.txt/bar") // ""
  100. getExtension("/foo/.") // ""
  101. getExtension("/foo/..") // ""
  102. getExtension("/foo/.hidden") // ".hidden"
  103. */
  104. std::string getExtension(const std::string& path);
  105. /** Compresses the contents of a directory (recursively) to an archive.
  106. Uses the Unix Standard TAR + Zstandard format (.tar.zst).
  107. An equivalent shell command is
  108. ZSTD_CLEVEL=1 tar -cf archivePath --zstd -C dirPath .
  109. */
  110. void archiveDirectory(const std::string& archivePath, const std::string& dirPath, int compressionLevel = 1);
  111. std::vector<uint8_t> archiveDirectory(const std::string& dirPath, int compressionLevel = 1);
  112. /** Extracts an archive into a directory.
  113. An equivalent shell command is
  114. tar -xf archivePath --zstd -C dirPath
  115. */
  116. void unarchiveToDirectory(const std::string& archivePath, const std::string& dirPath);
  117. void unarchiveToDirectory(const std::vector<uint8_t>& archiveData, const std::string& dirPath);
  118. // Threading
  119. /** Returns the number of logical simultaneous multithreading (SMT) (e.g. Intel Hyperthreaded) threads on the CPU. */
  120. int getLogicalCoreCount();
  121. /** Sets a name of the current thread for debuggers and OS-specific process viewers. */
  122. void setThreadName(const std::string& name);
  123. // Querying
  124. /** Returns the caller's human-readable stack trace with "\n"-separated lines. */
  125. std::string getStackTrace();
  126. /** Returns the number of seconds since application launch.
  127. Gives the most precise (fine-grained) time differences available on the OS for benchmarking purposes, while being fast to compute.
  128. */
  129. double getTime();
  130. /** Returns time since 1970-01-01 00:00:00 UTC in seconds.
  131. */
  132. double getUnixTime();
  133. std::string getOperatingSystemInfo();
  134. // Applications
  135. /** Opens a URL in a browser.
  136. Shell injection is possible, so make sure the URL is trusted or hard coded.
  137. May block, so open in a new thread.
  138. */
  139. void openBrowser(const std::string& url);
  140. /** Opens Windows Explorer, Finder, etc at a directory location. */
  141. void openDirectory(const std::string& path);
  142. /** Runs an executable without blocking.
  143. The launched process will continue running if the current process is closed.
  144. */
  145. void runProcessDetached(const std::string& path);
  146. void init();
  147. } // namespace system
  148. } // namespace rack