s3:libsmb: remove unused 'inbuf' variable
[Samba/gebeck_regimport.git] / lib / ldb / common / ldb_debug.c
blob6aa58ccf71f246de73357208d71a48ab4e50c729
1 /*
2 ldb database library
4 Copyright (C) Andrew Tridgell 2004
6 ** NOTE! The following LGPL license applies to the ldb
7 ** library. This does NOT imply that all of Samba is released
8 ** under the LGPL
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 3 of the License, or (at your option) any later version.
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 * Name: ldb
27 * Component: ldb debug
29 * Description: functions for printing debug messages
31 * Author: Andrew Tridgell
34 #include "ldb_private.h"
37 this allows the user to choose their own debug function
39 int ldb_set_debug(struct ldb_context *ldb,
40 void (*debug)(void *context, enum ldb_debug_level level,
41 const char *fmt, va_list ap),
42 void *context)
44 ldb->debug_ops.debug = debug;
45 ldb->debug_ops.context = context;
46 return 0;
50 debug function for ldb_set_debug_stderr
52 static void ldb_debug_stderr(void *context, enum ldb_debug_level level,
53 const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0);
54 static void ldb_debug_stderr(void *context, enum ldb_debug_level level,
55 const char *fmt, va_list ap)
57 if (level <= LDB_DEBUG_WARNING) {
58 vfprintf(stderr, fmt, ap);
59 fprintf(stderr, "\n");
63 static void ldb_debug_stderr_all(void *context, enum ldb_debug_level level,
64 const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3,0);
65 static void ldb_debug_stderr_all(void *context, enum ldb_debug_level level,
66 const char *fmt, va_list ap)
68 vfprintf(stderr, fmt, ap);
69 fprintf(stderr, "\n");
73 convenience function to setup debug messages on stderr
74 messages of level LDB_DEBUG_WARNING and higher are printed
76 int ldb_set_debug_stderr(struct ldb_context *ldb)
78 return ldb_set_debug(ldb, ldb_debug_stderr, ldb);
82 log a message
84 void ldb_debug(struct ldb_context *ldb, enum ldb_debug_level level, const char *fmt, ...)
86 va_list ap;
87 if (ldb->debug_ops.debug == NULL) {
88 if (ldb->flags & LDB_FLG_ENABLE_TRACING) {
89 ldb_set_debug(ldb, ldb_debug_stderr_all, ldb);
90 } else {
91 ldb_set_debug_stderr(ldb);
94 va_start(ap, fmt);
95 ldb->debug_ops.debug(ldb->debug_ops.context, level, fmt, ap);
96 va_end(ap);
100 add to an accumulated log message
102 void ldb_debug_add(struct ldb_context *ldb, const char *fmt, ...)
104 va_list ap;
105 va_start(ap, fmt);
106 if (ldb->partial_debug == NULL) {
107 ldb->partial_debug = talloc_vasprintf(ldb, fmt, ap);
108 } else {
109 ldb->partial_debug = talloc_vasprintf_append(ldb->partial_debug,
110 fmt, ap);
112 va_end(ap);
116 send the accumulated log message, and free it
118 void ldb_debug_end(struct ldb_context *ldb, enum ldb_debug_level level)
120 ldb_debug(ldb, level, "%s", ldb->partial_debug);
121 talloc_free(ldb->partial_debug);
122 ldb->partial_debug = NULL;
126 log a message, and set the ldb error string to the same message
128 void ldb_debug_set(struct ldb_context *ldb, enum ldb_debug_level level,
129 const char *fmt, ...)
131 va_list ap;
132 char *msg;
133 va_start(ap, fmt);
134 msg = talloc_vasprintf(ldb, fmt, ap);
135 va_end(ap);
136 if (msg != NULL) {
137 ldb_set_errstring(ldb, msg);
138 ldb_debug(ldb, level, "%s", msg);
140 talloc_free(msg);