2019-05-12 21:17:24 -05:00
// 12 may 2019
# include "uipriv.h"
2019-05-26 14:41:22 -05:00
# include "testhooks.h"
2019-05-12 21:17:24 -05:00
2019-05-13 20:30:18 -05:00
# define internalErrorPrefix "libui internal error"
// TODO add debugging advice?
# define internalErrorSuffix "This likely means there is a bug in libui itself. Contact the libui authors."
void uiprivInternalError ( const char * fmt , . . . )
{
va_list ap ;
char buf [ 256 ] ;
int n ;
va_start ( ap , fmt ) ;
2019-05-31 01:52:51 -05:00
n = uiprivVsnprintf ( buf , 256 , fmt , ap ) ;
2019-05-13 20:30:18 -05:00
va_end ( ap ) ;
if ( n < 0 )
uiprivReportError ( internalErrorPrefix , " internal error string has encoding error " , internalErrorSuffix , true ) ;
if ( n > = 256 )
uiprivReportError ( internalErrorPrefix , " internal error string too long " , internalErrorSuffix , true ) ;
uiprivReportError ( internalErrorPrefix , buf , internalErrorSuffix , true ) ;
}
# define programmerErrorPrefix "libui programmer error"
// TODO add debugging advice?
# define programmerErrorSuffix "This likely means you are using libui incorrectly. Check your source code and try again. If you have received this warning in error, contact the libui authors."
2019-05-26 14:41:22 -05:00
static uiprivTestHookReportProgrammerErrorFunc reportProgrammerErrorTestHook = uiprivReportError ;
void uiprivTestHookReportProgrammerError ( uiprivTestHookReportProgrammerErrorFunc f )
{
if ( f = = NULL )
f = uiprivReportError ;
reportProgrammerErrorTestHook = f ;
}
2019-06-02 01:23:12 -05:00
void uiprivProgrammerError ( const char * fmt , . . . )
2019-05-12 21:17:24 -05:00
{
va_list ap ;
2019-06-02 01:23:12 -05:00
int n ;
2019-05-12 21:17:24 -05:00
char buf [ 256 ] ;
2019-06-02 01:23:12 -05:00
va_start ( ap , fmt ) ;
n = uiprivVsnprintf ( buf , 256 , fmt , ap ) ;
if ( n < 0 )
uiprivInternalError ( " programmer error has encoding error " ) ;
if ( n > = 256 )
uiprivInternalError ( " programmer error string too long (%d) " , n ) ;
2019-05-12 21:17:24 -05:00
va_end ( ap ) ;
2019-05-26 14:41:22 -05:00
( * reportProgrammerErrorTestHook ) ( programmerErrorPrefix , buf , programmerErrorSuffix , false ) ;
2019-05-12 21:17:24 -05:00
}