Move Samba4-specific file out of common libtevent.
[Samba/ekacnet.git] / source4 / lib / events / tevent_s4.c
blob80267fdd22f071e9442a336eacec66f2712ec5ef
1 /*
2 Unix SMB/CIFS implementation.
3 Copyright (C) Andrew Tridgell 2003
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include "includes.h"
20 #include "tevent.h"
21 #include "tevent_internal.h"
24 this is used to catch debug messages from events
26 static void ev_wrap_debug(void *context, enum ev_debug_level level,
27 const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0);
29 static void ev_wrap_debug(void *context, enum ev_debug_level level,
30 const char *fmt, va_list ap)
32 int samba_level = -1;
33 char *s = NULL;
34 switch (level) {
35 case EV_DEBUG_FATAL:
36 samba_level = 0;
37 break;
38 case EV_DEBUG_ERROR:
39 samba_level = 1;
40 break;
41 case EV_DEBUG_WARNING:
42 samba_level = 2;
43 break;
44 case EV_DEBUG_TRACE:
45 samba_level = 5;
46 break;
49 vasprintf(&s, fmt, ap);
50 if (!s) return;
51 DEBUG(samba_level, ("events: %s\n", s));
52 free(s);
56 create a event_context structure. This must be the first events
57 call, and all subsequent calls pass this event_context as the first
58 element. Event handlers also receive this as their first argument.
60 This samba4 specific call sets the samba4 debug handler.
62 struct event_context *s4_event_context_init(TALLOC_CTX *mem_ctx)
64 struct event_context *ev;
66 ev = event_context_init_byname(mem_ctx, NULL);
67 if (ev) {
68 ev_set_debug(ev, ev_wrap_debug, NULL);
70 return ev;