-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathminc_error.c
516 lines (466 loc) · 18.2 KB
/
minc_error.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
/* ----------------------------- MNI Header -----------------------------------
@NAME : minc_error.c
@DESCRIPTION: File containing routines to do error handling for MINC package.
Should be called through macros in minc_private.h
@GLOBALS :
@CALLS :
@CREATED : August 7, 1992 (Peter Neelin)
@MODIFIED :
* $Log: minc_error.c,v $
* Revision 6.8 2009-01-20 11:58:13 rotor
* * CMakeLists.txt: updated version
* * Updated Changelog to include releases
* * Warning cleanups below
* * conversion/dcm2mnc/minc_file.c: fixed printf type
* * conversion/dcm2mnc/siemens_to_dicom.c: fixed printf type
* * conversion/ecattominc/machine_indep.c: added string.h and fixed
* 2 fprintf missing format args
* * conversion/micropet/upet2mnc.c: fixed two fprintf format args
* * conversion/minctoecat/ecat_write.c: added string.h
* * conversion/minctoecat/minctoecat.c: added missing argument to fprintf
* * conversion/nifti1/mnc2nii.c: fixed incorrect printf type
* * progs/mincview/invert_raw_image.c: added fwrite checking
*
* Revision 6.7 2008/04/11 05:15:00 rotor
* * rewrote error code (Claude) to remove global defs that were
* causing build problems with DYLIB on OSX
*
* Revision 6.6 2008/01/17 02:33:02 rotor
* * removed all rcsids
* * removed a bunch of ^L's that somehow crept in
* * removed old (and outdated) BUGS file
*
* Revision 6.5 2008/01/12 19:08:14 stever
* Add __attribute__ ((unused)) to all rcsid variables.
*
* Revision 6.4 2004/10/15 13:46:15 bert
* Minor changes for Windows compatibility
*
* Revision 6.3 2004/04/27 15:47:25 bert
* Move most message text into this file
*
* Revision 6.2 2001/04/17 18:40:13 neelin
* Modifications to work with NetCDF 3.x
* In particular, changed NC_LONG to NC_INT (and corresponding longs to ints).
* Changed NC_UNSPECIFIED to NC_NAT.
* A few fixes to the configure script.
*
* Revision 6.1 1999/10/19 14:45:09 neelin
* Fixed Log substitutions for CVS
*
* Revision 6.0 1997/09/12 13:24:54 neelin
* Release of minc version 0.6
*
* Revision 5.0 1997/08/21 13:25:53 neelin
* Release of minc version 0.5
*
* Revision 4.0 1997/05/07 20:07:52 neelin
* Release of minc version 0.4
*
* Revision 3.0 1995/05/15 19:33:12 neelin
* Release of minc version 0.3
*
* Revision 2.0 1994/09/28 10:38:04 neelin
* Release of minc version 0.2
*
* Revision 1.7 94/09/28 10:37:16 neelin
* Pre-release
*
* Revision 1.6 93/08/11 12:06:24 neelin
* Added RCS logging in source.
*
@COPYRIGHT :
Copyright 1993 Peter Neelin, McConnell Brain Imaging Centre,
Montreal Neurological Institute, McGill University.
Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies. The author and McGill University
make no representations about the suitability of this
software for any purpose. It is provided "as is" without
express or implied warranty.
---------------------------------------------------------------------------- */
#include "minc_config.h"
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include "minc_error.h"
#include "minc_common_defs.h"
int v_mi2log_message(const char *file,int line, mimsgcode_t code, va_list ap);
struct mierror_entry {
int level;
char *msgfmt;
};
/* By default, print all messages of severity error, or worse.
*/
static struct {
int level;
char prog[128];
FILE *fp;
} _MI2_log = {
MI2_MSG_ERROR, {""}, NULL
};
/* MINC routine name variable, call depth counter (for keeping track of
minc routines calling minc routines) and variable for keeping track
of callers ncopts. All of these are for error logging. */
static char *minc_routine_name = "MINC";
static int minc_call_depth = 0;
static int minc_trash_var = 0;
static struct mierror_entry mierror_table[] = {
{ MI_MSG_ERROR, "Cannot uncompress the file" }, /* MI_MSG_UNCMPFAIL */
{ MI_MSG_ERROR, "Can't write compressed file" }, /* MI_MSG_NOWRITECMP */
{ MI_MSG_ERROR, "Unable to open file '%s'" }, /* MI_MSG_OPENFILE */
{ MI_MSG_ERROR, "Unable to create file '%s'"}, /* MI_MSG_CREATEFILE */
{ MI_MSG_ERROR, "Error closing file"}, /* MI_MSG_CLOSEFILE */
{ MI_MSG_WARNING, "Attribute '%s' not found"}, /* MI_MSG_FINDATTR */
{ MI_MSG_ERROR, "Attribute '%s' is non-numeric"}, /* MI_MSG_ATTRNOTNUM */
{ MI_MSG_ERROR, "Can't read attribute '%s'"}, /* MI_MSG_READATTR */
{ MI_MSG_FATAL, "No memory for attribute '%s'"}, /* MI_MSG_NOMEMATTR */
{ MI_MSG_ERROR, "Conversion error for attribute '%s'"}, /* MI_MSG_CONVATTR */
{ MI_MSG_ERROR, "Attribute '%s' is not a scalar"}, /* MI_MSG_ATTRNOTSCALAR */
{ MI_MSG_ERROR, "Attribute '%s' is not a string"}, /* MI_MSG_ATTRNOTSTR */
{ MI_MSG_ERROR, "Can't write attribute '%s'"}, /* MI_MSG_WRITEATTR */
{ MI_MSG_ERROR, "Can't read variable ID# %d"}, /* MI_MSG_READVAR */
{ MI_MSG_ERROR, "Can't write variable ID# %d"}, /* MI_MSG_WRITEVAR */
{ MI_MSG_ERROR, "Can't find variable ID# %d"}, /* MI_MSG_FINDVAR */
{ MI_MSG_ERROR, "Can't read attribute count"}, /* MI_MSG_ATTRCOUNT */
{ MI_MSG_ERROR, "Can't read attribute name"}, /* MI_MSG_ATTRNAME */
{ MI_MSG_ERROR, "Can't copy attribute '%s'"}, /* MI_MSG_COPYATTR */
{ MI_MSG_ERROR, "Can't read variable information"}, /* MI_MSG_VARINQ */
{ MI_MSG_ERROR, "Can't get unlimited dimension"}, /* MI_MSG_UNLIMDIM */
{ MI_MSG_ERROR, "Can't get dimension information"}, /* MI_MSG_DIMINQ */
{ MI_MSG_ERROR, "Variable already defined with different size"}, /* MI_MSG_VARCONFLICT */
{ MI_MSG_ERROR, "Can't define dimension '%s'"}, /* MI_MSG_DIMDEF */
{ MI_MSG_ERROR, "Can't define variable '%s'"}, /* MI_MSG_VARDEF */
{ MI_MSG_ERROR, "Variables do not match for value copy"}, /* MI_MSG_VARMISMATCH */
{ MI_MSG_ERROR, "Variables have dimensions of different size"}, /* MI_MSG_VARDIFFSIZE */
{ MI_MSG_ERROR, "Can't read variable count"}, /* MI_MSG_VARCOUNT */
{ MI_MSG_ERROR, "Variable '%s' not copied"}, /* MI_MSG_OUTPUTVAR */
{ MI_MSG_ERROR, "Error copying variable"}, /* MI_MSG_COPYVAR */
{ MI_MSG_ERROR, "Non-numeric datatype"}, /* MI_MSG_VARNOTNUM */
{ MI_MSG_FATAL, "Can't allocate %d bytes"}, /* MI_MSG_OUTOFMEM */
{ MI_MSG_ERROR, "Attribute '%s' is not a pointer"}, /* MI_MSG_ATTRNOTPTR */
{ MI_MSG_ERROR, "Variable '%s' is not a standard MINC variable"}, /* MI_MSG_VARNOTSTD */
{ MI_MSG_ERROR, "Bad dimension width suffix"}, /* MI_MSG_DIMWIDTH */
{ MI_MSG_ERROR, "Imagemax/min dimensions vary over image dimensions"}, /* MI_MSG_MAXMINVARY */
{ MI_MSG_FATAL, "Should not happen!"}, /* MI_MSG_SNH */
{ MI_MSG_FATAL, "Unknown integer size %d"}, /* MI_MSG_INTSIZE */
{ MI_MSG_FATAL, "Unknown float size %d"}, /* MI_MSG_FLTSIZE */
{ MI_MSG_FATAL, "Unknown type class %d"}, /* MI_MSG_TYPECLASS */
{ MI_MSG_ERROR, "Function '%s' not implemented"}, /* MI_MSG_NOTIMPL */
{ MI_MSG_FATAL, "Unknown type %d"}, /* MI_MSG_BADTYPE */
{ MI_MSG_ERROR, "Can't open dataset %s"}, /* MI_MSG_OPENDSET */
{ MI_MSG_ERROR, "Can't read dataset %s"}, /* MI_MSG_READDSET */
{ MI_MSG_ERROR, "Can't write dataset %s"}, /* MI_MSG_WRITEDSET */
{ MI_MSG_ERROR, "Can't use more than %d dimensions"}, /* MI_MSG_TOOMANYDIMS */
{ MI_MSG_ERROR, "Attempt to modify an attached image conversion variable"}, /* MI_MSG_ICVATTACHED */
{ MI_MSG_ERROR, "Illegal ICV identifier"}, /* MI_MSG_BADICV */
{ MI_MSG_ERROR, "Error setting ICV property: %s"}, /* MI_MSG_BADPROP */
{ MI_MSG_ERROR, "ICV is not attached"}, /* MI_MSG_ICVNOTATTACHED */
{ MI_MSG_ERROR, "Invalid ICV coordinates"}, /* MI_MSG_ICVCOORDS */
{ MI_MSG_ERROR, "Illegal variable access operation" }, /* MI_MSG_BADOP */
{ MI_MSG_ERROR, "ncopts stack overflow" }, /* MI_MSG_NCOPTS_STACK_OVER */
{ MI_MSG_ERROR, "ncopts stack underflow" }, /* MI_MSG_NCOPTS_STACK_UNDER */
{ MI_MSG_ERROR, "volume_io error: %s" }, /* MI_MSG_VOLUME_IO */
{ MI2_MSG_ERROR, "Cannot uncompress the file" }, /* MI2_MSG_UNCMPFAIL */
{ MI2_MSG_ERROR, "Can't write compressed file" }, /* MI2_MSG_NOWRITECMP */
{ MI2_MSG_ERROR, "Unable to open file '%s'" }, /* MI2_MSG_OPENFILE */
{ MI2_MSG_ERROR, "Unable to create file '%s'"}, /* MI2_MSG_CREATEFILE */
{ MI2_MSG_ERROR, "Error closing file"}, /* MI2_MSG_CLOSEFILE */
{ MI2_MSG_WARNING, "Attribute '%s' not found"}, /* MI2_MSG_FINDATTR */
{ MI2_MSG_ERROR, "Attribute '%s' is non-numeric"}, /* MI2_MSG_ATTRNOTNUM */
{ MI2_MSG_ERROR, "Can't read attribute '%s'"}, /* MI2_MSG_READATTR */
{ MI2_MSG_FATAL, "No memory for attribute '%s'"}, /* MI2_MSG_NOMEMATTR */
{ MI2_MSG_ERROR, "Conversion error for attribute '%s'"}, /* MI2_MSG_CONVATTR */
{ MI2_MSG_ERROR, "Attribute '%s' is not a scalar"}, /* MI2_MSG_ATTRNOTSCALAR */
{ MI2_MSG_ERROR, "Attribute '%s' is not a string"}, /* MI2_MSG_ATTRNOTSTR */
{ MI2_MSG_ERROR, "Can't write attribute '%s'"}, /* MI2_MSG_WRITEATTR */
{ MI2_MSG_ERROR, "Can't read variable ID# %d"}, /* MI2_MSG_READVAR */
{ MI2_MSG_ERROR, "Can't write variable ID# %d"}, /* MI2_MSG_WRITEVAR */
{ MI2_MSG_ERROR, "Can't find variable ID# %d"}, /* MI2_MSG_FINDVAR */
{ MI2_MSG_ERROR, "Can't read attribute count"}, /* MI2_MSG_ATTRCOUNT */
{ MI2_MSG_ERROR, "Can't read attribute name"}, /* MI2_MSG_ATTRNAME */
{ MI2_MSG_ERROR, "Can't copy attribute '%s'"}, /* MI2_MSG_COPYATTR */
{ MI2_MSG_ERROR, "Can't read variable information"}, /* MI2_MSG_VARINQ */
{ MI2_MSG_ERROR, "Can't get unlimited dimension"}, /* MI2_MSG_UNLIMDIM */
{ MI2_MSG_ERROR, "Can't get dimension information"}, /* MI2_MSG_DIMINQ */
{ MI2_MSG_ERROR, "Variable already defined with different size"}, /* MI2_MSG_VARCONFLICT */
{ MI2_MSG_ERROR, "Can't define dimension '%s'"}, /* MI2_MSG_DIMDEF */
{ MI2_MSG_ERROR, "Can't define variable '%s'"}, /* MI2_MSG_VARDEF */
{ MI2_MSG_ERROR, "Variables do not match for value copy"}, /* MI2_MSG_VARMISMATCH */
{ MI2_MSG_ERROR, "Variables have dimensions of different size"}, /* MI2_MSG_VARDIFFSIZE */
{ MI2_MSG_ERROR, "Can't read variable count"}, /* MI2_MSG_VARCOUNT */
{ MI2_MSG_ERROR, "Variable '%s' not copied"}, /* MI2_MSG_OUTPUTVAR */
{ MI2_MSG_ERROR, "Error copying variable"}, /* MI2_MSG_COPYVAR */
{ MI2_MSG_ERROR, "Non-numeric datatype"}, /* MI2_MSG_VARNOTNUM */
{ MI2_MSG_FATAL, "Can't allocate %d bytes"}, /* MI2_MSG_OUTOFMEM */
{ MI2_MSG_ERROR, "Attribute '%s' is not a pointer"}, /* MI2_MSG_ATTRNOTPTR */
{ MI2_MSG_ERROR, "Variable '%s' is not a standard MINC variable"}, /* MI2_MSG_VARNOTSTD */
{ MI2_MSG_ERROR, "Bad dimension width suffix"}, /* MI2_MSG_DIMWIDTH */
{ MI2_MSG_ERROR, "Imagemax/min dimensions vary over image dimensions"}, /* MI2_MSG_MAXMINVARY */
{ MI2_MSG_FATAL, "Should not happen!"}, /* MI2_MSG_SNH */
{ MI2_MSG_FATAL, "Unknown integer size %d"}, /* MI2_MSG_INTSIZE */
{ MI2_MSG_FATAL, "Unknown float size %d"}, /* MI2_MSG_FLTSIZE */
{ MI2_MSG_FATAL, "Unknown type class %d"}, /* MI2_MSG_TYPECLASS */
{ MI2_MSG_ERROR, "Function '%s' not implemented"}, /* MI2_MSG_NOTIMPL */
{ MI2_MSG_FATAL, "Unknown type %d"}, /* MI2_MSG_BADTYPE */
{ MI2_MSG_ERROR, "Can't open dataset %s"}, /* MI2_MSG_OPENDSET */
{ MI2_MSG_ERROR, "Can't read dataset %s"}, /* MI2_MSG_READDSET */
{ MI2_MSG_ERROR, "Can't write dataset %s"}, /* MI2_MSG_WRITEDSET */
{ MI2_MSG_ERROR, "Can't use more than %d dimensions"}, /* MI2_MSG_TOOMANYDIMS */
{ MI2_MSG_ERROR, "Attempt to modify an attached image conversion variable"}, /* MI2_MSG_ICVATTACHED */
{ MI2_MSG_ERROR, "Illegal ICV identifier"}, /* MI2_MSG_BADICV */
{ MI2_MSG_ERROR, "Error setting ICV property: %s"}, /* MI2_MSG_BADPROP */
{ MI2_MSG_ERROR, "ICV is not attached"}, /* MI2_MSG_ICVNOTATTACHED */
{ MI2_MSG_ERROR, "Invalid ICV coordinates"}, /* MI2_MSG_ICVCOORDS */
{ MI2_MSG_ERROR, "Illegal variable access operation" }, /* MI2_MSG_BADOP */
{ MI2_MSG_ERROR, "HDF5 function %s failed" } , /*MI2_MSG_HDF5*/
{ MI2_MSG_ERROR, "Error: %s"} , /*MI2_MSG_GENERIC*/
};
int MI_save_routine_name(char *name)
{
/* no idea what peter was up to here */
/* minc_trash_var = (((minc_call_depth++)==0) ? MI_save_routine_name(name) : * MI_NOERROR)) */
if( (minc_call_depth++)==0 ) {
minc_routine_name = name;
minc_trash_var = TRUE;
} else {
minc_trash_var = MI_NOERROR;
}
return(TRUE);
}
int MI_return(void)
{
/* no idea what peter was up to here */
/* return( (((--minc_call_depth)!=0) || MI_return()) ? (value) : (value)) */
return( ((--minc_call_depth)!=0) || TRUE );
}
int MI_return_error(void)
{
/* no idea what peter was up to here */
/* return( (((--minc_call_depth)!=0) || MI_return_error()) ? (error) : (error)) */
if( (--minc_call_depth)==0 ) {
MI_LOG_PKG_ERROR2(0, "MINC package entry point");
}
return( TRUE );
}
void MI_log_pkg_error2(int p1, char *p2)
{
(void) fprintf(stderr, "%s: ", minc_routine_name);
(void) fprintf(stderr, "%s", p2);
(void) fputc('\n', stderr);
(void) fflush(stderr);
}
void MI_log_pkg_error3(int p1, char *p2, char *p3)
{
(void) fprintf(stderr, "%s: ", minc_routine_name);
(void) fprintf(stderr, p2, p3);
(void) fputc('\n', stderr);
(void) fflush(stderr);
}
void MI_log_sys_error1(char *p1)
{
char *message;
int errnum = errno;
(void) fprintf(stderr, "%s", minc_routine_name);
(void) fprintf(stderr, "%s", p1);
if (errnum == 0) {
(void) fputc('\n', stderr);
}
else {
message = strerror(errnum);
if (message == NULL) message = "Unknown error";
(void) fprintf(stderr, ": %s\n", message);
}
(void) fflush(stderr);
}
/* By default, print all messages of severity error, or worse.
*/
static struct {
int level;
char prog[128];
FILE *fp;
} _MI_log = {
MI_MSG_ERROR, {""}, NULL
};
void milog_init(const char *name)
{
const char *fname_str = miget_cfg_str(MICFG_LOGFILE);
int level = miget_cfg_int(MICFG_LOGLEVEL);
if (!strlen(fname_str)) {
_MI_log.fp = stderr;
}
else if (!strcmp(fname_str, "stdout") || !strcmp(fname_str, "-")) {
_MI_log.fp = stdout;
}
else {
if (*fname_str == '+') {
_MI_log.fp = fopen(fname_str + 1, "w+");
}
else {
_MI_log.fp = fopen(fname_str, "w");
}
}
if (level != 0) {
_MI_log.level = level;
}
strncpy(_MI_log.prog, name, sizeof(_MI_log.prog) - 1 );
}
int milog_set_verbosity(int lvl)
{
int lvl_prev = _MI_log.level;
_MI_log.level = lvl;
return (lvl_prev);
}
int milog_message(mimsgcode_t code, ...)
{
int r;
va_list ap;
va_start ( ap, code );
r= v_mi2log_message("",0,code,ap);
va_end(ap);
return r;
}
int mi2log_message ( const char *file,int line, mimsgcode_t code, ... )
{
int r;
va_list ap;
va_start ( ap, code );
r= v_mi2log_message(file, line, code, ap);
va_end(ap);
return r;
}
int v_mi2log_message(const char *file, int line, mimsgcode_t code, va_list ap)
{
int lvl;
const char *fmt;
if ( _MI2_log.fp == NULL ) {
_MI2_log.fp = stderr;
}
lvl = mierror_table[code - MI_MSG_BASE].level;
fmt = mierror_table[code - MI_MSG_BASE].msgfmt;
/* Log the message if the the message priority
* is less than the configured priority. Always log fatal errors.
*/
if ( ( lvl <= _MI2_log.level ) || lvl == MI2_MSG_FATAL ) {
if ( _MI2_log.prog[0] != '\0' ) {
fprintf ( _MI2_log.fp, "%s:%d %s ", file, line, _MI2_log.prog );
}
fprintf ( _MI2_log.fp, "%s:%d (from %s): ", file, line, minc_routine_name );
vfprintf ( _MI2_log.fp, fmt, ap );
va_end ( ap );
fprintf ( _MI2_log.fp, "\n" );
fflush ( _MI2_log.fp );
}
/* For fatal messages, give up and exit.
*/
if ( lvl == MI2_MSG_FATAL ) {
/*exit ( -1 ); SORRRY, no exits in my programs!*/
return ( MI_ERROR ); /* Just for convenience */
}
return ( MI_ERROR ); /* Just for convenience */
}
/*MINC2 error reporting*/
int MI2_save_routine_name ( char *name )
{
return MI_save_routine_name(name);
}
int MI2_return ( void )
{
return MI_return();
}
int MI2_return_error ( void )
{
return MI_return_error();
}
void MI2_log_pkg_error2 ( int p1, char *p2 )
{
MI_log_pkg_error2(p1,p2);
}
void MI2_log_pkg_error3 ( int p1, char *p2, char *p3 )
{
MI_log_pkg_error3(p1,p2,p3);
}
void MI2_log_sys_error1 ( char *p1 )
{
MI2_log_sys_error1(p1);
}
/** Simple function to read a user's .mincrc file, if present.
*/
/*
static int mi2read_cfg(const char *name, char *buffer, int maxlen)
{
FILE *fp;
int result = 0;
char *home_ptr = getenv("HOME");
char path[256];
if (home_ptr != NULL) {
strcpy(path, home_ptr);
}
else {
path[0] = '\0';
}
strcat(path, "/.mincrc");
if ((fp = fopen(path, "r")) != NULL) {
while (fgets(buffer, maxlen, fp)) {
if (buffer[0] == '#') {
continue;
}
if (!strncasecmp(buffer, name, strlen(name))) {
char *tmp = strchr(buffer, '=');
if (tmp != NULL) {
tmp++;
while (isspace(*tmp)) {
tmp++;
}
strncpy(buffer, tmp, maxlen);
result = 1;
break;
}
}
}
fclose(fp);
}
return (result);
}
static int mi2get_cfg_int(const char *name)
{
char buffer[128];
char *var_ptr;
if ((var_ptr = getenv(name)) != NULL) {
strncpy(buffer, var_ptr, sizeof (buffer));
}
else {
if (!mi2read_cfg(name, buffer, sizeof(buffer))) {
return (0);
}
}
return (atoi(buffer));
}
static char * mi2get_cfg_str(const char *name)
{
char buffer[256];
char *var_ptr;
if ((var_ptr = getenv(name)) != NULL) {
strncpy(buffer, var_ptr, sizeof(buffer));
}
else {
if (!mi2read_cfg(name, buffer, sizeof(buffer))) {
return (NULL);
}
}
return (strdup(buffer));
}
*/
void mi2log_init ( const char *name )
{
milog_init(name);
}
int mi2log_set_verbosity ( int lvl )
{
return milog_set_verbosity(lvl);
}
/* kate: indent-mode cstyle; indent-width 2; replace-tabs on; */