summaryrefslogtreecommitdiff
path: root/src/pa-sink-ctl.c
blob: ba35bb3920f403d3fe462cb4f8fd45ccf6f9406b (plain)
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
#define _XOPEN_SOURCE 500
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>

#include <glib.h>

#include <pulse/pulseaudio.h>
#include <pulse/glib-mainloop.h>

#include <ncurses.h>

#include "sink_input.h"
#include "sink.h"
#include "interface.h"
#include "pa-sink-ctl.h"

#define VOLUME_BAR_LEN 50
#define WIDTH 80
#define HEIGHT 10

GArray *sink_list = NULL;
GArray *sink_list_tmp = NULL;

pa_mainloop_api *mainloop_api = NULL;
pa_context      *context      = NULL;

bool info_callbacks_finished = true;
bool state_callback_pending = false;

int main(int argc, char** argv)
{
	GMainContext *g_context = NULL;
	GMainLoop    *g_loop    = NULL;
	pa_glib_mainloop *m = NULL;

	sink_list = sink_list_alloc();

	interface_init();

	g_context = g_main_context_default();
	g_loop    = g_main_loop_new(g_context, false);

	if (!(m = pa_glib_mainloop_new(g_context))) {
		printf("error: pa_glib_mainloop_new() failed.\n");
		return -1;
	}

	mainloop_api = pa_glib_mainloop_get_api(m);

	if (!(context = pa_context_new(mainloop_api, "pa-sink-ctl"))) {
		printf("error: pa_context_new() failed.\n");
		return -1;
	}
	
	// define callback for connection init
	pa_context_set_state_callback(context, context_state_callback, NULL);
	if (pa_context_connect(context, NULL, PA_CONTEXT_NOAUTOSPAWN, NULL)) {
		printf("error: pa_context_connect() failed.\n");
	}

	g_main_loop_run(g_loop);

	pa_glib_mainloop_free(m);

	g_main_loop_unref(g_loop);
	g_main_context_unref(g_context);

	return 0;
}

static void subscribe_cb(pa_context *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata)
{
	if (!info_callbacks_finished)
		state_callback_pending = true;
	else
		collect_all_info();
}

static int loop(gpointer data)
{
	get_input();
	return true;
}

/*
 * is called after connection
 */
void context_state_callback(pa_context *c, void *userdata)
{
	switch (pa_context_get_state(c)) {
		case PA_CONTEXT_CONNECTING:
		case PA_CONTEXT_AUTHORIZING:
		case PA_CONTEXT_SETTING_NAME:
			break;

		case PA_CONTEXT_READY:
			collect_all_info();
			g_timeout_add(3, loop, NULL);
			pa_context_set_subscribe_callback(context, subscribe_cb, NULL);
			pa_operation *o;
			g_assert((o = pa_context_subscribe(c, (pa_subscription_mask_t) (
					PA_SUBSCRIPTION_MASK_SINK | PA_SUBSCRIPTION_MASK_SINK_INPUT
					), NULL, NULL)));
			break;

		default:
			printf("unknown state\n");
			break;
	}
}

/*
 * the begin of the callback loops
 */
void get_sink_info_callback(pa_context *c, const pa_sink_info *i, int is_last, void *userdata)
{
	if (is_last < 0) {
		printf("Failed to get sink information: %s\n", pa_strerror(pa_context_errno(c)));
		quit();
	}

	if (is_last) {
		pa_operation_unref(pa_context_get_sink_input_info_list(c, get_sink_input_info_callback, NULL));
		return;
	}

	g_array_append_val(sink_list_tmp, ((sink_info) {
		.index = i->index,
		.mute  = i->mute,
		.vol   = pa_cvolume_avg(&i->volume),
		.channels = i->volume.channels,
		.name = strdup(i->name),
		.device = pa_proplist_contains(i->proplist, "device.product.name") ? 
			strdup(pa_proplist_gets(i->proplist, "device.product.name")) : NULL,
		.input_list = sink_input_list_alloc()
	}));
}

/*
 * is called after sink-input
 */
void get_sink_input_info_callback(pa_context *c, const pa_sink_input_info *i, int is_last, void *userdata)
{
	char t[32], k[32];

	if (is_last < 0) {
		printf("Failed to get sink input information: %s\n", pa_strerror(pa_context_errno(c)));
		return;
	}

	if (is_last) {
		info_callbacks_finished = true;
		sink_list_free(sink_list);
		sink_list = sink_list_tmp;

		print_sink_list();

		if (state_callback_pending) {
			state_callback_pending = false;
			collect_all_info();
		}
		return;
	}

	if (!(i->client != PA_INVALID_INDEX)) return;

	snprintf(t, sizeof(t), "%u", i->owner_module);
	snprintf(k, sizeof(k), "%u", i->client);

	g_array_append_val(g_array_index(sink_list_tmp, sink_info, i->sink).input_list, ((sink_input_info) {
		.index = i->index,
		.sink = i->sink,
		.name = strdup(pa_proplist_gets(i->proplist, "application.name")),
		.mute = i->mute,
		.channels = i->volume.channels,
		.vol = pa_cvolume_avg(&i->volume),
		.pid = NULL /* maybe obsolete */
	}));
}

void quit(void)
{
	sink_list_free(sink_list);
	interface_clear();
	exit(0);
}

/*
 * is called, after user input
 */
void change_callback(pa_context* c, int success, void* userdate)
{
	return;
}

void collect_all_info(void)
{
	if (!info_callbacks_finished)
		return;
	info_callbacks_finished = false;

	sink_list_tmp = sink_list_alloc();
	pa_operation_unref(pa_context_get_sink_info_list(context, get_sink_info_callback, NULL));
}