我的具体问题: 我需要开发一个需要保持各种应用程序运行的监视应用程序。 我正在使用visual studio和支持.net 4.0的Windows环境 由于我没有创建这些应用程序,并且我无权以任何方式修改它们,所以我只能依赖于windows提供的信息。
过去一周,我一直试图找到如何获得“无响应”属性,如应用程序的任务管理器所示。
我试过了: 1使用系统诊断程序,获取过程信息并解释其中的信息。问题是,当应用程序停止工作(崩溃)时,进程仍在运行,JIT调试器消息弹出并报告应用程序崩溃。在此特定时刻,任务管理器报告应用程序“未响应”,但进程信息(尽管它确实有一个主窗口句柄)将属性Responding设置为“true”。 我找到了很多开源任务管理器(前5名),并且都使用“Responding”属性来确定应用程序是否正在运行。 所以问题是:任务管理器显示没有响应,进程属性响应= True,这个方法来确定应用程序是否没有响应是无效的
2将超时消息发送到主窗口处理程序。 我使用了SendMessageTimeout函数 http://msdn.microsoft.com/en-us/library/windows/desktop/ms644952(v=vs.85).aspx *我使用了SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL,SMTO_NOTIMEOUTIFNOTHUNG和SMTO_ERRORONEXIT 并遇到同样的问题: - 在应用程序崩溃之前:报告正在运行(所有消息都返回1) - 应用程序崩溃后(JIT调试器弹出报告应用程序崩溃并在任务管理器中显示“无响应”)发送到进程窗口处理程序的所有上述消息都返回1。 因此,确定应用程序是否未响应的此方法也是无效的
我很惊讶我找不到与我的问题相关的相关资源。
以下是我尝试过的一些代码:
bool IsResponding(Process process)
{
HandleRef handleRef = new HandleRef(process, process.MainWindowHandle);
int timeout = 2000;
IntPtr lpdwResult;
IntPtr lResult = SendMessageTimeout(
handleRef,
0,
IntPtr.Zero,
IntPtr.Zero,
1,
1000,
out lpdwResult);
lResult = SendMessageTimeout(
handleRef,
0,
IntPtr.Zero,
IntPtr.Zero,
2,
1000,
out lpdwResult);
lResult = SendMessageTimeout(
handleRef,
0,
IntPtr.Zero,
IntPtr.Zero,
0,
1000,
out lpdwResult);
lResult = SendMessageTimeout(
handleRef,
0,
IntPtr.Zero,
IntPtr.Zero,
8,
1000,
out lpdwResult);
lResult = SendMessageTimeout(
handleRef,
0,
IntPtr.Zero,
IntPtr.Zero,
20,
1000,
out lpdwResult);
return lResult != IntPtr.Zero;
}
和测试部分:
processes = Process.GetProcessesByName(Path.GetFileNameWithoutExtension("...testAppLocation.exe"));
bool test = processes[0].Responding;
test = asd.IsResponding(processes[0]);
我在调试模式下运行示例,因此我确信所有消息都返回1作为值,无论实际应用程序是在运行还是崩溃。 并且“过程[0]”针对实际过程进行了测试,并且确实具有过程信息 在运行时。
我没有想法,我仍然没有弄清楚任务管理器使用什么资源来确定应用程序是“无响应”。
在Hans Passant的帮助下提供的第一个解决方案如下:
获取活动窗口(包括挂起)的功能:
internal static class NativeMethods{
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool IsHungAppWindow(IntPtr hWnd);
[DllImport("user32.dll")]
static extern Int32 EnumWindows(EnumWindowsCallback lpEnumFunc, Int32 lParam);
[DllImport("user32.dll")]
public static extern void GetWindowText(IntPtr hWnd, StringBuilder lpString, Int32 nMaxCount);
[DllImport("user32.dll")]
static extern UInt64 GetWindowLongA(IntPtr hWnd, Int32 nIndex);
public static readonly Int32 GWL_STYLE = -16;
public static readonly UInt64 WS_VISIBLE = 0x10000000L;
public static readonly UInt64 WS_BORDER = 0x00800000L;
public static readonly UInt64 DESIRED_WS = WS_BORDER | WS_VISIBLE;
public delegate Boolean EnumWindowsCallback(IntPtr hwnd, Int32 lParam);
public static List<WindowWrapper> GetAllWindows()
{
List<WindowWrapper> windows = new List<WindowWrapper>();
StringBuilder buffer = new StringBuilder(100);
EnumWindows(delegate(IntPtr hwnd, Int32 lParam)
{
if ((GetWindowLongA(hwnd, GWL_STYLE) & DESIRED_WS) == DESIRED_WS)
{
GetWindowText(hwnd, buffer, buffer.Capacity);
WindowWrapper wnd = new WindowWrapper();
wnd.handle = hwnd;
wnd.title = buffer.ToString();
windows.Add(wnd);
}
return true;
}, 0);
return windows;
}
。 。
我放入的是挂机功能:
请注意,对于挂起的每个应用程序(JIT调试器弹出窗口说它不起作用)
您将获得具有相同窗口处理程序标题的2个条目:
应用程序原始窗口处理程序 - 由jit调试程序接管将返回
false(意味着它没有挂起)而另一个条目 - 它被分配了一个新的
IntPtr IsHungAppWindow将返回true
foreach (var wnd in NativeMethods.GetAllWindows())
{
Console.WriteLine(wnd.title + " and status is " + IsHungAppWindow(wnd.Handle));
}
如果有人对此问题有其他特定的,经过测试的解决方案,我将非常感谢。
答案 0 :(得分:1)
你需要对IsHungAppWindow()进行异议。当窗口被显示“无响应”的重影窗口替换时,它返回 true 。
请记住,永远不会意味着应用程序崩溃,而这通常意味着应用程序实际上已挂起。当它试图运行VS2010 +时肯定不在我的pokey笔记本电脑上。或者大多数由程序员编写的Winforms或WPF应用程序尚未掌握线程技术。所以不要随意杀死进程。