2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
License, or (at your option) any later version.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2004-11-14 14:58:54 +00:00
|
|
|
Lesser General Public License for more details.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2006-06-19 21:53:48 +00:00
|
|
|
License along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-06-14 20:30:50 +00:00
|
|
|
#include <stdio.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#include "idxset.h"
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
typedef struct idxset_entry {
|
2004-06-08 23:54:24 +00:00
|
|
|
void *data;
|
|
|
|
|
uint32_t index;
|
|
|
|
|
unsigned hash_value;
|
|
|
|
|
|
|
|
|
|
struct idxset_entry *hash_prev, *hash_next;
|
|
|
|
|
struct idxset_entry* iterate_prev, *iterate_next;
|
2006-01-11 01:17:39 +00:00
|
|
|
} idxset_entry;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_idxset {
|
2004-06-27 22:42:17 +00:00
|
|
|
unsigned (*hash_func) (const void *p);
|
|
|
|
|
int (*compare_func)(const void *a, const void *b);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
unsigned hash_table_size, n_entries;
|
2006-01-11 01:17:39 +00:00
|
|
|
idxset_entry **hash_table, **array, *iterate_list_head, *iterate_list_tail;
|
2004-06-08 23:54:24 +00:00
|
|
|
uint32_t index, start_index, array_size;
|
|
|
|
|
};
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
unsigned pa_idxset_string_hash_func(const void *p) {
|
2004-06-27 22:42:17 +00:00
|
|
|
unsigned hash = 0;
|
|
|
|
|
const char *c;
|
|
|
|
|
|
|
|
|
|
for (c = p; *c; c++)
|
|
|
|
|
hash = 31 * hash + *c;
|
|
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
int pa_idxset_string_compare_func(const void *a, const void *b) {
|
2004-06-27 22:42:17 +00:00
|
|
|
return strcmp(a, b);
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
unsigned pa_idxset_trivial_hash_func(const void *p) {
|
2006-02-27 09:09:15 +00:00
|
|
|
return (unsigned) (long) p;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
int pa_idxset_trivial_compare_func(const void *a, const void *b) {
|
2004-06-11 21:30:16 +00:00
|
|
|
return a != b;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_idxset* pa_idxset_new(unsigned (*hash_func) (const void *p), int (*compare_func) (const void*a, const void*b)) {
|
|
|
|
|
pa_idxset *s;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
s = pa_xnew(pa_idxset, 1);
|
2004-07-03 23:35:12 +00:00
|
|
|
s->hash_func = hash_func ? hash_func : pa_idxset_trivial_hash_func;
|
|
|
|
|
s->compare_func = compare_func ? compare_func : pa_idxset_trivial_compare_func;
|
2006-07-23 22:35:30 +00:00
|
|
|
s->hash_table_size = 127;
|
2006-01-11 01:17:39 +00:00
|
|
|
s->hash_table = pa_xmalloc0(sizeof(idxset_entry*)*s->hash_table_size);
|
2004-06-08 23:54:24 +00:00
|
|
|
s->array = NULL;
|
|
|
|
|
s->array_size = 0;
|
|
|
|
|
s->index = 0;
|
|
|
|
|
s->start_index = 0;
|
|
|
|
|
s->n_entries = 0;
|
|
|
|
|
|
|
|
|
|
s->iterate_list_head = s->iterate_list_tail = NULL;
|
|
|
|
|
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_idxset_free(pa_idxset *s, void (*free_func) (void *p, void *userdata), void *userdata) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s);
|
|
|
|
|
|
2004-08-02 16:24:14 +00:00
|
|
|
while (s->iterate_list_head) {
|
2006-01-11 01:17:39 +00:00
|
|
|
idxset_entry *e = s->iterate_list_head;
|
2004-08-02 16:24:14 +00:00
|
|
|
s->iterate_list_head = s->iterate_list_head->iterate_next;
|
|
|
|
|
|
|
|
|
|
if (free_func)
|
|
|
|
|
free_func(e->data, userdata);
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(e);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(s->hash_table);
|
|
|
|
|
pa_xfree(s->array);
|
|
|
|
|
pa_xfree(s);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static idxset_entry* hash_scan(pa_idxset *s, idxset_entry* e, const void *p) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(p);
|
|
|
|
|
|
|
|
|
|
assert(s->compare_func);
|
|
|
|
|
for (; e; e = e->hash_next)
|
2004-06-11 21:30:16 +00:00
|
|
|
if (s->compare_func(e->data, p) == 0)
|
2004-06-08 23:54:24 +00:00
|
|
|
return e;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void extend_array(pa_idxset *s, uint32_t idx) {
|
2004-06-08 23:54:24 +00:00
|
|
|
uint32_t i, j, l;
|
2006-01-11 01:17:39 +00:00
|
|
|
idxset_entry** n;
|
|
|
|
|
assert(idx >= s->start_index);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx < s->start_index + s->array_size)
|
2004-06-08 23:54:24 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < s->array_size; i++)
|
|
|
|
|
if (s->array[i])
|
|
|
|
|
break;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
l = idx - s->start_index - i + 100;
|
|
|
|
|
n = pa_xnew0(idxset_entry*, l);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
for (j = 0; j < s->array_size-i; j++)
|
|
|
|
|
n[j] = s->array[i+j];
|
|
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(s->array);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
s->array = n;
|
|
|
|
|
s->array_size = l;
|
|
|
|
|
s->start_index += i;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static idxset_entry** array_index(pa_idxset*s, uint32_t idx) {
|
|
|
|
|
if (idx >= s->start_index + s->array_size)
|
2004-06-08 23:54:24 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx < s->start_index)
|
2004-06-08 23:54:24 +00:00
|
|
|
return NULL;
|
2004-06-14 20:30:50 +00:00
|
|
|
|
2006-07-25 20:10:30 +00:00
|
|
|
return s->array + idx - s->start_index;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_idxset_put(pa_idxset*s, void *p, uint32_t *idx) {
|
2004-06-08 23:54:24 +00:00
|
|
|
unsigned h;
|
2006-01-11 01:17:39 +00:00
|
|
|
idxset_entry *e, **a;
|
2006-07-25 20:10:30 +00:00
|
|
|
|
|
|
|
|
assert(s);
|
|
|
|
|
assert(p);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
assert(s->hash_func);
|
|
|
|
|
h = s->hash_func(p) % s->hash_table_size;
|
|
|
|
|
|
|
|
|
|
assert(s->hash_table);
|
|
|
|
|
if ((e = hash_scan(s, s->hash_table[h], p))) {
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx)
|
|
|
|
|
*idx = e->index;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
e = pa_xmalloc(sizeof(idxset_entry));
|
2004-06-08 23:54:24 +00:00
|
|
|
e->data = p;
|
|
|
|
|
e->index = s->index++;
|
|
|
|
|
e->hash_value = h;
|
|
|
|
|
|
|
|
|
|
/* Insert into hash table */
|
|
|
|
|
e->hash_next = s->hash_table[h];
|
|
|
|
|
e->hash_prev = NULL;
|
|
|
|
|
if (s->hash_table[h])
|
|
|
|
|
s->hash_table[h]->hash_prev = e;
|
|
|
|
|
s->hash_table[h] = e;
|
|
|
|
|
|
|
|
|
|
/* Insert into array */
|
2004-06-14 18:38:50 +00:00
|
|
|
extend_array(s, e->index);
|
|
|
|
|
a = array_index(s, e->index);
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(a && !*a);
|
|
|
|
|
*a = e;
|
|
|
|
|
|
|
|
|
|
/* Insert into linked list */
|
|
|
|
|
e->iterate_next = NULL;
|
|
|
|
|
e->iterate_prev = s->iterate_list_tail;
|
|
|
|
|
if (s->iterate_list_tail) {
|
|
|
|
|
assert(s->iterate_list_head);
|
|
|
|
|
s->iterate_list_tail->iterate_next = e;
|
|
|
|
|
} else {
|
|
|
|
|
assert(!s->iterate_list_head);
|
|
|
|
|
s->iterate_list_head = e;
|
|
|
|
|
}
|
|
|
|
|
s->iterate_list_tail = e;
|
|
|
|
|
|
|
|
|
|
s->n_entries++;
|
|
|
|
|
assert(s->n_entries >= 1);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx)
|
|
|
|
|
*idx = e->index;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void* pa_idxset_get_by_index(pa_idxset*s, uint32_t idx) {
|
|
|
|
|
idxset_entry **a;
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (!(a = array_index(s, idx)))
|
2004-06-08 23:54:24 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
2004-06-14 18:38:50 +00:00
|
|
|
if (!*a)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
return (*a)->data;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void* pa_idxset_get_by_data(pa_idxset*s, const void *p, uint32_t *idx) {
|
2004-06-08 23:54:24 +00:00
|
|
|
unsigned h;
|
2006-01-11 01:17:39 +00:00
|
|
|
idxset_entry *e;
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s && p);
|
|
|
|
|
|
|
|
|
|
assert(s->hash_func);
|
|
|
|
|
h = s->hash_func(p) % s->hash_table_size;
|
|
|
|
|
|
|
|
|
|
assert(s->hash_table);
|
|
|
|
|
if (!(e = hash_scan(s, s->hash_table[h], p)))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx)
|
|
|
|
|
*idx = e->index;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
return e->data;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void remove_entry(pa_idxset *s, idxset_entry *e) {
|
|
|
|
|
idxset_entry **a;
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s && e);
|
|
|
|
|
|
|
|
|
|
/* Remove from array */
|
2004-06-14 20:30:50 +00:00
|
|
|
a = array_index(s, e->index);
|
|
|
|
|
assert(a && *a && *a == e);
|
2004-06-08 23:54:24 +00:00
|
|
|
*a = NULL;
|
|
|
|
|
|
|
|
|
|
/* Remove from linked list */
|
|
|
|
|
if (e->iterate_next)
|
|
|
|
|
e->iterate_next->iterate_prev = e->iterate_prev;
|
|
|
|
|
else
|
|
|
|
|
s->iterate_list_tail = e->iterate_prev;
|
|
|
|
|
|
|
|
|
|
if (e->iterate_prev)
|
|
|
|
|
e->iterate_prev->iterate_next = e->iterate_next;
|
|
|
|
|
else
|
|
|
|
|
s->iterate_list_head = e->iterate_next;
|
|
|
|
|
|
|
|
|
|
/* Remove from hash table */
|
|
|
|
|
if (e->hash_next)
|
|
|
|
|
e->hash_next->hash_prev = e->hash_prev;
|
|
|
|
|
|
|
|
|
|
if (e->hash_prev)
|
|
|
|
|
e->hash_prev->hash_next = e->hash_next;
|
|
|
|
|
else
|
|
|
|
|
s->hash_table[e->hash_value] = e->hash_next;
|
|
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(e);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
assert(s->n_entries >= 1);
|
|
|
|
|
s->n_entries--;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void* pa_idxset_remove_by_index(pa_idxset*s, uint32_t idx) {
|
|
|
|
|
idxset_entry **a;
|
2004-06-08 23:54:24 +00:00
|
|
|
void *data;
|
|
|
|
|
|
|
|
|
|
assert(s);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (!(a = array_index(s, idx)))
|
2004-06-08 23:54:24 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
data = (*a)->data;
|
|
|
|
|
remove_entry(s, *a);
|
|
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void* pa_idxset_remove_by_data(pa_idxset*s, const void *data, uint32_t *idx) {
|
|
|
|
|
idxset_entry *e;
|
2004-06-08 23:54:24 +00:00
|
|
|
unsigned h;
|
2004-09-01 12:21:06 +00:00
|
|
|
void *r;
|
2004-06-14 20:30:50 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s->hash_func);
|
|
|
|
|
h = s->hash_func(data) % s->hash_table_size;
|
|
|
|
|
|
|
|
|
|
assert(s->hash_table);
|
|
|
|
|
if (!(e = hash_scan(s, s->hash_table[h], data)))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2004-09-01 12:21:06 +00:00
|
|
|
r = e->data;
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx)
|
|
|
|
|
*idx = e->index;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
remove_entry(s, e);
|
|
|
|
|
|
2004-09-01 12:21:06 +00:00
|
|
|
return r;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void* pa_idxset_rrobin(pa_idxset *s, uint32_t *idx) {
|
|
|
|
|
idxset_entry **a, *e = NULL;
|
|
|
|
|
assert(s && idx);
|
2004-06-14 20:30:50 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if ((a = array_index(s, *idx)) && *a)
|
2004-06-14 20:30:50 +00:00
|
|
|
e = (*a)->iterate_next;
|
|
|
|
|
|
|
|
|
|
if (!e)
|
|
|
|
|
e = s->iterate_list_head;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-06-14 20:30:50 +00:00
|
|
|
if (!e)
|
|
|
|
|
return NULL;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
*idx = e->index;
|
2004-06-14 20:30:50 +00:00
|
|
|
return e->data;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void* pa_idxset_first(pa_idxset *s, uint32_t *idx) {
|
2004-06-14 20:30:50 +00:00
|
|
|
assert(s);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-06-14 20:30:50 +00:00
|
|
|
if (!s->iterate_list_head)
|
2004-06-08 23:54:24 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx)
|
|
|
|
|
*idx = s->iterate_list_head->index;
|
2004-06-14 20:30:50 +00:00
|
|
|
return s->iterate_list_head->data;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void *pa_idxset_next(pa_idxset *s, uint32_t *idx) {
|
|
|
|
|
idxset_entry **a, *e = NULL;
|
2006-07-25 20:10:30 +00:00
|
|
|
assert(s);
|
|
|
|
|
assert(idx);
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if ((a = array_index(s, *idx)) && *a)
|
2004-06-15 17:05:03 +00:00
|
|
|
e = (*a)->iterate_next;
|
|
|
|
|
|
|
|
|
|
if (e) {
|
2006-01-11 01:17:39 +00:00
|
|
|
*idx = e->index;
|
2004-06-15 17:05:03 +00:00
|
|
|
return e->data;
|
|
|
|
|
} else {
|
2006-01-11 01:17:39 +00:00
|
|
|
*idx = PA_IDXSET_INVALID;
|
2004-06-15 17:05:03 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_idxset_foreach(pa_idxset*s, int (*func)(void *p, uint32_t idx, int *del, void*userdata), void *userdata) {
|
|
|
|
|
idxset_entry *e;
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s && func);
|
|
|
|
|
|
|
|
|
|
e = s->iterate_list_head;
|
|
|
|
|
while (e) {
|
|
|
|
|
int del = 0, r;
|
2006-01-11 01:17:39 +00:00
|
|
|
idxset_entry *n = e->iterate_next;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
r = func(e->data, e->index, &del, userdata);
|
|
|
|
|
|
|
|
|
|
if (del)
|
|
|
|
|
remove_entry(s, e);
|
|
|
|
|
|
|
|
|
|
if (r < 0)
|
|
|
|
|
return r;
|
|
|
|
|
|
|
|
|
|
e = n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
unsigned pa_idxset_size(pa_idxset*s) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s);
|
|
|
|
|
return s->n_entries;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_idxset_isempty(pa_idxset *s) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(s);
|
|
|
|
|
return s->n_entries == 0;
|
|
|
|
|
}
|
2004-06-15 17:05:03 +00:00
|
|
|
|