blob: 7f92067ab5068e10bf8771c751959e0acd0e98e8 [file] [log] [blame]
Sailesh Nepale59bb192014-04-01 18:33:59 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.telecomm;
18
19import com.google.common.base.Preconditions;
20import com.google.common.collect.HashBiMap;
21
Sailesh Nepale59bb192014-04-01 18:33:59 -070022/** Utility to map {@link Call} objects to unique IDs. IDs are generated when a call is added. */
23class CallIdMapper {
24 private final HashBiMap<String, Call> mCalls = HashBiMap.create();
25 private final String mCallIdPrefix;
Sailesh Nepale2ea6532014-04-01 19:45:45 -070026 private static int sIdCount;
Sailesh Nepale59bb192014-04-01 18:33:59 -070027
28 CallIdMapper(String callIdPrefix) {
29 ThreadUtil.checkOnMainThread();
30 mCallIdPrefix = callIdPrefix + "@";
31 }
32
Sailesh Nepal0e5410a2014-04-04 01:20:58 -070033 void replaceCall(Call newCall, Call callToReplace) {
34 ThreadUtil.checkOnMainThread();
35
36 // Use the old call's ID for the new call.
37 String callId = getCallId(callToReplace);
38 mCalls.put(callId, newCall);
39 }
40
Sailesh Nepale59bb192014-04-01 18:33:59 -070041 void addCall(Call call) {
42 ThreadUtil.checkOnMainThread();
43 Preconditions.checkNotNull(call);
Sailesh Nepale2ea6532014-04-01 19:45:45 -070044 sIdCount++;
45 String callId = mCallIdPrefix + sIdCount;
Sailesh Nepale59bb192014-04-01 18:33:59 -070046 mCalls.put(callId, call);
47 }
48
49 void removeCall(Call call) {
50 ThreadUtil.checkOnMainThread();
51 Preconditions.checkNotNull(call);
52 mCalls.inverse().remove(call);
53 }
54
Santos Cordon682fe6b2014-05-20 08:56:39 -070055 void removeCall(String callId) {
56 ThreadUtil.checkOnMainThread();
57 mCalls.remove(callId);
58 }
59
Sailesh Nepale59bb192014-04-01 18:33:59 -070060 String getCallId(Call call) {
61 ThreadUtil.checkOnMainThread();
62 Preconditions.checkNotNull(call);
63 return mCalls.inverse().get(call);
64 }
65
66 Call getCall(Object objId) {
67 ThreadUtil.checkOnMainThread();
68
69 String callId = null;
70 if (objId instanceof String) {
71 callId = (String) objId;
72 }
Santos Cordon3d3b4052014-05-05 12:05:36 -070073 checkValidCallId(callId);
Sailesh Nepale59bb192014-04-01 18:33:59 -070074
75 return mCalls.get(callId);
76 }
77
Santos Cordon682fe6b2014-05-20 08:56:39 -070078 void clear() {
79 mCalls.clear();
80 }
81
Sailesh Nepale59bb192014-04-01 18:33:59 -070082 void checkValidCallId(String callId) {
83 // Note, no need for thread check, this method is thread safe.
84 if (!isValidCallId(callId)) {
Santos Cordon3d3b4052014-05-05 12:05:36 -070085 throw new IllegalArgumentException(
86 "Invalid call ID for " + mCallIdPrefix + ": " + callId);
Sailesh Nepale59bb192014-04-01 18:33:59 -070087 }
88 }
89
90 boolean isValidCallId(String callId) {
91 // Note, no need for thread check, this method is thread safe.
92 return callId != null && callId.startsWith(mCallIdPrefix);
93 }
94}