9772f992bc76d01dc52f2ce854335c07a8f2f13b
[platform/upstream/iotivity.git] / resource / csdk / connectivity / common / src / logger.c
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 // Defining _POSIX_C_SOURCE macro with 199309L (or greater) as value
22 // causes header files to expose definitions
23 // corresponding to the POSIX.1b, Real-time extensions
24 // (IEEE Std 1003.1b-1993) specification
25 //
26 // For this specific file, see use of clock_gettime,
27 // Refer to http://pubs.opengroup.org/stage7tc1/functions/clock_gettime.html
28 // and to http://man7.org/linux/man-pages/man2/clock_gettime.2.html
29 #ifndef _POSIX_C_SOURCE
30 #define _POSIX_C_SOURCE 200809L
31 #endif
32
33 // Platform check can be extended to check and/or define more, or could be
34 // moved into a config.h
35 #if !defined(__ARDUINO__) && !defined(ARDUINO)
36 #define HAVE_UNISTD_H 1
37 #endif
38
39 // Pull in _POSIX_TIMERS feature test macro to check for
40 // clock_gettime() support.
41 #ifdef HAVE_UNISTD_H
42 #include <unistd.h>
43
44 // if we have unistd.h, we're a Unix system
45 #include <time.h>
46 #include <sys/time.h>
47 #endif
48
49 #include "logger.h"
50 #include "string.h"
51 #include "oic_logger.h"
52 #include "oic_console_logger.h"
53
54 #ifndef __TIZEN__
55 static oic_log_ctx_t *logCtx = 0;
56
57 static oic_log_level LEVEL_XTABLE[] =
58 { OIC_LOG_DEBUG, OIC_LOG_INFO, OIC_LOG_WARNING, OIC_LOG_ERROR, OIC_LOG_FATAL };
59
60 #endif
61
62 static const uint16_t LINE_BUFFER_SIZE = (16 * 2) + 16 +
63         1; // Show 16 bytes, 2 chars/byte, spaces between bytes, null termination
64
65 // Convert LogLevel to platform-specific severity level.  Store in PROGMEM on Arduino
66 #ifdef __ANDROID__
67 #ifdef ADB_SHELL
68 static const char *LEVEL[] =
69 {   "DEBUG", "INFO", "WARNING", "ERROR", "FATAL"};
70
71 #else
72 static android_LogPriority LEVEL[] =
73 {   ANDROID_LOG_DEBUG, ANDROID_LOG_INFO, ANDROID_LOG_WARN, ANDROID_LOG_ERROR, ANDROID_LOG_FATAL};
74 #endif
75 #elif defined __linux__
76 static const char *LEVEL[] __attribute__ ((unused)) =
77 {   "DEBUG", "INFO", "WARNING", "ERROR", "FATAL"};
78 #elif defined ARDUINO
79 #include <stdarg.h>
80 #include "Arduino.h"
81
82 PROGMEM const char level0[] = "DEBUG";
83 PROGMEM const char level1[] = "INFO";
84 PROGMEM const char level2[] = "WARNING";
85 PROGMEM const char level3[] = "ERROR";
86 PROGMEM const char level4[] = "FATAL";
87
88 PROGMEM const char *const LEVEL[] =
89 {   level0, level1, level2, level3, level4};
90
91 static void OICLogString(LogLevel level, PROGMEM const char *tag, PROGMEM const char *logStr);
92 #ifdef ARDUINO_ARCH_AVR
93 //Mega2560 and other 8-bit AVR microcontrollers
94 #define GET_PROGMEM_BUFFER(buffer, addr) { strcpy_P(buffer, (char*)pgm_read_word(addr));}
95 #elif defined ARDUINO_ARCH_SAM
96 //Arduino Due and other 32-bit ARM micro-controllers
97 #define GET_PROGMEM_BUFFER(buffer, addr) { strcpy_P(buffer, (char*)pgm_read_dword(addr));}
98 #else
99 #define GET_PROGMEM_BUFFER(buffer, addr) { buffer[0] = '\0';}
100 #endif
101 #endif // __ANDROID__
102
103 #ifndef ARDUINO
104 #ifndef __TIZEN__
105 void OICLogConfig(oic_log_ctx_t *ctx)
106 {
107     logCtx = ctx;
108 }
109
110 void OICLogInit()
111 {
112
113 }
114
115 void OICLogShutdown()
116 {
117 #ifdef __linux__
118     if (logCtx && logCtx->destroy)
119     {
120         logCtx->destroy(logCtx);
121     }
122 #endif
123 }
124
125 /**
126  * Output a log string with the specified priority level.
127  * Only defined for Linux and Android
128  *
129  * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
130  * @param tag    - Module name
131  * @param logStr - log string
132  */
133 void OICLog(LogLevel level, const char *tag, const char *logStr)
134 {
135     if (!logStr || !tag)
136     {
137         return;
138     }
139
140 #ifdef __ANDROID__
141
142 #ifdef ADB_SHELL
143     printf("%s: %s: %s\n", LEVEL[level], tag, logStr);
144 #else
145     __android_log_write(LEVEL[level], tag, logStr);
146 #endif
147
148 #elif defined __linux__
149     if (logCtx && logCtx->write_level)
150     {
151         logCtx->write_level(logCtx, LEVEL_XTABLE[level], logStr);
152
153     }
154     else
155     {
156         int min = 0;
157         int sec = 0;
158         int ms = 0;
159 #ifdef _POSIX_TIMERS
160         struct timespec when = {};
161         clockid_t clk = CLOCK_REALTIME;
162 #ifdef CLOCK_REALTIME_COARSE
163         clk = CLOCK_REALTIME_COARSE;
164 #endif
165         if (!clock_gettime(clk, &when))
166         {
167             min = (when.tv_sec / 60) % 60;
168             sec = when.tv_sec % 60;
169             ms = when.tv_nsec / 1000000;
170         }
171 #else
172         struct timeval now;
173         if (!gettimeofday(&now, NULL))
174         {
175             min = (now.tv_sec / 60) % 60;
176             sec = now.tv_sec % 60;
177             ms = now.tv_usec * 1000;
178         }
179 #endif
180         printf("%02d:%02d.%03d %s: %s: %s\n", min, sec, ms, LEVEL[level], tag, logStr);
181     }
182 #endif
183 }
184
185 /**
186  * Output a variable argument list log string with the specified priority level.
187  * Only defined for Linux and Android
188  *
189  * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
190  * @param tag    - Module name
191  * @param format - variadic log string
192  */
193 void OICLogv(LogLevel level, const char *tag, const char *format, ...)
194 {
195     if (!format || !tag)
196     {
197         return;
198     }
199     char buffer[MAX_LOG_V_BUFFER_SIZE];
200     memset(buffer, 0, sizeof buffer);
201     va_list args;
202     va_start(args, format);
203     vsnprintf(buffer, sizeof buffer - 1, format, args);
204     va_end(args);
205     OICLog(level, tag, buffer);
206 }
207
208 /**
209  * Output the contents of the specified buffer (in hex) with the specified priority level.
210  *
211  * @param level      - DEBUG, INFO, WARNING, ERROR, FATAL
212  * @param tag        - Module name
213  * @param buffer     - pointer to buffer of bytes
214  * @param bufferSize - max number of byte in buffer
215  */
216 void OICLogBuffer(LogLevel level, const char *tag, const uint8_t *buffer, uint16_t bufferSize)
217 {
218     if (!buffer || !tag || (bufferSize == 0))
219     {
220         return;
221     }
222
223     char lineBuffer[LINE_BUFFER_SIZE];
224     memset(lineBuffer, 0, sizeof lineBuffer);
225     int lineIndex = 0;
226     int i;
227     for (i = 0; i < bufferSize; i++)
228     {
229         // Format the buffer data into a line
230         snprintf(&lineBuffer[lineIndex*3], sizeof(lineBuffer)-lineIndex*3, "%02X ", buffer[i]);
231         lineIndex++;
232         // Output 16 values per line
233         if (((i + 1) % 16) == 0)
234         {
235             OICLog(level, tag, lineBuffer);
236             memset(lineBuffer, 0, sizeof lineBuffer);
237             lineIndex = 0;
238         }
239     }
240     // Output last values in the line, if any
241     if (bufferSize % 16)
242     {
243         OICLog(level, tag, lineBuffer);
244     }
245 }
246 #endif //__TIZEN__
247 #endif //ARDUINO
248 #ifdef ARDUINO
249 /**
250  * Initialize the serial logger for Arduino
251  * Only defined for Arduino
252  */
253 void OICLogInit()
254 {
255     Serial.begin(115200);
256 }
257
258 /**
259  * Output a log string with the specified priority level.
260  * Only defined for Arduino.  Only uses PROGMEM strings
261  * for the tag parameter
262  *
263  * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
264  * @param tag    - Module name
265  * @param logStr - log string
266  */
267  void OICLogString(LogLevel level, PROGMEM const char * tag,
268          const char * logStr)
269  {
270      if (!logStr || !tag)
271      {
272          return;
273      }
274
275      char buffer[LINE_BUFFER_SIZE] = {0};
276      strcpy_P(buffer, (char*)pgm_read_word(&(LEVEL[level])));
277      Serial.print(buffer);
278
279      char c = NULL;
280      Serial.print(F(": "));
281      while ((c = pgm_read_byte(tag)))
282      {
283          Serial.write(c);
284          tag++;
285      }
286      Serial.print(F(": "));
287
288      Serial.println(logStr);
289  }
290
291 /**
292  * Output the contents of the specified buffer (in hex) with the specified
293  * priority level.
294  *
295  * @param level      - DEBUG, INFO, WARNING, ERROR, FATAL
296  * @param tag        - Module name
297  * @param buffer     - pointer to buffer of bytes
298  * @param bufferSize - max number of byte in buffer
299  */
300  void OICLogBuffer(LogLevel level, PROGMEM const char * tag,
301          const uint8_t * buffer, uint16_t bufferSize)
302  {
303      if (!buffer || !tag || (bufferSize == 0))
304      {
305          return;
306      }
307
308      char lineBuffer[LINE_BUFFER_SIZE] = {0};
309      uint8_t lineIndex = 0;
310      for (uint8_t i = 0; i < bufferSize; i++)
311      {
312         // Format the buffer data into a line
313         snprintf(&lineBuffer[lineIndex*3], sizeof(lineBuffer)-lineIndex*3, "%02X ", buffer[i]);
314         lineIndex++;
315          // Output 16 values per line
316          if (((i+1)%16) == 0)
317          {
318              OICLogString(level, tag, lineBuffer);
319              memset(lineBuffer, 0, sizeof lineBuffer);
320              lineIndex = 0;
321          }
322      }
323      // Output last values in the line, if any
324      if (bufferSize % 16)
325      {
326          OICLogString(level, tag, lineBuffer);
327      }
328  }
329
330 /**
331  * Output a log string with the specified priority level.
332  * Only defined for Arduino.  Uses PROGMEM strings
333  *
334  * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
335  * @param tag    - Module name
336  * @param logStr - log string
337  */
338 void OICLog(LogLevel level, PROGMEM const char *tag, const int16_t lineNum,
339               PROGMEM const char *logStr)
340 {
341     if (!logStr || !tag)
342     {
343         return;
344     }
345     char buffer[LINE_BUFFER_SIZE] = {0};
346     GET_PROGMEM_BUFFER(buffer, &(LEVEL[level]));
347     Serial.print(buffer);
348     char c;
349     Serial.print(F(": "));
350     while ((c = pgm_read_byte(tag)))
351     {
352         Serial.write(c);
353         tag++;
354     }
355     Serial.print(F(": "));
356     Serial.print(lineNum);
357     Serial.print(F(": "));
358     while ((c = pgm_read_byte(logStr)))
359     {
360         Serial.write(c);
361         logStr++;
362     }
363     Serial.println();
364 }
365
366 /**
367  * Output a variable argument list log string with the specified priority level.
368  * Only defined for Arduino as depicted below.
369  *
370  * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
371  * @param tag    - Module name
372  * @param format - variadic log string
373  */
374 void OICLogv(LogLevel level, PROGMEM const char *tag, const int16_t lineNum,
375                 PROGMEM const char *format, ...)
376 {
377     char buffer[LINE_BUFFER_SIZE];
378     va_list ap;
379     va_start(ap, format);
380     GET_PROGMEM_BUFFER(buffer, &(LEVEL[level]));
381     Serial.print(buffer);
382
383     char c;
384     Serial.print(F(": "));
385     while ((c = pgm_read_byte(tag))) {
386      Serial.write(c);
387      tag++;
388      }
389     Serial.print(F(": "));
390     Serial.print(lineNum);
391     Serial.print(F(": "));
392
393 #ifdef __AVR__
394     vsnprintf_P(buffer, sizeof(buffer), format, ap);
395 #else
396     vsnprintf(buffer, sizeof(buffer), format, ap);
397 #endif
398     for (char *p = &buffer[0]; *p; p++)
399     {
400         // emulate cooked mode for newlines
401         if (*p == '\n')
402         {
403             Serial.write('\r');
404         }
405         Serial.write(*p);
406     }
407     Serial.println();
408     va_end(ap);
409 }
410 /**
411  * Output a variable argument list log string with the specified priority level.
412  * Only defined for Arduino as depicted below.
413  *
414  * @param level  - DEBUG, INFO, WARNING, ERROR, FATAL
415  * @param tag    - Module name
416  * @param format - variadic log string
417  */
418 void OICLogv(LogLevel level, const char *tag, const __FlashStringHelper *format, ...)
419 {
420     char buffer[LINE_BUFFER_SIZE];
421     va_list ap;
422     va_start(ap, format);
423     // strcpy_P(buffer, (char*)pgm_read_word(&(LEVEL[level])));
424     // Serial.print(buffer);
425
426     Serial.print(LEVEL[level]);
427     // char c;
428     Serial.print(F(": "));
429
430     /*while ((c = pgm_read_byte(tag))) {
431      Serial.write(c);
432      tag++;
433      }*/
434     Serial.print(tag);
435     Serial.print(F(": "));
436
437 #ifdef __AVR__
438     vsnprintf_P(buffer, sizeof(buffer), (const char *)format, ap); // progmem for AVR
439 #else
440     vsnprintf(buffer, sizeof(buffer), (const char *)format, ap); // for the rest of the world
441 #endif
442     for (char *p = &buffer[0]; *p; p++)
443     {
444         // emulate cooked mode for newlines
445         if (*p == '\n')
446         {
447             // Serial.write('\r');
448             Serial.print('\r');
449         }
450         //Serial.write(*p);
451         Serial.print(p);
452     }
453     Serial.println();
454     va_end(ap);
455 }
456
457 #endif //ARDUINO
458