blob: 39a4d7bb0d8f4c4954863401be19893b4b9e8e24 [file] [log] [blame]
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001/*
2 * Copyright (C) 2011 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.net;
18
Jeff Sharkey02e21d62011-07-17 15:53:33 -070019import static android.net.ConnectivityManager.TYPE_ETHERNET;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070020import static android.net.ConnectivityManager.TYPE_WIFI;
Jeff Sharkey3ca74812012-01-24 15:37:07 -080021import static android.net.ConnectivityManager.TYPE_WIFI_P2P;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070022import static android.net.ConnectivityManager.TYPE_WIMAX;
Jeff Sharkeyd4dd7712012-03-16 11:11:54 -070023import static android.net.NetworkIdentity.COMBINE_SUBTYPE_ENABLED;
Jeff Sharkey02e21d62011-07-17 15:53:33 -070024import static android.net.NetworkIdentity.scrubSubscriberId;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070025import static android.telephony.TelephonyManager.NETWORK_CLASS_2_G;
26import static android.telephony.TelephonyManager.NETWORK_CLASS_3_G;
27import static android.telephony.TelephonyManager.NETWORK_CLASS_4_G;
28import static android.telephony.TelephonyManager.NETWORK_CLASS_UNKNOWN;
29import static android.telephony.TelephonyManager.getNetworkClass;
Jeff Sharkey630a1712011-09-26 10:47:10 -070030import static com.android.internal.util.ArrayUtils.contains;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070031
Jeff Sharkey630a1712011-09-26 10:47:10 -070032import android.content.res.Resources;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070033import android.os.Parcel;
34import android.os.Parcelable;
35
36import com.android.internal.util.Objects;
37
38/**
39 * Template definition used to generically match {@link NetworkIdentity},
40 * usually when collecting statistics.
41 *
42 * @hide
43 */
44public class NetworkTemplate implements Parcelable {
45
Jeff Sharkey4e814c32011-07-14 20:37:37 -070046 public static final int MATCH_MOBILE_ALL = 1;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070047 public static final int MATCH_MOBILE_3G_LOWER = 2;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070048 public static final int MATCH_MOBILE_4G = 3;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070049 public static final int MATCH_WIFI = 4;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070050 public static final int MATCH_ETHERNET = 5;
Jeff Sharkey234766a2012-04-10 19:48:07 -070051 public static final int MATCH_MOBILE_WILDCARD = 6;
52 public static final int MATCH_WIFI_WILDCARD = 7;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070053
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070054 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -070055 * Set of {@link NetworkInfo#getType()} that reflect data usage.
56 */
57 private static final int[] DATA_USAGE_NETWORK_TYPES;
58
59 static {
60 DATA_USAGE_NETWORK_TYPES = Resources.getSystem().getIntArray(
61 com.android.internal.R.array.config_data_usage_network_types);
62 }
63
64 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070065 * Template to match {@link ConnectivityManager#TYPE_MOBILE} networks with
66 * the given IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070067 */
Jeff Sharkey4e814c32011-07-14 20:37:37 -070068 public static NetworkTemplate buildTemplateMobileAll(String subscriberId) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070069 return new NetworkTemplate(MATCH_MOBILE_ALL, subscriberId, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -070070 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070071
72 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070073 * Template to match {@link ConnectivityManager#TYPE_MOBILE} networks with
74 * the given IMSI that roughly meet a "3G" definition, or lower.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070075 */
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070076 @Deprecated
Jeff Sharkey4e814c32011-07-14 20:37:37 -070077 public static NetworkTemplate buildTemplateMobile3gLower(String subscriberId) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070078 return new NetworkTemplate(MATCH_MOBILE_3G_LOWER, subscriberId, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -070079 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070080
81 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070082 * Template to match {@link ConnectivityManager#TYPE_MOBILE} networks with
83 * the given IMSI that roughly meet a "4G" definition.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070084 */
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070085 @Deprecated
Jeff Sharkey4e814c32011-07-14 20:37:37 -070086 public static NetworkTemplate buildTemplateMobile4g(String subscriberId) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070087 return new NetworkTemplate(MATCH_MOBILE_4G, subscriberId, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -070088 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070089
90 /**
Jeff Sharkey234766a2012-04-10 19:48:07 -070091 * Template to match {@link ConnectivityManager#TYPE_MOBILE} networks,
92 * regardless of IMSI.
93 */
94 public static NetworkTemplate buildTemplateMobileWildcard() {
95 return new NetworkTemplate(MATCH_MOBILE_WILDCARD, null, null);
96 }
97
98 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070099 * Template to match all {@link ConnectivityManager#TYPE_WIFI} networks,
100 * regardless of SSID.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700101 */
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700102 public static NetworkTemplate buildTemplateWifiWildcard() {
Jeff Sharkey234766a2012-04-10 19:48:07 -0700103 return new NetworkTemplate(MATCH_WIFI_WILDCARD, null, null);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700104 }
105
106 @Deprecated
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700107 public static NetworkTemplate buildTemplateWifi() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700108 return buildTemplateWifiWildcard();
109 }
110
111 /**
112 * Template to match {@link ConnectivityManager#TYPE_WIFI} networks with the
113 * given SSID.
114 */
115 public static NetworkTemplate buildTemplateWifi(String networkId) {
116 return new NetworkTemplate(MATCH_WIFI, null, networkId);
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700117 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700118
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700119 /**
120 * Template to combine all {@link ConnectivityManager#TYPE_ETHERNET} style
121 * networks together.
122 */
123 public static NetworkTemplate buildTemplateEthernet() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700124 return new NetworkTemplate(MATCH_ETHERNET, null, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700125 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700126
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700127 private final int mMatchRule;
128 private final String mSubscriberId;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700129 private final String mNetworkId;
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700130
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700131 public NetworkTemplate(int matchRule, String subscriberId, String networkId) {
132 mMatchRule = matchRule;
133 mSubscriberId = subscriberId;
134 mNetworkId = networkId;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700135 }
136
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700137 private NetworkTemplate(Parcel in) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700138 mMatchRule = in.readInt();
139 mSubscriberId = in.readString();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700140 mNetworkId = in.readString();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700141 }
142
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700143 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700144 public void writeToParcel(Parcel dest, int flags) {
145 dest.writeInt(mMatchRule);
146 dest.writeString(mSubscriberId);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700147 dest.writeString(mNetworkId);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700148 }
149
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700150 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700151 public int describeContents() {
152 return 0;
153 }
154
155 @Override
156 public String toString() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700157 final StringBuilder builder = new StringBuilder("NetworkTemplate: ");
158 builder.append("matchRule=").append(getMatchRuleName(mMatchRule));
159 if (mSubscriberId != null) {
160 builder.append(", subscriberId=").append(scrubSubscriberId(mSubscriberId));
161 }
162 if (mNetworkId != null) {
163 builder.append(", networkId=").append(mNetworkId);
164 }
165 return builder.toString();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700166 }
167
168 @Override
169 public int hashCode() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700170 return Objects.hashCode(mMatchRule, mSubscriberId, mNetworkId);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700171 }
172
173 @Override
174 public boolean equals(Object obj) {
175 if (obj instanceof NetworkTemplate) {
176 final NetworkTemplate other = (NetworkTemplate) obj;
177 return mMatchRule == other.mMatchRule
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700178 && Objects.equal(mSubscriberId, other.mSubscriberId)
179 && Objects.equal(mNetworkId, other.mNetworkId);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700180 }
181 return false;
182 }
183
184 public int getMatchRule() {
185 return mMatchRule;
186 }
187
188 public String getSubscriberId() {
189 return mSubscriberId;
190 }
191
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700192 public String getNetworkId() {
193 return mNetworkId;
194 }
195
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700196 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -0700197 * Test if given {@link NetworkIdentity} matches this template.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700198 */
199 public boolean matches(NetworkIdentity ident) {
200 switch (mMatchRule) {
201 case MATCH_MOBILE_ALL:
202 return matchesMobile(ident);
203 case MATCH_MOBILE_3G_LOWER:
204 return matchesMobile3gLower(ident);
205 case MATCH_MOBILE_4G:
206 return matchesMobile4g(ident);
207 case MATCH_WIFI:
208 return matchesWifi(ident);
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700209 case MATCH_ETHERNET:
210 return matchesEthernet(ident);
Jeff Sharkey234766a2012-04-10 19:48:07 -0700211 case MATCH_MOBILE_WILDCARD:
212 return matchesMobileWildcard(ident);
213 case MATCH_WIFI_WILDCARD:
214 return matchesWifiWildcard(ident);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700215 default:
216 throw new IllegalArgumentException("unknown network template");
217 }
218 }
219
220 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -0700221 * Check if mobile network with matching IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700222 */
223 private boolean matchesMobile(NetworkIdentity ident) {
Jeff Sharkey630a1712011-09-26 10:47:10 -0700224 if (ident.mType == TYPE_WIMAX) {
225 // TODO: consider matching against WiMAX subscriber identity
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700226 return true;
Jeff Sharkey630a1712011-09-26 10:47:10 -0700227 } else {
228 return (contains(DATA_USAGE_NETWORK_TYPES, ident.mType)
229 && Objects.equal(mSubscriberId, ident.mSubscriberId));
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700230 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700231 }
232
233 /**
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700234 * Check if mobile network classified 3G or lower with matching IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700235 */
236 private boolean matchesMobile3gLower(NetworkIdentity ident) {
Jeff Sharkeyd4dd7712012-03-16 11:11:54 -0700237 ensureSubtypeAvailable();
Jeff Sharkey630a1712011-09-26 10:47:10 -0700238 if (ident.mType == TYPE_WIMAX) {
239 return false;
240 } else if (matchesMobile(ident)) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700241 switch (getNetworkClass(ident.mSubType)) {
242 case NETWORK_CLASS_UNKNOWN:
243 case NETWORK_CLASS_2_G:
244 case NETWORK_CLASS_3_G:
245 return true;
246 }
247 }
248 return false;
249 }
250
251 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -0700252 * Check if mobile network classified 4G with matching IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700253 */
254 private boolean matchesMobile4g(NetworkIdentity ident) {
Jeff Sharkeyd4dd7712012-03-16 11:11:54 -0700255 ensureSubtypeAvailable();
Jeff Sharkey630a1712011-09-26 10:47:10 -0700256 if (ident.mType == TYPE_WIMAX) {
257 // TODO: consider matching against WiMAX subscriber identity
258 return true;
259 } else if (matchesMobile(ident)) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700260 switch (getNetworkClass(ident.mSubType)) {
261 case NETWORK_CLASS_4_G:
262 return true;
263 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700264 }
265 return false;
266 }
267
268 /**
269 * Check if matches Wi-Fi network template.
270 */
271 private boolean matchesWifi(NetworkIdentity ident) {
Jeff Sharkey3ca74812012-01-24 15:37:07 -0800272 switch (ident.mType) {
273 case TYPE_WIFI:
Jeff Sharkey234766a2012-04-10 19:48:07 -0700274 return Objects.equal(mNetworkId, ident.mNetworkId);
Jeff Sharkey3ca74812012-01-24 15:37:07 -0800275 default:
276 return false;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700277 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700278 }
279
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700280 /**
281 * Check if matches Ethernet network template.
282 */
283 private boolean matchesEthernet(NetworkIdentity ident) {
284 if (ident.mType == TYPE_ETHERNET) {
285 return true;
286 }
287 return false;
288 }
289
Jeff Sharkey234766a2012-04-10 19:48:07 -0700290 private boolean matchesMobileWildcard(NetworkIdentity ident) {
291 if (ident.mType == TYPE_WIMAX) {
292 return true;
293 } else {
294 return contains(DATA_USAGE_NETWORK_TYPES, ident.mType);
295 }
296 }
297
298 private boolean matchesWifiWildcard(NetworkIdentity ident) {
299 switch (ident.mType) {
300 case TYPE_WIFI:
301 case TYPE_WIFI_P2P:
302 return true;
303 default:
304 return false;
305 }
306 }
307
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700308 private static String getMatchRuleName(int matchRule) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700309 switch (matchRule) {
310 case MATCH_MOBILE_3G_LOWER:
311 return "MOBILE_3G_LOWER";
312 case MATCH_MOBILE_4G:
313 return "MOBILE_4G";
314 case MATCH_MOBILE_ALL:
315 return "MOBILE_ALL";
316 case MATCH_WIFI:
317 return "WIFI";
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700318 case MATCH_ETHERNET:
319 return "ETHERNET";
Jeff Sharkey234766a2012-04-10 19:48:07 -0700320 case MATCH_MOBILE_WILDCARD:
321 return "MOBILE_WILDCARD";
322 case MATCH_WIFI_WILDCARD:
323 return "WIFI_WILDCARD";
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700324 default:
325 return "UNKNOWN";
326 }
327 }
328
Jeff Sharkeyd4dd7712012-03-16 11:11:54 -0700329 private static void ensureSubtypeAvailable() {
330 if (COMBINE_SUBTYPE_ENABLED) {
331 throw new IllegalArgumentException(
332 "Unable to enforce 3G_LOWER template on combined data.");
333 }
334 }
335
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700336 public static final Creator<NetworkTemplate> CREATOR = new Creator<NetworkTemplate>() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700337 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700338 public NetworkTemplate createFromParcel(Parcel in) {
339 return new NetworkTemplate(in);
340 }
341
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700342 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700343 public NetworkTemplate[] newArray(int size) {
344 return new NetworkTemplate[size];
345 }
346 };
347}