~killerkiwi2005/earcandy/0.4

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
from lib_pulseaudio import *
import gobject
import sys 

PA_VOLUME_CONVERSION_FACTOR = 655.36
      
# A null method that can be given to pulse methods
def null_cb(a=None, b=None, c=None, d=None):
    #print "NULL CB"
    return

class PulseAudio():
    def __init__(self, new_client_cb, remove_client_cb, new_sink_cb, remove_sink_cb, new_output_cb, remove_pa_output, volume_change_cb, volume_meter_cb):
        
        self.sinks = {}
        self.monitor_sinks = []

        self.new_client_cb = new_client_cb
        self.new_sink_cb = new_sink_cb
        self.remove_sink_cb = remove_sink_cb
        self.remove_client_cb = remove_client_cb
        self.new_output_cb = new_output_cb
        self.volume_change_cb = volume_change_cb
        self.remove_pa_output = remove_pa_output
        self.volume_meter_cb = volume_meter_cb

        self.pa_mainloop = pa_threaded_mainloop_new();
        self.pa_mainloop_api = pa_threaded_mainloop_get_api(self.pa_mainloop);
        
        self._context = pa_context_new(self.pa_mainloop_api, "ear-candy");
        self._context_notify_cb = pa_context_notify_cb_t(self.context_notify_cb)
        pa_context_set_state_callback(self._context, self._context_notify_cb, None);
        pa_context_connect(self._context, None, 0, None);
       
        pa_threaded_mainloop_start(self.pa_mainloop);

    # pulseaudio connection status    
    def context_notify_cb(self, context, userdata):
        
        try:
            ctc = pa_context_get_state(context)
            if ctc == PA_CONTEXT_READY:
                print
                print "Pulseaudio connection ready..."

                self._null_cb = pa_context_success_cb_t(null_cb)
                self._pa_context_success_cb = pa_context_success_cb_t(self.pa_context_success_cb)
                self._pa_stream_request_cb = pa_stream_request_cb_t(self.pa_stream_request_cb)
                self._pa_stream_notify_cb = pa_stream_notify_cb_t(self.pa_stream_request_cb)
                self._pa_sink_info_cb = pa_sink_info_cb_t(self.pa_sink_info_cb)
                self._pa_context_subscribe_cb = pa_context_subscribe_cb_t(self.pa_context_subscribe_cb)
                self._pa_source_info_cb = pa_source_info_cb_t(self.pa_source_info_cb)
                self._pa_source_output_info_cb = pa_source_output_info_cb_t(self.pa_source_output_info_cb)
                self._pa_sink_input_info_list_cb = pa_sink_input_info_cb_t(self.pa_sink_input_info_cb)
                self._pa_client_info_list_cb = pa_client_info_cb_t(self.pa_client_info_cb)

                o = pa_context_get_source_info_list(self._context, self._pa_source_info_cb, True)
                pa_operation_unref(o)

                o = pa_context_get_client_info_list(self._context, self._pa_client_info_list_cb, None)
                pa_operation_unref(o)
                
                o = pa_context_get_source_output_info_list(self._context, self._pa_source_output_info_cb, None)
                pa_operation_unref(o)

                o = pa_context_get_sink_info_list(self._context, self._pa_sink_info_cb, None)
                pa_operation_unref(o)

                o = pa_context_get_sink_input_info_list(self._context, self._pa_sink_input_info_list_cb, True)
                pa_operation_unref(o)

                pa_context_set_subscribe_callback(self._context, self._pa_context_subscribe_cb, None);
                o = pa_context_subscribe(self._context, (pa_subscription_mask_t)
                                               (PA_SUBSCRIPTION_MASK_SINK|
                                                PA_SUBSCRIPTION_MASK_SOURCE|
                                                PA_SUBSCRIPTION_MASK_SINK_INPUT|
                                                PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT|
                                                PA_SUBSCRIPTION_MASK_CLIENT|
                                                PA_SUBSCRIPTION_MASK_SERVER), self._null_cb, None)  
                pa_operation_unref(o)

            if ctc == PA_CONTEXT_FAILED :
                self.__print("Connection failed")
                pa_threaded_mainloop_signal(self.pa_mainloop, 0)
                sys.exit(1)
                
            if ctc == PA_CONTEXT_TERMINATED:
                self.__print("Connection terminated")
                pa_threaded_mainloop_signal(self.pa_mainloop, 0)
                sys.exit(1)

        except Exception, text:
            self.__print("ERROR context_notify_cb %s" % text)
                  

    def pa_source_info_cb(self, context, struct, eol, user_data):
        if eol: return

        if struct:
            
            if  struct.contents.monitor_of_sink_name:
                print 
                print "== new output device found =="
                print struct.contents.name
                print struct.contents.description
                print struct.contents.monitor_of_sink_name
                #print struct.contents.driver
                #print struct.contents.sample_spec
                #print struct.contents.channel_map
                #print struct.contents.owner_module
                #print struct.contents.volume
                #print struct.contents.mute
                #print struct.contents.monitor_of_sink
                #print struct.contents.monitor_of_sink_name
                #print struct.contents.flags
                #print struct.contents.index
                
                gobject.idle_add(self.new_output_cb, struct.contents.index, struct.contents.monitor_of_sink_name, user_data)
                volume = int(pa_cvolume_avg(struct.contents.volume) / PA_VOLUME_CONVERSION_FACTOR)
                gobject.idle_add(self.volume_change_cb, volume)

