123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /*
- * Copyright (C) 2010-2011 Mamadou Diop.
- *
- * Contact: Mamadou Diop <diopmamadou(at)doubango.org>
- *
- * This file is part of Open Source Doubango Framework.
- *
- * DOUBANGO 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.
- *
- * DOUBANGO 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 DOUBANGO.
- *
- */
- #include "DDebug.h"
- #include "SipStack.h"
- #include "Common.h"
- #if defined(__ANDROID__) || defined(ANDROID) /* callbacks will fail with jni */
- # include <android/log.h>
- # define ANDROID_DEBUG_TAG "tinyWRAP"
- #endif
- /* Very Important ==> never call functions which could raise debug callbacks into callback functions
- * Callbacks should not be used with Android (JNI).
- */
- enum cb_type {
- cb_info,
- cb_warn,
- cb_error,
- cb_fatal
- };
- int debug_xxx_cb(const void* arg, const char* fmt, enum cb_type type, va_list *app)
- {
- int ret = -1;
- if(!arg) {
- return -1;
- }
- const SipStack* stack = dyn_cast<const SipStack*>((const SipStack*)arg);
- if(stack && stack->getDebugCallback()) {
- char* message = tsk_null;
- tsk_sprintf_2(&message, fmt, app);
- switch(type) {
- case cb_info:
- ret=
- #if defined(__ANDROID__) || defined(ANDROID)
- __android_log_write(ANDROID_LOG_INFO, ANDROID_DEBUG_TAG, message);
- #else
- stack->getDebugCallback()-> OnDebugInfo(message);
- #endif
- break;
- case cb_warn:
- ret=
- #if defined(__ANDROID__) || defined(ANDROID)
- __android_log_write(ANDROID_LOG_WARN, ANDROID_DEBUG_TAG, message);
- #else
- stack->getDebugCallback()-> OnDebugWarn(message);
- #endif
- break;
- case cb_error:
- ret=
- #if defined(__ANDROID__) || defined(ANDROID)
- __android_log_write(ANDROID_LOG_ERROR, ANDROID_DEBUG_TAG, message);
- #else
- stack->getDebugCallback()-> OnDebugError(message);
- #endif
- break;
- case cb_fatal:
- ret=
- #if defined(__ANDROID__) || defined(ANDROID)
- __android_log_write(ANDROID_LOG_FATAL, ANDROID_DEBUG_TAG, message);
- #else
- stack->getDebugCallback()-> OnDebugFatal(message);
- #endif
- break;
- }
- TSK_FREE(message);
- }
- return ret;
- }
- int DDebugCallback::debug_info_cb(const void* arg, const char* fmt, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, fmt);
- ret = debug_xxx_cb(arg, fmt, cb_info, &ap);
- va_end(ap);
- return ret;
- }
- int DDebugCallback::debug_warn_cb(const void* arg, const char* fmt, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, fmt);
- ret = debug_xxx_cb(arg, fmt, cb_warn, &ap);
- va_end(ap);
- return ret;
- }
- int DDebugCallback::debug_error_cb(const void* arg, const char* fmt, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, fmt);
- ret = debug_xxx_cb(arg, fmt, cb_error, &ap);
- va_end(ap);
- return ret;
- }
- int DDebugCallback::debug_fatal_cb(const void* arg, const char* fmt, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, fmt);
- ret = debug_xxx_cb(arg, fmt, cb_fatal, &ap);
- va_end(ap);
- return ret;
- }
|