source: mainline/uspace/lib/usb/src/debug.c@ 9724d7f

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 9724d7f was 9724d7f, checked in by Vojtech Horky <vojtechhorky@…>, 14 years ago

Set full buffering for USB logs (bypass #352)

  • Property mode set to 100644
File size: 6.1 KB
Line 
1/*
2 * Copyright (c) 2010-2011 Vojtech Horky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libusb
30 * @{
31 */
32/** @file
33 * Debugging and logging support.
34 */
35#include <adt/list.h>
36#include <fibril_synch.h>
37#include <errno.h>
38#include <stdlib.h>
39#include <stdio.h>
40#include <ddf/log.h>
41#include <usb/debug.h>
42
43/** Level of logging messages. */
44static usb_log_level_t log_level = USB_LOG_LEVEL_WARNING;
45
46/** Prefix for logging messages. */
47static const char *log_prefix = "usb";
48
49/** Serialization mutex for logging functions. */
50static FIBRIL_MUTEX_INITIALIZE(log_serializer);
51
52/** File where to store the log. */
53static FILE *log_stream = NULL;
54
55
56/** Enable logging.
57 *
58 * @param level Maximal enabled level (including this one).
59 * @param message_prefix Prefix for each printed message.
60 */
61void usb_log_enable(usb_log_level_t level, const char *message_prefix)
62{
63 log_prefix = message_prefix;
64 log_level = level;
65 if (log_stream == NULL) {
66 char *fname;
67 int rc = asprintf(&fname, "/log/%s", message_prefix);
68 if (rc > 0) {
69 log_stream = fopen(fname, "w");
70 if (log_stream != NULL) {
71 setvbuf(log_stream, NULL, _IOFBF, BUFSIZ);
72 }
73 free(fname);
74 }
75 }
76}
77
78/** Get log level name prefix.
79 *
80 * @param level Log level.
81 * @return String prefix for the message.
82 */
83static const char *log_level_name(usb_log_level_t level)
84{
85 switch (level) {
86 case USB_LOG_LEVEL_FATAL:
87 return " FATAL";
88 case USB_LOG_LEVEL_ERROR:
89 return " ERROR";
90 case USB_LOG_LEVEL_WARNING:
91 return " WARN";
92 case USB_LOG_LEVEL_INFO:
93 return " info";
94 default:
95 return "";
96 }
97}
98
99/** Print logging message.
100 *
101 * @param level Verbosity level of the message.
102 * @param format Formatting directive.
103 */
104void usb_log_printf(usb_log_level_t level, const char *format, ...)
105{
106 FILE *screen_stream = NULL;
107 switch (level) {
108 case USB_LOG_LEVEL_FATAL:
109 case USB_LOG_LEVEL_ERROR:
110 screen_stream = stderr;
111 break;
112 default:
113 screen_stream = stdout;
114 break;
115 }
116 assert(screen_stream != NULL);
117
118 va_list args;
119
120 /*
121 * Serialize access to log files.
122 * Print to screen only messages with higher level than the one
123 * specified during logging initialization.
124 * Print also to file, to it print one more (lower) level as well.
125 */
126 fibril_mutex_lock(&log_serializer);
127
128 const char *level_name = log_level_name(level);
129
130 if ((log_stream != NULL) && (level <= log_level + 1)) {
131 va_start(args, format);
132
133 fprintf(log_stream, "[%s]%s: ", log_prefix, level_name);
134 vfprintf(log_stream, format, args);
135 fflush(log_stream);
136
137 va_end(args);
138 }
139
140 if (level <= log_level) {
141 va_start(args, format);
142
143 fprintf(screen_stream, "[%s]%s: ", log_prefix, level_name);
144 vfprintf(screen_stream, format, args);
145 fflush(screen_stream);
146
147 va_end(args);
148 }
149
150 fibril_mutex_unlock(&log_serializer);
151}
152
153
154#define REMAINDER_STR_FMT " (%zu)..."
155/* string + terminator + number width (enough for 4GB)*/
156#define REMAINDER_STR_LEN (5 + 1 + 10)
157
158/** How many bytes to group together. */
159#define BUFFER_DUMP_GROUP_SIZE 4
160
161/** Size of the string for buffer dumps. */
162#define BUFFER_DUMP_LEN 240 /* Ought to be enough for everybody ;-). */
163
164/** Fibril local storage for the dumped buffer. */
165static fibril_local char buffer_dump[2][BUFFER_DUMP_LEN];
166/** Fibril local storage for buffer switching. */
167static fibril_local int buffer_dump_index = 0;
168
169/** Dump buffer into string.
170 *
171 * The function dumps given buffer into hexadecimal format and stores it
172 * in a static fibril local string.
173 * That means that you do not have to deallocate the string (actually, you
174 * can not do that) and you do not have to guard it against concurrent
175 * calls to it.
176 * The only limitation is that each second call rewrites the buffer again
177 * (internally, two buffer are used in cyclic manner).
178 * Thus, it is necessary to copy the buffer elsewhere (that includes printing
179 * to screen or writing to file).
180 * Since this function is expected to be used for debugging prints only,
181 * that is not a big limitation.
182 *
183 * @warning You cannot use this function more than twice in the same printf
184 * (see detailed explanation).
185 *
186 * @param buffer Buffer to be printed (can be NULL).
187 * @param size Size of the buffer in bytes (can be zero).
188 * @param dumped_size How many bytes to actually dump (zero means all).
189 * @return Dumped buffer as a static (but fibril local) string.
190 */
191const char *usb_debug_str_buffer(const uint8_t *buffer, size_t size,
192 size_t dumped_size)
193{
194 /*
195 * Remove previous string.
196 */
197 bzero(buffer_dump[buffer_dump_index], BUFFER_DUMP_LEN);
198
199 /* Do the actual dump. */
200 ddf_dump_buffer(buffer_dump[buffer_dump_index], BUFFER_DUMP_LEN,
201 buffer, 1, size, dumped_size);
202
203 /* Next time, use the other buffer. */
204 buffer_dump_index = 1 - buffer_dump_index;
205
206 /* Need to take the old one due to previous line. */
207 return buffer_dump[1 - buffer_dump_index];
208}
209
210
211/**
212 * @}
213 */
Note: See TracBrowser for help on using the repository browser.