]> code.delx.au - pulseaudio/blob - polyp/polyplib-internal.h
some updates for pa_hashmap
[pulseaudio] / polyp / polyplib-internal.h
1 #ifndef foopolyplibinternalhfoo
2 #define foopolyplibinternalhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of polypaudio.
8
9 polypaudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU 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.
13
14 polypaudio 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.
18
19 You should have received a copy of the GNU General Public License
20 along with polypaudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #include "mainloop-api.h"
26 #include "socket-client.h"
27 #include "pstream.h"
28 #include "pdispatch.h"
29 #include "dynarray.h"
30
31 #include "polyplib-context.h"
32 #include "polyplib-stream.h"
33 #include "polyplib-operation.h"
34 #include "llist.h"
35 #include "native-common.h"
36 #include "client-conf.h"
37
38 #define DEFAULT_TLENGTH (44100*2*2/2) //(10240*8)
39 #define DEFAULT_MAXLENGTH ((DEFAULT_TLENGTH*3)/2)
40 #define DEFAULT_MINREQ 512
41 #define DEFAULT_PREBUF (DEFAULT_TLENGTH-DEFAULT_MINREQ)
42 #define DEFAULT_FRAGSIZE 1024
43
44 #define DEFAULT_TIMEOUT (10)
45
46 struct pa_context {
47 int ref;
48
49 char *name;
50 struct pa_mainloop_api* mainloop;
51
52 struct pa_socket_client *client;
53 struct pa_pstream *pstream;
54 struct pa_pdispatch *pdispatch;
55
56 struct pa_dynarray *record_streams, *playback_streams;
57 PA_LLIST_HEAD(struct pa_stream, streams);
58 PA_LLIST_HEAD(struct pa_operation, operations);
59
60 uint32_t ctag;
61 uint32_t error;
62 enum pa_context_state state;
63
64 uint8_t auth_cookie[PA_NATIVE_COOKIE_LENGTH];
65
66 void (*state_callback)(struct pa_context*c, void *userdata);
67 void *state_userdata;
68
69 void (*subscribe_callback)(struct pa_context *c, enum pa_subscription_event_type t, uint32_t index, void *userdata);
70 void *subscribe_userdata;
71
72 struct pa_memblock_stat *memblock_stat;
73
74 int local;
75
76 struct pa_client_conf *conf;
77 };
78
79 struct pa_stream {
80 int ref;
81 struct pa_context *context;
82 struct pa_mainloop_api *mainloop;
83 PA_LLIST_FIELDS(struct pa_stream);
84
85 char *name;
86 struct pa_buffer_attr buffer_attr;
87 struct pa_sample_spec sample_spec;
88 uint32_t channel;
89 int channel_valid;
90 uint32_t device_index;
91 enum pa_stream_direction direction;
92 uint32_t requested_bytes;
93 uint64_t counter;
94 pa_usec_t previous_time;
95 enum pa_stream_state state;
96
97 int interpolate;
98 int corked;
99
100 uint32_t ipol_usec;
101 struct timeval ipol_timestamp;
102 struct pa_time_event *ipol_event;
103
104 void (*state_callback)(struct pa_stream*c, void *userdata);
105 void *state_userdata;
106
107 void (*read_callback)(struct pa_stream *p, const void*data, size_t length, void *userdata);
108 void *read_userdata;
109
110 void (*write_callback)(struct pa_stream *p, size_t length, void *userdata);
111 void *write_userdata;
112
113 };
114
115 struct pa_operation {
116 int ref;
117 struct pa_context *context;
118 struct pa_stream *stream;
119 PA_LLIST_FIELDS(struct pa_operation);
120
121 enum pa_operation_state state;
122 void *userdata;
123 void (*callback)();
124 };
125
126 void pa_command_request(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata);
127 void pa_command_stream_killed(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata);
128 void pa_command_subscribe_event(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata);
129
130 struct pa_operation *pa_operation_new(struct pa_context *c, struct pa_stream *s);
131 void pa_operation_done(struct pa_operation *o);
132
133 void pa_create_stream_callback(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata);
134 void pa_stream_disconnect_callback(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata);
135 void pa_context_simple_ack_callback(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata);
136 void pa_stream_simple_ack_callback(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata);
137
138 void pa_context_fail(struct pa_context *c, int error);
139 void pa_context_set_state(struct pa_context *c, enum pa_context_state st);
140 int pa_context_handle_error(struct pa_context *c, uint32_t command, struct pa_tagstruct *t);
141 struct pa_operation* pa_context_send_simple_command(struct pa_context *c, uint32_t command, void (*internal_callback)(struct pa_pdispatch *pd, uint32_t command, uint32_t tag, struct pa_tagstruct *t, void *userdata), void (*cb)(), void *userdata);
142
143 void pa_stream_set_state(struct pa_stream *s, enum pa_stream_state st);
144
145 void pa_stream_trash_ipol(struct pa_stream *s);
146
147
148 #endif