XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
process.hpp
Go to the documentation of this file.
1 
7 #pragma once
8 
9 #include <xtd/xtd.hpp>
10 
11 #if ((XTD_OS_LINUX | XTD_OS_CYGWIN | XTD_OS_MSYS) & XTD_OS)
12  #include <sys/types.h>
13  #include <unistd.h>
14  #include <dirent.h>
15 #endif
16 
17 #if ((XTD_OS_MINGW | XTD_OS_WINDOWS) & XTD_OS)
18  #include <Psapi.h>
19 #endif
20 
21 #include <regex>
22 #include <memory>
23 #include <map>
24 
25 #include <xtd/dynamic_library.hpp>
26 
27 
28 namespace xtd{
29 
30 
31 #if ((XTD_OS_LINUX | XTD_OS_MSYS | XTD_OS_CYGWIN) & XTD_OS)
32  class process {
33  public:
34 
35  using pid_type = pid_t;
36  using pointer = std::shared_ptr<process>;
37  using map = std::map<pid_type, pointer>;
38 
39  static map system_processes() {
40  map oRet;
41  std::regex oRE("([0-9]+)");
42  _dir::ptr oDir(opendir("/proc"));
43  dirent * oEntry;
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));
48  }
49  }
50  return oRet;
51  }
52 #if (XTD_OS_LINUX & XTD_OS)
53  dynamic_library::map libraries() {
54 
55  dynamic_library::map oRet;
56  /*
57  for (auto pMap = reinterpret_cast<const struct link_map *>(dlopen(0, RTLD_LAZY)); pMap; pMap = pMap->l_next) {
58  if (pMap->l_name) {
59  std::cout << pMap->l_name << std::endl;
60  }
61  }
62  */
63  return oRet;
64  }
65 #endif
66  pid_type id() const { return _pid; }
67 
68  static process &this_process() {
69  static process _this_process(getpid());
70  return _this_process;
71  }
72 
73  private:
74  pid_type _pid;
75 
76  class _dir{
77  public:
78  using ptr = std::unique_ptr<DIR, _dir>;
79  void operator()(DIR * d){ closedir(d); }
80  };
81 
82  explicit process(pid_type hPid) : _pid(hPid) {
83 
84  }
85  };
86 #elif ((XTD_OS_MINGW | XTD_OS_WINDOWS) & XTD_OS)
87  class process{
88  public:
89 
90  using pid_type = DWORD;
91  using pointer = std::shared_ptr<process>;
92  using map = std::map<pid_type, pointer>;
93 
94 
95  static process& this_process(){
96  static process _this_process(GetCurrentProcessId());
97  return _this_process;
98  }
99 
100  static map system_processes(){
101  map oRet;
102  std::vector<DWORD> pids(10, 0);
103  DWORD dwNeeded;
104  forever{
105  xtd::windows::exception::throw_if(EnumProcesses(&pids[0], static_cast<DWORD>(pids.size() * sizeof(DWORD)), &dwNeeded), [](BOOL b){ return FALSE==b; });
106  if ((dwNeeded / sizeof(DWORD)) < pids.size()){
107  break;
108  }
109  pids.resize(pids.size() * 2);
110  }
111  pids.resize(dwNeeded / sizeof(DWORD));
112  for (auto pid : pids){
113  oRet[pid] = pointer(new process(pid));
114  }
115  return oRet;
116  }
117 
118  explicit process(pid_type hPid) : _pid(hPid), _hProcess(nullptr){}
119  ~process(){
120  if (_hProcess){
121  CloseHandle(_hProcess);
122  }
123  }
124 
125  pid_type id() const{ return _pid; }
126 
127  dynamic_library::map libraries(){
128  dynamic_library::map oRet;
129  std::vector<HMODULE> modules(10, 0);
130  DWORD dwNeeded;
131  forever{
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()){
134  break;
135  }
136  modules.resize(modules.size() * 2);
137  }
138  modules.resize(dwNeeded / sizeof(HMODULE));
139  for (dynamic_library::native_handle_type module : modules){
140  xtd::string sPath(MAX_PATH, 0);
141  forever{
142  dwNeeded = GetModuleFileNameExA(*this, module, &sPath[0],static_cast<DWORD>(sPath.size()));
143  if (dwNeeded < sPath.size()){
144  break;
145  }
146  sPath.resize(dwNeeded);
147  }
148  oRet[sPath] = dynamic_library::pointer(new dynamic_library(module));
149  }
150  return oRet;
151  }
152 
153 
154 
155  private:
156  pid_type _pid;
157  HANDLE _hProcess;
158  operator HANDLE(){
159  if (!_hProcess){
160  _hProcess = xtd::windows::exception::throw_if(OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, _pid), [](HANDLE h){ return NULL == h; });
161  }
162  return _hProcess;
163  }
164  };
165 
166 #else
167  #error "Unsupported system for xtd::process"
168 #endif
169 
170 
171 
172 
173 
174 }
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.
Definition: exception.hpp:22
load and invoke methods in a dynamic library