Update NTK.
[nondaw.git] / sequencer / src / debug.C
blobd3444eba006c2afd552a63e180b3d64d1ba2a598
2 /*******************************************************************************/
3 /* Copyright (C) 2008 Jonathan Moore Liles                                     */
4 /*                                                                             */
5 /* This program is free software; you can redistribute it and/or modify it     */
6 /* under the terms of the GNU General Public License as published by the       */
7 /* Free Software Foundation; either version 2 of the License, or (at your      */
8 /* option) any later version.                                                  */
9 /*                                                                             */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
12 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
13 /* more details.                                                               */
14 /*                                                                             */
15 /* You should have received a copy of the GNU General Public License along     */
16 /* with This program; see the file COPYING.  If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 /*******************************************************************************/
20 #include "debug.h"
22 void
23 warnf ( warning_t level,
24            const char *module,
25            const char *file,
26            const char *function, size_t line, const char *fmt, ... )
28         va_list args;
29         static const char *level_tab[] = {
30                 "message", "\033[1;32m",
31                 "warning", "\033[1;33m",
32                 "assertion", "\033[1;31m"
33         };
35         FILE *fp = W_MESSAGE == level ? stdout : stderr;
37         if ( module )
38                 fprintf( fp, "[%s] ", module );
39 #ifndef NDEBUG
40         if ( file )
41                 fprintf( fp, "%s", file );
42         if ( line )
43                 fprintf( fp, ":%i", line );
44         if ( function )
45                 fprintf( fp, " %s()", function );
47         fprintf( fp, ": " );
48 #endif
50         if ( unsigned( ( level << 1 ) + 1 ) <
51                  ( sizeof( level_tab ) / sizeof( level_tab[0] ) ) )
52                 fprintf( fp, "%s", level_tab[( level << 1 ) + 1] );
54         if ( fmt )
55         {
56                 va_start( args, fmt );
57                 vfprintf( fp, fmt, args );
58                 va_end( args );
59         }
61         fprintf( fp, "\033[0m\n" );