-
Notifications
You must be signed in to change notification settings - Fork 1
/
varargs.c
319 lines (278 loc) · 10.2 KB
/
varargs.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
#if 0
/*=============================================================================
VARARGS - general purpose routines for displaying messages and getting
input values. The routines provided all allow variable numbers
of parameters, just like printf.
=============================================================================*/
void err_exit( char *fmt, ... ); /* prints error and exits the program.*/
void ev_exit( int eval, char *fmt, ... ); /* prints error and exits with code eval.*/
void perr_exit( char *fmt, ... ); /* prints perror and exits the program.*/
int err_ret( int ret, char *fmt, ... ); /* prints error and returns ret. */
int perr_ret( int ret, char *fmt, ... ); /* prints perror and returns ret.*/
void moan( char *fmt, ... ); /* prints an error message. */
void warn( char *fmt, ... ); /* prints a warning message. */
void info( char *fmt, ... ); /* Prints an info message to errFile.*/
void DBUG( char *fmt, ... ); /* prints a debug message. */
void DBUGL( int lvl, char *fmt, ... ); /* prints a debug msg if debug > lvl.*/
int getstr( char *result, char *fmt, ... );/* prompts and reads a string. */
/* prompts and gets an int in [lo,hi],*/
/* or uses def for default value.*/
int get_value(int *val, int def,int lo, int hi,char *fmt, ...);
int lookup_token(char *token, int count, ... );
void strucpy( char *d, char *s ); /* Copies s to d converted to upper case.*/
void uppercase(char *s); /* Converts s to upper case in place.*/
=============================================================================*/
#endif
#include "mixit.h"
#include <stdarg.h>
/*==========================================================================*
| err_exit - Prints out the error message described by fmt then exits with
| error code -1 to indicate an error.
*==========================================================================*/
void err_exit(char *fmt, ...)
{
va_list ap;
fprintf( errFile, "ERROR: " );
va_start( ap, fmt );
vfprintf( errFile, fmt, ap );
va_end(ap);
fprintf( errFile, "\n" );
exit(-1);
} /* end err_exit */
#if 0
/*==========================================================================*
| ev_exit - Prints out the error message described by fmt then exits with
| error code -1 to indicate an error.
*==========================================================================*/
void ev_exit(int eval, char *fmt, ...)
{
va_list ap;
fprintf( errFile, "\nERROR: " );
va_start( ap, fmt );
vfprintf( errFile, fmt, ap );
va_end(ap);
fprintf( errFile, "\n \n" );
exit(eval);
} /* end ev_exit */
/*==========================================================================*
| perr_exit - Prints out the perror message described by fmt then exits with
| error code -1 to indicate an error.
*==========================================================================*/
void perr_exit(char *fmt, ...)
{
va_list ap;
char string[128];
va_start( ap, fmt );
vsprintf( string, fmt, ap );
va_end(ap);
perror( string );
exit(-1);
} /* end perr_exit */
#endif
/*==========================================================================*
| err_return - Prints out the error message described by fmt then returns
| 'ret'.
*==========================================================================*/
int err_return(int ret, char *fmt, ...)
{
va_list ap;
fprintf( errFile, "ERROR: " );
va_start( ap, fmt );
vfprintf( errFile, fmt, ap );
va_end(ap);
fprintf( errFile, "\n" );
return ret;
} /* end err_return */
/*==========================================================================*
| perr_return - Prints out the perror message described by fmt then returns
| 'ret'.
*==========================================================================*/
int perr_return(int ret, char *fmt, ...)
{
va_list ap;
char string[128];
va_start( ap, fmt );
vsprintf( string, fmt, ap );
va_end(ap);
perror( string );
return ret;
} /* end perr_return */
static void generic_msg(const char *title, const char *fmt, va_list ap)
{
char buf[2048];
int len;
len = 0;
if ( whatWeAreDoing == DOING_IN_CMD && inspec[0] )
len += snprintf(buf+len, sizeof(buf)-len, "%d:%s ", ingpf.recordNumber, inspec);
else if ( whatWeAreDoing == DOING_OUTPUT && outspec[0] )
len += snprintf(buf+len, sizeof(buf)-len, "%d:%s ", outgpf.recordNumber, outspec);
len += snprintf(buf+len,sizeof(buf)-len, "%s: ", title);
vsnprintf( buf+len, sizeof(buf)-len, fmt, ap );
fputs( buf, errFile );
if ( !len || buf[len-1] != '\n' )
fputs("\n", errFile);
fflush( errFile );
}
/*==========================================================================*
| moan - Prints out the error message described by fmt, then returns.
*==========================================================================*/
void moan(char *fmt, ...)
{
va_list ap;
va_start(ap,fmt);
generic_msg("ERROR",fmt,ap);
va_end(ap);
} /* end moan */
/*==========================================================================*
| warn - Prints out the warning message described by fmt, then returns.
*==========================================================================*/
void warn(char *fmt, ...)
{
va_list ap;
va_start(ap,fmt);
generic_msg("WARN",fmt,ap);
va_end(ap);
} /* end warn */
#if 0
/*==========================================================================*
| info - Prints out the error message described by fmt, then returns.
*==========================================================================*/
void info(char *fmt, ...)
{
va_list ap;
va_start( ap, fmt );
vfprintf( errFile, fmt, ap );
va_end(ap);
fprintf( errFile, "\n" );
fflush( errFile );
} /* end info */
/*==========================================================================*
| DBUG - Prints a debug message if the debug flag is active.
*==========================================================================*/
void DBUG(char *fmt, ...)
{
va_list ap;
extern int debug;
if (!debug) return;
fprintf( errFile, "\nDEBUG: " );
va_start( ap, fmt );
vfprintf( errFile, fmt, ap );
va_end(ap);
fflush( errFile );
} /* end DBUG */
/*==========================================================================*
| DBUGL - Prints a debug message if the debug flag > lvl.
*==========================================================================*/
void DBUGL(int lvl, char *fmt, ...)
{
va_list ap;
extern int debug;
if (debug <= lvl) return;
va_start( ap, fmt );
vfprintf( errFile, fmt, ap );
va_end(ap);
fflush( errFile );
} /* end DBUGL */
/*==========================================================================*
| getstr - Prints a prompt string based on fmt, then gets a string
| response. Returns length of response string.
*==========================================================================*/
int getstr(char *result, char *fmt, ...)
{
va_list ap;
printf( "ENTER: " );
va_start( ap, fmt );
vprintf( fmt, ap );
va_end(ap);
printf( ": ");
gets( result );
return ( strlen(result) );
} /* end getstr */
/*==========================================================================*
| get_value - Prints a prompt string based on fmt, then gets an integer
| response. The response must be within oklo and okhi, or an
| error message is printed. If no value is entered, def is
| used for value. Returns 1 if (oklo <= value <= okhi), else
| returns 0.
*==========================================================================*/
int get_value(int *value, int def, int oklo, int okhi, char *fmt, ...)
{
va_list ap;
extern int verbose;
char result[132];
printf( "ENTER: " );
va_start( ap, fmt );
vprintf( fmt, ap );
va_end(ap);
printf( " (%d-%d) : ", oklo, okhi );
gets( result );
if (!verbose)
puts(result);
if ( !strlen(result) )
{
*value = def;
return 1;
}
sscanf( result, "%d", value );
if ( in(oklo, *value, okhi) )
return 1;
moan( "value must range from %d thru %d", oklo, okhi );
return 0;
} /* end get_value */
/*==========================================================================*
* strucpy - Copies string s to string d, converting s to uppercase in d.
*==========================================================================*/
void strucpy( register char *d, register char *s )
{
if (!s || !d) return;
do
*d++ = toupper( *s );
while (*s++);
} /* end strucpy */
#endif
/*============================================================================*
* uppercase - Converts string s to upper case in place.
*============================================================================*/
void uppercase(char *s)
{
if (!s || !*s) return;
do
*s = toupper( *s );
while (*++s);
} /* end uppercase */
/*============================================================================*
* lookup_token - Searches for a token in a list of tokens and returns the
* index of the matching token. Token will match any unique
* abbreviation of the check list, and will also match if
* an exact match occurs, even if longer nonunique versions of
* the token are present in the list.
* token - the token to look up in the list.
* ... - list of tokens to check against, last entry must be 0.
* returns - index of matching token (0 is first entry in list),
* or -1 if no match or multiple matches occur.
*============================================================================*/
int lookup_token(char *token, ... )
{
va_list ap;
int maxlen = strlen(token);
int matches, count;
int index = -1;
char *list;
va_start( ap, token );
uppercase( token );
for( matches = count = 0; (list = va_arg(ap, char *)) != 0; ++count )
{
if ( !strncmp(token, list, maxlen) )
{
if (!matches++) /* Multiple matches */
index = count;
else
{
index = -1;
break;
}
}
}
va_end(ap);
return index;
} /* end lookup_token */