-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sodar_main.c
172 lines (136 loc) · 4.51 KB
/
Sodar_main.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
/*
Command line processing for Sodar
*/
#include <stdlib.h>
#include <error.h>
#include <argp.h>
#include "Sodar.h"
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
#define DEFAULT_HERTZ 44000
#define DEFAULT_FRAMES 2048
#define DEFAULT_SPEAKER_DIST 70
#define DEFAULT_IGNORE_TIME 0.3
#define DEFAULT_MIN_CORRELATION 0.9
#define DEFAULT_MIN_STD 0.2
const char *argp_program_version = "Sodar 1.0";
const char *argp_program_bug_address =
"<[email protected]>";
/* Program documentation. */
static char doc[] =
"Sodar -- program to try to measure sound direction\nUses phase difference between two microphones to estimate direction";
/* A description of the arguments we accept. (actually no args)*/
static char args_doc[] = "";
//"-d device -h hertz -f frame_size -w width_apart -t time_to_run -i time_to_ignore -c correlation";
/* Keys for options without short-options. */
#define OPT_ABORT 1 /* –abort */
/* The options we understand. */
static struct argp_option options[] =
{
// {"output", 'o', "FILE", 0,"Output to FILE instead of standard output" },
{0,0,0,0, "The following options should be grouped together:" },
{"device", 'd', "DEVICE", OPTION_ARG_OPTIONAL,"Device to use (default)"},
{"hertz", 'h', "HERTZ", OPTION_ARG_OPTIONAL,"Hertz to run at (" STR(DEFAULT_HERTZ)")"},
{"frames", 'f', "FRAMES", OPTION_ARG_OPTIONAL, "Frane Size (default "STR(DEFAULT_FRAMES)")"},
{"width", 'w', "WIDTH", OPTION_ARG_OPTIONAL, "Speaker distance apart ("STR(DEFAULT_WIDTH)"mm)"},
{"time", 't', "TIME", OPTION_ARG_OPTIONAL,"Time to run for (forever)"},
{"ignore", 'i', "IGNORE", OPTION_ARG_OPTIONAL,"Initial time to ignore ("STR(DEFAULT_IGNORE_TIME)"s)"},
{"correlation", 'c', "CORRELATION", OPTION_ARG_OPTIONAL,"Minimum correlation to report ("STR(DEFAULT_MIN_CORRELATION)")"},
{"minstd", 'm', "MINSTD", OPTION_ARG_OPTIONAL,"Minimum std of correlation to report ("STR(DEFAULT_MIN_STD)")"},
{ 0 }
};
/* Parse a single option. */
static error_t
parse_opt (int key, char *arg, struct argp_state *state)
{
/* Get the input argument from argp_parse, which we
know is a pointer to our arguments structure. */
struct arguments *arguments = state->input;
switch (key)
{
case 'r':
arguments->repeat_count = arg ? atoi (arg) : 10;
break;
case 'd':
arguments->device = arg ? arg : "default";
break;
case 'h':
arguments->hertz = arg ? atoi(arg) : DEFAULT_HERTZ;
break;
case 'f':
arguments->frames = arg ? atoi(arg) : DEFAULT_FRAMES;
break;
case 'w':
arguments->width = arg ? atoi(arg) : DEFAULT_SPEAKER_DIST;
break;
case 'i':
arguments->ignore = arg ? atof(arg) : DEFAULT_IGNORE_TIME;
break;
case 't':
arguments->time = arg ? atof(arg) : 0.0;
break;
case 'c':
arguments->correlation = arg ? atof(arg) : DEFAULT_MIN_CORRELATION;
break;
case 'm':
arguments->minStd = arg ? atof(arg) : 0.2;
break;
case OPT_ABORT:
arguments->abort = 1;
break;
case ARGP_KEY_NO_ARGS:
// no args is fine
// argp_usage (state);
case ARGP_KEY_ARG:
/* Here we know that state->arg_num == 0, since we
force argument parsing to end before any more arguments can
get here. */
arguments->arg1 = arg;
/* Now we consume all the rest of the arguments.
state->next is the index in state->argv of the
next argument to be parsed, which is the first string
we’re interested in, so we can just use
&state->argv[state->next] as the value for
arguments->strings.
In addition, by setting state->next to the end
of the arguments, we can force argp to stop parsing here and
return. */
arguments->strings = &state->argv[state->next];
state->next = state->argc;
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
/* Our argp parser. */
static struct argp argp = { options, parse_opt, args_doc , doc };
int main (int argc, char **argv)
{
int i, j;
struct arguments arguments;
/* Default values. */
arguments.silent = 0;
arguments.verbose = 0;
arguments.output_file = "-";
arguments.repeat_count = 1;
arguments.abort = 0;
arguments.device = "default";
arguments.hertz = 44000;
arguments.frames = 1024;
arguments.correlation = 0.95;
arguments.width = 70;
arguments.time = 0.0;
arguments.ignore = 0.3;
arguments.minStd = 0.2;
/* Parse our arguments; every option seen by parse_opt will be
reflected in arguments. */
if (argp_parse (&argp, argc, argv, 0, 0, &arguments))
{
// exit(1);
}
if (arguments.abort)
error (10, 0, "ABORTED");
main_process(&arguments);
exit (0);
}