2008-06-14 19:23:31 +04:00
/*
Unix SMB / CIFS implementation .
Copyright ( C ) Andrew Tridgell 2005
Copyright ( C ) Jelmer Vernooij 2005
2009-02-16 10:52:06 +03:00
* * NOTE ! The following LGPL license applies to the tevent
* * library . This does NOT imply that all of Samba is released
* * under the LGPL
2008-06-14 19:23:31 +04:00
2009-02-16 10:52:06 +03:00
This library is free software ; you can redistribute it and / or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation ; either
version 3 of the License , or ( at your option ) any later version .
This library is distributed in the hope that it will be useful ,
2008-06-14 19:23:31 +04:00
but WITHOUT ANY WARRANTY ; without even the implied warranty of
2009-02-16 10:52:06 +03:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Lesser General Public License for more details .
2008-06-14 19:23:31 +04:00
2009-02-16 10:52:06 +03:00
You should have received a copy of the GNU Lesser General Public
License along with this library ; if not , see < http : //www.gnu.org/licenses/>.
2008-06-14 19:23:31 +04:00
*/
# include "replace.h"
2008-12-16 21:57:09 +03:00
# include "tevent.h"
# include "tevent_internal.h"
2008-06-14 19:23:31 +04:00
/********************************************************************
* Debug wrapper functions , modeled ( with lot ' s of code copied as is )
* after the ev debug wrapper functions
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
this allows the user to choose their own debug function
*/
2009-01-02 15:39:56 +03:00
int tevent_set_debug ( struct tevent_context * ev ,
void ( * debug ) ( void * context ,
enum tevent_debug_level level ,
const char * fmt ,
va_list ap ) PRINTF_ATTRIBUTE ( 3 , 0 ) ,
void * context )
2008-06-14 19:23:31 +04:00
{
ev - > debug_ops . debug = debug ;
ev - > debug_ops . context = context ;
return 0 ;
}
/*
debug function for ev_set_debug_stderr
*/
2009-01-02 15:39:56 +03:00
static void tevent_debug_stderr ( void * private_data ,
enum tevent_debug_level level ,
const char * fmt ,
va_list ap ) PRINTF_ATTRIBUTE ( 3 , 0 ) ;
static void tevent_debug_stderr ( void * private_data ,
enum tevent_debug_level level ,
const char * fmt , va_list ap )
2008-06-14 19:23:31 +04:00
{
2009-01-02 15:39:56 +03:00
if ( level < = TEVENT_DEBUG_WARNING ) {
2008-06-14 19:23:31 +04:00
vfprintf ( stderr , fmt , ap ) ;
}
}
/*
convenience function to setup debug messages on stderr
2009-01-02 15:39:56 +03:00
messages of level TEVENT_DEBUG_WARNING and higher are printed
2008-06-14 19:23:31 +04:00
*/
2009-01-02 15:39:56 +03:00
int tevent_set_debug_stderr ( struct tevent_context * ev )
2008-06-14 19:23:31 +04:00
{
2009-01-02 15:39:56 +03:00
return tevent_set_debug ( ev , tevent_debug_stderr , ev ) ;
2008-06-14 19:23:31 +04:00
}
/*
2008-06-14 21:00:53 +04:00
* log a message
*
* The default debug action is to ignore debugging messages .
* This is the most appropriate action for a library .
* Applications using the library must decide where to
* redirect debugging messages
2008-06-14 19:23:31 +04:00
*/
2009-01-02 15:39:56 +03:00
void tevent_debug ( struct tevent_context * ev , enum tevent_debug_level level ,
const char * fmt , . . . )
2008-06-14 19:23:31 +04:00
{
va_list ap ;
2009-01-05 21:41:03 +03:00
if ( ! ev ) {
return ;
}
2008-06-14 19:23:31 +04:00
if ( ev - > debug_ops . debug = = NULL ) {
2008-06-14 21:00:53 +04:00
return ;
2008-06-14 19:23:31 +04:00
}
va_start ( ap , fmt ) ;
ev - > debug_ops . debug ( ev - > debug_ops . context , level , fmt , ap ) ;
va_end ( ap ) ;
}