summaryrefslogtreecommitdiff
path: root/service/src/com/android/telephony/imsmedia/TextSession.java
blob: b0895d8e636cc9a5d26267b4d49e337bd82e9160 (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
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
/**
 * 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.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.os.RemoteException;
import android.support.annotation.VisibleForTesting;
import android.telephony.imsmedia.IImsTextSession;
import android.telephony.imsmedia.IImsTextSessionCallback;
import android.telephony.imsmedia.MediaQualityThreshold;
import android.telephony.imsmedia.TextConfig;
import android.util.Log;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;

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

/**
 * Text session binder implementation which handles all text session APIs from the text service.
 */
public final class TextSession extends IImsTextSession.Stub implements IMediaSession {
    private static final String TAG = "TextSession";

    public static final int CMD_OPEN_SESSION = 101;
    public static final int CMD_CLOSE_SESSION = 102;
    public static final int CMD_MODIFY_SESSION = 103;
    public static final int CMD_SET_MEDIA_QUALITY_THRESHOLD = 104;
    public static final int CMD_SEND_RTT = 105;

    public static final int EVENT_OPEN_SESSION_SUCCESS = 201;
    public static final int EVENT_OPEN_SESSION_FAILURE = 202;
    public static final int EVENT_MODIFY_SESSION_RESPONSE = 203;
    public static final int EVENT_MEDIA_INACTIVITY_IND = 204;
    public static final int EVENT_RTT_RECEIVED = 205;
    public static final int EVENT_SESSION_CLOSED = 206;

    private int mSessionId;
    private IImsTextSessionCallback mCallback;
    private TextSessionHandler mHandler;
    private TextService mTextService;
    private TextListener mTextListener;
    private TextLocalSession mLocalSession;

    TextSession(final int sessionId, final IImsTextSessionCallback callback) {
        mSessionId = sessionId;
        mCallback = callback;
        mHandler = new TextSessionHandler(Looper.getMainLooper());
        Log.d(TAG, "Initialize local text service");
        mTextService = new TextService();
        mTextListener = new TextListener(mHandler);
        mTextService.setListener(mTextListener);
        mTextListener.setNativeObject(mTextService.getNativeObject());
    }

    @VisibleForTesting
    TextSession(final int sessionId,
            final @NonNull IImsTextSessionCallback callback,
            final @Nullable TextService textService,
            final @Nullable TextLocalSession localSession) {
        mSessionId = sessionId;
        mCallback = callback;
        mHandler = new TextSessionHandler(Looper.getMainLooper());
        mTextService = textService;
        mLocalSession = localSession;
        mTextListener = new TextListener(mHandler);
    }

    @VisibleForTesting
    TextSessionHandler getTextSessionHandler() {
        return mHandler;
    }

    @VisibleForTesting
    TextListener getTextListener() {
        return mTextListener;
    }

    @Override
    public void openSession(OpenSessionParams sessionParams) {
        Utils.sendMessage(mHandler, CMD_OPEN_SESSION, sessionParams);
    }

    @Override
    public void closeSession() {
        Utils.sendMessage(mHandler, CMD_CLOSE_SESSION);
    }

    @Override
    public int getSessionId() {
        return mSessionId;
    }

    @Override
    public void modifySession(TextConfig config) {
        Log.d(TAG, "modifySession: " + config);
        Utils.sendMessage(mHandler, CMD_MODIFY_SESSION, config);
    }

    @Override
    public void setMediaQualityThreshold(MediaQualityThreshold threshold) {
        Log.d(TAG, "setMediaQualityThreshold: " + threshold);
        Utils.sendMessage(mHandler, CMD_SET_MEDIA_QUALITY_THRESHOLD, threshold);
    }

    @Override
    public void sendRtt(String text) {
        Log.d(TAG, "sendRtt: ");
        Utils.sendMessage(mHandler, CMD_SEND_RTT, text);
    }

    @Override
    public void onOpenSessionSuccess(Object session) {
        Log.d(TAG, "onOpenSessionSuccess");
        Utils.sendMessage(mHandler, EVENT_OPEN_SESSION_SUCCESS, session);
    }

    @Override
    public void onOpenSessionFailure(int error) {
        Log.d(TAG, "onOpenSessionFailure: error=" + error);
        Utils.sendMessage(mHandler, EVENT_OPEN_SESSION_FAILURE, error);
    }

    @Override
    public void onSessionClosed() {
        Log.d(TAG, "onSessionClosed");
        Utils.sendMessage(mHandler, EVENT_SESSION_CLOSED);
    }

    /**
     * Text session message mHandler
     */
    class TextSessionHandler extends Handler {
        TextSessionHandler(Looper looper) {
            super(looper);
        }

        @Override
        public void handleMessage(Message msg) {
            Log.d(TAG, "handleMessage() -" + TextSessionHandler.this + ", " + msg.what);
            switch (msg.what) {
                case CMD_OPEN_SESSION:
                    handleOpenSession((OpenSessionParams) msg.obj);
                    break;
                case CMD_CLOSE_SESSION:
                    handleCloseSession();
                    break;
                case CMD_MODIFY_SESSION:
                    handleModifySession((TextConfig) msg.obj);
                    break;
                case CMD_SET_MEDIA_QUALITY_THRESHOLD:
                    handleSetMediaQualityThreshold((MediaQualityThreshold) msg.obj);
                    break;
                case CMD_SEND_RTT:
                    handleSendRtt((String) msg.obj);
                    break;
                case EVENT_OPEN_SESSION_SUCCESS:
                    handleOpenSuccess(msg.obj);
                    break;
                case EVENT_OPEN_SESSION_FAILURE:
                    handleOpenFailure((int) msg.obj);
                    break;
                case EVENT_SESSION_CLOSED:
                    handleSessionClosed();
                    break;
                case EVENT_MODIFY_SESSION_RESPONSE:
                    handleModifySessionRespose((TextConfig) msg.obj, msg.arg1);
                    break;
                case EVENT_MEDIA_INACTIVITY_IND:
                    handleNotifyMediaInactivityInd(msg.arg1);
                    break;
                case EVENT_RTT_RECEIVED:
                    handleRttReceived((String) msg.obj);
                    break;
                default:
            }
        }
    }

    private void handleOpenSession(OpenSessionParams sessionParams) {
        mTextListener.setMediaCallback(sessionParams.getCallback());
        Log.d(TAG, "handleOpenSession");
        mTextService.openSession(mSessionId, sessionParams);
    }

    private void handleCloseSession() {
        Log.d(TAG, "handleCloseSession");
        mTextService.closeSession(mSessionId);
    }

    private void handleModifySession(TextConfig config) {
        mLocalSession.modifySession(config);
    }

    private void handleSetMediaQualityThreshold(MediaQualityThreshold threshold) {
        mLocalSession.setMediaQualityThreshold(threshold);
    }

    private void handleSendRtt(String text) {
        mLocalSession.sendRtt(text);
    }

    private void handleOpenSuccess(Object session) {
        mLocalSession = (TextLocalSession) session;
        try {
            mCallback.onOpenSessionSuccess(this);
        } catch (RemoteException e) {
            Log.e(TAG, "Failed to notify openSuccess: " + e);
        }
    }

    private void handleOpenFailure(int error) {
        try {
            mCallback.onOpenSessionFailure(error);
        } catch (RemoteException e) {
            Log.e(TAG, "Failed to notify openFailure: " + e);
        }
    }

    private void handleSessionClosed() {
        try {
            mCallback.onSessionClosed();
        }  catch (RemoteException e) {
            Log.e(TAG, "Failed to notify SessionClosed: " + e);
        }
    }

    private void handleModifySessionRespose(TextConfig config, int error) {
        try {
            mCallback.onModifySessionResponse(config, error);
        } catch (RemoteException e) {
            Log.e(TAG, "Failed to notify modifySessionResponse: " + e);
        }
    }

    private void handleNotifyMediaInactivityInd(int packetType) {
        try {
            mCallback.notifyMediaInactivity(packetType);
        } catch (RemoteException e) {
            Log.e(TAG, "Failed to notify media timeout: " + e);
        }
    }

    private void handleRttReceived(String text) {
        try {
            mCallback.onRttReceived(text);
        } catch (RemoteException e) {
            Log.e(TAG, "Failed to notify rtt received: " + e);
        }
    }
}