/* * OBEX library with GLib integration * * Copyright (C) 2011 Intel Corporation. All rights reserved. * * 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 2 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, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef __GOBEX_DEBUG_H #define __GOBEX_DEBUG_H #include #include #include #define G_OBEX_DEBUG_NONE 1 #define G_OBEX_DEBUG_ERROR (1 << 1) #define G_OBEX_DEBUG_COMMAND (1 << 2) #define G_OBEX_DEBUG_TRANSFER (1 << 3) #define G_OBEX_DEBUG_HEADER (1 << 4) #define G_OBEX_DEBUG_PACKET (1 << 5) #define G_OBEX_DEBUG_DATA (1 << 6) #define G_OBEX_DEBUG_APPARAM (1 << 7) extern guint gobex_debug; #define g_obex_debug(level, format, ...) \ if (gobex_debug & level) \ g_log("gobex", G_LOG_LEVEL_DEBUG, "%s:%s() " format, __FILE__, \ __func__, ## __VA_ARGS__) static inline void g_obex_dump(guint level, const char *prefix, const void *buf, gsize len) { const guint8 *data = buf; int n = 0; if (!(gobex_debug & level)) return; while (len > 0) { int i, size; printf("%s %04x:", prefix, n); size = len > 16 ? 16 : len; for (i = 0; i < size; i++) printf("%02x%s", data[i], (i + 1) % 8 ? " " : " "); for (; i < 16; i++) printf(" %s", (i + 1) % 8 ? " " : " "); for (i = 0; i < size; i++) printf("%1c", isprint(data[i]) ? data[i] : '.'); printf("\n"); data += size; len -= size; n += size; } } #endif /* __GOBEX_DEBUG_H */