##### EXPERMINTATL STARTS ###########################################################
    def pa_stream_request_cb(self, stream, length, index):

        # This isnt quite right... maybe not a float.. ?
        import ctypes
        import math
        #null_ptr = ctypes.c_void_p()
        data = POINTER(c_float)()
        pa_stream_peek(stream, data, ctypes.c_ulong(length)) 
        v = data[length / 4 -1] * 100
        if (v < 0):
            v = 0
        if (v > 100):
            v = 100
        pa_stream_drop(stream);

        self.volume_meter_cb(index, v)
    
    def pa_create_monitor_stream_for_sink_input(self, index, monitor_index, name):
        
        if not index in self.monitor_sinks:
            self.monitor_sinks.append(index)
            # Create new stream
            ss = pa_sample_spec()
            ss.channels = 1;
            ss.format = 5;
            ss.rate = 25;
            pa_stream =  pa_stream_new(self._context, "Peak detect - " + name, ss, None)
            
            pa_stream_set_monitor_stream(pa_stream, index);
            pa_stream_set_read_callback(pa_stream, self._pa_stream_request_cb, index);
            pa_stream_set_suspended_callback(pa_stream, self._pa_stream_notify_cb, None);

            attr = pa_buffer_attr()
            attr.fragsize = 4
            attr.maxlength = 10
            attr.tlength = 0
            attr.prebuf = 0
            attr.minreq = 0

            pa_stream_connect_record(pa_stream, str(monitor_index), attr, 10752) 

