-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessList.cpp
159 lines (131 loc) · 3.66 KB
/
ProcessList.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
* Author: M1043833 ( Srinivasan Rajendran )
* Description: This file (ProcessList.c) contains functions to display and count process running in the host.
* It has the function for windows and linux.
*
* */
#include <iostream>
#include <stdio.h>
using namespace std;
#ifdef _WIN32
#include <windows.h>
#include <psapi.h>
#include <tchar.h>
#else
#include <stdio.h>
#include <dirent.h>
#include <algorithm>
#include <string>
#endif
#ifdef _WIN32
/*
Author: M1043833
Function Name: PrintProcessNameAndID(DWORD)
Description:
Function to display to Process Name and Id and it will processID (DWORD) as the argument.
This function uses windows api.
Note: To ensure correct resolution of symbols, add Psapi.lib to TARGETLIBS and compile with -DPSAPI_VERSION=1
*/
void PrintProcessNameAndID(DWORD processID)
{
TCHAR szProcessName[MAX_PATH] = TEXT("<unknown>");
// Get a handle to the process.
HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION |
PROCESS_VM_READ,
FALSE, processID);
// Get the process name.
if (NULL != hProcess)
{
HMODULE hMod;
DWORD cbNeeded;
if (EnumProcessModules(hProcess, &hMod, sizeof(hMod),
&cbNeeded))
{
GetModuleBaseName(hProcess, hMod, szProcessName,
sizeof(szProcessName) / sizeof(TCHAR));
}
}
// Print the process name and identifier.
//_tprintf(TEXT("%s (PID: %u)\n"), szProcessName, processID);
std::cout << "Process name: " << szProcessName << ", PID: " << processID << std::endl;
// Release the handle to the process.
CloseHandle(hProcess);
}
/*
Author: M1043833
Function Name: GetWindowsProcessCount()
Description:
Function will return count of Process running in the host.
This function uses windows api.
Note: To ensure correct resolution of symbols, add Psapi.lib to TARGETLIBS and compile with -DPSAPI_VERSION=1
*/
int GetWindowsProcessCount()
{
// Get the list of process identifiers.
DWORD aProcesses[1024], cbNeeded, cProcesses;
unsigned int i;
if (!EnumProcesses(aProcesses, sizeof(aProcesses), &cbNeeded))
{
return 1;
}
// Calculate how many process identifiers were returned.
cProcesses = cbNeeded / sizeof(DWORD);
// Print the name and process identifier for each process.
for (i = 0; i < cProcesses; i++)
{
if (aProcesses[i] != 0)
{
PrintProcessNameAndID(aProcesses[i]);
}
}
return i;
}
#else
bool is_number(const std::string& s)
{
return !s.empty() && std::find_if(s.begin(),
s.end(), [](unsigned char c) { return !std::isdigit(c); }) == s.end();
}
/*
Author: M1043833
Function Name: GetLinuxProcessCount()
Description:
Function will return count of Process running in the host.
This function uses Linux enviroment.
*/
int GetLinuxProcessCount()
{
struct dirent *de; // Pointer for directory entry
// opendir() returns a pointer of DIR type.
DIR *dr = opendir("/proc/");
if (dr == NULL) // opendir returns NULL if couldn't open directory
{
std::cout << "Could not open current directory" << std::endl;
return 0;
}
int proc_cnt=0;
// Refer http://pubs.opengroup.org/onlinepubs/7990989775/xsh/readdir.html
// for readdir()
while ((de = readdir(dr)) != NULL) {
if(de->d_type == DT_DIR && is_number(std::string(de->d_name))){
//printf("%s\n", de->d_name);
//std::cout << "Could not open current directory" << std::endl;
proc_cnt++;
}
}
std::cout << "Total proc count:" << proc_cnt << std::endl;
closedir(dr);
return proc_cnt;
}
#endif
int main(int argc, char **argv){
int c=0;
#ifdef _WIN32
c = GetWindowsProcessCount();
#else
c = GetLinuxProcessCount();
#endif
std::cout << "\n\n\n\n";
std::cout << "Total Process count: " << c << std::endl;
return 0;
}