blob: 39dbe85cb485b2d164f14bb70e56b700b3bb8709 [file] [log] [blame]
Neil Fullerf7346ec2019-08-30 18:02:47 +01001/*
2 * Copyright (C) 2019 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 android.timezone;
18
19import android.annotation.NonNull;
20import android.annotation.Nullable;
21import android.annotation.SystemApi;
22
23import com.android.internal.annotations.GuardedBy;
24
25import java.util.Objects;
26
27/**
28 * A class that can find time zone-related information about telephony networks.
29 *
30 * @hide
31 */
32@SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
33public class TelephonyLookup {
34
35 private static Object sLock = new Object();
36 @GuardedBy("sLock")
37 private static TelephonyLookup sInstance;
38
39 @NonNull
40 private final libcore.timezone.TelephonyLookup mDelegate;
41
42 /**
43 * Obtains an instance for use when resolving telephony time zone information. This method never
44 * returns {@code null}.
45 */
46 @NonNull
47 public static TelephonyLookup getInstance() {
48 synchronized (sLock) {
49 if (sInstance == null) {
50 sInstance = new TelephonyLookup(libcore.timezone.TelephonyLookup.getInstance());
51 }
52 return sInstance;
53 }
54 }
55
56 private TelephonyLookup(@NonNull libcore.timezone.TelephonyLookup delegate) {
57 mDelegate = Objects.requireNonNull(delegate);
58 }
59
60 /**
61 * Returns an object capable of querying telephony network information. This method can return
62 * {@code null} in the event of an error while reading the underlying data files.
63 */
64 @Nullable
65 public TelephonyNetworkFinder getTelephonyNetworkFinder() {
66 libcore.timezone.TelephonyNetworkFinder telephonyNetworkFinderDelegate =
67 mDelegate.getTelephonyNetworkFinder();
68 return telephonyNetworkFinderDelegate != null
69 ? new TelephonyNetworkFinder(telephonyNetworkFinderDelegate) : null;
70 }
71}