source: roaraudio/libroar/debug.c @ 4936:9924849b9036

Last change on this file since 4936:9924849b9036 was 4936:9924849b9036, checked in by phi, 13 years ago

sync after writing debug message.

File size: 5.9 KB
Line 
1//debug.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009-2011
5 *
6 *  This file is part of libroar a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroar is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 *  NOTE for everyone want's to change something and send patches:
25 *  read README and HACKING! There a addition information on
26 *  the license of this document you need to read before you send
27 *  any patches.
28 *
29 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
30 *  or libpulse*:
31 *  The libs libroaresd, libroararts and libroarpulse link this lib
32 *  and are therefore GPL. Because of this it may be illigal to use
33 *  them with any software that uses libesd, libartsc or libpulse*.
34 */
35
36#include "libroar.h"
37
38static int                     roar_debug_stderr_mode = ROAR_DEBUG_MODE_SYSIO;
39static int                     roar_debug_stderr_fh   = ROAR_STDERR;
40static struct roar_vio_calls * roar_debug_stderr_vio  = NULL;
41
42void roar_debug_warn_sysio_real(char * func, char * newfunc, char * info) {
43 struct roar_libroar_config * config = roar_libroar_get_config();
44
45 if ( !roar_libroar_iswarn(config) )
46  return;
47
48 if ( config->warnings.sysio == ROAR_WARNING_ALWAYS ) {
49  if ( newfunc == NULL ) {
50   ROAR_WARN("%s(*): This function is obsolete. %s", func, info == NULL ? "" : info);
51  } else {
52   ROAR_WARN("%s(*): This function is obsolete. Please use %s(...). %s", func, newfunc, info == NULL ? "" : info);
53  }
54 }
55}
56
57void roar_debug_warn_obsolete_real(char * func, char * newfunc, char * info) {
58 struct roar_libroar_config * config = roar_libroar_get_config();
59
60 if ( !roar_libroar_iswarn(config) )
61  return;
62
63 if ( config->warnings.obsolete == ROAR_WARNING_ALWAYS ) {
64  if ( newfunc == NULL ) {
65   ROAR_WARN("%s(*): This function is obsolete. %s", func, info == NULL ? "" : info);
66  } else {
67   ROAR_WARN("%s(*): This function is obsolete. Please use %s(...). %s", func, newfunc, info == NULL ? "" : info);
68  }
69 }
70}
71
72void   roar_debug_set_stderr_fh(int fh) {
73 roar_debug_stderr_fh = fh;
74}
75
76void   roar_debug_set_stderr_vio(struct roar_vio_calls * vio) {
77 roar_debug_stderr_vio = vio;
78}
79
80void   roar_debug_set_stderr_mode(int mode) {
81 roar_debug_stderr_mode = mode;
82}
83
84struct roar_vio_calls * roar_debug_get_stderr(void) {
85 static struct roar_vio_calls STDERR;
86
87 switch (roar_debug_stderr_mode) {
88  case ROAR_DEBUG_MODE_SYSIO:
89    if ( roar_debug_stderr_fh == -1 )
90     return NULL;
91
92    roar_vio_open_fh(&STDERR, roar_debug_stderr_fh);
93
94    return &STDERR;
95   break;
96  case ROAR_DEBUG_MODE_VIO:
97    return roar_debug_stderr_vio;
98   break;
99  default:
100    return NULL;
101   break;
102 }
103}
104
105// NOTE: This function MUST NOT alter RA's error values nor errno!
106void roar_debug_msg_simple(const char *format, ...) {
107 struct roar_vio_calls * vio;
108 va_list ap;
109 int ret;
110 char buf[8192];
111#ifdef ROAR_HAVE_SYSLOG
112 size_t len;
113#endif
114 int _ra_error  = roar_error;
115 int _sys_error = errno;
116
117 vio = roar_debug_get_stderr();
118
119 va_start(ap, format);
120 ret = vsnprintf(buf, sizeof(buf), format, ap);
121 va_end(ap);
122
123 buf[sizeof(buf)-1] = 0;
124
125 if ( vio != NULL ) {
126  roar_vio_write(vio, buf, ret);
127  roar_vio_sync(vio);
128 } else {
129  switch (roar_debug_stderr_mode) {
130#ifdef ROAR_HAVE_SYSLOG
131   case ROAR_DEBUG_MODE_SYSLOG:
132     // strip \n if needed for syslog:
133     len = strlen(buf);
134     if ( buf[len-1] == '\n' )
135      buf[len-1] = 0;
136
137     syslog(LOG_ERR, "%s", buf); // bad to use some defaults
138    break;
139#endif
140   default:
141     // do nothing.
142    break;
143  }
144 }
145
146 roar_error = _ra_error;
147 errno      = _sys_error;
148}
149
150void roar_debug_msg(int type, unsigned long int line, const char * file, const char * prefix, const char * format, ...) {
151 struct roar_vio_calls * vio;
152 va_list ap;
153 char    buf[8192];
154 char  * bufp = buf;
155 char  * typename;
156 int     ret;
157#ifdef ROAR_HAVE_SYSLOG
158 int     priority;
159#endif
160 size_t  len;
161 int _ra_error  = roar_error;
162 int _sys_error = errno;
163
164 switch (type) {
165  case ROAR_DEBUG_TYPE_ERROR:   typename = "Error";   break;
166  case ROAR_DEBUG_TYPE_WARNING: typename = "Warning"; break;
167  case ROAR_DEBUG_TYPE_INFO:    typename = "Info";    break;
168  case ROAR_DEBUG_TYPE_DEBUG:   typename = "Debug";   break;
169  default: typename = "Unknown Type"; break;
170 }
171
172 ret = snprintf(buf, sizeof(buf), "(%s: %s:%lu): %s: ", prefix, file, line, typename);
173
174 if ( ret > 0 && ret < sizeof(buf) ) {
175  bufp += ret;
176 } else {
177  ret = 0;
178 }
179
180 len = ret;
181
182 va_start(ap, format);
183 ret = vsnprintf(bufp, sizeof(buf)-ret, format, ap);
184 va_end(ap);
185
186 buf[sizeof(buf)-1] = 0;
187
188 len += ret;
189
190 switch (roar_debug_stderr_mode) {
191  case ROAR_DEBUG_MODE_SYSIO:
192  case ROAR_DEBUG_MODE_VIO:
193    if ( (vio = roar_debug_get_stderr()) == NULL ) {
194      roar_error = _ra_error;
195      errno      = _sys_error;
196     return;
197    }
198    roar_vio_write(vio, buf, len);
199    roar_vio_write(vio, "\n", 1);
200    roar_vio_sync(vio);
201   break;
202#ifdef ROAR_HAVE_SYSLOG
203  case ROAR_DEBUG_MODE_SYSLOG:
204    switch (type) {
205     case ROAR_DEBUG_TYPE_ERROR:   priority = LOG_ERR;     break;
206     case ROAR_DEBUG_TYPE_WARNING: priority = LOG_WARNING; break;
207     case ROAR_DEBUG_TYPE_INFO:    priority = LOG_INFO;    break;
208     case ROAR_DEBUG_TYPE_DEBUG:   priority = LOG_DEBUG;   break;
209     default: priority = LOG_ERR; break;
210    }
211    syslog(priority, "%s", buf);
212   break;
213#endif
214 }
215 roar_error = _ra_error;
216 errno      = _sys_error;
217}
218//ll
Note: See TracBrowser for help on using the repository browser.