Mercurial > minori
view dep/animia/src/main.cpp @ 92:2c27582a177c
pages/now_playing: fix invalid catch
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 01 Nov 2023 00:00:56 -0400 |
parents | 4c6dd5999b39 |
children | 18979b066284 |
line wrap: on
line source
#include "bsd.h" #include "linux.h" #include "win32.h" #include <string> #include <unordered_map> #include <vector> #ifdef __linux__ # define ON_LINUX #elif (defined(unix) || defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) # define ON_UNIX #elif defined(_WIN32) # define ON_WINDOWS #endif namespace Animia { std::vector<int> get_all_pids() { #ifdef ON_UNIX return Unix::get_all_pids(); #elif defined(ON_LINUX) return Linux::get_all_pids(); #elif defined(ON_WINDOWS) return Windows::get_all_pids(); #else return {}; #endif } std::string get_process_name(int pid) { #ifdef ON_UNIX return Unix::get_process_name(pid); #elif defined(ON_LINUX) return Linux::get_process_name(pid); #elif defined(ON_WINDOWS) return Windows::get_process_name(pid); #else return ""; #endif } std::vector<std::string> get_open_files(int pid) { #ifdef ON_UNIX return Unix::get_open_files(pid); #elif defined(ON_LINUX) return Linux::get_open_files(pid); #elif defined(ON_WINDOWS) return Windows::get_open_files(pid); #else return {}; #endif } std::vector<std::string> filter_system_files(const std::vector<std::string>& source) { #ifdef ON_WINDOWS return Windows::filter_system_files(source); #else return source; #endif } std::unordered_map<int, std::vector<std::string>> get_all_open_files() { #ifdef ON_UNIX return Unix::get_all_open_files(); #elif defined(ON_LINUX) return Linux::get_all_open_files(); #elif defined(ON_WINDOWS) return Windows::get_all_open_files(); #else return {}; #endif } } // namespace Animia