mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
0913e43bf9
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
295 lines
9.5 KiB
C
295 lines
9.5 KiB
C
/*
|
|
* ReactOS Task Manager
|
|
*
|
|
* dbgchnl.c
|
|
*
|
|
* Copyright (C) 2003 - 2004 Eric Pouech
|
|
* Copyright (C) 2008 Vladimir Pankratov
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <windows.h>
|
|
#include <commctrl.h>
|
|
#include <winnt.h>
|
|
|
|
#include "taskmgr.h"
|
|
#include "perfdata.h"
|
|
#include "column.h"
|
|
#include "wine/debug.h"
|
|
|
|
/* TODO:
|
|
* - the dialog box could be non modal
|
|
* - in that case,
|
|
* + could refresh channels from time to time
|
|
* + set the name of exec (and perhaps its pid) in dialog title
|
|
* - get a better UI (replace the 'x' by real tick boxes in list view)
|
|
* - enhance visual feedback: the list is large, and it's hard to get the
|
|
* right line when clicking on rightmost column (trace for example)
|
|
* - get rid of printfs (error reporting) and use real message boxes
|
|
* - include the column width settings in the full column management scheme
|
|
* - use more global settings (like having a temporary on/off
|
|
* setting for a fixme:s or err:s
|
|
*/
|
|
|
|
static DWORD get_selected_pid(void)
|
|
{
|
|
LVITEMW lvitem;
|
|
ULONG Index, Count;
|
|
DWORD dwProcessId;
|
|
|
|
Count = SendMessageW(hProcessPageListCtrl, LVM_GETITEMCOUNT, 0, 0);
|
|
for (Index = 0; Index < Count; Index++)
|
|
{
|
|
lvitem.mask = LVIF_STATE;
|
|
lvitem.stateMask = LVIS_SELECTED;
|
|
lvitem.iItem = Index;
|
|
lvitem.iSubItem = 0;
|
|
|
|
SendMessageW(hProcessPageListCtrl, LVM_GETITEMW, 0, (LPARAM) &lvitem);
|
|
|
|
if (lvitem.state & LVIS_SELECTED)
|
|
break;
|
|
}
|
|
|
|
Count = SendMessageW(hProcessPageListCtrl, LVM_GETSELECTEDCOUNT, 0, 0);
|
|
dwProcessId = PerfDataGetProcessId(Index);
|
|
if ((Count != 1) || (dwProcessId == 0))
|
|
return 0;
|
|
return dwProcessId;
|
|
}
|
|
|
|
static int list_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_channel* channel, void* user)
|
|
{
|
|
int j;
|
|
WCHAR nameW[sizeof(channel->name)], val[2];
|
|
LVITEMW lvitem;
|
|
int index;
|
|
HWND hChannelLV = user;
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, channel->name, sizeof(channel->name), nameW, ARRAY_SIZE(nameW));
|
|
|
|
lvitem.mask = LVIF_TEXT;
|
|
lvitem.pszText = nameW;
|
|
lvitem.iItem = 0;
|
|
lvitem.iSubItem = 0;
|
|
|
|
index = ListView_InsertItemW(hChannelLV, &lvitem);
|
|
if (index == -1) return 0;
|
|
|
|
val[1] = '\0';
|
|
for (j = 0; j < 4; j++)
|
|
{
|
|
val[0] = (channel->flags & (1 << j)) ? 'x' : ' ';
|
|
ListView_SetItemTextW(hChannelLV, index, j + 1, val);
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
struct cce_user
|
|
{
|
|
const char* name; /* channel to look for */
|
|
unsigned value, mask; /* how to change channel */
|
|
unsigned done; /* number of successful changes */
|
|
unsigned notdone; /* number of unsuccessful changes */
|
|
};
|
|
|
|
/******************************************************************
|
|
* change_channel_CB
|
|
*
|
|
* Callback used for changing a given channel attributes
|
|
*/
|
|
static int change_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_channel *channel, void* pmt)
|
|
{
|
|
struct cce_user* user = (struct cce_user*)pmt;
|
|
|
|
if (!user->name || !strcmp(channel->name, user->name))
|
|
{
|
|
channel->flags = (channel->flags & ~user->mask) | (user->value & user->mask);
|
|
if (WriteProcessMemory(hProcess, addr, channel, sizeof(*channel), NULL))
|
|
user->done++;
|
|
else
|
|
user->notdone++;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
typedef int (*EnumChannelCB)(HANDLE, void*, struct __wine_debug_channel*, void*);
|
|
|
|
/******************************************************************
|
|
* enum_channel
|
|
*
|
|
* Enumerates all known channels on process hProcess through callback
|
|
* ce.
|
|
*/
|
|
static int enum_channel(HANDLE hProcess, EnumChannelCB ce, void* user)
|
|
{
|
|
struct __wine_debug_channel channel;
|
|
PROCESS_BASIC_INFORMATION info;
|
|
int ret = 1;
|
|
void* addr;
|
|
|
|
NtQueryInformationProcess( hProcess, ProcessBasicInformation, &info, sizeof(info), NULL );
|
|
#ifdef _WIN64
|
|
addr = (char *)info.PebBaseAddress + 0x2000;
|
|
#else
|
|
addr = (char *)info.PebBaseAddress + 0x1000;
|
|
#endif
|
|
while (ret && addr && ReadProcessMemory(hProcess, addr, &channel, sizeof(channel), NULL))
|
|
{
|
|
if (!channel.name[0]) break;
|
|
ret = ce(hProcess, addr, &channel, user);
|
|
addr = (struct __wine_debug_channel *)addr + 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void DebugChannels_FillList(HWND hChannelLV)
|
|
{
|
|
HANDLE hProcess;
|
|
|
|
SendMessageW(hChannelLV, LVM_DELETEALLITEMS, 0, 0);
|
|
|
|
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_READ, FALSE, get_selected_pid());
|
|
if (!hProcess) return; /* FIXME messagebox */
|
|
SendMessageW(hChannelLV, WM_SETREDRAW, FALSE, 0);
|
|
enum_channel(hProcess, list_channel_CB, (void*)hChannelLV);
|
|
SendMessageW(hChannelLV, WM_SETREDRAW, TRUE, 0);
|
|
CloseHandle(hProcess);
|
|
}
|
|
|
|
static void DebugChannels_OnCreate(HWND hwndDlg)
|
|
{
|
|
static WCHAR fixmeW[] = {'F','i','x','m','e','\0'};
|
|
static WCHAR errW[] = {'E','r','r','\0'};
|
|
static WCHAR warnW[] = {'W','a','r','n','\0'};
|
|
static WCHAR traceW[] = {'T','r','a','c','e','\0'};
|
|
HWND hLV = GetDlgItem(hwndDlg, IDC_DEBUG_CHANNELS_LIST);
|
|
LVCOLUMNW lvc;
|
|
WCHAR debug_channelW[255];
|
|
|
|
LoadStringW(hInst, IDS_DEBUG_CHANNEL, debug_channelW, ARRAY_SIZE(debug_channelW));
|
|
|
|
lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
|
|
lvc.fmt = LVCFMT_LEFT;
|
|
lvc.pszText = debug_channelW;
|
|
lvc.cx = 100;
|
|
SendMessageW(hLV, LVM_INSERTCOLUMNW, 0, (LPARAM) &lvc);
|
|
|
|
lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
|
|
lvc.fmt = LVCFMT_CENTER;
|
|
lvc.pszText = fixmeW;
|
|
lvc.cx = 55;
|
|
SendMessageW(hLV, LVM_INSERTCOLUMNW, 1, (LPARAM) &lvc);
|
|
|
|
lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
|
|
lvc.fmt = LVCFMT_CENTER;
|
|
lvc.pszText = errW;
|
|
lvc.cx = 55;
|
|
SendMessageW(hLV, LVM_INSERTCOLUMNW, 2, (LPARAM) &lvc);
|
|
|
|
lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
|
|
lvc.fmt = LVCFMT_CENTER;
|
|
lvc.pszText = warnW;
|
|
lvc.cx = 55;
|
|
SendMessageW(hLV, LVM_INSERTCOLUMNW, 3, (LPARAM) &lvc);
|
|
|
|
lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_WIDTH;
|
|
lvc.fmt = LVCFMT_CENTER;
|
|
lvc.pszText = traceW;
|
|
lvc.cx = 55;
|
|
SendMessageW(hLV, LVM_INSERTCOLUMNW, 4, (LPARAM) &lvc);
|
|
|
|
DebugChannels_FillList(hLV);
|
|
}
|
|
|
|
static void DebugChannels_OnNotify(HWND hDlg, LPARAM lParam)
|
|
{
|
|
NMHDR* nmh = (NMHDR*)lParam;
|
|
|
|
switch (nmh->code)
|
|
{
|
|
case NM_CLICK:
|
|
if (nmh->idFrom == IDC_DEBUG_CHANNELS_LIST)
|
|
{
|
|
LVHITTESTINFO lhti;
|
|
HWND hChannelLV;
|
|
HANDLE hProcess;
|
|
NMITEMACTIVATE* nmia = (NMITEMACTIVATE*)lParam;
|
|
|
|
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE,
|
|
FALSE, get_selected_pid());
|
|
if (!hProcess) return; /* FIXME message box */
|
|
lhti.pt = nmia->ptAction;
|
|
hChannelLV = GetDlgItem(hDlg, IDC_DEBUG_CHANNELS_LIST);
|
|
SendMessageW(hChannelLV, LVM_SUBITEMHITTEST, 0, (LPARAM)&lhti);
|
|
if (nmia->iSubItem >= 1 && nmia->iSubItem <= 4)
|
|
{
|
|
WCHAR val[2];
|
|
char name[32];
|
|
unsigned bitmask = 1 << (lhti.iSubItem - 1);
|
|
struct cce_user user;
|
|
|
|
ListView_GetItemTextA(hChannelLV, lhti.iItem, 0, name, ARRAY_SIZE(name));
|
|
ListView_GetItemTextW(hChannelLV, lhti.iItem, lhti.iSubItem, val, ARRAY_SIZE(val));
|
|
user.name = name;
|
|
user.value = (val[0] == 'x') ? 0 : bitmask;
|
|
user.mask = bitmask;
|
|
user.done = user.notdone = 0;
|
|
enum_channel(hProcess, change_channel_CB, &user);
|
|
if (user.done)
|
|
{
|
|
val[0] ^= ('x' ^ ' ');
|
|
ListView_SetItemTextW(hChannelLV, lhti.iItem, lhti.iSubItem, val);
|
|
}
|
|
if (user.notdone)
|
|
printf("Some channel instances weren't correctly set\n");
|
|
}
|
|
CloseHandle(hProcess);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
static INT_PTR CALLBACK DebugChannelsDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
switch (message)
|
|
{
|
|
case WM_INITDIALOG:
|
|
DebugChannels_OnCreate(hDlg);
|
|
return TRUE;
|
|
case WM_COMMAND:
|
|
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
|
|
{
|
|
EndDialog(hDlg, LOWORD(wParam));
|
|
return TRUE;
|
|
}
|
|
break;
|
|
case WM_NOTIFY:
|
|
DebugChannels_OnNotify(hDlg, lParam);
|
|
break;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
void ProcessPage_OnDebugChannels(void)
|
|
{
|
|
DialogBoxW(hInst, (LPCWSTR)IDD_DEBUG_CHANNELS_DIALOG, hMainWnd, DebugChannelsDlgProc);
|
|
}
|