forked from karlstav/cava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.c
673 lines (603 loc) · 23.1 KB
/
config.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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
#include "config.h"
#define INCBIN_SILENCE_BITCODE_WARNING
#include "third_party/incbin.h"
#include "util.h"
#include <ctype.h>
#include <iniparser.h>
#include <math.h>
#ifdef SNDIO
#include <sndio.h>
#endif
#include <stdarg.h>
#include <stdbool.h>
#include <sys/stat.h>
INCTXT(ConfigFile, "example_files/config");
// add your custom shaders to be installed here
#define NUMBER_OF_SHADERS 2
INCTXT(normalized_barsfrag, "output/shaders/normalized_bars.frag");
INCTXT(pass_throughvert, "output/shaders/pass_through.vert");
// INCTXT will create a char g<name>Data
const char *default_shader_data[NUMBER_OF_SHADERS] = {gnormalized_barsfragData,
gpass_throughvertData};
// name of the installed shader file, technically does not have to be the same as in the source
const char *default_shader_name[NUMBER_OF_SHADERS] = {"normalized_bars.frag", "pass_through.vert"};
double smoothDef[5] = {1, 1, 1, 1, 1};
enum input_method default_methods[] = {
INPUT_FIFO,
INPUT_PORTAUDIO,
INPUT_ALSA,
INPUT_PULSE,
};
char *outputMethod, *orientation, *channels, *xaxisScale, *monoOption, *fragmentShader,
*vertexShader;
const char *input_method_names[] = {
"fifo", "portaudio", "alsa", "pulse", "sndio", "shmem",
};
const bool has_input_method[] = {
true, /** Always have at least FIFO and shmem input. */
HAS_PORTAUDIO, HAS_ALSA, HAS_PULSE, HAS_SNDIO, true,
};
enum input_method input_method_by_name(const char *str) {
for (int i = 0; i < INPUT_MAX; i++) {
if (!strcmp(str, input_method_names[i])) {
return (enum input_method)i;
}
}
return INPUT_MAX;
}
void write_errorf(void *err, const char *fmt, ...) {
struct error_s *error = (struct error_s *)err;
va_list args;
va_start(args, fmt);
error->length +=
vsnprintf((char *)error->message + error->length, MAX_ERROR_LEN - error->length, fmt, args);
va_end(args);
}
int validate_color(char *checkColor, void *params, void *err) {
struct config_params *p = (struct config_params *)params;
struct error_s *error = (struct error_s *)err;
int validColor = 0;
if (checkColor[0] == '#' && strlen(checkColor) == 7) {
for (int i = 1; checkColor[i]; ++i) {
if (!isdigit(checkColor[i])) {
if (tolower(checkColor[i]) >= 'a' && tolower(checkColor[i]) <= 'f') {
validColor = 1;
} else {
validColor = 0;
break;
}
} else {
validColor = 1;
}
}
} else {
if (p->output == OUTPUT_SDL) {
write_errorf(error, "SDL only supports setting color in html format\n");
return 0;
}
if ((strcmp(checkColor, "black") == 0) || (strcmp(checkColor, "red") == 0) ||
(strcmp(checkColor, "green") == 0) || (strcmp(checkColor, "yellow") == 0) ||
(strcmp(checkColor, "blue") == 0) || (strcmp(checkColor, "magenta") == 0) ||
(strcmp(checkColor, "cyan") == 0) || (strcmp(checkColor, "white") == 0) ||
(strcmp(checkColor, "default") == 0))
validColor = 1;
}
return validColor;
}
bool validate_colors(void *params, void *err) {
struct config_params *p = (struct config_params *)params;
struct error_s *error = (struct error_s *)err;
// validate: color
if (!validate_color(p->color, p, error)) {
write_errorf(error, "The value for 'foreground' is invalid. It can be either one of the 7 "
"named colors or a HTML color of the form '#xxxxxx'.\n");
return false;
}
// validate: background color
if (!validate_color(p->bcolor, p, error)) {
write_errorf(error, "The value for 'background' is invalid. It can be either one of the 7 "
"named colors or a HTML color of the form '#xxxxxx'.\n");
return false;
}
if (p->gradient) {
for (int i = 0; i < p->gradient_count; i++) {
if (!validate_color(p->gradient_colors[i], p, error)) {
write_errorf(
error,
"Gradient color %d is invalid. It must be HTML color of the form '#xxxxxx'.\n",
i + 1);
return false;
}
}
}
// In case color is not html format set bgcol and col to predefinedint values
p->col = -1;
if (strcmp(p->color, "black") == 0)
p->col = 0;
if (strcmp(p->color, "red") == 0)
p->col = 1;
if (strcmp(p->color, "green") == 0)
p->col = 2;
if (strcmp(p->color, "yellow") == 0)
p->col = 3;
if (strcmp(p->color, "blue") == 0)
p->col = 4;
if (strcmp(p->color, "magenta") == 0)
p->col = 5;
if (strcmp(p->color, "cyan") == 0)
p->col = 6;
if (strcmp(p->color, "white") == 0)
p->col = 7;
if (p->color[0] == '#')
p->col = 8;
// default if invalid
// validate: background color
if (strcmp(p->bcolor, "black") == 0)
p->bgcol = 0;
if (strcmp(p->bcolor, "red") == 0)
p->bgcol = 1;
if (strcmp(p->bcolor, "green") == 0)
p->bgcol = 2;
if (strcmp(p->bcolor, "yellow") == 0)
p->bgcol = 3;
if (strcmp(p->bcolor, "blue") == 0)
p->bgcol = 4;
if (strcmp(p->bcolor, "magenta") == 0)
p->bgcol = 5;
if (strcmp(p->bcolor, "cyan") == 0)
p->bgcol = 6;
if (strcmp(p->bcolor, "white") == 0)
p->bgcol = 7;
if (p->bcolor[0] == '#')
p->bgcol = 8;
// default if invalid
return true;
}
bool validate_config(struct config_params *p, struct error_s *error) {
// validate: output method
p->output = OUTPUT_NOT_SUPORTED;
if (strcmp(outputMethod, "ncurses") == 0) {
p->output = OUTPUT_NCURSES;
p->bgcol = -1;
#ifndef NCURSES
write_errorf(error, "cava was built without ncurses support, install ncursesw dev files "
"and run make clean && ./configure && make again\n");
return false;
#endif
}
if (strcmp(outputMethod, "sdl") == 0) {
p->output = OUTPUT_SDL;
#ifndef SDL
write_errorf(error, "cava was built without sdl support, install sdl dev files "
"and run make clean && ./configure && make again\n");
return false;
#endif
}
if (strcmp(outputMethod, "sdl_glsl") == 0) {
p->output = OUTPUT_SDL_GLSL;
#ifndef SDL_GLSL
write_errorf(error, "cava was built without sdl support, install sdl dev files "
"and run make clean && ./configure && make again\n");
return false;
#endif
}
if (strcmp(outputMethod, "noncurses") == 0) {
p->output = OUTPUT_NONCURSES;
p->bgcol = 0;
}
if (strcmp(outputMethod, "noritake") == 0) {
p->output = OUTPUT_NORITAKE;
p->raw_format = FORMAT_NTK3000; // only format supported now
}
if (strcmp(outputMethod, "raw") == 0) { // raw:
p->output = OUTPUT_RAW;
p->bar_spacing = 0;
p->bar_width = 1;
// checking data format
p->raw_format = -1;
if (strcmp(p->data_format, "binary") == 0) {
p->raw_format = FORMAT_BINARY;
// checking bit format:
if (p->bit_format != 8 && p->bit_format != 16) {
write_errorf(
error,
"bit format %d is not supported, supported data formats are: '8' and '16'\n",
p->bit_format);
return false;
}
} else if (strcmp(p->data_format, "ascii") == 0) {
p->raw_format = FORMAT_ASCII;
if (p->ascii_range < 1) {
write_errorf(error, "ascii max value must be a positive integer\n");
return false;
}
} else {
write_errorf(error,
"data format %s is not supported, supported data formats are: 'binary' "
"and 'ascii'\n",
p->data_format);
return false;
}
}
if (p->output == OUTPUT_NOT_SUPORTED) {
char supportedOutput[1024] = "'noncurses', 'raw', 'noritake'";
#ifdef NCURSES
strcat(supportedOutput, ", 'ncurses'");
#endif
#ifdef SDL
strcat(supportedOutput, ", 'sdl'");
#endif
#ifdef SDL_GLSL
strcat(supportedOutput, ", 'sdl_glsl'");
#endif
write_errorf(error, "output method %s is not supported, supported methods are: %s\n",
outputMethod, supportedOutput);
return false;
}
p->orientation = ORIENT_BOTTOM;
if (p->output == OUTPUT_SDL || p->output == OUTPUT_NCURSES) {
if (strcmp(orientation, "top") == 0) {
p->orientation = ORIENT_TOP;
}
if (strcmp(orientation, "left") == 0) {
p->orientation = ORIENT_LEFT;
}
if (strcmp(orientation, "right") == 0) {
p->orientation = ORIENT_RIGHT;
}
}
p->xaxis = NONE;
if (strcmp(xaxisScale, "none") == 0) {
p->xaxis = NONE;
}
if (strcmp(xaxisScale, "frequency") == 0) {
p->xaxis = FREQUENCY;
}
if (strcmp(xaxisScale, "note") == 0) {
p->xaxis = NOTE;
}
// validate: output channels
p->stereo = -1;
if (strcmp(channels, "mono") == 0) {
p->stereo = 0;
if (strcmp(monoOption, "average") == 0) {
p->mono_opt = AVERAGE;
} else if (strcmp(monoOption, "left") == 0) {
p->mono_opt = LEFT;
} else if (strcmp(monoOption, "right") == 0) {
p->mono_opt = RIGHT;
} else {
write_errorf(error,
"mono option %s is not supported, supported options are: 'average', "
"'left' or 'right'\n",
monoOption);
return false;
}
}
if (strcmp(channels, "stereo") == 0)
p->stereo = 1;
if (p->stereo == -1) {
write_errorf(
error,
"output channels %s is not supported, supported channelss are: 'mono' and 'stereo'\n",
channels);
return false;
}
// validate: bars
p->autobars = 1;
if (p->fixedbars > 0)
p->autobars = 0;
if (p->bar_width < 1)
p->bar_width = 1;
// validate: framerate
if (p->framerate < 0) {
write_errorf(error, "framerate can't be negative!\n");
return false;
}
// validate: colors
if (!validate_colors(p, error)) {
return false;
}
// validate: gravity
p->gravity = p->gravity / 100;
if (p->gravity < 0) {
p->gravity = 0;
}
// validate: integral
p->integral = p->integral / 100;
if (p->integral < 0) {
p->integral = 0;
} else if (p->integral > 1) {
p->integral = 1;
}
// validate: noise_reduction
if (p->noise_reduction < 0) {
p->noise_reduction = 0;
} else if (p->noise_reduction > 1) {
p->noise_reduction = 1;
}
// validate: cutoff
if (p->lower_cut_off == 0)
p->lower_cut_off++;
if (p->lower_cut_off > p->upper_cut_off) {
write_errorf(error,
"lower cutoff frequency can't be higher than higher cutoff frequency\n");
return false;
}
// setting sens
p->sens = p->sens / 100;
return true;
}
bool load_colors(struct config_params *p, dictionary *ini, void *err) {
struct error_s *error = (struct error_s *)err;
free(p->color);
free(p->bcolor);
p->color = strdup(iniparser_getstring(ini, "color:foreground", "default"));
p->bcolor = strdup(iniparser_getstring(ini, "color:background", "default"));
p->gradient = iniparser_getint(ini, "color:gradient", 0);
if (p->gradient) {
for (int i = 0; i < p->gradient_count; ++i) {
free(p->gradient_colors[i]);
}
p->gradient_count = iniparser_getint(ini, "color:gradient_count", 8);
if (p->gradient_count < 2) {
write_errorf(error, "\nAtleast two colors must be given as gradient!\n");
return false;
}
if (p->gradient_count > 8) {
write_errorf(error, "\nMaximum 8 colors can be specified as gradient!\n");
return false;
}
p->gradient_colors = (char **)malloc(sizeof(char *) * p->gradient_count * 9);
p->gradient_colors[0] =
strdup(iniparser_getstring(ini, "color:gradient_color_1", "#59cc33"));
p->gradient_colors[1] =
strdup(iniparser_getstring(ini, "color:gradient_color_2", "#80cc33"));
p->gradient_colors[2] =
strdup(iniparser_getstring(ini, "color:gradient_color_3", "#a6cc33"));
p->gradient_colors[3] =
strdup(iniparser_getstring(ini, "color:gradient_color_4", "#cccc33"));
p->gradient_colors[4] =
strdup(iniparser_getstring(ini, "color:gradient_color_5", "#cca633"));
p->gradient_colors[5] =
strdup(iniparser_getstring(ini, "color:gradient_color_6", "#cc8033"));
p->gradient_colors[6] =
strdup(iniparser_getstring(ini, "color:gradient_color_7", "#cc5933"));
p->gradient_colors[7] =
strdup(iniparser_getstring(ini, "color:gradient_color_8", "#cc3333"));
}
return true;
}
bool load_config(char configPath[PATH_MAX], struct config_params *p, bool colorsOnly,
struct error_s *error) {
FILE *fp;
char cava_config_home[PATH_MAX / 2];
// config: creating path to default config file
char *configHome = getenv("XDG_CONFIG_HOME");
if (configHome != NULL) {
sprintf(cava_config_home, "%s/%s/", configHome, PACKAGE);
mkdir(cava_config_home, 0777);
} else {
configHome = getenv("HOME");
if (configHome != NULL) {
sprintf(cava_config_home, "%s/%s/", configHome, ".config");
mkdir(cava_config_home, 0777);
sprintf(cava_config_home, "%s/%s/%s/", configHome, ".config", PACKAGE);
mkdir(cava_config_home, 0777);
} else {
write_errorf(error, "No HOME found (ERR_HOMELESS), exiting...");
return false;
}
}
if (configPath[0] == '\0') {
// config: adding default filename file
strcat(configPath, cava_config_home);
strcat(configPath, "config");
// open file or create file if it does not exist
fp = fopen(configPath, "ab+");
if (fp) {
fseek(fp, 0, SEEK_END);
if (ftell(fp) == 0) {
printf("config file is empty, creating default config file\n");
fwrite(gConfigFileData, gConfigFileSize - 1, sizeof(char), fp);
}
fclose(fp);
} else {
// try to open file read only
fp = fopen(configPath, "rb");
if (fp) {
fclose(fp);
} else {
write_errorf(error, "Unable to open or create file '%s', exiting...\n", configPath);
return false;
}
}
} else { // opening specified file
fp = fopen(configPath, "rb");
if (fp) {
fclose(fp);
} else {
write_errorf(error, "Unable to open file '%s', exiting...\n", configPath);
return false;
}
}
// create default shader files if they do not exist
char *shaderPath = malloc(sizeof(char) * PATH_MAX);
sprintf(shaderPath, "%s/shaders", cava_config_home);
mkdir(shaderPath, 0777);
for (int i = 0; i < NUMBER_OF_SHADERS; i++) {
char *shaderFile = malloc(sizeof(char) * PATH_MAX);
sprintf(shaderFile, "%s/%s", shaderPath, default_shader_name[i]);
fp = fopen(shaderFile, "ab+");
fseek(fp, 0, SEEK_END);
if (ftell(fp) == 0) {
printf("shader file is empty, creating default shader file\n");
fwrite(default_shader_data[i], strlen(default_shader_data[i]), sizeof(char), fp);
}
fclose(fp);
free(shaderFile);
}
free(shaderPath);
// config: parse ini
dictionary *ini;
ini = iniparser_load(configPath);
if (colorsOnly) {
if (!load_colors(p, ini, error)) {
return false;
}
return validate_colors(p, error);
}
#ifdef NCURSES
outputMethod = (char *)iniparser_getstring(ini, "output:method", "ncurses");
#endif
#ifndef NCURSES
outputMethod = (char *)iniparser_getstring(ini, "output:method", "noncurses");
#endif
orientation = (char *)iniparser_getstring(ini, "output:orientation", "bottom");
xaxisScale = (char *)iniparser_getstring(ini, "output:xaxis", "none");
p->monstercat = 1.5 * iniparser_getdouble(ini, "smoothing:monstercat", 0);
p->waves = iniparser_getint(ini, "smoothing:waves", 0);
p->integral = iniparser_getdouble(ini, "smoothing:integral", 77);
p->gravity = iniparser_getdouble(ini, "smoothing:gravity", 100);
p->ignore = iniparser_getdouble(ini, "smoothing:ignore", 0);
p->noise_reduction = iniparser_getdouble(ini, "smoothing:noise_reduction", 0.77);
if (!load_colors(p, ini, error)) {
return false;
}
p->fixedbars = iniparser_getint(ini, "general:bars", 0);
p->bar_width = iniparser_getint(ini, "general:bar_width", 2);
p->bar_spacing = iniparser_getint(ini, "general:bar_spacing", 1);
p->bar_height = iniparser_getint(ini, "general:bar_height", 32);
p->framerate = iniparser_getint(ini, "general:framerate", 60);
p->sens = iniparser_getint(ini, "general:sensitivity", 100);
p->autosens = iniparser_getint(ini, "general:autosens", 1);
p->overshoot = iniparser_getint(ini, "general:overshoot", 20);
p->lower_cut_off = iniparser_getint(ini, "general:lower_cutoff_freq", 50);
p->upper_cut_off = iniparser_getint(ini, "general:higher_cutoff_freq", 10000);
p->sleep_timer = iniparser_getint(ini, "general:sleep_timer", 0);
// hidden test features
// draw this many frames and quit, used for testing
p->draw_and_quit = iniparser_getint(ini, "general:draw_and_quit", 0);
// expect combined values of bar height in last frame to be 0
p->zero_test = iniparser_getint(ini, "general:zero_test", 0);
// or not 0
p->non_zero_test = iniparser_getint(ini, "general:non_zero_test", 0);
// config: output
free(channels);
free(monoOption);
free(p->raw_target);
free(p->data_format);
free(vertexShader);
free(fragmentShader);
channels = strdup(iniparser_getstring(ini, "output:channels", "stereo"));
monoOption = strdup(iniparser_getstring(ini, "output:mono_option", "average"));
p->reverse = iniparser_getint(ini, "output:reverse", 0);
p->raw_target = strdup(iniparser_getstring(ini, "output:raw_target", "/dev/stdout"));
p->data_format = strdup(iniparser_getstring(ini, "output:data_format", "binary"));
p->bar_delim = (char)iniparser_getint(ini, "output:bar_delimiter", 59);
p->frame_delim = (char)iniparser_getint(ini, "output:frame_delimiter", 10);
p->ascii_range = iniparser_getint(ini, "output:ascii_max_range", 1000);
p->bit_format = iniparser_getint(ini, "output:bit_format", 16);
p->sdl_width = iniparser_getint(ini, "output:sdl_width", 1000);
p->sdl_height = iniparser_getint(ini, "output:sdl_height", 500);
p->sdl_x = iniparser_getint(ini, "output:sdl_x", -1);
p->sdl_y = iniparser_getint(ini, "output:sdl_y", -1);
if (strcmp(outputMethod, "sdl") == 0 || strcmp(outputMethod, "sdl_glsl") == 0) {
p->color = strdup(iniparser_getstring(ini, "color:foreground", "#33cccc"));
p->bcolor = strdup(iniparser_getstring(ini, "color:background", "#111111"));
p->bar_width = iniparser_getint(ini, "general:bar_width", 20);
p->bar_spacing = iniparser_getint(ini, "general:bar_spacing", 5);
}
if (strcmp(outputMethod, "sdl_glsl") == 0) {
p->bar_width = iniparser_getint(ini, "general:bar_width", 1);
p->bar_spacing = iniparser_getint(ini, "general:bar_spacing", 0);
}
p->continuous_rendering = iniparser_getint(ini, "output:continuous_rendering", 0);
p->sync_updates = iniparser_getint(ini, "output:alacritty_sync", 0);
vertexShader = strdup(iniparser_getstring(ini, "output:vertex_shader", "pass_through.vert"));
fragmentShader =
strdup(iniparser_getstring(ini, "output:fragment_shader", "normalized_bars.frag"));
p->vertex_shader = malloc(sizeof(char) * PATH_MAX);
p->fragment_shader = malloc(sizeof(char) * PATH_MAX);
sprintf(p->vertex_shader, "%s/shaders/%s", cava_config_home, vertexShader);
sprintf(p->fragment_shader, "%s/shaders/%s", cava_config_home, fragmentShader);
// read & validate: eq
p->userEQ_keys = iniparser_getsecnkeys(ini, "eq");
if (p->userEQ_keys > 0) {
p->userEQ_enabled = 1;
p->userEQ = (double *)calloc(p->userEQ_keys + 1, sizeof(double));
#ifndef LEGACYINIPARSER
const char *keys[p->userEQ_keys];
iniparser_getseckeys(ini, "eq", keys);
#endif
#ifdef LEGACYINIPARSER
char **keys = iniparser_getseckeys(ini, "eq");
#endif
for (int sk = 0; sk < p->userEQ_keys; sk++) {
p->userEQ[sk] = iniparser_getdouble(ini, keys[sk], 1);
}
} else {
p->userEQ_enabled = 0;
}
free(p->audio_source);
char *input_method_name;
for (size_t i = 0; i < ARRAY_SIZE(default_methods); i++) {
enum input_method method = default_methods[i];
if (has_input_method[method]) {
input_method_name =
(char *)iniparser_getstring(ini, "input:method", input_method_names[method]);
}
}
p->input = input_method_by_name(input_method_name);
switch (p->input) {
#ifdef ALSA
case INPUT_ALSA:
p->audio_source = strdup(iniparser_getstring(ini, "input:source", "hw:Loopback,1"));
break;
#endif
case INPUT_FIFO:
p->audio_source = strdup(iniparser_getstring(ini, "input:source", "/tmp/mpd.fifo"));
p->fifoSample = iniparser_getint(ini, "input:sample_rate", 44100);
p->fifoSampleBits = iniparser_getint(ini, "input:sample_bits", 16);
break;
#ifdef PULSE
case INPUT_PULSE:
p->audio_source = strdup(iniparser_getstring(ini, "input:source", "auto"));
break;
#endif
#ifdef SNDIO
case INPUT_SNDIO:
p->audio_source = strdup(iniparser_getstring(ini, "input:source", SIO_DEVANY));
break;
#endif
case INPUT_SHMEM:
p->audio_source =
strdup(iniparser_getstring(ini, "input:source", "/squeezelite-00:00:00:00:00:00"));
break;
#ifdef PORTAUDIO
case INPUT_PORTAUDIO:
p->audio_source = strdup(iniparser_getstring(ini, "input:source", "auto"));
break;
#endif
case INPUT_MAX: {
char supported_methods[255] = "";
for (int i = 0; i < INPUT_MAX; i++) {
if (has_input_method[i]) {
strcat(supported_methods, "'");
strcat(supported_methods, input_method_names[i]);
strcat(supported_methods, "' ");
}
}
write_errorf(error, "input method '%s' is not supported, supported methods are: %s\n",
input_method_name, supported_methods);
return false;
}
default:
write_errorf(error, "cava was built without '%s' input support\n",
input_method_names[p->input]);
return false;
}
bool result = validate_config(p, error);
iniparser_freedict(ini);
return result;
}