blob: e5ed28621842b80ad877e402ca2c1f137ea2613e [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
22import java.util.UUID;
23
24/** Utility to map {@link Call} objects to unique IDs. IDs are generated when a call is added. */
25class CallIdMapper {
26 private final HashBiMap<String, Call> mCalls = HashBiMap.create();
27 private final String mCallIdPrefix;
28
29 CallIdMapper(String callIdPrefix) {
30 ThreadUtil.checkOnMainThread();
31 mCallIdPrefix = callIdPrefix + "@";
32 }
33
34 void addCall(Call call) {
35 ThreadUtil.checkOnMainThread();
36 Preconditions.checkNotNull(call);
37 String callId = mCallIdPrefix + UUID.randomUUID();
38 mCalls.put(callId, call);
39 }
40
41 void removeCall(Call call) {
42 ThreadUtil.checkOnMainThread();
43 Preconditions.checkNotNull(call);
44 mCalls.inverse().remove(call);
45 }
46
47 String getCallId(Call call) {
48 ThreadUtil.checkOnMainThread();
49 Preconditions.checkNotNull(call);
50 return mCalls.inverse().get(call);
51 }
52
53 Call getCall(Object objId) {
54 ThreadUtil.checkOnMainThread();
55
56 String callId = null;
57 if (objId instanceof String) {
58 callId = (String) objId;
59 }
60 Preconditions.checkArgument(isValidCallId(callId));
61
62 return mCalls.get(callId);
63 }
64
65 void checkValidCallId(String callId) {
66 // Note, no need for thread check, this method is thread safe.
67 if (!isValidCallId(callId)) {
68 Log.wtf(this, "%s is not a valid call ID", callId);
69 throw new IllegalArgumentException("Invalid call ID.");
70 }
71 }
72
73 boolean isValidCallId(String callId) {
74 // Note, no need for thread check, this method is thread safe.
75 return callId != null && callId.startsWith(mCallIdPrefix);
76 }
77}