summaryrefslogtreecommitdiff
path: root/service/src/com/android/telephony/imsmedia/ImsMediaController.java
blob: fb7fe810bb0b1f2b94032ea9d16cc252dc37bfb9 (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
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
/**
 * Copyright (C) 2022 The Android Open Source 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 com.android.telephony.imsmedia;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.Parcel;
import android.os.ParcelFileDescriptor;
import android.support.annotation.GuardedBy;
import android.telephony.imsmedia.IImsAudioSession;
import android.telephony.imsmedia.IImsAudioSessionCallback;
import android.telephony.imsmedia.IImsMedia;
import android.telephony.imsmedia.IImsMediaCallback;
import android.telephony.imsmedia.IImsTextSession;
import android.telephony.imsmedia.IImsTextSessionCallback;
import android.telephony.imsmedia.IImsVideoSession;
import android.telephony.imsmedia.IImsVideoSessionCallback;
import android.telephony.imsmedia.ImsMediaSession;
import android.telephony.imsmedia.RtpConfig;
import android.telephony.imsmedia.VideoConfig;
import android.util.Log;
import android.util.SparseArray;

import com.android.telephony.imsmedia.Utils.OpenSessionParams;

import java.util.concurrent.atomic.AtomicInteger;

/** Controller that maintains all IMS Media sessions */
public class ImsMediaController extends Service {

    private static final String TAG = "ImsMediaController";
    private AtomicInteger mSessionId = new AtomicInteger();
    private OpenSessionCallback mCallback = new OpenSessionCallback();

    @GuardedBy("mSessions")
    private final SparseArray<IMediaSession> mSessions = new SparseArray();

    private class ImsMediaBinder extends IImsMedia.Stub {
        // TODO add permission checks
        @Override
        public void openSession(
            final ParcelFileDescriptor rtpFd, final ParcelFileDescriptor rtcpFd,
            final int sessionType, final RtpConfig rtpConfig, final IBinder callback) {
            final int sessionId = mSessionId.getAndIncrement();

            IMediaSession session;
            Log.d(TAG, "openSession: sessionId = " + sessionId
                    + ", type=" + sessionType + "," + rtpConfig);
            synchronized (mSessions) {
                switch (sessionType) {
                    case ImsMediaSession.SESSION_TYPE_AUDIO:
                        session = new AudioSession(sessionId,
                                IImsAudioSessionCallback.Stub.asInterface(callback));
                        break;
                    case ImsMediaSession.SESSION_TYPE_VIDEO:
                        JNIImsMediaService.setAssetManager(ImsMediaController.this.getAssets());
                        session = new VideoSession(sessionId,
                                IImsVideoSessionCallback.Stub.asInterface(callback));
                        break;
                    case ImsMediaSession.SESSION_TYPE_RTT:
                        session = new TextSession(sessionId,
                                IImsTextSessionCallback.Stub.asInterface(callback));
                        break;
                    default:
                        session = null;
                }

                if (session != null) {
                    mSessions.append(sessionId, session);
                    session.openSession(new OpenSessionParams(rtpFd, rtcpFd, rtpConfig,
                        mCallback));

                }
            }
        }

        @Override
        public void closeSession(IBinder session) {
            Log.d(TAG, "closeSession: " + session);
            synchronized (mSessions) {
                if (session instanceof AudioSession) {
                    final AudioSession audioSession =
                            (AudioSession) IImsAudioSession.Stub.asInterface(session);
                    audioSession.closeSession();
                } else if (session instanceof VideoSession) {
                    final VideoSession videoSession =
                            (VideoSession) IImsVideoSession.Stub.asInterface(session);
                    videoSession.closeSession();
                } else if (session instanceof TextSession) {
                    final TextSession textSession =
                            (TextSession) IImsTextSession.Stub.asInterface(session);
                    textSession.closeSession();
                }
            }
        }

        @Override
        public void generateVideoSprop(VideoConfig[] videoConfigList, IBinder callback) {

            if (videoConfigList == null || callback == null) {
                Log.d(TAG, "[SPROP] Invalid params");
                return;
            }

            try {
                int len = videoConfigList.length;
                String[] spropList = new String[len];

                int idx = 0;
                for (VideoConfig config : videoConfigList) {
                    Parcel parcel = Parcel.obtain();
                    config.writeToParcel(parcel, 0);
                    parcel.setDataPosition(0);
                    spropList[idx] = JNIImsMediaService.generateSprop(parcel.marshall());
                    parcel.recycle();
                    idx++;
                }
                IImsMediaCallback.Stub.asInterface(callback).onVideoSpropResponse(spropList);
            } catch (Exception e) {
                Log.e(TAG, "[SPROP] Error: " + e.toString());
            }
        }
    }

    private IImsMedia.Stub mImsMediaBinder = new ImsMediaBinder();

    @Override
    public IBinder onBind(Intent intent) {
        Log.d(TAG, Thread.currentThread().getName() + " onBind");
        return mImsMediaBinder;
    }

    @Override
    public boolean onUnbind(Intent intent) {
        Log.d(TAG, Thread.currentThread().getName() + " onUnbind");
        try {
            synchronized (mSessions) {
                while (mSessions.size() > 0) {
                    mImsMediaBinder.closeSession((IBinder) mSessions.valueAt(0));
                    mSessions.removeAt(0);
                }
                JNIImsMediaService.clearListener();
                mSessions.clear();
            }
        } catch (Exception e) {
            Log.d(TAG, "onUnbind: e=" + e);
        }
        return true;
    }

    @Override
    public void onCreate() {
        Log.d(TAG, "onCreate");
    }

    @Override
    public void onDestroy() {
        Log.d(TAG, "onDestroy");
    }

    private IMediaSession getSession(int sessionId) {
        synchronized (mSessions) {
            return mSessions.get(sessionId);
        }
    }

    public class OpenSessionCallback {
        public void onOpenSessionSuccess(int sessionId, Object session) {
            getSession(sessionId).onOpenSessionSuccess(session);
        }

        public void onOpenSessionFailure(int sessionId, int error) {
            synchronized (mSessions) {
                getSession(sessionId).onOpenSessionFailure(error);
                mSessions.remove(sessionId);
            }
        }

        /**
         * Called when the session is closed.
         *
         * @param sessionId identifier of the session
         */
        public void onSessionClosed(int sessionId) {
            synchronized (mSessions) {
                getSession(sessionId).onSessionClosed();
                Log.d(TAG, "onSessionClosed: sessionId = " + sessionId);
                mSessions.remove(sessionId);
            }
        }
    }
}