]> code.delx.au - pulseaudio/blob - src/pulsecore/source.h
Move attaching/detaching from a pa_rtpoll into pa_sink proper, remove it from module...
[pulseaudio] / src / pulsecore / source.h
1 #ifndef foopulsesourcehfoo
2 #define foopulsesourcehfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2004-2006 Lennart Poettering
10 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
11
12 PulseAudio is free software; you can redistribute it and/or modify
13 it under the terms of the GNU Lesser General Public License as published
14 by the Free Software Foundation; either version 2 of the License,
15 or (at your option) any later version.
16
17 PulseAudio is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU Lesser General Public License
23 along with PulseAudio; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25 USA.
26 ***/
27
28 typedef struct pa_source pa_source;
29
30 #include <inttypes.h>
31
32 #include <pulse/sample.h>
33 #include <pulse/channelmap.h>
34 #include <pulse/volume.h>
35
36 #include <pulsecore/core-def.h>
37 #include <pulsecore/core.h>
38 #include <pulsecore/idxset.h>
39 #include <pulsecore/memblock.h>
40 #include <pulsecore/memchunk.h>
41 #include <pulsecore/sink.h>
42 #include <pulsecore/module.h>
43 #include <pulsecore/asyncmsgq.h>
44 #include <pulsecore/msgobject.h>
45 #include <pulsecore/rtpoll.h>
46
47 #define PA_MAX_OUTPUTS_PER_SOURCE 32
48
49 typedef enum pa_source_state {
50 PA_SOURCE_INIT,
51 PA_SOURCE_RUNNING,
52 PA_SOURCE_SUSPENDED,
53 PA_SOURCE_IDLE,
54 PA_SOURCE_UNLINKED
55 } pa_source_state_t;
56
57 static inline int PA_SOURCE_OPENED(pa_source_state_t x) {
58 return x == PA_SOURCE_RUNNING || x == PA_SOURCE_IDLE;
59 }
60
61 static inline int PA_SOURCE_LINKED(pa_source_state_t x) {
62 return x == PA_SOURCE_RUNNING || x == PA_SOURCE_IDLE || x == PA_SOURCE_SUSPENDED;
63 }
64
65 struct pa_source {
66 pa_msgobject parent;
67
68 uint32_t index;
69 pa_core *core;
70 pa_source_state_t state;
71 pa_source_flags_t flags;
72
73 char *name;
74 char *description, *driver; /* may be NULL */
75
76 pa_module *module; /* may be NULL */
77
78 pa_sample_spec sample_spec;
79 pa_channel_map channel_map;
80
81 pa_idxset *outputs;
82 pa_sink *monitor_of; /* may be NULL */
83
84 pa_cvolume volume;
85 int muted;
86 int refresh_volume;
87 int refresh_muted;
88
89 int (*set_state)(pa_source*source, pa_source_state_t state); /* may be NULL */
90 int (*set_volume)(pa_source *s); /* dito */
91 int (*get_volume)(pa_source *s); /* dito */
92 int (*set_mute)(pa_source *s); /* dito */
93 int (*get_mute)(pa_source *s); /* dito */
94 pa_usec_t (*get_latency)(pa_source *s); /* dito */
95
96 pa_asyncmsgq *asyncmsgq;
97 pa_rtpoll *rtpoll;
98
99 /* Contains copies of the above data so that the real-time worker
100 * thread can work without access locking */
101 struct {
102 pa_source_state_t state;
103 pa_hashmap *outputs;
104 pa_cvolume soft_volume;
105 int soft_muted;
106 } thread_info;
107
108 void *userdata;
109 };
110
111 PA_DECLARE_CLASS(pa_source);
112 #define PA_SOURCE(s) pa_source_cast(s)
113
114 typedef enum pa_source_message {
115 PA_SOURCE_MESSAGE_ADD_OUTPUT,
116 PA_SOURCE_MESSAGE_REMOVE_OUTPUT,
117 PA_SOURCE_MESSAGE_GET_VOLUME,
118 PA_SOURCE_MESSAGE_SET_VOLUME,
119 PA_SOURCE_MESSAGE_GET_MUTE,
120 PA_SOURCE_MESSAGE_SET_MUTE,
121 PA_SOURCE_MESSAGE_GET_LATENCY,
122 PA_SOURCE_MESSAGE_SET_STATE,
123 PA_SOURCE_MESSAGE_PING,
124 PA_SOURCE_MESSAGE_ATTACH,
125 PA_SOURCE_MESSAGE_DETACH,
126 PA_SOURCE_MESSAGE_MAX
127 } pa_source_message_t;
128
129 /* To be called exclusively by the source driver, from main context */
130
131 pa_source* pa_source_new(
132 pa_core *core,
133 const char *driver,
134 const char *name,
135 int namereg_fail,
136 const pa_sample_spec *spec,
137 const pa_channel_map *map);
138
139 void pa_source_put(pa_source *s);
140 void pa_source_unlink(pa_source *s);
141
142 void pa_source_set_module(pa_source *s, pa_module *m);
143 void pa_source_set_description(pa_source *s, const char *description);
144 void pa_source_set_asyncmsgq(pa_source *s, pa_asyncmsgq *q);
145 void pa_source_set_rtpoll(pa_source *s, pa_rtpoll *p);
146
147 void pa_source_detach(pa_source *s);
148 void pa_source_attach(pa_source *s);
149
150 /* May be called by everyone, from main context */
151
152 pa_usec_t pa_source_get_latency(pa_source *s);
153
154 int pa_source_update_status(pa_source*s);
155 int pa_source_suspend(pa_source *s, int suspend);
156 int pa_source_suspend_all(pa_core *c, int suspend);
157
158 void pa_source_ping(pa_source *s);
159
160 void pa_source_set_volume(pa_source *source, const pa_cvolume *volume);
161 const pa_cvolume *pa_source_get_volume(pa_source *source);
162 void pa_source_set_mute(pa_source *source, int mute);
163 int pa_source_get_mute(pa_source *source);
164
165 unsigned pa_source_used_by(pa_source *s);
166 #define pa_source_get_state(s) ((pa_source_state_t) (s)->state)
167
168 /* To be called exclusively by the source driver, from IO context */
169
170 void pa_source_post(pa_source*s, const pa_memchunk *b);
171
172 int pa_source_process_msg(pa_msgobject *o, int code, void *userdata, int64_t, pa_memchunk *chunk);
173
174 void pa_source_attach_within_thread(pa_source *s);
175 void pa_source_detach_within_thread(pa_source *s);
176
177 #endif