blob: beccfbf87076bcdfebddcf531a9aa126c54540a7 [file] [log] [blame]
Eric Pouechd6b348f2004-03-23 01:19:54 +00001/*
2 * ReactOS Task Manager
3 *
4 * procpage.c
5 *
6 * Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020020 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Eric Pouechd6b348f2004-03-23 01:19:54 +000021 */
22
23#define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
24#include <windows.h>
25#include <commctrl.h>
26#include <stdlib.h>
Eric Pouechd6b348f2004-03-23 01:19:54 +000027#include <memory.h>
28#include <tchar.h>
29#include <stdio.h>
30#include <winnt.h>
31
32#include "taskmgr.h"
33#include "perfdata.h"
34#include "column.h"
35#include <ctype.h>
36
37HWND hProcessPage; /* Process List Property Page */
38
39HWND hProcessPageListCtrl; /* Process ListCtrl Window */
40HWND hProcessPageHeaderCtrl; /* Process Header Control */
41HWND hProcessPageEndProcessButton; /* Process End Process button */
42HWND hProcessPageShowAllProcessesButton;/* Process Show All Processes checkbox */
43
44static int nProcessPageWidth;
45static int nProcessPageHeight;
46
47static HANDLE hProcessPageEvent = NULL; /* When this event becomes signaled then we refresh the process list */
48
Eric Pouechd6b348f2004-03-23 01:19:54 +000049
Dylan Smithfc888d62009-08-24 00:55:22 -040050static void CommaSeparateNumberString(LPWSTR strNumber, int nMaxCount)
Eric Pouechd6b348f2004-03-23 01:19:54 +000051{
Dylan Smithfc888d62009-08-24 00:55:22 -040052 WCHAR temp[260];
Francois Gougetb72013d2006-03-21 18:32:40 +010053 UINT i, j, k;
Dylan Smithfc888d62009-08-24 00:55:22 -040054 int len = lstrlenW(strNumber);
Eric Pouechd6b348f2004-03-23 01:19:54 +000055
Dylan Smithfc888d62009-08-24 00:55:22 -040056 for (i=0; i < len % 3; i++)
57 temp[i] = strNumber[i];
58 for (k=0,j=i; i < len; i++,j++,k++) {
Francois Gougetb72013d2006-03-21 18:32:40 +010059 if ((k % 3 == 0) && (j > 0))
Dylan Smithfc888d62009-08-24 00:55:22 -040060 temp[j++] = ',';
Francois Gougetb72013d2006-03-21 18:32:40 +010061 temp[j] = strNumber[i];
62 }
Dylan Smithfc888d62009-08-24 00:55:22 -040063 temp[j++] = 0;
64 memcpy(strNumber, temp, min(nMaxCount, j) * sizeof(WCHAR));
Francois Gougetb72013d2006-03-21 18:32:40 +010065}
Eric Pouechd6b348f2004-03-23 01:19:54 +000066
Francois Gougetb72013d2006-03-21 18:32:40 +010067static void ProcessPageShowContextMenu(DWORD dwProcessId)
68{
69 HMENU hMenu;
70 HMENU hSubMenu;
71 HMENU hPriorityMenu;
72 POINT pt;
Dylan Smithfc888d62009-08-24 00:55:22 -040073 SYSTEM_INFO si;
74 HANDLE hProcess;
Francois Gougetb72013d2006-03-21 18:32:40 +010075 DWORD dwProcessPriorityClass;
Dylan Smithfc888d62009-08-24 00:55:22 -040076 WCHAR strDebugger[260];
Francois Gougetb72013d2006-03-21 18:32:40 +010077 DWORD dwDebuggerSize;
Dylan Smithfc888d62009-08-24 00:55:22 -040078 HKEY hKey;
79 UINT Idx;
80 static const WCHAR wszAeDebugRegPath[] = {
81 'S','o','f','t','w','a','r','e','\\',
82 'M','i','c','r','o','s','o','f','t','\\',
83 'W','i','n','d','o','w','s',' ','N','T','\\',
84 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
85 'A','e','D','e','b','u','g',0};
Eric Pouechd6b348f2004-03-23 01:19:54 +000086
Francois Gougetb72013d2006-03-21 18:32:40 +010087 memset(&si, 0, sizeof(SYSTEM_INFO));
Eric Pouechd6b348f2004-03-23 01:19:54 +000088
Francois Gougetb72013d2006-03-21 18:32:40 +010089 GetCursorPos(&pt);
90 GetSystemInfo(&si);
Eric Pouechd6b348f2004-03-23 01:19:54 +000091
Francois Gougetb72013d2006-03-21 18:32:40 +010092 hMenu = LoadMenu(hInst, MAKEINTRESOURCE(IDR_PROCESS_PAGE_CONTEXT));
93 hSubMenu = GetSubMenu(hMenu, 0);
94 hPriorityMenu = GetSubMenu(hSubMenu, 4);
Eric Pouechd6b348f2004-03-23 01:19:54 +000095
Francois Gougetb72013d2006-03-21 18:32:40 +010096 hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, dwProcessId);
97 dwProcessPriorityClass = GetPriorityClass(hProcess);
98 CloseHandle(hProcess);
Eric Pouechd6b348f2004-03-23 01:19:54 +000099
Francois Gougetb72013d2006-03-21 18:32:40 +0100100 if (si.dwNumberOfProcessors < 2)
101 RemoveMenu(hSubMenu, ID_PROCESS_PAGE_SETAFFINITY, MF_BYCOMMAND);
102
103 if (!AreDebugChannelsSupported())
104 RemoveMenu(hSubMenu, ID_PROCESS_PAGE_DEBUGCHANNELS, MF_BYCOMMAND);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000105
Francois Gougetb72013d2006-03-21 18:32:40 +0100106 switch (dwProcessPriorityClass) {
107 case REALTIME_PRIORITY_CLASS:
108 CheckMenuRadioItem(hPriorityMenu, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, ID_PROCESS_PAGE_SETPRIORITY_LOW, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, MF_BYCOMMAND);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000109 break;
Francois Gougetb72013d2006-03-21 18:32:40 +0100110 case HIGH_PRIORITY_CLASS:
111 CheckMenuRadioItem(hPriorityMenu, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, ID_PROCESS_PAGE_SETPRIORITY_LOW, ID_PROCESS_PAGE_SETPRIORITY_HIGH, MF_BYCOMMAND);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000112 break;
Francois Gougetb72013d2006-03-21 18:32:40 +0100113 case ABOVE_NORMAL_PRIORITY_CLASS:
114 CheckMenuRadioItem(hPriorityMenu, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, ID_PROCESS_PAGE_SETPRIORITY_LOW, ID_PROCESS_PAGE_SETPRIORITY_ABOVENORMAL, MF_BYCOMMAND);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000115 break;
Francois Gougetb72013d2006-03-21 18:32:40 +0100116 case NORMAL_PRIORITY_CLASS:
117 CheckMenuRadioItem(hPriorityMenu, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, ID_PROCESS_PAGE_SETPRIORITY_LOW, ID_PROCESS_PAGE_SETPRIORITY_NORMAL, MF_BYCOMMAND);
118 break;
119 case BELOW_NORMAL_PRIORITY_CLASS:
120 CheckMenuRadioItem(hPriorityMenu, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, ID_PROCESS_PAGE_SETPRIORITY_LOW, ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL, MF_BYCOMMAND);
121 break;
122 case IDLE_PRIORITY_CLASS:
123 CheckMenuRadioItem(hPriorityMenu, ID_PROCESS_PAGE_SETPRIORITY_REALTIME, ID_PROCESS_PAGE_SETPRIORITY_LOW, ID_PROCESS_PAGE_SETPRIORITY_LOW, MF_BYCOMMAND);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000124 break;
125 }
126
Dylan Smithfc888d62009-08-24 00:55:22 -0400127 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, wszAeDebugRegPath, 0, KEY_READ, &hKey) == ERROR_SUCCESS)
Francois Gougetb72013d2006-03-21 18:32:40 +0100128 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400129 static const WCHAR wszDebugger[] = {'D','e','b','u','g','g','e','r',0};
Francois Gougetb72013d2006-03-21 18:32:40 +0100130 dwDebuggerSize = 260;
Dylan Smithfc888d62009-08-24 00:55:22 -0400131 if (RegQueryValueExW(hKey, wszDebugger, NULL, NULL, (LPBYTE)strDebugger, &dwDebuggerSize) == ERROR_SUCCESS)
Francois Gougetb72013d2006-03-21 18:32:40 +0100132 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400133 static const WCHAR wszDRWTSN32[] = {'D','R','W','T','S','N','3','2',0};
134 for (Idx=0; Idx < lstrlenW(strDebugger); Idx++)
Francois Gougetb72013d2006-03-21 18:32:40 +0100135 strDebugger[Idx] = toupper(strDebugger[Idx]);
136
Dylan Smithfc888d62009-08-24 00:55:22 -0400137 if (wcsstr(strDebugger, wszDRWTSN32))
Francois Gougetb72013d2006-03-21 18:32:40 +0100138 EnableMenuItem(hSubMenu, ID_PROCESS_PAGE_DEBUG, MF_BYCOMMAND|MF_DISABLED|MF_GRAYED);
139 }
140 else
141 EnableMenuItem(hSubMenu, ID_PROCESS_PAGE_DEBUG, MF_BYCOMMAND|MF_DISABLED|MF_GRAYED);
142
143 RegCloseKey(hKey);
144 } else {
145 EnableMenuItem(hSubMenu, ID_PROCESS_PAGE_DEBUG, MF_BYCOMMAND|MF_DISABLED|MF_GRAYED);
146 }
147 TrackPopupMenu(hSubMenu, TPM_LEFTALIGN|TPM_TOPALIGN|TPM_LEFTBUTTON, pt.x, pt.y, 0, hMainWnd, NULL);
148 DestroyMenu(hMenu);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000149}
150
Gerald Pfeifer2aa11ff2010-05-01 16:48:48 +0200151static void ProcessPageOnNotify(LPARAM lParam)
Eric Pouechd6b348f2004-03-23 01:19:54 +0000152{
Eric Pouechd6b348f2004-03-23 01:19:54 +0000153 LPNMHDR pnmh;
Dylan Smithfc888d62009-08-24 00:55:22 -0400154 NMLVDISPINFOW* pnmdi;
Dylan Smithfc888d62009-08-24 00:55:22 -0400155 LVITEM lvitem;
156 ULONG Index;
157 ULONG ColumnIndex;
Eric Pouechd6b348f2004-03-23 01:19:54 +0000158 IO_COUNTERS iocounters;
Dylan Smithfc888d62009-08-24 00:55:22 -0400159 TIME time;
160 static const WCHAR wszFmtD[] = {'%','d',0};
161 static const WCHAR wszFmt02D[] = {'%','0','2','d',0};
162 static const WCHAR wszUnitK[] = {' ','K',0};
Eric Pouechd6b348f2004-03-23 01:19:54 +0000163
Eric Pouechd6b348f2004-03-23 01:19:54 +0000164 pnmh = (LPNMHDR) lParam;
Dylan Smithfc888d62009-08-24 00:55:22 -0400165 pnmdi = (NMLVDISPINFOW*) lParam;
Eric Pouechd6b348f2004-03-23 01:19:54 +0000166
167 if (pnmh->hwndFrom == hProcessPageListCtrl)
168 {
169 switch (pnmh->code)
170 {
Alexandre Julliardd0ee9f92005-03-02 12:23:20 +0000171#if 0
Eric Pouechd6b348f2004-03-23 01:19:54 +0000172 case LVN_ITEMCHANGED:
173 ProcessPageUpdate();
174 break;
Alexandre Julliardd0ee9f92005-03-02 12:23:20 +0000175#endif
Eric Pouechd6b348f2004-03-23 01:19:54 +0000176
Dylan Smithfc888d62009-08-24 00:55:22 -0400177 case LVN_GETDISPINFOW:
Eric Pouechd6b348f2004-03-23 01:19:54 +0000178
179 if (!(pnmdi->item.mask & LVIF_TEXT))
180 break;
181
182 ColumnIndex = pnmdi->item.iSubItem;
183 Index = pnmdi->item.iItem;
184
185 if (ColumnDataHints[ColumnIndex] == COLUMN_IMAGENAME)
186 PerfDataGetImageName(Index, pnmdi->item.pszText, pnmdi->item.cchTextMax);
187 if (ColumnDataHints[ColumnIndex] == COLUMN_PID)
Dylan Smithfc888d62009-08-24 00:55:22 -0400188 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetProcessId(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000189 if (ColumnDataHints[ColumnIndex] == COLUMN_USERNAME)
190 PerfDataGetUserName(Index, pnmdi->item.pszText, pnmdi->item.cchTextMax);
191 if (ColumnDataHints[ColumnIndex] == COLUMN_SESSIONID)
Dylan Smithfc888d62009-08-24 00:55:22 -0400192 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetSessionId(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000193 if (ColumnDataHints[ColumnIndex] == COLUMN_CPUUSAGE)
Dylan Smithfc888d62009-08-24 00:55:22 -0400194 wsprintfW(pnmdi->item.pszText, wszFmt02D, PerfDataGetCPUUsage(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000195 if (ColumnDataHints[ColumnIndex] == COLUMN_CPUTIME)
196 {
197 DWORD dwHours;
198 DWORD dwMinutes;
199 DWORD dwSeconds;
Alexandre Julliard903e0b92005-09-13 11:26:36 +0000200 ULONGLONG secs;
Dylan Smithfc888d62009-08-24 00:55:22 -0400201 static const WCHAR timefmt[] = {'%','d',':','%','0','2','d',':','%','0','2','d',0};
Eric Pouechd6b348f2004-03-23 01:19:54 +0000202
203 time = PerfDataGetCPUTime(Index);
Alexandre Julliard903e0b92005-09-13 11:26:36 +0000204 secs = time.QuadPart / 10000000;
205 dwHours = secs / 3600;
206 dwMinutes = (secs % 3600) / 60;
207 dwSeconds = (secs % 3600) % 60;
Dylan Smithfc888d62009-08-24 00:55:22 -0400208 wsprintfW(pnmdi->item.pszText, timefmt, dwHours, dwMinutes, dwSeconds);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000209 }
210 if (ColumnDataHints[ColumnIndex] == COLUMN_MEMORYUSAGE)
211 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400212 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetWorkingSetSizeBytes(Index) / 1024);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000213 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
Dylan Smithfc888d62009-08-24 00:55:22 -0400214 wcscat(pnmdi->item.pszText, wszUnitK);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000215 }
216 if (ColumnDataHints[ColumnIndex] == COLUMN_PEAKMEMORYUSAGE)
217 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400218 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetPeakWorkingSetSizeBytes(Index) / 1024);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000219 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
Dylan Smithfc888d62009-08-24 00:55:22 -0400220 wcscat(pnmdi->item.pszText, wszUnitK);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000221 }
222 if (ColumnDataHints[ColumnIndex] == COLUMN_MEMORYUSAGEDELTA)
223 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400224 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetWorkingSetSizeDelta(Index) / 1024);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000225 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
Dylan Smithfc888d62009-08-24 00:55:22 -0400226 wcscat(pnmdi->item.pszText, wszUnitK);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000227 }
228 if (ColumnDataHints[ColumnIndex] == COLUMN_PAGEFAULTS)
229 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400230 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetPageFaultCount(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000231 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
232 }
233 if (ColumnDataHints[ColumnIndex] == COLUMN_PAGEFAULTSDELTA)
234 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400235 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetPageFaultCountDelta(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000236 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
237 }
238 if (ColumnDataHints[ColumnIndex] == COLUMN_VIRTUALMEMORYSIZE)
239 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400240 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetVirtualMemorySizeBytes(Index) / 1024);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000241 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
Dylan Smithfc888d62009-08-24 00:55:22 -0400242 wcscat(pnmdi->item.pszText, wszUnitK);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000243 }
244 if (ColumnDataHints[ColumnIndex] == COLUMN_PAGEDPOOL)
245 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400246 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetPagedPoolUsagePages(Index) / 1024);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000247 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
Dylan Smithfc888d62009-08-24 00:55:22 -0400248 wcscat(pnmdi->item.pszText, wszUnitK);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000249 }
250 if (ColumnDataHints[ColumnIndex] == COLUMN_NONPAGEDPOOL)
251 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400252 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetNonPagedPoolUsagePages(Index) / 1024);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000253 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
Dylan Smithfc888d62009-08-24 00:55:22 -0400254 wcscat(pnmdi->item.pszText, wszUnitK);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000255 }
256 if (ColumnDataHints[ColumnIndex] == COLUMN_BASEPRIORITY)
Dylan Smithfc888d62009-08-24 00:55:22 -0400257 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetBasePriority(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000258 if (ColumnDataHints[ColumnIndex] == COLUMN_HANDLECOUNT)
259 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400260 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetHandleCount(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000261 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
262 }
263 if (ColumnDataHints[ColumnIndex] == COLUMN_THREADCOUNT)
264 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400265 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetThreadCount(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000266 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
267 }
268 if (ColumnDataHints[ColumnIndex] == COLUMN_USEROBJECTS)
269 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400270 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetUSERObjectCount(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000271 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
272 }
273 if (ColumnDataHints[ColumnIndex] == COLUMN_GDIOBJECTS)
274 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400275 wsprintfW(pnmdi->item.pszText, wszFmtD, PerfDataGetGDIObjectCount(Index));
Eric Pouechd6b348f2004-03-23 01:19:54 +0000276 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
277 }
278 if (ColumnDataHints[ColumnIndex] == COLUMN_IOREADS)
279 {
280 PerfDataGetIOCounters(Index, &iocounters);
Dylan Smithfc888d62009-08-24 00:55:22 -0400281 /* wsprintfW(pnmdi->item.pszText, wszFmtD, iocounters.ReadOperationCount); */
282 _ui64tow(iocounters.ReadOperationCount, pnmdi->item.pszText, 10);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000283 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
284 }
285 if (ColumnDataHints[ColumnIndex] == COLUMN_IOWRITES)
286 {
287 PerfDataGetIOCounters(Index, &iocounters);
Dylan Smithfc888d62009-08-24 00:55:22 -0400288 /* wsprintfW(pnmdi->item.pszText, wszFmtD, iocounters.WriteOperationCount); */
289 _ui64tow(iocounters.WriteOperationCount, pnmdi->item.pszText, 10);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000290 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
291 }
292 if (ColumnDataHints[ColumnIndex] == COLUMN_IOOTHER)
293 {
294 PerfDataGetIOCounters(Index, &iocounters);
Dylan Smithfc888d62009-08-24 00:55:22 -0400295 /* wsprintfW(pnmdi->item.pszText, wszFmtD, iocounters.OtherOperationCount); */
296 _ui64tow(iocounters.OtherOperationCount, pnmdi->item.pszText, 10);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000297 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
298 }
299 if (ColumnDataHints[ColumnIndex] == COLUMN_IOREADBYTES)
300 {
301 PerfDataGetIOCounters(Index, &iocounters);
Dylan Smithfc888d62009-08-24 00:55:22 -0400302 /* wsprintfW(pnmdi->item.pszText, wszFmtD, iocounters.ReadTransferCount); */
303 _ui64tow(iocounters.ReadTransferCount, pnmdi->item.pszText, 10);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000304 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
305 }
306 if (ColumnDataHints[ColumnIndex] == COLUMN_IOWRITEBYTES)
307 {
308 PerfDataGetIOCounters(Index, &iocounters);
Dylan Smithfc888d62009-08-24 00:55:22 -0400309 /* wsprintfW(pnmdi->item.pszText, wszFmtD, iocounters.WriteTransferCount); */
310 _ui64tow(iocounters.WriteTransferCount, pnmdi->item.pszText, 10);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000311 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
312 }
313 if (ColumnDataHints[ColumnIndex] == COLUMN_IOOTHERBYTES)
314 {
315 PerfDataGetIOCounters(Index, &iocounters);
Dylan Smithfc888d62009-08-24 00:55:22 -0400316 /* wsprintfW(pnmdi->item.pszText, wszFmtD, iocounters.OtherTransferCount); */
317 _ui64tow(iocounters.OtherTransferCount, pnmdi->item.pszText, 10);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000318 CommaSeparateNumberString(pnmdi->item.pszText, pnmdi->item.cchTextMax);
319 }
320
321 break;
322
323 case NM_RCLICK:
324
325 for (Index=0; Index<(ULONG)ListView_GetItemCount(hProcessPageListCtrl); Index++)
326 {
Eric Pouechd6b348f2004-03-23 01:19:54 +0000327 lvitem.mask = LVIF_STATE;
328 lvitem.stateMask = LVIS_SELECTED;
329 lvitem.iItem = Index;
Francois Gougete2a11682006-10-05 11:02:27 +0200330 lvitem.iSubItem = 0;
Eric Pouechd6b348f2004-03-23 01:19:54 +0000331
Mike McCormack489d6132006-03-17 18:37:41 +0900332 SendMessage(hProcessPageListCtrl, LVM_GETITEM, 0, (LPARAM) &lvitem);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000333
334 if (lvitem.state & LVIS_SELECTED)
335 break;
336 }
337
338 if ((ListView_GetSelectedCount(hProcessPageListCtrl) == 1) &&
339 (PerfDataGetProcessId(Index) != 0))
340 {
341 ProcessPageShowContextMenu(PerfDataGetProcessId(Index));
342 }
343
344 break;
345
346 }
347 }
348 else if (pnmh->hwndFrom == hProcessPageHeaderCtrl)
349 {
350 switch (pnmh->code)
351 {
Dylan Smithfc888d62009-08-24 00:55:22 -0400352 case HDN_ITEMCLICKW:
Eric Pouechd6b348f2004-03-23 01:19:54 +0000353
354 /*
355 * FIXME: Fix the column sorting
356 *
357 *ListView_SortItems(hApplicationPageListCtrl, ApplicationPageCompareFunc, NULL);
358 *bSortAscending = !bSortAscending;
359 */
360
361 break;
362
Dylan Smithfc888d62009-08-24 00:55:22 -0400363 case HDN_ITEMCHANGEDW:
Eric Pouechd6b348f2004-03-23 01:19:54 +0000364
365 UpdateColumnDataHints();
366
367 break;
368
369 case HDN_ENDDRAG:
370
371 UpdateColumnDataHints();
372
373 break;
374
375 }
376 }
377
378}
379
Eric Pouechd6b348f2004-03-23 01:19:54 +0000380void RefreshProcessPage(void)
381{
382 /* Signal the event so that our refresh thread */
383 /* will wake up and refresh the process page */
384 SetEvent(hProcessPageEvent);
385}
386
Francois Gougetb72013d2006-03-21 18:32:40 +0100387static DWORD WINAPI ProcessPageRefreshThread(void *lpParameter)
Eric Pouechd6b348f2004-03-23 01:19:54 +0000388{
389 ULONG OldProcessorUsage = 0;
390 ULONG OldProcessCount = 0;
391
Aurimas Fišeras88a08f92009-06-21 16:04:14 +0300392 WCHAR wszCPU_Usage[255];
393 WCHAR wszProcesses[255];
394
395 LoadStringW(hInst, IDS_STATUS_BAR_CPU_USAGE, wszCPU_Usage, sizeof(wszCPU_Usage)/sizeof(WCHAR));
396 LoadStringW(hInst, IDS_STATUS_BAR_PROCESSES, wszProcesses, sizeof(wszProcesses)/sizeof(WCHAR));
397
Eric Pouechd6b348f2004-03-23 01:19:54 +0000398 /* Create the event */
Thomas Weidenmueller53a0c302005-09-14 10:29:45 +0000399 hProcessPageEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000400
401 /* If we couldn't create the event then exit the thread */
402 if (!hProcessPageEvent)
403 return 0;
404
405 while (1) {
406 DWORD dwWaitVal;
407
408 /* Wait on the event */
409 dwWaitVal = WaitForSingleObject(hProcessPageEvent, INFINITE);
410
411 /* If the wait failed then the event object must have been */
412 /* closed and the task manager is exiting so exit this thread */
413 if (dwWaitVal == WAIT_FAILED)
414 return 0;
415
416 if (dwWaitVal == WAIT_OBJECT_0) {
Aurimas Fišeras88a08f92009-06-21 16:04:14 +0300417 WCHAR text[256];
Eric Pouechd6b348f2004-03-23 01:19:54 +0000418
419 /* Reset our event */
420 ResetEvent(hProcessPageEvent);
421
422 if ((ULONG)SendMessage(hProcessPageListCtrl, LVM_GETITEMCOUNT, 0, 0) != PerfDataGetProcessCount())
423 SendMessage(hProcessPageListCtrl, LVM_SETITEMCOUNT, PerfDataGetProcessCount(), /*LVSICF_NOINVALIDATEALL|*/LVSICF_NOSCROLL);
424
425 if (IsWindowVisible(hProcessPage))
426 InvalidateRect(hProcessPageListCtrl, NULL, FALSE);
427
428 if (OldProcessorUsage != PerfDataGetProcessorUsage()) {
429 OldProcessorUsage = PerfDataGetProcessorUsage();
Aurimas Fišeras88a08f92009-06-21 16:04:14 +0300430 wsprintfW(text, wszCPU_Usage, OldProcessorUsage);
431 SendMessageW(hStatusWnd, SB_SETTEXTW, 1, (LPARAM)text);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000432 }
433 if (OldProcessCount != PerfDataGetProcessCount()) {
434 OldProcessCount = PerfDataGetProcessCount();
Aurimas Fišeras88a08f92009-06-21 16:04:14 +0300435 wsprintfW(text, wszProcesses, OldProcessCount);
436 SendMessageW(hStatusWnd, SB_SETTEXTW, 0, (LPARAM)text);
Eric Pouechd6b348f2004-03-23 01:19:54 +0000437 }
438 }
439 }
440 return 0;
441}
Francois Gougetb72013d2006-03-21 18:32:40 +0100442
443INT_PTR CALLBACK
444ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
445{
446 RECT rc;
447 int nXDifference;
448 int nYDifference;
449 int cx, cy;
450
451 switch (message) {
452 case WM_INITDIALOG:
453 /*
454 * Save the width and height
455 */
456 GetClientRect(hDlg, &rc);
457 nProcessPageWidth = rc.right;
458 nProcessPageHeight = rc.bottom;
459
460 /* Update window position */
461 SetWindowPos(hDlg, NULL, 15, 30, 0, 0, SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER);
462
463 /*
464 * Get handles to the controls
465 */
466 hProcessPageListCtrl = GetDlgItem(hDlg, IDC_PROCESSLIST);
467 hProcessPageHeaderCtrl = ListView_GetHeader(hProcessPageListCtrl);
468 hProcessPageEndProcessButton = GetDlgItem(hDlg, IDC_ENDPROCESS);
469 hProcessPageShowAllProcessesButton = GetDlgItem(hDlg, IDC_SHOWALLPROCESSES);
470
471 /*
Aurimas Fišerasae625242009-06-25 22:43:11 +0300472 * Set the extended window styles for the list control
Francois Gougetb72013d2006-03-21 18:32:40 +0100473 */
Francois Gougetb72013d2006-03-21 18:32:40 +0100474 SendMessage(hProcessPageListCtrl, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, ListView_GetExtendedListViewStyle(hProcessPageListCtrl) | LVS_EX_FULLROWSELECT | LVS_EX_HEADERDRAGDROP);
475
476 AddColumns();
477
478 /*
479 * Subclass the process list control so we can intercept WM_ERASEBKGND
480 */
481 OldProcessListWndProc = (WNDPROC)SetWindowLongPtr(hProcessPageListCtrl, GWLP_WNDPROC, (LONG_PTR)ProcessListWndProc);
482
483 /* Start our refresh thread */
484 CreateThread(NULL, 0, ProcessPageRefreshThread, NULL, 0, NULL);
485
486 return TRUE;
487
488 case WM_DESTROY:
489 /* Close the event handle, this will make the */
490 /* refresh thread exit when the wait fails */
491 CloseHandle(hProcessPageEvent);
492
493 SaveColumnSettings();
494
495 break;
496
497 case WM_COMMAND:
498 /* Handle the button clicks */
499 switch (LOWORD(wParam))
500 {
501 case IDC_ENDPROCESS:
502 ProcessPage_OnEndProcess();
503 }
504 break;
505
506 case WM_SIZE:
507 if (wParam == SIZE_MINIMIZED)
508 return 0;
509
510 cx = LOWORD(lParam);
511 cy = HIWORD(lParam);
512 nXDifference = cx - nProcessPageWidth;
513 nYDifference = cy - nProcessPageHeight;
514 nProcessPageWidth = cx;
515 nProcessPageHeight = cy;
516
517 /* Reposition the application page's controls */
518 GetWindowRect(hProcessPageListCtrl, &rc);
519 cx = (rc.right - rc.left) + nXDifference;
520 cy = (rc.bottom - rc.top) + nYDifference;
521 SetWindowPos(hProcessPageListCtrl, NULL, 0, 0, cx, cy, SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOMOVE|SWP_NOZORDER);
522 InvalidateRect(hProcessPageListCtrl, NULL, TRUE);
523
524 GetClientRect(hProcessPageEndProcessButton, &rc);
525 MapWindowPoints(hProcessPageEndProcessButton, hDlg, (LPPOINT)(&rc), (sizeof(RECT)/sizeof(POINT)) );
526 cx = rc.left + nXDifference;
527 cy = rc.top + nYDifference;
528 SetWindowPos(hProcessPageEndProcessButton, NULL, cx, cy, 0, 0, SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER);
529 InvalidateRect(hProcessPageEndProcessButton, NULL, TRUE);
530
531 GetClientRect(hProcessPageShowAllProcessesButton, &rc);
532 MapWindowPoints(hProcessPageShowAllProcessesButton, hDlg, (LPPOINT)(&rc), (sizeof(RECT)/sizeof(POINT)) );
533 cx = rc.left;
534 cy = rc.top + nYDifference;
535 SetWindowPos(hProcessPageShowAllProcessesButton, NULL, cx, cy, 0, 0, SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER);
536 InvalidateRect(hProcessPageShowAllProcessesButton, NULL, TRUE);
537
538 break;
539
540 case WM_NOTIFY:
Gerald Pfeifer2aa11ff2010-05-01 16:48:48 +0200541 ProcessPageOnNotify(lParam);
Francois Gougetb72013d2006-03-21 18:32:40 +0100542 break;
543 }
544
545 return 0;
546}