Remove unused pkg dependancy
[platform/upstream/iotivity.git] / extlibs / tinydtls / debug.h
1 /* debug.h -- debug utilities
2  *
3  * Copyright (C) 2011--2012 Olaf Bergmann <bergmann@tzi.org>
4  *
5  * Permission is hereby granted, free of charge, to any person
6  * obtaining a copy of this software and associated documentation
7  * files (the "Software"), to deal in the Software without
8  * restriction, including without limitation the rights to use, copy,
9  * modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25
26 #ifndef _DTLS_DEBUG_H_
27 #define _DTLS_DEBUG_H_
28
29 #include <stdlib.h>
30
31 #include "dtls_config.h"
32 #include "global.h"
33 #include "session.h"
34
35 #ifdef WITH_CONTIKI
36 # ifndef DEBUG
37 #  define DEBUG DEBUG_PRINT
38 # endif /* DEBUG */
39 #include "net/ip/uip-debug.h"
40
41 #ifdef CONTIKI_TARGET_MBXXX
42 extern char __Stack_Init, _estack;
43
44 INLINE_API void check_stack() {
45   const char *p = &__Stack_Init;
46   while (p < &_estack && *p == 0x38) {
47     p++;
48   }
49
50   PRINTF("Stack: %d bytes used (%d free)\n", &_estack - p, p - &__Stack_Init);
51 }
52 #else /* CONTIKI_TARGET_MBXXX */
53 INLINE_API void check_stack() {
54 }
55 #endif /* CONTIKI_TARGET_MBXXX */
56 #else /* WITH_CONTKI */
57 #define PRINTF(...)
58
59 INLINE_API void check_stack() {
60 }
61 #endif
62
63 /** Pre-defined log levels akin to what is used in \b syslog. */
64 typedef enum { DTLS_LOG_EMERG=0, DTLS_LOG_ALERT, DTLS_LOG_CRIT, DTLS_LOG_WARN, 
65        DTLS_LOG_NOTICE, DTLS_LOG_INFO, DTLS_LOG_DEBUG
66 } log_t;
67
68 /** Returns a zero-terminated string with the name of this library. */
69 const char *dtls_package_name();
70
71 /** Returns a zero-terminated string with the library version. */
72 const char *dtls_package_version();
73
74 #ifndef NDEBUG
75 /** Returns the current log level. */
76 log_t dtls_get_log_level();
77
78 /** Sets the log level to the specified value. */
79 void dtls_set_log_level(log_t level);
80
81 /** 
82  * Writes the given text to \c stdout. The text is output only when \p
83  * level is below or equal to the log level that set by
84  * set_log_level(). */
85 #ifdef HAVE_VPRINTF
86 void dsrv_log(log_t level, char *format, ...);
87 #else
88 #define dsrv_log(level, format, ...) PRINTF(format, ##__VA_ARGS__)
89 #endif
90
91 /** dumps packets in usual hexdump format */
92 void hexdump(const unsigned char *packet, int length);
93
94 /** dump as narrow string of hex digits */
95 void dump(unsigned char *buf, size_t len);
96
97 void dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int extend);
98
99 void dtls_dsrv_log_addr(log_t level, const char *name, const session_t *addr);
100
101 #else /* NDEBUG */
102
103 INLINE_API log_t dtls_get_log_level()
104 {
105   return DTLS_LOG_EMERG;
106 }
107
108 INLINE_API void dtls_set_log_level(log_t level)
109 {}
110
111 INLINE_API void dsrv_log(log_t level, char *format, ...)
112 {}
113
114 INLINE_API void hexdump(const unsigned char *packet, int length)
115 {}
116
117 INLINE_API void dump(unsigned char *buf, size_t len)
118 {}
119
120 INLINE_API void
121 dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int extend)
122 {}
123
124 INLINE_API void
125 dtls_dsrv_log_addr(log_t level, const char *name, const session_t *addr)
126 {}
127
128 #endif /* NDEBUG */
129
130 /* A set of convenience macros for common log levels. */
131 #define dtls_emerg(...) dsrv_log(DTLS_LOG_EMERG, __VA_ARGS__)
132 #define dtls_alert(...) dsrv_log(DTLS_LOG_ALERT, __VA_ARGS__)
133 #define dtls_crit(...) dsrv_log(DTLS_LOG_CRIT, __VA_ARGS__)
134 #define dtls_warn(...) dsrv_log(DTLS_LOG_WARN, __VA_ARGS__)
135 #define dtls_notice(...) dsrv_log(DTLS_LOG_NOTICE, __VA_ARGS__)
136 #define dtls_info(...) dsrv_log(DTLS_LOG_INFO, __VA_ARGS__)
137 #define dtls_debug(...) dsrv_log(DTLS_LOG_DEBUG, __VA_ARGS__)
138 #define dtls_debug_hexdump(name, buf, length) dtls_dsrv_hexdump_log(DTLS_LOG_DEBUG, name, buf, length, 1)
139 #define dtls_debug_dump(name, buf, length) dtls_dsrv_hexdump_log(DTLS_LOG_DEBUG, name, buf, length, 0)
140
141 #endif /* _DTLS_DEBUG_H_ */