Azure IoT common library
Fork of azure_c_shared_utility by
xlogging.c@34:651c23af382c, 2017-08-24 (annotated)
- Committer:
- wiggly
- Date:
- Thu Aug 24 14:14:15 2017 +0100
- Revision:
- 34:651c23af382c
- Parent:
- 27:8656a313842b
Pass in network stack to platform initialisation
Remove NTP setup from azure platform code
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Azure.IoT Build | 6:c55b013dfc2a | 1 | // Copyright (c) Microsoft. All rights reserved. |
Azure.IoT Build | 6:c55b013dfc2a | 2 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
Azure.IoT Build | 6:c55b013dfc2a | 3 | |
Azure.IoT Build | 6:c55b013dfc2a | 4 | #include "azure_c_shared_utility/xlogging.h" |
Azure.IoT Build | 6:c55b013dfc2a | 5 | #include "azure_c_shared_utility/consolelogger.h" |
Azure.IoT Build | 6:c55b013dfc2a | 6 | |
AzureIoTClient | 7:1af47e3a19b6 | 7 | #ifndef NO_LOGGING |
AzureIoTClient | 7:1af47e3a19b6 | 8 | |
AzureIoTClient | 7:1af47e3a19b6 | 9 | |
AzureIoTClient | 7:1af47e3a19b6 | 10 | #ifdef WINCE |
AzureIoTClient | 7:1af47e3a19b6 | 11 | #include <stdarg.h> |
AzureIoTClient | 7:1af47e3a19b6 | 12 | |
AzureIoTClient | 27:8656a313842b | 13 | void consolelogger_log(LOG_CATEGORY log_category, const char* file, const char* func, int line, unsigned int options, const char* format, ...) |
AzureIoTClient | 7:1af47e3a19b6 | 14 | { |
AzureIoTClient | 7:1af47e3a19b6 | 15 | va_list args; |
AzureIoTClient | 7:1af47e3a19b6 | 16 | va_start(args, format); |
AzureIoTClient | 7:1af47e3a19b6 | 17 | |
AzureIoTClient | 7:1af47e3a19b6 | 18 | time_t t = time(NULL); |
AzureIoTClient | 7:1af47e3a19b6 | 19 | |
AzureIoTClient | 7:1af47e3a19b6 | 20 | switch (log_category) |
AzureIoTClient | 7:1af47e3a19b6 | 21 | { |
AzureIoTClient | 18:6d8a413a4d9a | 22 | case AZ_LOG_INFO: |
AzureIoTClient | 7:1af47e3a19b6 | 23 | (void)printf("Info: "); |
AzureIoTClient | 7:1af47e3a19b6 | 24 | break; |
AzureIoTClient | 18:6d8a413a4d9a | 25 | case AZ_LOG_ERROR: |
AzureIoTClient | 8:3db46d1e5471 | 26 | (void)printf("Error: Time:%.24s File:%s Func:%s Line:%d ", ctime(&t), file, func, line); |
AzureIoTClient | 7:1af47e3a19b6 | 27 | break; |
AzureIoTClient | 7:1af47e3a19b6 | 28 | default: |
AzureIoTClient | 7:1af47e3a19b6 | 29 | break; |
AzureIoTClient | 7:1af47e3a19b6 | 30 | } |
AzureIoTClient | 7:1af47e3a19b6 | 31 | |
AzureIoTClient | 7:1af47e3a19b6 | 32 | (void)vprintf(format, args); |
AzureIoTClient | 7:1af47e3a19b6 | 33 | va_end(args); |
AzureIoTClient | 7:1af47e3a19b6 | 34 | |
AzureIoTClient | 7:1af47e3a19b6 | 35 | (void)log_category; |
AzureIoTClient | 7:1af47e3a19b6 | 36 | if (options & LOG_LINE) |
AzureIoTClient | 7:1af47e3a19b6 | 37 | { |
AzureIoTClient | 7:1af47e3a19b6 | 38 | (void)printf("\r\n"); |
AzureIoTClient | 7:1af47e3a19b6 | 39 | } |
AzureIoTClient | 7:1af47e3a19b6 | 40 | } |
AzureIoTClient | 7:1af47e3a19b6 | 41 | #endif |
AzureIoTClient | 7:1af47e3a19b6 | 42 | |
AzureIoTClient | 7:1af47e3a19b6 | 43 | LOGGER_LOG global_log_function = consolelogger_log; |
AzureIoTClient | 7:1af47e3a19b6 | 44 | |
Azure.IoT Build | 6:c55b013dfc2a | 45 | void xlogging_set_log_function(LOGGER_LOG log_function) |
Azure.IoT Build | 6:c55b013dfc2a | 46 | { |
Azure.IoT Build | 6:c55b013dfc2a | 47 | global_log_function = log_function; |
Azure.IoT Build | 6:c55b013dfc2a | 48 | } |
Azure.IoT Build | 6:c55b013dfc2a | 49 | |
Azure.IoT Build | 6:c55b013dfc2a | 50 | LOGGER_LOG xlogging_get_log_function(void) |
Azure.IoT Build | 6:c55b013dfc2a | 51 | { |
Azure.IoT Build | 6:c55b013dfc2a | 52 | return global_log_function; |
Azure.IoT Build | 6:c55b013dfc2a | 53 | } |
AzureIoTClient | 7:1af47e3a19b6 | 54 | |
AzureIoTClient | 27:8656a313842b | 55 | #if (defined(_MSC_VER)) && (!(defined WINCE)) |
AzureIoTClient | 27:8656a313842b | 56 | |
AzureIoTClient | 27:8656a313842b | 57 | LOGGER_LOG_GETLASTERROR global_log_function_GetLastError = consolelogger_log_with_GetLastError; |
AzureIoTClient | 27:8656a313842b | 58 | |
AzureIoTClient | 27:8656a313842b | 59 | void xlogging_set_log_function_GetLastError(LOGGER_LOG_GETLASTERROR log_function_GetLastError) |
AzureIoTClient | 27:8656a313842b | 60 | { |
AzureIoTClient | 27:8656a313842b | 61 | global_log_function_GetLastError = log_function_GetLastError; |
AzureIoTClient | 27:8656a313842b | 62 | } |
AzureIoTClient | 27:8656a313842b | 63 | |
AzureIoTClient | 27:8656a313842b | 64 | LOGGER_LOG_GETLASTERROR xlogging_get_log_function_GetLastError(void) |
AzureIoTClient | 27:8656a313842b | 65 | { |
AzureIoTClient | 27:8656a313842b | 66 | return global_log_function_GetLastError; |
AzureIoTClient | 27:8656a313842b | 67 | } |
AzureIoTClient | 27:8656a313842b | 68 | #endif |
AzureIoTClient | 27:8656a313842b | 69 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 70 | /* Print up to 16 bytes per line. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 71 | #define LINE_SIZE 16 |
Azure.IoT.Build | 16:18e7ebd42bb2 | 72 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 73 | /* Return the printable char for the provided value. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 74 | #define PRINTABLE(c) ((c >= ' ') && (c <= '~')) ? (char)c : '.' |
Azure.IoT.Build | 16:18e7ebd42bb2 | 75 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 76 | /* Convert the lower nibble of the provided byte to a hexadecimal printable char. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 77 | #define HEX_STR(c) (((c) & 0xF) < 0xA) ? (char)(((c) & 0xF) + '0') : (char)(((c) & 0xF) - 0xA + 'A') |
Azure.IoT.Build | 16:18e7ebd42bb2 | 78 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 79 | void xlogging_dump_buffer(const void* buf, size_t size) |
Azure.IoT.Build | 16:18e7ebd42bb2 | 80 | { |
Azure.IoT.Build | 16:18e7ebd42bb2 | 81 | char charBuf[LINE_SIZE + 1]; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 82 | char hexBuf[LINE_SIZE * 3 + 1]; |
AzureIoTClient | 20:95abdea56064 | 83 | size_t countbuf = 0; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 84 | const unsigned char* bufAsChar = (const unsigned char*)buf; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 85 | const unsigned char* startPos = bufAsChar; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 86 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 87 | /* Print the whole buffer. */ |
AzureIoTClient | 25:8507bf644fdf | 88 | size_t i = 0; |
AzureIoTClient | 25:8507bf644fdf | 89 | for (i = 0; i < size; i++) |
Azure.IoT.Build | 16:18e7ebd42bb2 | 90 | { |
Azure.IoT.Build | 16:18e7ebd42bb2 | 91 | /* Store the printable value of the char in the charBuf to print. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 92 | charBuf[countbuf] = PRINTABLE(*bufAsChar); |
Azure.IoT.Build | 16:18e7ebd42bb2 | 93 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 94 | /* Convert the high nibble to a printable hexadecimal value. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 95 | hexBuf[countbuf * 3] = HEX_STR(*bufAsChar >> 4); |
Azure.IoT.Build | 16:18e7ebd42bb2 | 96 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 97 | /* Convert the low nibble to a printable hexadecimal value. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 98 | hexBuf[countbuf * 3 + 1] = HEX_STR(*bufAsChar); |
Azure.IoT.Build | 16:18e7ebd42bb2 | 99 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 100 | hexBuf[countbuf * 3 + 2] = ' '; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 101 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 102 | countbuf++; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 103 | bufAsChar++; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 104 | /* If the line is full, print it to start another one. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 105 | if (countbuf == LINE_SIZE) |
Azure.IoT.Build | 16:18e7ebd42bb2 | 106 | { |
Azure.IoT.Build | 16:18e7ebd42bb2 | 107 | charBuf[countbuf] = '\0'; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 108 | hexBuf[countbuf * 3] = '\0'; |
AzureIoTClient | 18:6d8a413a4d9a | 109 | LOG(AZ_LOG_TRACE, 0, "%p: %s %s", startPos, hexBuf, charBuf); |
Azure.IoT.Build | 16:18e7ebd42bb2 | 110 | countbuf = 0; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 111 | startPos = bufAsChar; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 112 | } |
Azure.IoT.Build | 16:18e7ebd42bb2 | 113 | } |
Azure.IoT.Build | 16:18e7ebd42bb2 | 114 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 115 | /* If the last line does not fit the line size. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 116 | if (countbuf > 0) |
Azure.IoT.Build | 16:18e7ebd42bb2 | 117 | { |
Azure.IoT.Build | 16:18e7ebd42bb2 | 118 | /* Close the charBuf string. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 119 | charBuf[countbuf] = '\0'; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 120 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 121 | /* Fill the hexBuf with spaces to keep the charBuf alignment. */ |
Azure.IoT.Build | 16:18e7ebd42bb2 | 122 | while ((countbuf++) < LINE_SIZE - 1) |
Azure.IoT.Build | 16:18e7ebd42bb2 | 123 | { |
Azure.IoT.Build | 16:18e7ebd42bb2 | 124 | hexBuf[countbuf * 3] = ' '; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 125 | hexBuf[countbuf * 3 + 1] = ' '; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 126 | hexBuf[countbuf * 3 + 2] = ' '; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 127 | } |
Azure.IoT.Build | 16:18e7ebd42bb2 | 128 | hexBuf[countbuf * 3] = '\0'; |
Azure.IoT.Build | 16:18e7ebd42bb2 | 129 | |
Azure.IoT.Build | 16:18e7ebd42bb2 | 130 | /* Print the last line. */ |
AzureIoTClient | 18:6d8a413a4d9a | 131 | LOG(AZ_LOG_TRACE, 0, "%p: %s %s", startPos, hexBuf, charBuf); |
Azure.IoT.Build | 16:18e7ebd42bb2 | 132 | } |
Azure.IoT.Build | 16:18e7ebd42bb2 | 133 | } |
Azure.IoT.Build | 16:18e7ebd42bb2 | 134 | |
AzureIoTClient | 7:1af47e3a19b6 | 135 | #endif |