]> git.mxchange.org Git - flightgear.git/blob - Debug/fg_debug.c
Added an entry for AUTOPILOT.
[flightgear.git] / Debug / fg_debug.c
1 /* -*- Mode: C++ -*-
2  *
3  * fg_debug.c -- Flight Gear debug utility functions
4  *
5  * Written by Paul Bleisch, started January 1998. 
6  *
7  * Copyright (C) 1998 Paul Bleisch, pbleisch@acm.org
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License as
11  * published by the Free Software Foundation; either version 2 of the
12  * License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  * (Log is kept at end of this file)
25  **************************************************************************/
26
27
28 #include <string.h>
29 #include <stdio.h>
30 #include <stdarg.h>
31 #include <stdlib.h>
32
33 #include <Include/cmdargs.h> // Line to command line arguments
34
35 #include "fg_debug.h"
36
37
38 static int             fg_DebugSem      = 1;
39 fgDebugClass           fg_DebugClass    = FG_NONE;  // Need visibility for
40 fgDebugPriority        fg_DebugPriority = FG_INFO; // command line processing.
41 static fgDebugCallback fg_DebugCallback = NULL;
42
43 FILE *fg_DebugOutput = NULL;  // Visibility needed for command line processor.
44                               // This can be set to a FILE from the command
45                               // line. If not, it will be set to stderr.
46
47 /* TODO: Actually make this thing thread safe */
48 #ifdef USETHREADS
49 #define FG_GRABDEBUGSEM  while( --fg_DebugSem < 0 ) { fg_DebugSem++; }
50 #define FG_RELEASEDEBUGSEM fg_DebugSem++;
51 #else
52 #define FG_GRABDEBUGSEM
53 #define FG_RELEASEDEBUGSEM
54 #endif
55
56 /* Used for convienence initialization from env variables.
57  */
58 static struct {
59     char *str;
60     fgDebugClass dbg_class;
61 } fg_DebugClasses[] = {
62     { "FG_NONE",      0x00000000 },
63     { "FG_TERRAIN",   0x00000001 },
64     { "FG_ASTRO",     0x00000002 },
65     { "FG_FLIGHT",    0x00000004 },
66     { "FG_INPUT",     0x00000008 },
67     { "FG_GL",        0x00000010 },
68     { "FG_VIEW",      0x00000020 },
69     { "FG_COCKPIT",   0x00000040 },
70     { "FG_GENERAL",   0x00000080 },
71     { "FG_MATH",      0x00000100 },
72     { "FG_EVENT",     0x00000200 },
73     { "FG_AIRCRAFT",  0x00000400 },
74     { "FG_AUTOPILOT", 0x00000800 },
75
76     /* Do not edit below here, last entry should be null */
77     { "FG_ALL",       0xFFFFFFFF },
78     { NULL, 0 } 
79 };
80
81 static fgDebugClass fgDebugStrToClass( char *str );
82
83
84 /* fgInitDebug =============================================================*/
85 void fgInitDebug( void ) {
86     char *pszClass, *pszPrio, *pszFile;
87
88     // Support for log file/alt debug output via command line, environment or
89     // reasonable default.
90
91     /*
92     if( strlen( logArgbuf ) > 3) {   // First check for command line option
93         // Assumed that we will append.
94         fg_DebugOutput = fopen(logArgbuf, "a+" );
95     }
96     */
97
98     if( !fg_DebugOutput ) {          // If not set on command line, environment?
99         pszFile = getenv( "FG_DEBUGFILE" );
100         if( pszFile ) {          // There is such an environmental variable.
101             fg_DebugOutput = fopen( pszFile, "a+" );
102         }
103     }
104
105     if( !fg_DebugOutput ) {         // If neither command line nor environment
106         fg_DebugOutput = stderr;      // then we use the fallback position
107     }
108     
109     FG_GRABDEBUGSEM;
110     fg_DebugSem = fg_DebugSem;  /* shut up GCC */
111
112     // Test command line option overridge of debug priority. If the value
113     // is in range (properly optioned) the we will override both defaults
114     // and the environmental value.
115
116     /*
117     if ((priorityArgValue >= FG_BULK) && (priorityArgValue <= FG_ABORT)) {
118         fg_DebugPriority = priorityArgValue;
119     } else {  // Either not set or out of range. We will not warn the user.
120     */
121         pszPrio = getenv( "FG_DEBUGPRIORITY" );
122         if( pszPrio ) {
123             fg_DebugPriority = atoi( pszPrio );
124             fprintf( stderr,
125                      "fg_debug.c: Environment overrides default debug priority (%d)\n",
126                      fg_DebugPriority );
127         }
128     /* } */
129
130
131     /*
132     if ((debugArgValue >= FG_ALL) && (debugArgValue < FG_UNDEFD)) {
133         fg_DebugPriority = priorityArgValue;
134     } else {  // Either not set or out of range. We will not warn the user.
135     */
136         pszClass = getenv( "FG_DEBUGCLASS" );
137         if( pszClass ) {
138             fg_DebugClass = fgDebugStrToClass( pszClass );
139             fprintf( stderr,
140                      "fg_debug.c: Environment overrides default debug class (0x%08X)\n",
141                      fg_DebugClass );
142         }
143     /* } */
144
145     FG_RELEASEDEBUGSEM;
146 }
147
148 /* fgDebugStrToClass ======================================================*/
149 fgDebugClass fgDebugStrToClass( char *str ) {
150     char *hex = "0123456789ABCDEF";
151     char *hexl = "0123456789abcdef";
152     char *pt, *p, *ph, ps = 1;
153     unsigned int val = 0, i;
154   
155     if( str == NULL ) {
156         return 0;
157     }
158
159     /* Check for 0xXXXXXX notation */
160     if( (p = strstr( str, "0x")) ) {
161         p++; p++;
162         while (*p) {
163             if( (ph = strchr(hex,*p)) || (ph = strchr(hexl,*p)) ){
164                 val <<= 4;
165                 val += ph-hex;
166                 p++;
167             } else {
168                 // fprintf( stderr, "Error in hex string '%s'\n", str ); 
169                 return FG_NONE;
170             }
171         }
172     } else {
173         /* Must be in string format */
174         p = str;
175         ps = 1;
176         while( ps ) {
177             while( *p && (*p==' ' || *p=='\t') ) p++; /* remove whitespace */
178             pt = p; /* mark token */
179             while( *p && (*p!='|') ) p++; /* find OR or EOS */
180             ps = *p; /* save value at p so we can attempt to be bounds safe */
181             *p++ = 0; /* terminate token */
182             /* determine value for token */
183             i=0; 
184             while( fg_DebugClasses[i].str && 
185                    strncmp( fg_DebugClasses[i].str, pt, 
186                             strlen(fg_DebugClasses[i].str)) ) i++;
187             if( fg_DebugClasses[i].str == NULL ) {
188                 fprintf( stderr,
189                          "fg_debug.c: Could not find message class '%s'\n",
190                          pt ); 
191             } else {
192                 val |= fg_DebugClasses[i].dbg_class;
193             }
194         }
195     }
196     return (fgDebugClass)val;
197 }
198
199
200 /* fgSetDebugOutput =======================================================*/
201 void fgSetDebugOutput( FILE *out ) {
202     FG_GRABDEBUGSEM;
203     fflush( fg_DebugOutput );
204     fg_DebugOutput = out;
205     FG_RELEASEDEBUGSEM;
206 }
207
208
209 /* fgSetDebugLevels =======================================================*/
210 void fgSetDebugLevels( fgDebugClass dbg_class, fgDebugPriority prio ) {
211     FG_GRABDEBUGSEM;
212     fg_DebugClass = dbg_class;
213     fg_DebugPriority = prio;
214     FG_RELEASEDEBUGSEM;
215 }
216
217
218 /* fgRegisterDebugCallback ================================================*/
219 fgDebugCallback fgRegisterDebugCallback( fgDebugCallback callback ) {
220     fgDebugCallback old;
221     FG_GRABDEBUGSEM;
222     old = fg_DebugCallback;
223     fg_DebugCallback = callback;
224     FG_RELEASEDEBUGSEM;
225     return old;
226 }
227
228
229 /* fgPrintf ===============================================================*/
230 int fgPrintf( fgDebugClass dbg_class, fgDebugPriority prio, char *fmt, ... ) {
231     char szOut[1024+1];
232     va_list ap;
233     int ret = 0;
234
235     // If no action to take, then don't bother with the semaphore
236     // activity Slight speed benefit.
237
238     // printf("dbg_class = %d  fg_DebugClass = %d\n", dbg_class, fg_DebugClass);
239     // printf("prio = %d  fg_DebugPriority = %d\n", prio, fg_DebugPriority);
240
241     if( !(dbg_class & fg_DebugClass) ) {
242         // Failed to match a specific debug class
243         if ( prio < fg_DebugPriority ) {
244             // priority is less than requested
245
246             // "ret" is zero anyway. But we might think about changing
247             // it upon some error condition?
248             return ret;
249         }
250     }
251
252     FG_GRABDEBUGSEM;
253
254     /* ret = vsprintf( szOut, fmt, (&fmt+1)); (but it didn't work, thus ... */
255     va_start (ap, fmt);
256     ret = vsprintf( szOut, fmt, ap);
257     va_end (ap);
258
259     if( fg_DebugCallback!=NULL && fg_DebugCallback(dbg_class, prio, szOut) ) {
260         FG_RELEASEDEBUGSEM;
261         return ret;
262     } else {
263         fprintf( fg_DebugOutput, szOut );
264         FG_RELEASEDEBUGSEM;
265         if( prio == FG_EXIT ) {
266             exit(0);
267         } else if( prio == FG_ABORT ) {
268             abort();
269         }
270     }
271     return ret;  
272 }
273
274
275 /* $Log$
276 /* Revision 1.3  1998/05/07 23:03:54  curt
277 /* Added an entry for AUTOPILOT.
278 /*
279  * Revision 1.2  1998/04/21 17:03:45  curt
280  * Prepairing for C++ integration.
281  *
282  * Revision 1.1  1998/04/18 03:52:04  curt
283  * Moved to Lib directory and created a libDebug.
284  *
285  * Revision 1.10  1998/03/14 00:31:21  curt
286  * Beginning initial terrain texturing experiments.
287  *
288  * Revision 1.9  1998/03/09 22:44:58  curt
289  * Modified so that you can specify FG_DEBUGCLASS ***or*** FG_DEBUG_PRIORITY
290  *
291  * Revision 1.8  1998/03/09 22:11:00  curt
292  * Processed through the format-o-matic.
293  *
294  * Revision 1.7  1998/02/16 13:39:43  curt
295  * Miscellaneous weekend tweaks.  Fixed? a cache problem that caused whole
296  * tiles to occasionally be missing.
297  *
298  */