##### EXPERMINTATL ENDS ###########################################################

                    
    def pa_context_success_cb(self, context, c_int,  user_data):
        return

    def pa_source_output_info_cb(self, context, struct, c_int, user_data):
        return
        
    # void subscribe_cb(pa_context *c, pa_subscription_event_type_t t, uint32_t index, void *userdata) {
    def pa_context_subscribe_cb(self, context, event_type, index, user_data):

        try:
            et = event_type & PA_SUBSCRIPTION_EVENT_FACILITY_MASK

            if et == PA_SUBSCRIPTION_EVENT_CLIENT:
            
                if event_type & PA_SUBSCRIPTION_EVENT_TYPE_MASK == PA_SUBSCRIPTION_EVENT_REMOVE:
                    gobject.idle_add(self.remove_client_cb, int(index))
                else:
                    o = pa_context_get_client_info(self._context, index, self._pa_client_info_list_cb, None)
                    pa_operation_unref(o)

            if et == PA_SUBSCRIPTION_EVENT_SINK_INPUT:
                if event_type & PA_SUBSCRIPTION_EVENT_TYPE_MASK == PA_SUBSCRIPTION_EVENT_REMOVE:
                     gobject.idle_add(self.remove_sink_cb, int(index))
                     self.monitor_sinks.remove(index)
                else:
                    o = pa_context_get_sink_input_info(self._context, int(index), self._pa_sink_input_info_list_cb, True)
                    pa_operation_unref(o)
                    
            if et == PA_SUBSCRIPTION_EVENT_SOURCE:
                if event_type & PA_SUBSCRIPTION_EVENT_TYPE_MASK == PA_SUBSCRIPTION_EVENT_REMOVE:
                    # Remove output source
                    self.remove_pa_output( int(index) )
                else:
                    o = pa_context_get_source_info_by_index(self._context, int(index), self._pa_source_info_cb, False)
                    pa_operation_unref(o)

        except Exception, text:
            self.__print("pa :: ERROR pa_context_subscribe_cb %s" % text)
    
    # get detail from pa server   
    def pa_client_info_cb(self, context, struct, c_int, user_data):
        try:
            if struct :
                gobject.idle_add(self.new_client_cb, struct.contents.index, struct.contents.name)
                
        except Exception, text:
            self.__print( "pa :: ERROR pa_client_info_cb %s" % text)    

    # get detail from pa server  
    def pa_sink_input_info_cb(self, context, struct, index, user_data):
        if struct and user_data:

            if float(struct.contents.sink) in self.sinks:
                self.pa_create_monitor_stream_for_sink_input(int(struct.contents.index), self.sinks[float(struct.contents.sink)], struct.contents.name)

            # Get volume level
            volume = []
            volume.append( int(pa_cvolume_avg(struct.contents.volume) / PA_VOLUME_CONVERSION_FACTOR) )
            for i in range(0, struct.contents.volume.channels):
                volume.append(int(struct.contents.volume.values[i]) / PA_VOLUME_CONVERSION_FACTOR)
            
            self.__print("pa_sink_input_info_cb")
            gobject.idle_add( self.new_sink_cb, int(struct.contents.index), struct.contents.name, int(struct.contents.client), volume, struct.contents.sink, struct.contents.channel_map.channels)

    # Move a playing stream to a differnt output sink
    def move_sink(self, sink_index, output_name):
        pa_context_move_sink_input_by_name(self._context, sink_index, output_name, self._pa_context_success_cb, None)

    def set_sink_volume_by_name(self, sink_name, volume):
        if volume < 0: volume = 0
        vol = pa_cvolume()
        vol.channels = 2 #len(cvolume) - 1
        v = pa_volume_t * 32
        vol.values = v (int(volume * PA_VOLUME_CONVERSION_FACTOR), int(volume * PA_VOLUME_CONVERSION_FACTOR))

        o = pa_context_set_sink_volume_by_name(self._context, sink_name, vol, self._null_cb, None)
        pa_operation_unref(o)

    def set_sink_volume(self, index, cvolume, number_of_channels):
        vol = pa_cvolume()
        vol.channels = number_of_channels #len(cvolume) - 1
        v = pa_volume_t * 32

        vol.values = v()
        for i in range(0, number_of_channels):
            if len(cvolume) > i:
                vol.values[i] = int(cvolume[i+1] * PA_VOLUME_CONVERSION_FACTOR)
            else:
                vol.values[i] = int(cvolume[1] * PA_VOLUME_CONVERSION_FACTOR)

        # Note setting volume causes a trigger of sink_input_info which will gives us back new volume!
        o = pa_context_set_sink_input_volume(self._context, index, vol, self._null_cb, None) # NOTE: dont pass in any thing here causes a seg fault
        pa_operation_unref(o)

    def get_sink_info_by_name(self, sink_name):
        o = pa_context_get_sink_info_by_name(self._context, sink_name, self._pa_sink_info_cb, False)
        pa_operation_unref(o)

    def pa_sink_info_cb(self, context, struct, index, data):
        if struct:
            # Get volume level

            # Update sink to monitor links
            self.sinks[ float(struct.contents.index) ] = struct.contents.monitor_source
            self.__print("pa_sink_info_cb")
            gobject.idle_add(self.volume_change_cb, int(pa_cvolume_avg(struct.contents.volume) / PA_VOLUME_CONVERSION_FACTOR))

    def __print(self, text):
        #print text
        return

if __name__ == '__main__':
    c = PulseAudio()