mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
b540783f2e
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3855 21ef857c-d57f-4fe0-8362-d861dc6d29cd
169 lines
6.4 KiB
C
169 lines
6.4 KiB
C
/*
|
|
* Process Hacker Extended Tools -
|
|
* memory list information
|
|
*
|
|
* Copyright (C) 2010 wj32
|
|
*
|
|
* This file is part of Process Hacker.
|
|
*
|
|
* Process Hacker is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Process Hacker is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "exttools.h"
|
|
#include "resource.h"
|
|
|
|
#define MSG_UPDATE (WM_APP + 1)
|
|
|
|
INT_PTR CALLBACK EtpMemoryListsDlgProc(
|
|
__in HWND hwndDlg,
|
|
__in UINT uMsg,
|
|
__in WPARAM wParam,
|
|
__in LPARAM lParam
|
|
);
|
|
|
|
HWND EtpMemoryListsWindowHandle = NULL;
|
|
static PH_CALLBACK_REGISTRATION ProcessesUpdatedRegistration;
|
|
|
|
VOID EtShowMemoryListsDialog()
|
|
{
|
|
if (!EtpMemoryListsWindowHandle)
|
|
{
|
|
EtpMemoryListsWindowHandle = CreateDialog(
|
|
PluginInstance->DllBase,
|
|
MAKEINTRESOURCE(IDD_MEMLISTS),
|
|
PhMainWndHandle,
|
|
EtpMemoryListsDlgProc
|
|
);
|
|
}
|
|
|
|
if (!IsWindowVisible(EtpMemoryListsWindowHandle))
|
|
ShowWindow(EtpMemoryListsWindowHandle, SW_SHOW);
|
|
else if (IsIconic(EtpMemoryListsWindowHandle))
|
|
ShowWindow(EtpMemoryListsWindowHandle, SW_RESTORE);
|
|
else
|
|
SetForegroundWindow(EtpMemoryListsWindowHandle);
|
|
}
|
|
|
|
VOID NTAPI EtpProcessesUpdatedCallback(
|
|
__in_opt PVOID Parameter,
|
|
__in_opt PVOID Context
|
|
)
|
|
{
|
|
PostMessage(EtpMemoryListsWindowHandle, MSG_UPDATE, 0, 0);
|
|
}
|
|
|
|
static VOID EtpUpdateMemoryListInfo(
|
|
__in HWND hwndDlg
|
|
)
|
|
{
|
|
SYSTEM_MEMORY_LIST_INFORMATION memoryListInfo;
|
|
|
|
if (NT_SUCCESS(NtQuerySystemInformation(
|
|
SystemMemoryListInformation,
|
|
&memoryListInfo,
|
|
sizeof(SYSTEM_MEMORY_LIST_INFORMATION),
|
|
NULL
|
|
)))
|
|
{
|
|
ULONG_PTR standbyPageListTotal;
|
|
ULONG i;
|
|
|
|
standbyPageListTotal = 0;
|
|
|
|
for (i = 0; i < 8; i++)
|
|
standbyPageListTotal += memoryListInfo.StandbyPageListTotals[i];
|
|
|
|
SetDlgItemText(hwndDlg, IDC_ZZEROED_V, PhaFormatSize((ULONG64)memoryListInfo.ZeroedPageListTotal * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZFREE_V, PhaFormatSize((ULONG64)memoryListInfo.FreePageListTotal * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZMODIFIED_V, PhaFormatSize((ULONG64)memoryListInfo.ModifiedPageListTotal * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZMODIFIEDNOWRITE_V, PhaFormatSize((ULONG64)memoryListInfo.ModifiedNoWritePageListTotal * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZBAD_V, PhaFormatSize((ULONG64)memoryListInfo.BadPageListTotal * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY_V, PhaFormatSize((ULONG64)standbyPageListTotal * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY0_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[0] * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY1_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[1] * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY2_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[2] * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY3_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[3] * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY4_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[4] * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY5_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[5] * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY6_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[6] * PAGE_SIZE, -1)->Buffer);
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY7_V, PhaFormatSize((ULONG64)memoryListInfo.StandbyPageListTotals[7] * PAGE_SIZE, -1)->Buffer);
|
|
}
|
|
else
|
|
{
|
|
SetDlgItemText(hwndDlg, IDC_ZZEROED_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZFREE_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZMODIFIED_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZMODIFIEDNOWRITE_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZBAD_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY0_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY1_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY2_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY3_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY4_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY5_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY6_V, L"Unknown");
|
|
SetDlgItemText(hwndDlg, IDC_ZSTANDBY7_V, L"Unknown");
|
|
}
|
|
}
|
|
|
|
INT_PTR CALLBACK EtpMemoryListsDlgProc(
|
|
__in HWND hwndDlg,
|
|
__in UINT uMsg,
|
|
__in WPARAM wParam,
|
|
__in LPARAM lParam
|
|
)
|
|
{
|
|
switch (uMsg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
{
|
|
PhRegisterCallback(&PhProcessesUpdatedEvent, EtpProcessesUpdatedCallback, NULL, &ProcessesUpdatedRegistration);
|
|
EtpUpdateMemoryListInfo(hwndDlg);
|
|
|
|
PhLoadWindowPlacementFromSetting(SETTING_NAME_MEMORY_LISTS_WINDOW_POSITION, NULL, hwndDlg);
|
|
PhRegisterDialog(hwndDlg);
|
|
}
|
|
break;
|
|
case WM_DESTROY:
|
|
{
|
|
PhUnregisterDialog(hwndDlg);
|
|
PhSaveWindowPlacementToSetting(SETTING_NAME_MEMORY_LISTS_WINDOW_POSITION, NULL, hwndDlg);
|
|
|
|
PhUnregisterCallback(&PhProcessesUpdatedEvent, &ProcessesUpdatedRegistration);
|
|
|
|
EtpMemoryListsWindowHandle = NULL;
|
|
}
|
|
break;
|
|
case WM_COMMAND:
|
|
{
|
|
switch (LOWORD(wParam))
|
|
{
|
|
case IDCANCEL:
|
|
case IDOK:
|
|
DestroyWindow(hwndDlg);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case MSG_UPDATE:
|
|
{
|
|
EtpUpdateMemoryListInfo(hwndDlg);
|
|
}
|
|
break;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|