mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
modernize idxset a bit, reduce memory consumption, get rid of pa_idxset_foreach()
This commit is contained in:
parent
113c62bf5d
commit
36021b117b
3 changed files with 250 additions and 248 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
/***
|
/***
|
||||||
This file is part of PulseAudio.
|
This file is part of PulseAudio.
|
||||||
|
|
||||||
Copyright 2004-2006 Lennart Poettering
|
Copyright 2004-2008 Lennart Poettering
|
||||||
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
||||||
|
|
||||||
PulseAudio is free software; you can redistribute it and/or modify
|
PulseAudio is free software; you can redistribute it and/or modify
|
||||||
|
|
@ -29,29 +29,36 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <pulse/xmalloc.h>
|
#include <pulse/xmalloc.h>
|
||||||
#include <pulsecore/macro.h>
|
#include <pulsecore/log.h>
|
||||||
#include <pulsecore/flist.h>
|
#include <pulsecore/flist.h>
|
||||||
|
#include <pulsecore/macro.h>
|
||||||
|
|
||||||
#include "idxset.h"
|
#include "idxset.h"
|
||||||
|
|
||||||
struct idxset_entry {
|
#define NBUCKETS 127
|
||||||
void *data;
|
|
||||||
uint32_t index;
|
|
||||||
unsigned hash_value;
|
|
||||||
|
|
||||||
struct idxset_entry *hash_prev, *hash_next;
|
struct idxset_entry {
|
||||||
struct idxset_entry* iterate_prev, *iterate_next;
|
uint32_t idx;
|
||||||
|
void *data;
|
||||||
|
|
||||||
|
struct idxset_entry *data_next, *data_previous;
|
||||||
|
struct idxset_entry *index_next, *index_previous;
|
||||||
|
struct idxset_entry *iterate_next, *iterate_previous;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct pa_idxset {
|
struct pa_idxset {
|
||||||
pa_hash_func_t hash_func;
|
pa_hash_func_t hash_func;
|
||||||
pa_compare_func_t compare_func;
|
pa_compare_func_t compare_func;
|
||||||
|
|
||||||
unsigned hash_table_size, n_entries;
|
uint32_t current_index;
|
||||||
struct idxset_entry **hash_table, **array, *iterate_list_head, *iterate_list_tail;
|
|
||||||
uint32_t index, start_index, array_size;
|
struct idxset_entry *iterate_list_head, *iterate_list_tail;
|
||||||
|
unsigned n_entries;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define BY_DATA(i) ((struct idxset_entry**) ((uint8_t*) (i) + PA_ALIGN(sizeof(pa_idxset))))
|
||||||
|
#define BY_INDEX(i) (BY_DATA(i) + NBUCKETS)
|
||||||
|
|
||||||
PA_STATIC_FLIST_DECLARE(entries, 0, pa_xfree);
|
PA_STATIC_FLIST_DECLARE(entries, 0, pa_xfree);
|
||||||
|
|
||||||
unsigned pa_idxset_string_hash_func(const void *p) {
|
unsigned pa_idxset_string_hash_func(const void *p) {
|
||||||
|
|
@ -79,131 +86,140 @@ int pa_idxset_trivial_compare_func(const void *a, const void *b) {
|
||||||
pa_idxset* pa_idxset_new(pa_hash_func_t hash_func, pa_compare_func_t compare_func) {
|
pa_idxset* pa_idxset_new(pa_hash_func_t hash_func, pa_compare_func_t compare_func) {
|
||||||
pa_idxset *s;
|
pa_idxset *s;
|
||||||
|
|
||||||
s = pa_xnew(pa_idxset, 1);
|
s = pa_xmalloc0(PA_ALIGN(sizeof(pa_idxset)) + NBUCKETS*2*sizeof(struct idxset_entry*));
|
||||||
|
|
||||||
s->hash_func = hash_func ? hash_func : pa_idxset_trivial_hash_func;
|
s->hash_func = hash_func ? hash_func : pa_idxset_trivial_hash_func;
|
||||||
s->compare_func = compare_func ? compare_func : pa_idxset_trivial_compare_func;
|
s->compare_func = compare_func ? compare_func : pa_idxset_trivial_compare_func;
|
||||||
s->hash_table_size = 127;
|
|
||||||
s->hash_table = pa_xnew0(struct idxset_entry*, s->hash_table_size);
|
|
||||||
s->array = NULL;
|
|
||||||
s->array_size = 0;
|
|
||||||
s->index = 0;
|
|
||||||
s->start_index = 0;
|
|
||||||
s->n_entries = 0;
|
|
||||||
|
|
||||||
|
s->current_index = 0;
|
||||||
|
s->n_entries = 0;
|
||||||
s->iterate_list_head = s->iterate_list_tail = NULL;
|
s->iterate_list_head = s->iterate_list_tail = NULL;
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
void pa_idxset_free(pa_idxset *s, void (*free_func) (void *p, void *userdata), void *userdata) {
|
static void remove_entry(pa_idxset *s, struct idxset_entry *e) {
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
|
pa_assert(e);
|
||||||
|
|
||||||
while (s->iterate_list_head) {
|
/* Remove from iteration linked list */
|
||||||
struct idxset_entry *e = s->iterate_list_head;
|
if (e->iterate_next)
|
||||||
s->iterate_list_head = s->iterate_list_head->iterate_next;
|
e->iterate_next->iterate_previous = e->iterate_previous;
|
||||||
|
else
|
||||||
|
s->iterate_list_tail = e->iterate_previous;
|
||||||
|
|
||||||
if (free_func)
|
if (e->iterate_previous)
|
||||||
free_func(e->data, userdata);
|
e->iterate_previous->iterate_next = e->iterate_next;
|
||||||
|
else
|
||||||
|
s->iterate_list_head = e->iterate_next;
|
||||||
|
|
||||||
|
/* Remove from data hash table */
|
||||||
|
if (e->data_next)
|
||||||
|
e->data_next->data_previous = e->data_previous;
|
||||||
|
|
||||||
|
if (e->data_previous)
|
||||||
|
e->data_previous->data_next = e->data_next;
|
||||||
|
else {
|
||||||
|
unsigned hash = s->hash_func(e->data) % NBUCKETS;
|
||||||
|
BY_DATA(s)[hash] = e->data_next;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove from index hash table */
|
||||||
|
if (e->index_next)
|
||||||
|
e->index_next->index_previous = e->index_previous;
|
||||||
|
|
||||||
|
if (e->index_previous)
|
||||||
|
e->index_previous->index_next = e->index_next;
|
||||||
|
else
|
||||||
|
BY_INDEX(s)[e->idx % NBUCKETS] = e->index_next;
|
||||||
|
|
||||||
if (pa_flist_push(PA_STATIC_FLIST_GET(entries), e) < 0)
|
if (pa_flist_push(PA_STATIC_FLIST_GET(entries), e) < 0)
|
||||||
pa_xfree(e);
|
pa_xfree(e);
|
||||||
|
|
||||||
|
pa_assert(s->n_entries >= 1);
|
||||||
|
s->n_entries--;
|
||||||
|
}
|
||||||
|
|
||||||
|
void pa_idxset_free(pa_idxset *s, pa_free2_cb_t free_cb, void *userdata) {
|
||||||
|
pa_assert(s);
|
||||||
|
|
||||||
|
while (s->iterate_list_head) {
|
||||||
|
void *data = s->iterate_list_head->data;
|
||||||
|
|
||||||
|
remove_entry(s, s->iterate_list_head);
|
||||||
|
|
||||||
|
if (free_cb)
|
||||||
|
free_cb(data, userdata);
|
||||||
}
|
}
|
||||||
|
|
||||||
pa_xfree(s->hash_table);
|
|
||||||
pa_xfree(s->array);
|
|
||||||
pa_xfree(s);
|
pa_xfree(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct idxset_entry* hash_scan(pa_idxset *s, struct idxset_entry* e, const void *p) {
|
static struct idxset_entry* data_scan(pa_idxset *s, unsigned hash, const void *p) {
|
||||||
|
struct idxset_entry *e;
|
||||||
|
pa_assert(s);
|
||||||
|
pa_assert(hash < NBUCKETS);
|
||||||
pa_assert(p);
|
pa_assert(p);
|
||||||
|
|
||||||
pa_assert(s->compare_func);
|
for (e = BY_DATA(s)[hash]; e; e = e->data_next)
|
||||||
for (; e; e = e->hash_next)
|
|
||||||
if (s->compare_func(e->data, p) == 0)
|
if (s->compare_func(e->data, p) == 0)
|
||||||
return e;
|
return e;
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void extend_array(pa_idxset *s, uint32_t idx) {
|
static struct idxset_entry* index_scan(pa_idxset *s, unsigned hash, uint32_t idx) {
|
||||||
uint32_t i, j, l;
|
struct idxset_entry *e;
|
||||||
struct idxset_entry** n;
|
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
pa_assert(idx >= s->start_index);
|
pa_assert(hash < NBUCKETS);
|
||||||
|
|
||||||
if (idx < s->start_index + s->array_size)
|
for (e = BY_INDEX(s)[hash]; e; e = e->index_next)
|
||||||
return;
|
if (e->idx == idx)
|
||||||
|
return e;
|
||||||
|
|
||||||
for (i = 0; i < s->array_size; i++)
|
|
||||||
if (s->array[i])
|
|
||||||
break;
|
|
||||||
|
|
||||||
l = idx - s->start_index - i + 100;
|
|
||||||
n = pa_xnew0(struct idxset_entry*, l);
|
|
||||||
|
|
||||||
for (j = 0; j < s->array_size-i; j++)
|
|
||||||
n[j] = s->array[i+j];
|
|
||||||
|
|
||||||
pa_xfree(s->array);
|
|
||||||
|
|
||||||
s->array = n;
|
|
||||||
s->array_size = l;
|
|
||||||
s->start_index += i;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct idxset_entry** array_index(pa_idxset*s, uint32_t idx) {
|
|
||||||
pa_assert(s);
|
|
||||||
|
|
||||||
if (idx >= s->start_index + s->array_size)
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (idx < s->start_index)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
return s->array + idx - s->start_index;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int pa_idxset_put(pa_idxset*s, void *p, uint32_t *idx) {
|
int pa_idxset_put(pa_idxset*s, void *p, uint32_t *idx) {
|
||||||
unsigned h;
|
unsigned hash;
|
||||||
struct idxset_entry *e, **a;
|
struct idxset_entry *e;
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
pa_assert(p);
|
|
||||||
|
|
||||||
pa_assert(s->hash_func);
|
hash = s->hash_func(p) % NBUCKETS;
|
||||||
h = s->hash_func(p) % s->hash_table_size;
|
|
||||||
|
|
||||||
pa_assert(s->hash_table);
|
if ((e = data_scan(s, hash, p))) {
|
||||||
if ((e = hash_scan(s, s->hash_table[h], p))) {
|
|
||||||
if (idx)
|
if (idx)
|
||||||
*idx = e->index;
|
*idx = e->idx;
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(e = pa_flist_pop(PA_STATIC_FLIST_GET(entries))))
|
if (!(e = pa_flist_pop(PA_STATIC_FLIST_GET(entries))))
|
||||||
e = pa_xnew(struct idxset_entry, 1);
|
e = pa_xnew(struct idxset_entry, 1);
|
||||||
|
|
||||||
e->data = p;
|
e->data = p;
|
||||||
e->index = s->index++;
|
e->idx = s->current_index++;
|
||||||
e->hash_value = h;
|
|
||||||
|
|
||||||
/* Insert into hash table */
|
/* Insert into data hash table */
|
||||||
e->hash_next = s->hash_table[h];
|
e->data_next = BY_DATA(s)[hash];
|
||||||
e->hash_prev = NULL;
|
e->data_previous = NULL;
|
||||||
if (s->hash_table[h])
|
if (BY_DATA(s)[hash])
|
||||||
s->hash_table[h]->hash_prev = e;
|
BY_DATA(s)[hash]->data_previous = e;
|
||||||
s->hash_table[h] = e;
|
BY_DATA(s)[hash] = e;
|
||||||
|
|
||||||
/* Insert into array */
|
hash = e->idx % NBUCKETS;
|
||||||
extend_array(s, e->index);
|
|
||||||
a = array_index(s, e->index);
|
|
||||||
pa_assert(a && !*a);
|
|
||||||
*a = e;
|
|
||||||
|
|
||||||
/* Insert into linked list */
|
/* Insert into index hash table */
|
||||||
|
e->index_next = BY_INDEX(s)[hash];
|
||||||
|
e->index_previous = NULL;
|
||||||
|
if (BY_INDEX(s)[hash])
|
||||||
|
BY_INDEX(s)[hash]->index_previous = e;
|
||||||
|
BY_INDEX(s)[hash] = e;
|
||||||
|
|
||||||
|
/* Insert into iteration list */
|
||||||
|
e->iterate_previous = s->iterate_list_tail;
|
||||||
e->iterate_next = NULL;
|
e->iterate_next = NULL;
|
||||||
e->iterate_prev = s->iterate_list_tail;
|
|
||||||
if (s->iterate_list_tail) {
|
if (s->iterate_list_tail) {
|
||||||
pa_assert(s->iterate_list_head);
|
pa_assert(s->iterate_list_head);
|
||||||
s->iterate_list_tail->iterate_next = e;
|
s->iterate_list_tail->iterate_next = e;
|
||||||
|
|
@ -217,117 +233,76 @@ int pa_idxset_put(pa_idxset*s, void *p, uint32_t *idx) {
|
||||||
pa_assert(s->n_entries >= 1);
|
pa_assert(s->n_entries >= 1);
|
||||||
|
|
||||||
if (idx)
|
if (idx)
|
||||||
*idx = e->index;
|
*idx = e->idx;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void* pa_idxset_get_by_index(pa_idxset*s, uint32_t idx) {
|
void* pa_idxset_get_by_index(pa_idxset*s, uint32_t idx) {
|
||||||
struct idxset_entry **a;
|
unsigned hash;
|
||||||
pa_assert(s);
|
|
||||||
|
|
||||||
if (!(a = array_index(s, idx)))
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
if (!*a)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
return (*a)->data;
|
|
||||||
}
|
|
||||||
|
|
||||||
void* pa_idxset_get_by_data(pa_idxset*s, const void *p, uint32_t *idx) {
|
|
||||||
unsigned h;
|
|
||||||
struct idxset_entry *e;
|
struct idxset_entry *e;
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
pa_assert(p);
|
|
||||||
|
|
||||||
pa_assert(s->hash_func);
|
hash = idx % NBUCKETS;
|
||||||
h = s->hash_func(p) % s->hash_table_size;
|
|
||||||
|
|
||||||
pa_assert(s->hash_table);
|
if (!(e = index_scan(s, hash, idx)))
|
||||||
if (!(e = hash_scan(s, s->hash_table[h], p)))
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (idx)
|
|
||||||
*idx = e->index;
|
|
||||||
|
|
||||||
return e->data;
|
return e->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void remove_entry(pa_idxset *s, struct idxset_entry *e) {
|
void* pa_idxset_get_by_data(pa_idxset*s, const void *p, uint32_t *idx) {
|
||||||
struct idxset_entry **a;
|
unsigned hash;
|
||||||
|
struct idxset_entry *e;
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
pa_assert(e);
|
|
||||||
|
|
||||||
/* Remove from array */
|
hash = s->hash_func(p) % NBUCKETS;
|
||||||
a = array_index(s, e->index);
|
|
||||||
pa_assert(a && *a && *a == e);
|
|
||||||
*a = NULL;
|
|
||||||
|
|
||||||
/* Remove from linked list */
|
if (!(e = data_scan(s, hash, p)))
|
||||||
if (e->iterate_next)
|
return NULL;
|
||||||
e->iterate_next->iterate_prev = e->iterate_prev;
|
|
||||||
else
|
|
||||||
s->iterate_list_tail = e->iterate_prev;
|
|
||||||
|
|
||||||
if (e->iterate_prev)
|
if (idx)
|
||||||
e->iterate_prev->iterate_next = e->iterate_next;
|
*idx = e->idx;
|
||||||
else
|
|
||||||
s->iterate_list_head = e->iterate_next;
|
|
||||||
|
|
||||||
/* Remove from hash table */
|
return e->data;
|
||||||
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;
|
|
||||||
|
|
||||||
if (pa_flist_push(PA_STATIC_FLIST_GET(entries), e) < 0)
|
|
||||||
pa_xfree(e);
|
|
||||||
|
|
||||||
pa_assert(s->n_entries >= 1);
|
|
||||||
s->n_entries--;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void* pa_idxset_remove_by_index(pa_idxset*s, uint32_t idx) {
|
void* pa_idxset_remove_by_index(pa_idxset*s, uint32_t idx) {
|
||||||
struct idxset_entry **a;
|
struct idxset_entry *e;
|
||||||
|
unsigned hash;
|
||||||
void *data;
|
void *data;
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
|
|
||||||
if (!(a = array_index(s, idx)))
|
hash = idx % NBUCKETS;
|
||||||
|
|
||||||
|
if (!(e = index_scan(s, hash, idx)))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (!*a)
|
data = e->data;
|
||||||
return NULL;
|
remove_entry(s, e);
|
||||||
|
|
||||||
data = (*a)->data;
|
|
||||||
remove_entry(s, *a);
|
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
void* pa_idxset_remove_by_data(pa_idxset*s, const void *data, uint32_t *idx) {
|
void* pa_idxset_remove_by_data(pa_idxset*s, const void *data, uint32_t *idx) {
|
||||||
struct idxset_entry *e;
|
struct idxset_entry *e;
|
||||||
unsigned h;
|
unsigned hash;
|
||||||
void *r;
|
void *r;
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
|
|
||||||
pa_assert(s->hash_func);
|
hash = s->hash_func(data) % NBUCKETS;
|
||||||
h = s->hash_func(data) % s->hash_table_size;
|
|
||||||
|
|
||||||
pa_assert(s->hash_table);
|
if (!(e = data_scan(s, hash, data)))
|
||||||
if (!(e = hash_scan(s, s->hash_table[h], data)))
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
r = e->data;
|
r = e->data;
|
||||||
|
|
||||||
if (idx)
|
if (idx)
|
||||||
*idx = e->index;
|
*idx = e->idx;
|
||||||
|
|
||||||
remove_entry(s, e);
|
remove_entry(s, e);
|
||||||
|
|
||||||
|
|
@ -335,24 +310,80 @@ void* pa_idxset_remove_by_data(pa_idxset*s, const void *data, uint32_t *idx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void* pa_idxset_rrobin(pa_idxset *s, uint32_t *idx) {
|
void* pa_idxset_rrobin(pa_idxset *s, uint32_t *idx) {
|
||||||
struct idxset_entry **a, *e = NULL;
|
unsigned hash;
|
||||||
|
struct idxset_entry *e;
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
pa_assert(idx);
|
pa_assert(idx);
|
||||||
|
|
||||||
if ((a = array_index(s, *idx)) && *a)
|
hash = *idx % NBUCKETS;
|
||||||
e = (*a)->iterate_next;
|
|
||||||
|
|
||||||
if (!e)
|
if (!(e = index_scan(s, hash, *idx)))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (e && e->iterate_next)
|
||||||
|
e = e->iterate_next;
|
||||||
|
else
|
||||||
e = s->iterate_list_head;
|
e = s->iterate_list_head;
|
||||||
|
|
||||||
if (!e)
|
if (!e)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
*idx = e->index;
|
*idx = e->idx;
|
||||||
return e->data;
|
return e->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void *pa_idxset_iterate(pa_idxset *s, void **state, uint32_t *idx) {
|
||||||
|
struct idxset_entry *e;
|
||||||
|
|
||||||
|
pa_assert(s);
|
||||||
|
pa_assert(state);
|
||||||
|
|
||||||
|
if (*state == (void*) -1)
|
||||||
|
goto at_end;
|
||||||
|
|
||||||
|
if ((!*state && !s->iterate_list_head))
|
||||||
|
goto at_end;
|
||||||
|
|
||||||
|
e = *state ? *state : s->iterate_list_head;
|
||||||
|
|
||||||
|
if (e->iterate_next)
|
||||||
|
*state = e->iterate_next;
|
||||||
|
else
|
||||||
|
*state = (void*) -1;
|
||||||
|
|
||||||
|
if (idx)
|
||||||
|
*idx = e->idx;
|
||||||
|
|
||||||
|
return e->data;
|
||||||
|
|
||||||
|
at_end:
|
||||||
|
*state = (void *) -1;
|
||||||
|
|
||||||
|
if (idx)
|
||||||
|
*idx = PA_IDXSET_INVALID;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void* pa_idxset_steal_first(pa_idxset *s, uint32_t *idx) {
|
||||||
|
void *data;
|
||||||
|
|
||||||
|
pa_assert(s);
|
||||||
|
|
||||||
|
if (!s->iterate_list_head)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
data = s->iterate_list_head->data;
|
||||||
|
|
||||||
|
if (idx)
|
||||||
|
*idx = s->iterate_list_head->idx;
|
||||||
|
|
||||||
|
remove_entry(s, s->iterate_list_head);
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
void* pa_idxset_first(pa_idxset *s, uint32_t *idx) {
|
void* pa_idxset_first(pa_idxset *s, uint32_t *idx) {
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
|
|
||||||
|
|
@ -360,51 +391,32 @@ void* pa_idxset_first(pa_idxset *s, uint32_t *idx) {
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (idx)
|
if (idx)
|
||||||
*idx = s->iterate_list_head->index;
|
*idx = s->iterate_list_head->idx;
|
||||||
|
|
||||||
return s->iterate_list_head->data;
|
return s->iterate_list_head->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
void *pa_idxset_next(pa_idxset *s, uint32_t *idx) {
|
void *pa_idxset_next(pa_idxset *s, uint32_t *idx) {
|
||||||
struct idxset_entry **a, *e = NULL;
|
struct idxset_entry *e;
|
||||||
|
unsigned hash;
|
||||||
|
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
pa_assert(idx);
|
pa_assert(idx);
|
||||||
|
|
||||||
if ((a = array_index(s, *idx)) && *a)
|
hash = *idx % NBUCKETS;
|
||||||
e = (*a)->iterate_next;
|
|
||||||
|
|
||||||
if (e) {
|
if (!(e = index_scan(s, hash, *idx)))
|
||||||
*idx = e->index;
|
return NULL;
|
||||||
return e->data;
|
|
||||||
} else {
|
if (!e->iterate_next) {
|
||||||
*idx = PA_IDXSET_INVALID;
|
*idx = PA_IDXSET_INVALID;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
int pa_idxset_foreach(pa_idxset*s, int (*func)(void *p, uint32_t idx, int *del, void*userdata), void *userdata) {
|
e = e->iterate_next;
|
||||||
struct idxset_entry *e;
|
|
||||||
|
|
||||||
pa_assert(s);
|
*idx = e->idx;
|
||||||
pa_assert(func);
|
return e->data;
|
||||||
|
|
||||||
e = s->iterate_list_head;
|
|
||||||
while (e) {
|
|
||||||
int del = 0, r;
|
|
||||||
struct idxset_entry *n = e->iterate_next;
|
|
||||||
|
|
||||||
r = func(e->data, e->index, &del, userdata);
|
|
||||||
|
|
||||||
if (del)
|
|
||||||
remove_entry(s, e);
|
|
||||||
|
|
||||||
if (r < 0)
|
|
||||||
return r;
|
|
||||||
|
|
||||||
e = n;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned pa_idxset_size(pa_idxset*s) {
|
unsigned pa_idxset_size(pa_idxset*s) {
|
||||||
|
|
@ -413,9 +425,8 @@ unsigned pa_idxset_size(pa_idxset*s) {
|
||||||
return s->n_entries;
|
return s->n_entries;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pa_idxset_isempty(pa_idxset *s) {
|
pa_bool_t pa_idxset_isempty(pa_idxset *s) {
|
||||||
pa_assert(s);
|
pa_assert(s);
|
||||||
|
|
||||||
return s->n_entries == 0;
|
return s->n_entries == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
#ifndef fooidxsethfoo
|
#ifndef foopulsecoreidxsethfoo
|
||||||
#define fooidxsethfoo
|
#define foopulsecoreidxsethfoo
|
||||||
|
|
||||||
/***
|
/***
|
||||||
This file is part of PulseAudio.
|
This file is part of PulseAudio.
|
||||||
|
|
||||||
Copyright 2004-2006 Lennart Poettering
|
Copyright 2004-2008 Lennart Poettering
|
||||||
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
||||||
|
|
||||||
PulseAudio is free software; you can redistribute it and/or modify
|
PulseAudio is free software; you can redistribute it and/or modify
|
||||||
|
|
@ -25,9 +25,12 @@
|
||||||
|
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
||||||
|
#include <pulsecore/macro.h>
|
||||||
|
|
||||||
/* A combination of a set and a dynamic array. Entries are indexable
|
/* A combination of a set and a dynamic array. Entries are indexable
|
||||||
* both through a numeric automatically generated index and the entry's
|
* both through an automatically generated numeric index and the
|
||||||
* data pointer. As usual, memory management is the user's job. */
|
* entry's data pointer. As usual, memory management is the user's
|
||||||
|
* job. */
|
||||||
|
|
||||||
/* A special index value denoting the invalid index. */
|
/* A special index value denoting the invalid index. */
|
||||||
#define PA_IDXSET_INVALID ((uint32_t) -1)
|
#define PA_IDXSET_INVALID ((uint32_t) -1)
|
||||||
|
|
@ -54,7 +57,7 @@ typedef struct pa_idxset pa_idxset;
|
||||||
pa_idxset* pa_idxset_new(pa_hash_func_t hash_func, pa_compare_func_t compare_func);
|
pa_idxset* pa_idxset_new(pa_hash_func_t hash_func, pa_compare_func_t compare_func);
|
||||||
|
|
||||||
/* Free the idxset. When the idxset is not empty the specified function is called for every entry contained */
|
/* Free the idxset. When the idxset is not empty the specified function is called for every entry contained */
|
||||||
void pa_idxset_free(pa_idxset *s, void (*free_func) (void *p, void *userdata), void *userdata);
|
void pa_idxset_free(pa_idxset *s, pa_free2_cb_t free_cb, void *userdata);
|
||||||
|
|
||||||
/* Store a new item in the idxset. The index of the item is returned in *idx */
|
/* Store a new item in the idxset. The index of the item is returned in *idx */
|
||||||
int pa_idxset_put(pa_idxset*s, void *p, uint32_t *idx);
|
int pa_idxset_put(pa_idxset*s, void *p, uint32_t *idx);
|
||||||
|
|
@ -79,6 +82,12 @@ void* pa_idxset_remove_by_data(pa_idxset*s, const void *p, uint32_t *idx);
|
||||||
returned before the an entry is returned the second time.*/
|
returned before the an entry is returned the second time.*/
|
||||||
void* pa_idxset_rrobin(pa_idxset *s, uint32_t *idx);
|
void* pa_idxset_rrobin(pa_idxset *s, uint32_t *idx);
|
||||||
|
|
||||||
|
/* Iterate through the idxset. At first iteration state should be NULL */
|
||||||
|
void *pa_idxset_iterate(pa_idxset *s, void **state, uint32_t *idx);
|
||||||
|
|
||||||
|
/* Return the oldest entry in the idxset and remove it. If idx is not NULL fill in its index in *idx */
|
||||||
|
void* pa_idxset_steal_first(pa_idxset *s, uint32_t *idx);
|
||||||
|
|
||||||
/* Return the oldest entry in the idxset. Fill in its index in *idx. */
|
/* Return the oldest entry in the idxset. Fill in its index in *idx. */
|
||||||
void* pa_idxset_first(pa_idxset *s, uint32_t *idx);
|
void* pa_idxset_first(pa_idxset *s, uint32_t *idx);
|
||||||
|
|
||||||
|
|
@ -88,14 +97,10 @@ void* pa_idxset_first(pa_idxset *s, uint32_t *idx);
|
||||||
* iterate through the set.*/
|
* iterate through the set.*/
|
||||||
void *pa_idxset_next(pa_idxset *s, uint32_t *idx);
|
void *pa_idxset_next(pa_idxset *s, uint32_t *idx);
|
||||||
|
|
||||||
/* Call a function for every item in the set. If the callback function
|
/* Return the current number of entries in the idxset */
|
||||||
returns -1, the loop is terminated. If *del is set to non-zero that
|
|
||||||
specific item is removed. It is not safe to call any other
|
|
||||||
functions on the idxset while pa_idxset_foreach is executed. */
|
|
||||||
int pa_idxset_foreach(pa_idxset*s, int (*func)(void *p, uint32_t idx, int *del, void*userdata), void *userdata);
|
|
||||||
|
|
||||||
unsigned pa_idxset_size(pa_idxset*s);
|
unsigned pa_idxset_size(pa_idxset*s);
|
||||||
|
|
||||||
int pa_idxset_isempty(pa_idxset *s);
|
/* Return TRUE of the idxset is empty */
|
||||||
|
pa_bool_t pa_idxset_isempty(pa_idxset *s);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -194,25 +194,19 @@ void pa_module_unload_by_index(pa_core *c, uint32_t idx) {
|
||||||
pa_module_free(m);
|
pa_module_free(m);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void free_callback(void *p, PA_GCC_UNUSED void *userdata) {
|
|
||||||
pa_module *m = p;
|
|
||||||
pa_assert(m);
|
|
||||||
pa_module_free(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
void pa_module_unload_all(pa_core *c) {
|
void pa_module_unload_all(pa_core *c) {
|
||||||
pa_module *m;
|
|
||||||
|
|
||||||
pa_assert(c);
|
pa_assert(c);
|
||||||
|
|
||||||
if (!c->modules)
|
if (c->modules) {
|
||||||
return;
|
pa_module *m;
|
||||||
|
|
||||||
while ((m = pa_idxset_first(c->modules, NULL)))
|
while ((m = pa_idxset_steal_first(c->modules, NULL)))
|
||||||
pa_module_unload(c, m);
|
pa_module_free(m);
|
||||||
|
|
||||||
pa_idxset_free(c->modules, free_callback, NULL);
|
pa_idxset_free(c->modules, NULL, NULL);
|
||||||
c->modules = NULL;
|
c->modules = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (c->module_auto_unload_event) {
|
if (c->module_auto_unload_event) {
|
||||||
c->mainloop->time_free(c->module_auto_unload_event);
|
c->mainloop->time_free(c->module_auto_unload_event);
|
||||||
|
|
@ -225,55 +219,47 @@ void pa_module_unload_all(pa_core *c) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int unused_callback(void *p, PA_GCC_UNUSED uint32_t idx, int *del, void *userdata) {
|
|
||||||
pa_module *m = p;
|
|
||||||
time_t *now = userdata;
|
|
||||||
|
|
||||||
pa_assert(m);
|
|
||||||
pa_assert(del);
|
|
||||||
pa_assert(now);
|
|
||||||
|
|
||||||
if (m->n_used == 0 && m->auto_unload && m->last_used_time+m->core->module_idle_time <= *now) {
|
|
||||||
pa_module_free(m);
|
|
||||||
*del = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void pa_module_unload_unused(pa_core *c) {
|
void pa_module_unload_unused(pa_core *c) {
|
||||||
|
void *state = NULL;
|
||||||
time_t now;
|
time_t now;
|
||||||
|
pa_module *m;
|
||||||
|
|
||||||
pa_assert(c);
|
pa_assert(c);
|
||||||
|
|
||||||
if (!c->modules)
|
if (!c->modules)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
time(&now);
|
time(&now);
|
||||||
pa_idxset_foreach(c->modules, unused_callback, &now);
|
|
||||||
|
while ((m = pa_idxset_iterate(c->modules, &state, NULL))) {
|
||||||
|
|
||||||
|
if (m->n_used > 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (!m->auto_unload)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (m->last_used_time + m->core->module_idle_time > now)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
pa_module_unload(c, m);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int unload_callback(void *p, PA_GCC_UNUSED uint32_t idx, int *del, PA_GCC_UNUSED void *userdata) {
|
|
||||||
pa_module *m = p;
|
|
||||||
pa_assert(m);
|
|
||||||
|
|
||||||
if (m->unload_requested) {
|
|
||||||
pa_module_free(m);
|
|
||||||
*del = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void defer_cb(pa_mainloop_api*api, pa_defer_event *e, void *userdata) {
|
static void defer_cb(pa_mainloop_api*api, pa_defer_event *e, void *userdata) {
|
||||||
pa_core *core = PA_CORE(userdata);
|
void *state = NULL;
|
||||||
|
pa_core *c = PA_CORE(userdata);
|
||||||
|
pa_module *m;
|
||||||
|
|
||||||
pa_core_assert_ref(core);
|
pa_core_assert_ref(c);
|
||||||
api->defer_enable(e, 0);
|
api->defer_enable(e, 0);
|
||||||
|
|
||||||
if (!core->modules)
|
if (!c->modules)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
pa_idxset_foreach(core->modules, unload_callback, NULL);
|
while ((m = pa_idxset_iterate(c->modules, &state, NULL)))
|
||||||
|
if (m->unload_requested)
|
||||||
|
pa_module_unload(c, m);
|
||||||
}
|
}
|
||||||
|
|
||||||
void pa_module_unload_request(pa_module *m) {
|
void pa_module_unload_request(pa_module *m) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue