don't send SCM_CREDENTIALS on every sendmsg(), instead do it only on handshake
[pulseaudio.git] / src / pulsecore / core-scache.h
blobd01aae9b19278913773945f12648a559d22aa0fa
1 #ifndef foocorescachehfoo
2 #define foocorescachehfoo
4 /* $Id$ */
6 /***
7 This file is part of PulseAudio.
9 PulseAudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
14 PulseAudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with PulseAudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
25 #include <pulsecore/core.h>
26 #include <pulsecore/memchunk.h>
27 #include <pulsecore/sink.h>
29 #define PA_SCACHE_ENTRY_SIZE_MAX (1024*1024*2)
31 typedef struct pa_scache_entry {
32 pa_core *core;
33 uint32_t index;
34 char *name;
36 pa_cvolume volume;
37 pa_sample_spec sample_spec;
38 pa_channel_map channel_map;
39 pa_memchunk memchunk;
41 char *filename;
43 int lazy;
44 time_t last_used_time;
45 } pa_scache_entry;
47 int pa_scache_add_item(pa_core *c, const char *name, const pa_sample_spec *ss, const pa_channel_map *map, const pa_memchunk *chunk, uint32_t *idx);
48 int pa_scache_add_file(pa_core *c, const char *name, const char *filename, uint32_t *idx);
49 int pa_scache_add_file_lazy(pa_core *c, const char *name, const char *filename, uint32_t *idx);
51 int pa_scache_add_directory_lazy(pa_core *c, const char *pathname);
53 int pa_scache_remove_item(pa_core *c, const char *name);
54 int pa_scache_play_item(pa_core *c, const char *name, pa_sink *sink, pa_volume_t volume);
55 void pa_scache_free(pa_core *c);
57 const char *pa_scache_get_name_by_id(pa_core *c, uint32_t id);
58 uint32_t pa_scache_get_id_by_name(pa_core *c, const char *name);
60 uint32_t pa_scache_total_size(pa_core *c);
62 void pa_scache_unload_unused(pa_core *c);
64 #endif