summaryrefslogtreecommitdiffstats
path: root/polyp/namereg.c
blob: 72a4c648e7d8f05b6ef269bf827c5c560a66fab6 (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
/* $Id$ */

/***
  This file is part of polypaudio.
 
  polypaudio is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published
  by the Free Software Foundation; either version 2 of the License,
  or (at your option) any later version.
 
  polypaudio is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  General Public License for more details.
 
  You should have received a copy of the GNU General Public License
  along with polypaudio; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  USA.
***/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <string.h>
#include <malloc.h>
#include <stdio.h>

#include "namereg.h"
#include "autoload.h"
#include "source.h"
#include "sink.h"
#include "xmalloc.h"

struct namereg_entry {
    enum pa_namereg_type type;
    char *name;
    void *data;
};

void pa_namereg_free(struct pa_core *c) {
    assert(c);
    if (!c->namereg)
        return;
    assert(pa_hashmap_ncontents(c->namereg) == 0);
    pa_hashmap_free(c->namereg, NULL, NULL);
}

const char *pa_namereg_register(struct pa_core *c, const char *name, enum pa_namereg_type type, void *data, int fail) {
    struct namereg_entry *e;
    char *n = NULL;
    int r;
    
    assert(c && name && data);

    if (!c->namereg) {
        c->namereg = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
        assert(c->namereg);
    }

    if ((e = pa_hashmap_get(c->namereg, name)) && fail)
        return NULL;

    if (!e)
        n = pa_xstrdup(name);
    else {
        unsigned i;
        size_t l = strlen(name);
        n = pa_xmalloc(l+3);
        
        for (i = 1; i <= 99; i++) {
            snprintf(n, l+2, "%s%u", name, i);

            if (!(e = pa_hashmap_get(c->namereg, n)))
                break;
        }

        if (e) {
            pa_xfree(n);
            return NULL;
        }
    }
    
    assert(n);
    e = pa_xmalloc(sizeof(struct namereg_entry));
    e->type = type;
    e->name = n;
    e->data = data;

    r = pa_hashmap_put(c->namereg, e->name, e);
    assert (r >= 0);

    return e->name;
    
}

void pa_namereg_unregister(struct pa_core *c, const char *name) {
    struct namereg_entry *e;
    int r;
    assert(c && name);

    e = pa_hashmap_get(c->namereg, name);
    assert(e);

    r = pa_hashmap_remove(c->namereg, name);
    assert(r >= 0);

    pa_xfree(e->name);
    pa_xfree(e);
}

void* pa_namereg_get(struct pa_core *c, const char *name, enum pa_namereg_type type, int autoload) {
    struct namereg_entry *e;
    uint32_t index;
    char *x = NULL;
    void *d = NULL;
    assert(c);
    
    if (!name) {
        if (type == PA_NAMEREG_SOURCE) {
            if (!c->default_source_name) {
                struct pa_source *s;

                for (s = pa_idxset_first(c->sources, &index); s; s = pa_idxset_next(c->sources, &index))
                    if (!s->monitor_of) {
                        pa_namereg_set_default(c, s->name, PA_NAMEREG_SOURCE);
                        break;
                    }
            }

            name = c->default_source_name;
                
        } else if (type == PA_NAMEREG_SINK) {

            if (!c->default_sink_name) {
                struct pa_sink *s;

                if ((s = pa_idxset_first(c->sinks, NULL)))
                    pa_namereg_set_default(c, s->name, PA_NAMEREG_SINK);
            }

            name = c->default_sink_name;
        }
    }

    if (!name)
        return NULL;
    
    if (c->namereg && (e = pa_hashmap_get(c->namereg, name)))
        if (e->type == e->type)
            return e->data;

    index = (uint32_t) strtol(name, &x, 0);

    if (!x || *x != 0) {

        if (autoload) {
            pa_autoload_request(c, name, type);
            
            if (c->namereg && (e = pa_hashmap_get(c->namereg, name)))
                if (e->type == e->type)
                    return e->data;
        }
        
        return NULL;
    }

    if (type == PA_NAMEREG_SINK)
        d = pa_idxset_get_by_index(c->sinks, index);
    else if (type == PA_NAMEREG_SOURCE)
        d = pa_idxset_get_by_index(c->sources, index);
    else if (type == PA_NAMEREG_SAMPLE && c->scache)
        d = pa_idxset_get_by_index(c->scache, index);
    
    return d;
}

void pa_namereg_set_default(struct pa_core*c, const char *name, enum pa_namereg_type type) {
    char **s;
    assert(c && (type == PA_NAMEREG_SINK || type == PA_NAMEREG_SOURCE));

    s = type == PA_NAMEREG_SINK ? &c->default_sink_name : &c->default_source_name;
    assert(s);

    pa_xfree(*s);
    *s = pa_xstrdup(name);
}