2008-06-14 19:23:31 +04:00
/*
Unix SMB / CIFS implementation .
Copyright ( C ) Andrew Tridgell 2003
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# include "includes.h"
2009-03-12 12:05:47 +03:00
# define TEVENT_DEPRECATED 1
2009-01-02 17:34:37 +03:00
# include "lib/events/events.h"
2008-06-14 19:23:31 +04:00
2008-06-14 21:00:53 +04:00
/*
this is used to catch debug messages from events
*/
2009-01-02 17:34:37 +03:00
static void ev_wrap_debug ( void * context , enum tevent_debug_level level ,
2008-06-14 21:00:53 +04:00
const char * fmt , va_list ap ) PRINTF_ATTRIBUTE ( 3 , 0 ) ;
2009-01-02 17:34:37 +03:00
static void ev_wrap_debug ( void * context , enum tevent_debug_level level ,
2008-06-14 21:00:53 +04:00
const char * fmt , va_list ap )
{
int samba_level = - 1 ;
char * s = NULL ;
switch ( level ) {
2009-01-02 17:34:37 +03:00
case TEVENT_DEBUG_FATAL :
2008-06-14 21:00:53 +04:00
samba_level = 0 ;
break ;
2009-01-02 17:34:37 +03:00
case TEVENT_DEBUG_ERROR :
2008-06-14 21:00:53 +04:00
samba_level = 1 ;
break ;
2009-01-02 17:34:37 +03:00
case TEVENT_DEBUG_WARNING :
2008-06-14 21:00:53 +04:00
samba_level = 2 ;
break ;
2009-01-02 17:34:37 +03:00
case TEVENT_DEBUG_TRACE :
2009-05-24 10:48:49 +04:00
samba_level = 50 ;
2008-06-14 21:00:53 +04:00
break ;
} ;
2012-08-09 12:34:48 +04:00
if ( CHECK_DEBUGLVL ( samba_level ) ) {
vasprintf ( & s , fmt , ap ) ;
if ( ! s ) return ;
DEBUG ( samba_level , ( " tevent: %s " , s ) ) ;
free ( s ) ;
}
2008-06-14 21:00:53 +04:00
}
/*
create a event_context structure . This must be the first events
call , and all subsequent calls pass this event_context as the first
element . Event handlers also receive this as their first argument .
This samba4 specific call sets the samba4 debug handler .
*/
2008-12-29 22:24:57 +03:00
struct tevent_context * s4_event_context_init ( TALLOC_CTX * mem_ctx )
2008-06-14 21:00:53 +04:00
{
2008-12-29 22:24:57 +03:00
struct tevent_context * ev ;
2008-06-14 21:00:53 +04:00
2009-01-02 17:34:37 +03:00
ev = tevent_context_init_byname ( mem_ctx , NULL ) ;
2008-06-14 21:00:53 +04:00
if ( ev ) {
2009-01-02 17:34:37 +03:00
tevent_set_debug ( ev , ev_wrap_debug , NULL ) ;
2009-03-12 12:05:47 +03:00
tevent_loop_allow_nesting ( ev ) ;
2008-06-14 21:00:53 +04:00
}
return ev ;
}