11 #if ((XTD_OS_LINUX | XTD_OS_CYGWIN | XTD_OS_MSYS) & XTD_OS)
12 #include <sys/types.h>
17 #if ((XTD_OS_MINGW | XTD_OS_WINDOWS) & XTD_OS)
31 #if ((XTD_OS_LINUX | XTD_OS_MSYS | XTD_OS_CYGWIN) & XTD_OS)
35 using pid_type = pid_t;
36 using pointer = std::shared_ptr<process>;
37 using map = std::map<pid_type, pointer>;
39 static map system_processes() {
41 std::regex oRE(
"([0-9]+)");
42 _dir::ptr oDir(opendir(
"/proc"));
44 while ((oEntry = readdir(oDir.get()))){
45 if ((oEntry->d_type & DT_DIR) && std::regex_match(oEntry->d_name, oRE)) {
46 auto oPID =
static_cast<pid_type
>(atoi(oEntry->d_name));
47 oRet[oPID] = pointer(
new process(oPID));
52 #if (XTD_OS_LINUX & XTD_OS)
53 dynamic_library::map libraries() {
55 dynamic_library::map oRet;
66 pid_type id()
const {
return _pid; }
68 static process &this_process() {
69 static process _this_process(getpid());
78 using ptr = std::unique_ptr<DIR, _dir>;
79 void operator()(DIR * d){ closedir(d); }
82 explicit process(pid_type hPid) : _pid(hPid) {
86 #elif ((XTD_OS_MINGW | XTD_OS_WINDOWS) & XTD_OS)
90 using pid_type = DWORD;
91 using pointer = std::shared_ptr<process>;
92 using map = std::map<pid_type, pointer>;
96 static process _this_process(GetCurrentProcessId());
100 static map system_processes(){
102 std::vector<DWORD> pids(10, 0);
106 if ((dwNeeded /
sizeof(DWORD)) < pids.size()){
109 pids.resize(pids.size() * 2);
111 pids.resize(dwNeeded /
sizeof(DWORD));
112 for (
auto pid : pids){
113 oRet[pid] = pointer(
new process(pid));
118 explicit process(pid_type hPid) : _pid(hPid), _hProcess(nullptr){}
121 CloseHandle(_hProcess);
125 pid_type id()
const{
return _pid; }
127 dynamic_library::map libraries(){
128 dynamic_library::map oRet;
129 std::vector<HMODULE> modules(10, 0);
132 xtd::windows::exception::throw_if(EnumProcessModules(*
this, &modules[0], static_cast<DWORD>(modules.size() *
sizeof(HMODULE)), &dwNeeded), [](BOOL b){
return FALSE==b;});
133 if ((dwNeeded /
sizeof(HMODULE)) < modules.size()){
136 modules.resize(modules.size() * 2);
138 modules.resize(dwNeeded /
sizeof(HMODULE));
139 for (dynamic_library::native_handle_type module : modules){
142 dwNeeded = GetModuleFileNameExA(*
this, module, &sPath[0],static_cast<DWORD>(sPath.size()));
143 if (dwNeeded < sPath.size()){
146 sPath.resize(dwNeeded);
148 oRet[sPath] = dynamic_library::pointer(
new dynamic_library(module));
167 #error "Unsupported system for xtd::process"
host, target and build configurations and settings Various components are purpose built for specific ...
#define throw_if(_test, _expression)
Simplifies use of exception::_throw_if.
load and invoke methods in a dynamic library