blob: 50432a14d0c738d85afc919cb04b85c1e5709c2b [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;
51
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070052 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -070053 * Set of {@link NetworkInfo#getType()} that reflect data usage.
54 */
55 private static final int[] DATA_USAGE_NETWORK_TYPES;
56
57 static {
58 DATA_USAGE_NETWORK_TYPES = Resources.getSystem().getIntArray(
59 com.android.internal.R.array.config_data_usage_network_types);
60 }
61
62 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070063 * Template to match {@link ConnectivityManager#TYPE_MOBILE} networks with
64 * the given IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070065 */
Jeff Sharkey4e814c32011-07-14 20:37:37 -070066 public static NetworkTemplate buildTemplateMobileAll(String subscriberId) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070067 return new NetworkTemplate(MATCH_MOBILE_ALL, subscriberId, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -070068 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070069
70 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070071 * Template to match {@link ConnectivityManager#TYPE_MOBILE} networks with
72 * the given IMSI that roughly meet a "3G" definition, or lower.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070073 */
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070074 @Deprecated
Jeff Sharkey4e814c32011-07-14 20:37:37 -070075 public static NetworkTemplate buildTemplateMobile3gLower(String subscriberId) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070076 return new NetworkTemplate(MATCH_MOBILE_3G_LOWER, subscriberId, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -070077 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070078
79 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070080 * Template to match {@link ConnectivityManager#TYPE_MOBILE} networks with
81 * the given IMSI that roughly meet a "4G" definition.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070082 */
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070083 @Deprecated
Jeff Sharkey4e814c32011-07-14 20:37:37 -070084 public static NetworkTemplate buildTemplateMobile4g(String subscriberId) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070085 return new NetworkTemplate(MATCH_MOBILE_4G, subscriberId, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -070086 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070087
88 /**
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070089 * Template to match all {@link ConnectivityManager#TYPE_WIFI} networks,
90 * regardless of SSID.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070091 */
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070092 public static NetworkTemplate buildTemplateWifiWildcard() {
93 return new NetworkTemplate(MATCH_WIFI, null, null);
94 }
95
96 @Deprecated
Jeff Sharkey4e814c32011-07-14 20:37:37 -070097 public static NetworkTemplate buildTemplateWifi() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070098 return buildTemplateWifiWildcard();
99 }
100
101 /**
102 * Template to match {@link ConnectivityManager#TYPE_WIFI} networks with the
103 * given SSID.
104 */
105 public static NetworkTemplate buildTemplateWifi(String networkId) {
106 return new NetworkTemplate(MATCH_WIFI, null, networkId);
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700107 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700108
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700109 /**
110 * Template to combine all {@link ConnectivityManager#TYPE_ETHERNET} style
111 * networks together.
112 */
113 public static NetworkTemplate buildTemplateEthernet() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700114 return new NetworkTemplate(MATCH_ETHERNET, null, null);
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700115 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700116
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700117 private final int mMatchRule;
118 private final String mSubscriberId;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700119 private final String mNetworkId;
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700120
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700121 public NetworkTemplate(int matchRule, String subscriberId, String networkId) {
122 mMatchRule = matchRule;
123 mSubscriberId = subscriberId;
124 mNetworkId = networkId;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700125 }
126
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700127 private NetworkTemplate(Parcel in) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700128 mMatchRule = in.readInt();
129 mSubscriberId = in.readString();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700130 mNetworkId = in.readString();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700131 }
132
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700133 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700134 public void writeToParcel(Parcel dest, int flags) {
135 dest.writeInt(mMatchRule);
136 dest.writeString(mSubscriberId);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700137 dest.writeString(mNetworkId);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700138 }
139
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700140 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700141 public int describeContents() {
142 return 0;
143 }
144
145 @Override
146 public String toString() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700147 final StringBuilder builder = new StringBuilder("NetworkTemplate: ");
148 builder.append("matchRule=").append(getMatchRuleName(mMatchRule));
149 if (mSubscriberId != null) {
150 builder.append(", subscriberId=").append(scrubSubscriberId(mSubscriberId));
151 }
152 if (mNetworkId != null) {
153 builder.append(", networkId=").append(mNetworkId);
154 }
155 return builder.toString();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700156 }
157
158 @Override
159 public int hashCode() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700160 return Objects.hashCode(mMatchRule, mSubscriberId, mNetworkId);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700161 }
162
163 @Override
164 public boolean equals(Object obj) {
165 if (obj instanceof NetworkTemplate) {
166 final NetworkTemplate other = (NetworkTemplate) obj;
167 return mMatchRule == other.mMatchRule
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700168 && Objects.equal(mSubscriberId, other.mSubscriberId)
169 && Objects.equal(mNetworkId, other.mNetworkId);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700170 }
171 return false;
172 }
173
174 public int getMatchRule() {
175 return mMatchRule;
176 }
177
178 public String getSubscriberId() {
179 return mSubscriberId;
180 }
181
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700182 public String getNetworkId() {
183 return mNetworkId;
184 }
185
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700186 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -0700187 * Test if given {@link NetworkIdentity} matches this template.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700188 */
189 public boolean matches(NetworkIdentity ident) {
190 switch (mMatchRule) {
191 case MATCH_MOBILE_ALL:
192 return matchesMobile(ident);
193 case MATCH_MOBILE_3G_LOWER:
194 return matchesMobile3gLower(ident);
195 case MATCH_MOBILE_4G:
196 return matchesMobile4g(ident);
197 case MATCH_WIFI:
198 return matchesWifi(ident);
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700199 case MATCH_ETHERNET:
200 return matchesEthernet(ident);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700201 default:
202 throw new IllegalArgumentException("unknown network template");
203 }
204 }
205
206 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -0700207 * Check if mobile network with matching IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700208 */
209 private boolean matchesMobile(NetworkIdentity ident) {
Jeff Sharkey630a1712011-09-26 10:47:10 -0700210 if (ident.mType == TYPE_WIMAX) {
211 // TODO: consider matching against WiMAX subscriber identity
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700212 return true;
Jeff Sharkey630a1712011-09-26 10:47:10 -0700213 } else {
214 return (contains(DATA_USAGE_NETWORK_TYPES, ident.mType)
215 && Objects.equal(mSubscriberId, ident.mSubscriberId));
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700216 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700217 }
218
219 /**
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700220 * Check if mobile network classified 3G or lower with matching IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700221 */
222 private boolean matchesMobile3gLower(NetworkIdentity ident) {
Jeff Sharkeyd4dd7712012-03-16 11:11:54 -0700223 ensureSubtypeAvailable();
Jeff Sharkey630a1712011-09-26 10:47:10 -0700224 if (ident.mType == TYPE_WIMAX) {
225 return false;
226 } else if (matchesMobile(ident)) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700227 switch (getNetworkClass(ident.mSubType)) {
228 case NETWORK_CLASS_UNKNOWN:
229 case NETWORK_CLASS_2_G:
230 case NETWORK_CLASS_3_G:
231 return true;
232 }
233 }
234 return false;
235 }
236
237 /**
Jeff Sharkey630a1712011-09-26 10:47:10 -0700238 * Check if mobile network classified 4G with matching IMSI.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700239 */
240 private boolean matchesMobile4g(NetworkIdentity ident) {
Jeff Sharkeyd4dd7712012-03-16 11:11:54 -0700241 ensureSubtypeAvailable();
Jeff Sharkey630a1712011-09-26 10:47:10 -0700242 if (ident.mType == TYPE_WIMAX) {
243 // TODO: consider matching against WiMAX subscriber identity
244 return true;
245 } else if (matchesMobile(ident)) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700246 switch (getNetworkClass(ident.mSubType)) {
247 case NETWORK_CLASS_4_G:
248 return true;
249 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700250 }
251 return false;
252 }
253
254 /**
255 * Check if matches Wi-Fi network template.
256 */
257 private boolean matchesWifi(NetworkIdentity ident) {
Jeff Sharkey3ca74812012-01-24 15:37:07 -0800258 switch (ident.mType) {
259 case TYPE_WIFI:
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700260 if (mNetworkId == null) {
261 return true;
262 } else {
263 return Objects.equal(mNetworkId, ident.mNetworkId);
264 }
Jeff Sharkey3ca74812012-01-24 15:37:07 -0800265 case TYPE_WIFI_P2P:
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700266 return mNetworkId == null;
Jeff Sharkey3ca74812012-01-24 15:37:07 -0800267 default:
268 return false;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700269 }
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700270 }
271
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700272 /**
273 * Check if matches Ethernet network template.
274 */
275 private boolean matchesEthernet(NetworkIdentity ident) {
276 if (ident.mType == TYPE_ETHERNET) {
277 return true;
278 }
279 return false;
280 }
281
282 private static String getMatchRuleName(int matchRule) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700283 switch (matchRule) {
284 case MATCH_MOBILE_3G_LOWER:
285 return "MOBILE_3G_LOWER";
286 case MATCH_MOBILE_4G:
287 return "MOBILE_4G";
288 case MATCH_MOBILE_ALL:
289 return "MOBILE_ALL";
290 case MATCH_WIFI:
291 return "WIFI";
Jeff Sharkey4e814c32011-07-14 20:37:37 -0700292 case MATCH_ETHERNET:
293 return "ETHERNET";
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700294 default:
295 return "UNKNOWN";
296 }
297 }
298
Jeff Sharkeyd4dd7712012-03-16 11:11:54 -0700299 private static void ensureSubtypeAvailable() {
300 if (COMBINE_SUBTYPE_ENABLED) {
301 throw new IllegalArgumentException(
302 "Unable to enforce 3G_LOWER template on combined data.");
303 }
304 }
305
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700306 public static final Creator<NetworkTemplate> CREATOR = new Creator<NetworkTemplate>() {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700307 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700308 public NetworkTemplate createFromParcel(Parcel in) {
309 return new NetworkTemplate(in);
310 }
311
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700312 @Override
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700313 public NetworkTemplate[] newArray(int size) {
314 return new NetworkTemplate[size];
315 }
316 };
317}