gpt4 book ai didi

c++ - Pantheios 的第一次机会异常(exception)

转载 作者:行者123 更新时间:2023-11-28 03:38:00 28 4
gpt4 key购买 nike

在我尝试使用应用程序验证程序对其进行调试之前,我的应用程序运行良好。之后我开始收到“第一次机会异常...:指定了无效句柄”,问题似乎出在 Pantheios 的“bailout.c”文件中:

hFile = CreateFileA("logging-bailout.txt"
, GENERIC_WRITE
, 0
, NULL
, OPEN_ALWAYS
, 0
, NULL); <--- this is where it crashes, line 442

和消息:

First-chance exception at 0x7769f8cd in myapp.exe: 0xC0000008: An invalid handle was specified.


=======================================
VERIFIER STOP 0000000000000300: pid 0x3814: Invalid handle exception for current stack trace.

00000000C0000008 : Exception code.
00000000111DE950 : Exception record. Use .exr to display it.
00000000111DE460 : Context record. Use .cxr to display it.
0000000000000000 : Not used.


=======================================
This verifier stop is continuable.
After debugging it use `go' to continue.

=======================================

在控制台只记录我在 Pantheios 中遇到的异常之前,我并不太关心。但是,现在当应用程序在第一次使用 Pantheios 进行日志记录时崩溃,我该处理这个问题了,但我不太确定如何处理。

我在设置我的 Pantheios 时遵循了这个指南:http://www.codeproject.com/Articles/27119/Using-Callback-Back-ends-with-the-Pantheios-Loggin

在我记录的每个文件中,源文件中都有以下几行:

#include <pantheios/pantheios.hpp>
#include <pantheios/inserters/boolean.hpp>
#include <pantheios/inserters/integer.hpp>
#include <Shared/logs.h>

logs.h 包含:

#include <pantheios/implicit_link/core.h>
#include <pantheios/implicit_link/fe.simple.h>
#include <pantheios/implicit_link/be.WindowsConsole.h>

在进行任何日志记录之前,我还会调用 pantheios::init();

我使用的是 Visual Studio 2010,并在“附加依赖项”下包含以下库文件:

$(PANTHEIOS_ROOT)\lib\pantheios.1.core.vc10.mt.debug.lib
$(PANTHEIOS_ROOT)\lib\pantheios.1.be.WindowsConsole.vc10.mt.debug.lib
$(PANTHEIOS_ROOT)\lib\pantheios.1.fe.simple.vc10.mt.debug.lib
$(PANTHEIOS_ROOT)\lib\pantheios.1.util.vc10.mt.debug.lib

但是,我所有的日志记录都是这样的:

First-chance exception at 0x750bb9bc in myapp.exe: Microsoft C++ exception: stlsoft::winstl_project::windows_exception at memory location 0x1822bda0..

20120423-104817.497: failed to write message to log file; given message follows: [myapp.Qt.Framework.13424, 23/04/2012 10:48:17.496 a.m.; Debug]: "some logging"

当调用 pantheios::log(pantheios::debug, "some logging");

然后,我所有的日志记录都被写入与项目相同的文件夹中的“bailout”文件。这以前有效,但它是我“待办事项列表”中的一个重要项目(但比其他事情更靠后)。

所以现在我的问题是,我该如何解决这个问题?按照我能找到的每个教程进行操作,但没有成功。为什么我的应用程序在运行 Ms Application Verifier 后决定不再接受它?没有意义。

最佳答案

First chance exceptions仅表示抛出异常。这并不意味着您的程序中有错误,只是调试器向您显示正在抛出异常,因此您有机会在它向上传播到调用链之前检查它。如果异常被异常处理程序捕获(例如用于日志记录),您的应用程序将继续,否则调试器会给您第二次机会异常通知,通知您应用程序将由于未处理的异常而退出。

如果您不想收到第一次异常通知,您可以在调试器中将其关闭。 This link可能有助于了解如何在应用程序验证器中关闭异常处理。

To work around this problem, turn off exceptions testing in Application Verifier. To do this, follow these steps:

1.Start Application Verifier.

2.Under Applications, click the GDI+ program that you want to test.

3.Under Tests, expand Basics.

4.Click to clear the Exceptions check box.

5.Run the GDI+ program that you want to test.

You can also configure the debugging tool to make sure that you do not experience a breakpoint in the debugging tool when an access violation occurs.

另一种方法(在 MSVS 中关闭异常通知)是通过“Debug->Exceptions...”

或者,如果可能,首先确保不会抛出异常。您将需要检查异常的性质(例如,未找到文件)并修复阻止预期操作的条件。

鉴于 Application Verifier 的性质/目的,我建议采用后一种方法:AV 告诉您发生了一些不正确的事情,以前可能没问题,但以后可能会导致问题(取决于环境、情况等) .)

关于c++ - Pantheios 的第一次机会异常(exception),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10272903/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com