summaryrefslogtreecommitdiffstats
path: root/zvok.c
blob: 079b1f3e7bae8737ca20e24f76972787ba3632f1 (plain) (blame)
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <error.h>
#include <unistd.h>
#include <soundio/soundio.h>
#include <fcntl.h>
#define ABS(x) ((x) < 0 ? -(x) : (x))
#define NUM "4"
struct record_context {
	int glasnost;
};
static enum SoundIoFormat prioritized_formats[] = {
	// SoundIoFormatFloat32NE,
	// SoundIoFormatFloat32FE,
	///SoundIoFormatS32NE,
	// SoundIoFormatS32FE,
	///SoundIoFormatS24NE,
	// SoundIoFormatS24FE,
	SoundIoFormatS16NE,
	// SoundIoFormatS16FE,
	// SoundIoFormatFloat64NE,
	// SoundIoFormatFloat64FE,
	///SoundIoFormatU32NE,
	// SoundIoFormatU32FE,
	///SoundIoFormatU24NE,
	// SoundIoFormatU24FE,
	// SoundIoFormatU16NE,
	// SoundIoFormatU16FE,
	///SoundIoFormatS8,
	///SoundIoFormatU8,
	SoundIoFormatInvalid
};
static void read_callback (struct SoundIoInStream * instream, int frame_count_min __attribute__((unused)), int frame_count_max) {
	struct record_context * rc = instream->userdata;
	struct SoundIoChannelArea * areas;
	int frame_count = frame_count_max;
	int err = soundio_instream_begin_read(instream, &areas, &frame_count);
	long long vzorcev = 0;
	long long glasnost = 0;
	if (!frame_count)
		return;
	if (!areas) // HOLE because of overrun!
		rc->glasnost = 0;
	else
		for (int frame = 0; frame < frame_count; frame++)
			for (int ch = 0; ch < instream->layout.channel_count; ch++) {
				glasnost += ABS(* (int16_t *) areas[ch].ptr);
				vzorcev++;
				areas[ch].ptr += areas[ch].step;
			}
	rc->glasnost = glasnost / vzorcev;
	if ((err = soundio_instream_end_read(instream)))
		error_at_line(0, 0, __FILE__, __LINE__, "soundio_instream_read_end: %s", soundio_strerror(err));
}
static void overflow_callback (struct SoundIoInStream * instream __attribute__((unused))) {
	static int count = 0;
	fprintf(stderr, "overflow %d\n", ++count);
}
static void error_callback (struct SoundIoInStream * instream __attribute__((unused)), int err) {
	fprintf(stderr, "error %s\n", soundio_strerror(err)); // TODO this is unrecoverable, make exit of program
}
int main (void) {
	struct SoundIoInStream * instream = NULL;
	struct SoundIoDevice * selected_device = NULL;
	int r = 0;
	fprintf(stderr, "z okoljsko spremenljivko ID nastaviš id naprave -- idje izpiše program naprave\nz okoljsko spremenljivko ZALEDJE nastaviš zaledje -- program naprave izpiše možna zaledja\n");
	enum SoundIoBackend backend = SoundIoBackendNone;
	char * device_id = getenv("ID");
	if (getenv("ZALEDJE")) {
		switch (getenv("ZALEDJE")[0]) {
			case 'd':
				backend = SoundIoBackendDummy;
				break;
			case 'a':
				backend = SoundIoBackendAlsa;
				break;
			case 'p':
				backend = SoundIoBackendPulseAudio;
				break;
			case 'j':
				backend = SoundIoBackendJack;
				break;
			case 'c':
				backend = SoundIoBackendCoreAudio;
				break;
			case 'w':
				backend = SoundIoBackendWasapi;
				break;
		}
	}
	struct SoundIo * soundio = soundio_create();
	if (!soundio)
		error_at_line(1, ENOMEM, __FILE__, __LINE__, "soundio_create()");
	int err = (backend == SoundIoBackendNone) ? soundio_connect(soundio) : soundio_connect_backend(soundio, backend);
	if (err) {
		error_at_line(0, 0, __FILE__, __LINE__, "soundio_connect: %s", soundio_strerror(err));
		r = 2;
		goto r;
	}
	soundio_flush_events(soundio);
	if (device_id) {
		for (int i = 0; i < soundio_input_device_count(soundio); i++) {
			struct SoundIoDevice * device = soundio_get_input_device(soundio, i);
			if (!strcmp(device_id, device->id)) {
				selected_device = device;
				break;
			}
			soundio_device_unref(device);
		}
	} else {
		int device_index = soundio_default_input_device_index(soundio);
		selected_device = soundio_get_input_device(soundio, device_index);
	}
	if (!selected_device) {
		error_at_line(0, 0, __FILE__, __LINE__, "!selected_device");
		r = 3;
		goto r;
	}
	fprintf(stderr, "izbrana naprava je %s\n", selected_device->name);
	if (selected_device->probe_error) {
		error_at_line(0, 0, __FILE__, __LINE__, "unable to probe device: %s", soundio_strerror(selected_device->probe_error));
		r = 4;
		goto r;
	}
	soundio_device_sort_channel_layouts(selected_device); // TODO poskusi brez
	int sample_rate = 0;
	for (int i = 0; i < selected_device->sample_rate_count; i++) {
		if (selected_device->sample_rates[i].max > sample_rate)
			sample_rate = selected_device->sample_rates[i].max;
	}
	if (!sample_rate) {
		error_at_line(0, 0, __FILE__, __LINE__, "naprava ne podpira vzorčenja");
		r = 5;
		goto r;
	}
	if (!selected_device->format_count) {
		error_at_line(0, 0, __FILE__, __LINE__, "naprava ne podpira oblik");
		r = 6;
		goto r;
	}
	enum SoundIoFormat fmt = SoundIoFormatInvalid;
	for (unsigned i = 0; i < sizeof prioritized_formats/sizeof prioritized_formats[0]; i++) {
		if (soundio_device_supports_format(selected_device, prioritized_formats[i])) {
			fmt = prioritized_formats[i];
			break;
		}
	}
	if (fmt == SoundIoFormatInvalid) {
		// fmt = selected_device->formats[0];
		error_at_line(0, 0, __FILE__, __LINE__, "naprava ne podpira podprte oblike");
		r = 7;
		goto r;
	}
	instream = soundio_instream_create(selected_device);
	if (!instream) {
		error_at_line(0, 0, __FILE__, __LINE__, "oom");
		r = 8;
		goto r;
	}
	sample_rate = 8000;
	fprintf(stderr, "hitrost vzorčenja je %d Hz, %s (prepleten)\n", sample_rate, soundio_format_string(fmt));
	instream->format = fmt;
	instream->sample_rate = sample_rate;
	instream->read_callback = read_callback;
	instream->overflow_callback = overflow_callback;
	instream->error_callback = error_callback;
	struct record_context rc = { 0 };
	instream->userdata = &rc;
	if ((err = soundio_instream_open(instream))) {
		error_at_line(0, 0, __FILE__, __LINE__, "soundio_instream_open: %s (%d)", soundio_strerror(err), err);
		r = 9;
		goto r;
	}
	if (instream->bytes_per_sample != 2) {
		error_at_line(0, 0, __FILE__, __LINE__, "pričakoval sem osembitne vzorce, nisem jih dobil (%d bajtov na vzorec)", instream->bytes_per_sample);
		r = 10;
		goto r;
	}
	fprintf(stderr, "pretok: %s\n", instream->layout.name);
	if ((err = soundio_instream_start(instream))) {
		error_at_line(0, 0, __FILE__, __LINE__, "soundio_instream_start: %s", soundio_strerror(err));
		r = 11;
		goto r;
	}
	int najv_gl = 1;
	int leds[] = { open("/sys/class/leds/input" NUM "::numlock/brightness", O_WRONLY), open("/sys/class/leds/input" NUM "::capslock/brightness", O_WRONLY), open("/sys/class/leds/input" NUM "::scrolllock/brightness", O_WRONLY) };
	while (1) {
		soundio_flush_events(soundio);
		usleep(10000);
		if (rc.glasnost > najv_gl)
			najv_gl = rc.glasnost;
		if (najv_gl < 1)
			najv_gl = 1;
		printf("glasnost: ");
		for (int i = 0; i < 64; i++)
			if (((double) rc.glasnost/najv_gl)*64 > i)
				printf("@");
			else
				printf(" ");
		if ((double) rc.glasnost/najv_gl > 0.2)
			write(leds[0], "1", 1);
		else
			write(leds[0], "0", 1);
		if ((double) rc.glasnost/najv_gl > 0.5)
			write(leds[1], "1", 1);
		else
			write(leds[1], "0", 1);
		if ((double) rc.glasnost/najv_gl > 0.7)
			write(leds[2], "1", 1);
		else
			write(leds[2], "0", 1);
		printf("\n");
		if (rc.glasnost < najv_gl/2)
			najv_gl -= 5;
	}
	r:
	if (instream)
		soundio_instream_destroy(instream);
	if (selected_device)
		soundio_device_unref(selected_device);
	soundio_destroy(soundio);
	return r;
}