git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38251
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- Overloaded Connect() and SetLocal() methods for binding to local address/port.
- All GetCount() methods now return size_t and not int
- Albanian translation added (Besnik Bleta)
- Overloaded Connect() and SetLocal() methods for binding to local address/port.
- All GetCount() methods now return size_t and not int
- Albanian translation added (Besnik Bleta)
+- Assert messages now show the function in which assert failed
+- wxApp::OnAssertFailure() should now be used instead the old wxApp::OnAssert()
#endif /* !WXDEBUG */
#endif /* __WXDEBUG__ */
#endif /* !WXDEBUG */
#endif /* __WXDEBUG__ */
+/* TODO: add more compilers supporting __FUNCTION__ */
+#if defined(__GNUC__) || (defined(_MSC_VER) && _MSC_VER >= 1300)
+ #define __TFUNC__ wxAPPLY_T(__FUNCTION__)
+#else /* old compilers without __FUNCTION__ support */
+ #define __TFUNC__ _T("")
+#endif
+
/* ---------------------------------------------------------------------------- */
/* Debugging macros */
/* */
/* ---------------------------------------------------------------------------- */
/* Debugging macros */
/* */
Parameters:
szFile and nLine - file name and line number of the ASSERT
Parameters:
szFile and nLine - file name and line number of the ASSERT
+ szFunc - function name of the ASSERT, may be empty
szCond - text form of the condition which failed
szMsg - optional message explaining the reason
*/
extern void WXDLLIMPEXP_BASE wxOnAssert(const wxChar *szFile,
int nLine,
szCond - text form of the condition which failed
szMsg - optional message explaining the reason
*/
extern void WXDLLIMPEXP_BASE wxOnAssert(const wxChar *szFile,
int nLine,
const wxChar *szCond,
const wxChar *szMsg = NULL);
const wxChar *szCond,
const wxChar *szMsg = NULL);
#define wxASSERT(cond) wxASSERT_MSG(cond, NULL)
/* assert with additional message explaining it's cause */
#define wxASSERT(cond) wxASSERT_MSG(cond, NULL)
/* assert with additional message explaining it's cause */
- #define wxASSERT_MSG(cond, msg) \
- if (cond) ; else wxOnAssert(__TFILE__, __LINE__, _T(#cond), msg)
+ #define wxASSERT_MSG(cond, msg) \
+ if ( cond ) \
+ ; \
+ else \
+ wxOnAssert(__TFILE__, __LINE__, __TFUNC__, _T(#cond), msg)
/* special form of assert: always triggers it (in debug mode) */
#define wxFAIL wxFAIL_MSG(NULL)
/* FAIL with some message */
/* special form of assert: always triggers it (in debug mode) */
#define wxFAIL wxFAIL_MSG(NULL)
/* FAIL with some message */
- #define wxFAIL_MSG(msg) wxOnAssert(__TFILE__, __LINE__, wxT("wxAssertFailure"), msg)
+ #define wxFAIL_MSG(msg) \
+ wxOnAssert(__TFILE__, __LINE__, __TFUNC__, _T("wxAssertFailure"), msg)
/* an assert helper used to avoid warning when testing constant expressions, */
/* i.e. wxASSERT( sizeof(int) == 4 ) can generate a compiler warning about */
/* an assert helper used to avoid warning when testing constant expressions, */
/* i.e. wxASSERT( sizeof(int) == 4 ) can generate a compiler warning about */
/* nothing to do in release modes (hopefully at this moment there are */
/* no more bugs ;-) */
#define wxASSERT(cond)
/* nothing to do in release modes (hopefully at this moment there are */
/* no more bugs ;-) */
#define wxASSERT(cond)
- #define wxASSERT_MSG(x, m)
+ #define wxASSERT_MSG(cond, msg)
#define wxFAIL
#define wxFAIL_MSG(msg)
#endif /* __WXDEBUG__ */
#define wxFAIL
#define wxFAIL_MSG(msg)
#endif /* __WXDEBUG__ */
*/
/* check that expression is true, "return" if not (also FAILs in debug mode) */
*/
/* check that expression is true, "return" if not (also FAILs in debug mode) */
-#define wxCHECK(x, rc) wxCHECK_MSG(x, rc, NULL)
+#define wxCHECK(cond, rc) wxCHECK_MSG(cond, rc, NULL)
/* as wxCHECK but with a message explaining why we fail */
/* as wxCHECK but with a message explaining why we fail */
-#define wxCHECK_MSG(x, rc, msg) wxCHECK2_MSG(x, return rc, msg)
+#define wxCHECK_MSG(cond, rc, msg) wxCHECK2_MSG(cond, return rc, msg)
/* check that expression is true, perform op if not */
/* check that expression is true, perform op if not */
-#define wxCHECK2(x, op) wxCHECK2_MSG(x, op, NULL)
+#define wxCHECK2(cond, op) wxCHECK2_MSG(cond, op, NULL)
/* as wxCHECK2 but with a message explaining why we fail */
/* as wxCHECK2 but with a message explaining why we fail */
-#define wxCHECK2_MSG(x, op, msg) if (x) ; else do { wxFAIL_MSG(msg); op; } while (0)
+#define wxCHECK2_MSG(cond, op, msg) \
+ if ( cond ) \
+ ; \
+ else \
+ do \
+ { \
+ wxOnAssert(__TFILE__, __LINE__, __TFUNC__, _T(#cond), msg); \
+ op; \
+ } while ( 0 )
/* special form of wxCHECK2: as wxCHECK, but for use in void functions */
/* */
/* special form of wxCHECK2: as wxCHECK, but for use in void functions */
/* */
/* there is no other way to tell the caller what exactly went wrong */
/* from the void function (of course, the function shouldn't be void */
/* to begin with...) */
/* there is no other way to tell the caller what exactly went wrong */
/* from the void function (of course, the function shouldn't be void */
/* to begin with...) */
-#define wxCHECK_RET(x, msg) wxCHECK2_MSG(x, return, msg)
+#define wxCHECK_RET(cond, msg) wxCHECK2_MSG(cond, return, msg)
/* ---------------------------------------------------------------------------- */
/* Compile time asserts */
/* ---------------------------------------------------------------------------- */
/* Compile time asserts */
static
void ShowAssertDialog(const wxChar *szFile,
int nLine,
static
void ShowAssertDialog(const wxChar *szFile,
int nLine,
const wxChar *szCond,
const wxChar *szMsg,
wxAppTraits *traits = NULL);
const wxChar *szCond,
const wxChar *szMsg,
wxAppTraits *traits = NULL);
+void wxAppConsole::OnAssertFailure(const wxChar *file,
+ int line,
+ const wxChar *func,
+ const wxChar *cond,
+ const wxChar *msg)
+{
+ ShowAssertDialog(file, line, func, cond, msg, GetTraits());
+}
+
void wxAppConsole::OnAssert(const wxChar *file,
int line,
const wxChar *cond,
const wxChar *msg)
{
void wxAppConsole::OnAssert(const wxChar *file,
int line,
const wxChar *cond,
const wxChar *msg)
{
- ShowAssertDialog(file, line, cond, msg, GetTraits());
+ OnAssertFailure(file, line, _T(""), cond, msg);
// this function is called when an assert fails
void wxOnAssert(const wxChar *szFile,
int nLine,
// this function is called when an assert fails
void wxOnAssert(const wxChar *szFile,
int nLine,
const wxChar *szCond,
const wxChar *szMsg)
{
const wxChar *szCond,
const wxChar *szMsg)
{
{
// by default, show the assert dialog box -- we can't customize this
// behaviour
{
// by default, show the assert dialog box -- we can't customize this
// behaviour
- ShowAssertDialog(szFile, nLine, szCond, szMsg);
+ ShowAssertDialog(szFile, nLine, szFunc, szCond, szMsg);
}
else
{
// let the app process it as it wants
}
else
{
// let the app process it as it wants
- wxTheApp->OnAssert(szFile, nLine, szCond, szMsg);
+ wxTheApp->OnAssertFailure(szFile, nLine, szFunc, szCond, szMsg);
static
void ShowAssertDialog(const wxChar *szFile,
int nLine,
static
void ShowAssertDialog(const wxChar *szFile,
int nLine,
const wxChar *szCond,
const wxChar *szMsg,
wxAppTraits *traits)
const wxChar *szCond,
const wxChar *szMsg,
wxAppTraits *traits)
// the failed assert
msg.Printf(wxT("%s(%d): assert \"%s\" failed"), szFile, nLine, szCond);
// the failed assert
msg.Printf(wxT("%s(%d): assert \"%s\" failed"), szFile, nLine, szCond);
+ // add the function name, if any
+ if ( szFunc && *szFunc )
+ msg << _T(" in ") << szFunc << _T("()");
+
+ // and the message itself
if ( szMsg )
{
msg << _T(": ") << szMsg;
if ( szMsg )
{
msg << _T(": ") << szMsg;