diff options
author | Michele Calgaro <[email protected]> | 2019-05-23 13:12:27 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-05-23 13:12:27 +0900 |
commit | d63a113c5c0f9d43d71fc6486244b4382459a07a (patch) | |
tree | bee6740702ab576ad86bb585d95015dc3ffb721c /src/tools/qglobal.cpp | |
parent | 835a7b87e78338bed2795a47c1abefa60935e84d (diff) | |
download | tqt3-d63a113c5c0f9d43d71fc6486244b4382459a07a.tar.gz tqt3-d63a113c5c0f9d43d71fc6486244b4382459a07a.zip |
Added utility functions tqDebug/tqWarning/tqFatal based on TQString parameter.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/tools/qglobal.cpp')
-rw-r--r-- | src/tools/qglobal.cpp | 122 |
1 files changed, 78 insertions, 44 deletions
diff --git a/src/tools/qglobal.cpp b/src/tools/qglobal.cpp index 46d90e1bb..e0a198ca3 100644 --- a/src/tools/qglobal.cpp +++ b/src/tools/qglobal.cpp @@ -465,21 +465,27 @@ static void mac_default_handler( const char *msg ) #endif -void tqDebug( const char *msg, ... ) +void handle_buffer(const char *buf, TQtMsgType msgType) { - char buf[QT_BUFFER_LENGTH]; - strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").ascii() ); - int len = strlen(buf); - va_list ap; - va_start( ap, msg ); // use variable arg list -#if defined(QT_VSNPRINTF) - QT_VSNPRINTF( &buf[len], QT_BUFFER_LENGTH, msg, ap ); + if ( handler ) { + (*handler)( msgType, buf ); + } else if (msgType == TQtFatalMsg) { +#if defined(Q_CC_MWERKS) + mac_default_handler(buf); #else - vsprintf( &buf[len], msg, ap ); + fprintf( stderr, "%s\n", buf ); // add newline +#endif +#if defined(Q_OS_UNIX) && defined(QT_DEBUG) + abort(); // trap; generates core dump +#elif defined(Q_OS_TEMP) && defined(QT_DEBUG) + TQString fstr; + fstr.sprintf( "%s:%s %s %s\n", __FILE__, __LINE__, TQT_VERSION_STR, buf ); + OutputDebugString( fstr.ucs2() ); +#elif defined(_CRT_ERROR) && defined(_DEBUG) + _CrtDbgReport( _CRT_ERROR, __FILE__, __LINE__, TQT_VERSION_STR, buf ); +#else + exit( 1 ); // goodbye cruel world #endif - va_end( ap ); - if ( handler ) { - (*handler)( TQtDebugMsg, buf ); } else { #if defined(Q_CC_MWERKS) mac_default_handler(buf); @@ -492,10 +498,24 @@ void tqDebug( const char *msg, ... ) } } -void tqWarning( const char *msg, ... ) +void tqDebug( const TQString &msg ) { char buf[QT_BUFFER_LENGTH]; - strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").ascii() ); + strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").local8Bit() ); + int len = strlen(buf); + strncpy( &buf[len], msg.local8Bit(), QT_BUFFER_LENGTH - len - 1 ); + len += msg.length(); + if (len >= QT_BUFFER_LENGTH) { + len = QT_BUFFER_LENGTH - 1; + } + buf[len] = '\0'; + handle_buffer(buf, TQtDebugMsg); +} + +void tqDebug( const char *msg, ... ) +{ + char buf[QT_BUFFER_LENGTH]; + strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").local8Bit() ); int len = strlen(buf); va_list ap; va_start( ap, msg ); // use variable arg list @@ -505,24 +525,57 @@ void tqWarning( const char *msg, ... ) vsprintf( &buf[len], msg, ap ); #endif va_end( ap ); - if ( handler ) { - (*handler)( TQtWarningMsg, buf ); - } else { -#if defined(Q_CC_MWERKS) - mac_default_handler(buf); -#elif defined(Q_OS_TEMP) - TQString fstr( buf ); - OutputDebugString( (fstr + "\n").ucs2() ); + handle_buffer(buf, TQtDebugMsg); +} + +void tqWarning( const TQString &msg ) +{ + char buf[QT_BUFFER_LENGTH]; + strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").local8Bit() ); + int len = strlen(buf); + strncpy( &buf[len], msg.local8Bit(), QT_BUFFER_LENGTH - len - 1 ); + len += msg.length(); + if (len >= QT_BUFFER_LENGTH) { + len = QT_BUFFER_LENGTH - 1; + } + buf[len] = '\0'; + handle_buffer(buf, TQtWarningMsg); +} + +void tqWarning( const char *msg, ... ) +{ + char buf[QT_BUFFER_LENGTH]; + strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").local8Bit() ); + int len = strlen(buf); + va_list ap; + va_start( ap, msg ); // use variable arg list +#if defined(QT_VSNPRINTF) + QT_VSNPRINTF( &buf[len], QT_BUFFER_LENGTH, msg, ap ); #else - fprintf( stderr, "%s\n", buf ); // add newline + vsprintf( &buf[len], msg, ap ); #endif + va_end( ap ); + handle_buffer(buf, TQtWarningMsg); +} + +void tqFatal( const TQString &msg ) +{ + char buf[QT_BUFFER_LENGTH]; + strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").local8Bit() ); + int len = strlen(buf); + strncpy( &buf[len], msg.local8Bit(), QT_BUFFER_LENGTH - len - 1 ); + len += msg.length(); + if (len >= QT_BUFFER_LENGTH) { + len = QT_BUFFER_LENGTH - 1; } + buf[len] = '\0'; + handle_buffer(buf, TQtFatalMsg); } void tqFatal( const char *msg, ... ) { char buf[QT_BUFFER_LENGTH]; - strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").ascii() ); + strcpy( buf, TQDateTime::currentDateTime().toString("[yyyy/MM/dd hh:mm:ss.zzz] ").local8Bit() ); int len = strlen(buf); va_list ap; va_start( ap, msg ); // use variable arg list @@ -532,26 +585,7 @@ void tqFatal( const char *msg, ... ) vsprintf( &buf[len], msg, ap ); #endif va_end( ap ); - if ( handler ) { - (*handler)( TQtFatalMsg, buf ); - } else { -#if defined(Q_CC_MWERKS) - mac_default_handler(buf); -#else - fprintf( stderr, "%s\n", buf ); // add newline -#endif -#if defined(Q_OS_UNIX) && defined(QT_DEBUG) - abort(); // trap; generates core dump -#elif defined(Q_OS_TEMP) && defined(QT_DEBUG) - TQString fstr; - fstr.sprintf( "%s:%s %s %s\n", __FILE__, __LINE__, TQT_VERSION_STR, buf ); - OutputDebugString( fstr.ucs2() ); -#elif defined(_CRT_ERROR) && defined(_DEBUG) - _CrtDbgReport( _CRT_ERROR, __FILE__, __LINE__, TQT_VERSION_STR, buf ); -#else - exit( 1 ); // goodbye cruel world -#endif - } + handle_buffer(buf, TQtFatalMsg); } /*! |