summaryrefslogtreecommitdiffstats
path: root/src/protocol-simple.c
blob: 80249eef0d9cde548704edf0663f5b575667af47 (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
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
#include <assert.h>
#include <stdlib.h>
#include <limits.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>

#include "sinkinput.h"
#include "sourceoutput.h"
#include "protocol-simple.h"
#include "client.h"
#include "sample-util.h"

struct connection {
    struct protocol_simple *protocol;
    struct iochannel *io;
    struct sink_input *sink_input;
    struct source_output *source_output;
    struct client *client;
    struct memblockq *input_memblockq, *output_memblockq;
};

struct protocol_simple {
    struct core *core;
    struct socket_server*server;
    struct idxset *connections;
    enum protocol_simple_mode mode;
};

#define BUFSIZE PIPE_BUF

static void free_connection(void *data, void *userdata) {
    struct connection *c = data;
    assert(data);
    
    if (c->sink_input)
        sink_input_free(c->sink_input);
    if (c->source_output)
        source_output_free(c->source_output);
    if (c->client)
        client_free(c->client);
    if (c->io)
        iochannel_free(c->io);
    if (c->input_memblockq)
        memblockq_free(c->input_memblockq);
    if (c->output_memblockq)
        memblockq_free(c->output_memblockq);
    free(c);
}

static void destroy_connection(struct connection *c) {
    assert(c && c->protocol);
    idxset_remove_by_data(c->protocol->connections, c, NULL);
    free_connection(c, NULL);
}

static int do_read(struct connection *c) {
    struct memchunk chunk;
    ssize_t r;

    if (!iochannel_is_readable(c->io))
        return 0;
    
    if (!c->sink_input || !memblockq_is_writable(c->input_memblockq, BUFSIZE))
        return 0;
    
    chunk.memblock = memblock_new(BUFSIZE);
    assert(chunk.memblock);

    if ((r = iochannel_read(c->io, chunk.memblock->data, BUFSIZE)) <= 0) {
        fprintf(stderr, "read(): %s\n", r == 0 ? "EOF" : strerror(errno));
        memblock_unref(chunk.memblock);
        return -1;
    }

    chunk.memblock->length = chunk.length = r;
    chunk.index = 0;

    assert(c->input_memblockq);
    memblockq_push(c->input_memblockq, &chunk, 0);
    memblock_unref(chunk.memblock);
    assert(c->sink_input);
    sink_notify(c->sink_input->sink);
    
    return 0;
}

static int do_write(struct connection *c) {
    struct memchunk chunk;
    ssize_t r;

    if (!iochannel_is_writable(c->io))
        return 0;
    
    if (!c->source_output)
        return 0;    

    assert(c->output_memblockq);
    if (memblockq_peek(c->output_memblockq, &chunk) < 0)
        return 0;
        
    assert(chunk.memblock && chunk.length);
    
    if ((r = iochannel_write(c->io, chunk.memblock->data+chunk.index, chunk.length)) < 0) {
        fprintf(stderr, "write(): %s\n", strerror(errno));
        memblock_unref(chunk.memblock);
        return -1;
    }
    
    memblockq_drop(c->output_memblockq, r);
    memblock_unref(chunk.memblock);
    return 0;
}

/*** sink_input callbacks ***/

static int sink_input_peek_cb(struct sink_input *i, struct memchunk *chunk) {
    struct connection*c;
    assert(i && i->userdata && chunk);
    c = i->userdata;
    
    if (memblockq_peek(c->input_memblockq, chunk) < 0)
        return -1;

    return 0;
}

static void sink_input_drop_cb(struct sink_input *i, size_t length) {
    struct connection*c = i->userdata;
    assert(i && c && length);

    memblockq_drop(c->input_memblockq, length);
    
    if (do_read(c) < 0)
        destroy_connection(c);
}

static void sink_input_kill_cb(struct sink_input *i) {
    assert(i && i->userdata);
    destroy_connection((struct connection *) i->userdata);
}


static uint32_t sink_input_get_latency_cb(struct sink_input *i) {
    struct connection*c = i->userdata;
    assert(i && c);
    return pa_samples_usec(memblockq_get_length(c->input_memblockq), &c->sink_input->sample_spec);
}

/*** source_output callbacks ***/

static void source_output_push_cb(struct source_output *o, struct memchunk *chunk) {
    struct connection *c = o->userdata;
    assert(o && c && chunk);

    memblockq_push(c->output_memblockq, chunk, 0);

    if (do_write(c) < 0)
        destroy_connection(c);
}

static void source_output_kill_cb(struct source_output *o) {
    assert(o && o->userdata);
    destroy_connection((struct connection *) o->userdata);
}

/*** client callbacks ***/

static void client_kill_cb(struct client *c) {
    assert(c && c->userdata);
    destroy_connection((struct connection *) c->userdata);
}

/*** iochannel callbacks ***/

static void io_callback(struct iochannel*io, void *userdata) {
    struct connection *c = userdata;
    assert(io && c && c->io == io);

    if (do_read(c) < 0 || do_write(c) < 0)
        destroy_connection(c);
}

/*** socket_server callbacks */

static void on_connection(struct socket_server*s, struct iochannel *io, void *userdata) {
    struct protocol_simple *p = userdata;
    struct connection *c = NULL;
    char cname[256];
    assert(s && io && p);

    c = malloc(sizeof(struct connection));
    assert(c);
    c->io = io;
    c->sink_input = NULL;
    c->source_output = NULL;
    c->input_memblockq = c->output_memblockq = NULL;
    c->protocol = p;

    iochannel_peer_to_string(io, cname, sizeof(cname));
    c->client = client_new(p->core, "SIMPLE", cname);
    assert(c->client);
    c->client->kill = client_kill_cb;
    c->client->userdata = c;

    if (p->mode & PROTOCOL_SIMPLE_RECORD) {
        struct source *source;
        size_t l;

        if (!(source = source_get_default(p->core))) {
            fprintf(stderr, "Failed to get default source.\n");
            goto fail;
        }

        c->source_output = source_output_new(source, &DEFAULT_SAMPLE_SPEC, c->client->name);
        assert(c->source_output);
        c->source_output->push = source_output_push_cb;
        c->source_output->kill = source_output_kill_cb;
        c->source_output->userdata = c;

        l = 5*pa_bytes_per_second(&DEFAULT_SAMPLE_SPEC); /* 5s */
        c->output_memblockq = memblockq_new(l, pa_sample_size(&DEFAULT_SAMPLE_SPEC), l/2);
    }

    if (p->mode & PROTOCOL_SIMPLE_PLAYBACK) {
        struct sink *sink;
        size_t l;

        if (!(sink = sink_get_default(p->core))) {
            fprintf(stderr, "Failed to get default sink.\n");
            goto fail;
        }

        c->sink_input = sink_input_new(sink, &DEFAULT_SAMPLE_SPEC, c->client->name);
        assert(c->sink_input);
        c->sink_input->peek = sink_input_peek_cb;
        c->sink_input->drop = sink_input_drop_cb;
        c->sink_input->kill = sink_input_kill_cb;
        c->sink_input->get_latency = sink_input_get_latency_cb;
        c->sink_input->userdata = c;

        l = pa_bytes_per_second(&DEFAULT_SAMPLE_SPEC)/2; /* half a second */
        c->input_memblockq = memblockq_new(l, pa_sample_size(&DEFAULT_SAMPLE_SPEC), l/2);
    }


    iochannel_set_callback(c->io, io_callback, c);
    idxset_put(p->connections, c, NULL);
    return;
    
fail:
    if (c) {
        free_connection(c, NULL);
        iochannel_free(c->io);
        free(c);
    }
}

struct protocol_simple* protocol_simple_new(struct core *core, struct socket_server *server, enum protocol_simple_mode mode) {
    struct protocol_simple* p;
    assert(core && server && mode <= PROTOCOL_SIMPLE_DUPLEX && mode > 0);

    p = malloc(sizeof(struct protocol_simple));
    assert(p);
    p->core = core;
    p->server = server;
    p->connections = idxset_new(NULL, NULL);
    p->mode = mode;

    socket_server_set_callback(p->server, on_connection, p);
    
    return p;
}


void protocol_simple_free(struct protocol_simple *p) {
    assert(p);

    idxset_free(p->connections, free_connection, NULL);
    socket_server_free(p->server);
    free(p);
}