summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/audiofx/service/AudioOutputChangeListener.java
blob: 2b4cc20038971d04e86ef0ef1775de2c6acc8f6b (plain)
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
/*
 * Copyright (C) 2016 The CyanogenMod Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.cyanogenmod.audiofx.service;

import static android.media.AudioDeviceInfo.convertDeviceTypeToInternalDevice;

import android.content.Context;
import android.media.AudioDeviceCallback;
import android.media.AudioDeviceInfo;
import android.media.AudioManager;
import android.os.Handler;
import android.util.Log;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class AudioOutputChangeListener extends AudioDeviceCallback {

    private static final String TAG = "AudioFx-" + AudioOutputChangeListener.class.getSimpleName();

    private boolean mInitial = true;

    private final Context mContext;
    private final AudioManager mAudioManager;
    private final Handler mHandler;
    private int mLastDevice = -1;

    private final ArrayList<AudioOutputChangedCallback> mCallbacks = new ArrayList<AudioOutputChangedCallback>();

    public interface AudioOutputChangedCallback {
        public void onAudioOutputChanged(boolean firstChange, AudioDeviceInfo outputDevice);
    }

    public AudioOutputChangeListener(Context context, Handler handler) {
        mContext = context;
        mAudioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
        mHandler = handler;
    }

    public void addCallback(AudioOutputChangedCallback... callbacks) {
        synchronized (mCallbacks) {
            boolean initial = mCallbacks.size() == 0;
            mCallbacks.addAll(Arrays.asList(callbacks));
            if (initial) {
                mAudioManager.registerAudioDeviceCallback(this, mHandler);
            }
        }
    }

    public void removeCallback(AudioOutputChangedCallback... callbacks) {
        synchronized (mCallbacks) {
            mCallbacks.removeAll(Arrays.asList(callbacks));
            if (mCallbacks.size() == 0) {
                mAudioManager.unregisterAudioDeviceCallback(this);
            }
        }
    }

    private void callback() {
        synchronized (mCallbacks) {
        final AudioDeviceInfo device = getCurrentDevice();

            if (device == null) {
                Log.w(TAG, "Unable to determine audio device!");
                return;
            }

            if (mInitial || device.getId() != mLastDevice) {
                Log.d(TAG, "onAudioOutputChanged id: " + device.getId() +
                        " type: " + device.getType() +
                        " name: " + device.getProductName() +
                        " address: " + device.getAddress() +
                        " [" + device.toString() + "]");
                mLastDevice = device.getId();
                mHandler.post(new Runnable() {
                    @Override
                    public void run() {
                        synchronized (mCallbacks) {
                            for (AudioOutputChangedCallback callback : mCallbacks) {
                                callback.onAudioOutputChanged(mInitial, device);
                            }
                        }
                    }
                });

                if (mInitial) {
                    mInitial = false;
                }
            }
        }
    }

    public void refresh() {
        callback();
    }

    @Override
    public void onAudioDevicesAdded(AudioDeviceInfo[] addedDevices) {
        callback();
    }

    @Override
    public void onAudioDevicesRemoved(AudioDeviceInfo[] removedDevices) {
        callback();
    }

    public List<AudioDeviceInfo> getConnectedOutputs() {
        final List<AudioDeviceInfo> outputs = new ArrayList<AudioDeviceInfo>();
        final int forMusic = mAudioManager.getDevicesForStream(AudioManager.STREAM_MUSIC);
        for (AudioDeviceInfo ai : mAudioManager.getDevices(AudioManager.GET_DEVICES_OUTPUTS)) {
            if ((convertDeviceTypeToInternalDevice(ai.getType()) & forMusic) > 0) {
                outputs.add(ai);
            }
        }
        return outputs;
    }

    public AudioDeviceInfo getCurrentDevice() {
        final List<AudioDeviceInfo> devices = getConnectedOutputs();
        return devices.size() > 0 ? devices.get(0) : null;
    }

    public AudioDeviceInfo getDeviceById(int id) {
        for (AudioDeviceInfo ai :  mAudioManager.getDevices(AudioManager.GET_DEVICES_OUTPUTS)) {
            if (ai.getId() == id) {
                return ai;
            }
        }
        return null;
    }
}