|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #pragma once
- #include <list>
-
- #include <common.hpp>
-
-
- namespace rack {
-
-
- /** Cross-platform functions for operating systems routines
- */
- namespace system {
-
-
- /** Returns a list of all entries (directories, files, symbols) in a directory. */
- std::list<std::string> getEntries(const std::string& path);
- std::list<std::string> getEntriesRecursive(const std::string &path, int depth);
- /** Returns whether the given path is a file. */
- bool isFile(const std::string& path);
- /** Returns whether the given path is a directory. */
- bool isDirectory(const std::string& path);
- /** Moves a file. */
- void moveFile(const std::string& srcPath, const std::string& destPath);
- /** Copies a file. */
- void copyFile(const std::string& srcPath, const std::string& destPath);
- /** Creates a directory.
- The parent directory must exist.
- */
- void createDirectory(const std::string& path);
- /** Creates all directories up to the path.
- */
- void createDirectories(const std::string& path);
- /** Deletes a directory.
- The directory must be empty. Fails silently.
- */
- void removeDirectory(const std::string& path);
- void removeDirectories(const std::string& path);
- /** Returns the number of logical simultaneous multithreading (SMT) (e.g. Intel Hyperthreaded) threads on the CPU. */
- int getLogicalCoreCount();
- /** Sets a name of the current thread for debuggers and OS-specific process viewers. */
- void setThreadName(const std::string& name);
- /** Returns the caller's human-readable stack trace with "\n"-separated lines. */
- std::string getStackTrace();
- /** Returns the current number of nanoseconds since the epoch.
- The goal of this function is to give the most precise (fine-grained) time available on the OS for benchmarking purposes, while being fast to compute.
- The epoch is undefined. Do not use this function to get absolute time, as it is different on each OS.
- */
- int64_t getNanoseconds();
- /** Opens a URL, also happens to work with PDFs and folders.
- Shell injection is possible, so make sure the URL is trusted or hard coded.
- May block, so open in a new thread.
- */
- void openBrowser(const std::string& url);
- /** Opens Windows Explorer, Finder, etc at the folder location. */
- void openFolder(const std::string& path);
- /** Runs an executable without blocking.
- The launched process will continue running if the current process is closed.
- */
- void runProcessDetached(const std::string& path);
- std::string getOperatingSystemInfo();
- /** Unzips a ZIP file to a folder.
- The folder must exist.
- Returns 0 if successful.
- */
- int unzipToFolder(const std::string& zipPath, const std::string& dir);
-
-
- } // namespace system
- } // namespace rack
|