blob: 8c8bfab9c76de1d3b0174416abb701691987f68b [file] [log] [blame]
Robert Greenwalt1448f052014-04-08 13:41:39 -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 android.net;
18
19import android.os.Parcel;
20import android.os.Parcelable;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -070021import android.text.TextUtils;
Robert Greenwalt1448f052014-04-08 13:41:39 -070022import java.lang.IllegalArgumentException;
Robert Greenwalt1448f052014-04-08 13:41:39 -070023
24/**
Robert Greenwalt01d004e2014-05-18 15:24:21 -070025 * This class represents the capabilities of a network. This is used both to specify
26 * needs to {@link ConnectivityManager} and when inspecting a network.
27 *
28 * Note that this replaces the old {@link ConnectivityManager#TYPE_MOBILE} method
29 * of network selection. Rather than indicate a need for Wi-Fi because an application
Wink Saville4e2dea72014-09-20 11:04:03 -070030 * needs high bandwidth and risk obsolescence when a new, fast network appears (like LTE),
Robert Greenwalt01d004e2014-05-18 15:24:21 -070031 * the application should specify it needs high bandwidth. Similarly if an application
32 * needs an unmetered network for a bulk transfer it can specify that rather than assuming
33 * all cellular based connections are metered and all Wi-Fi based connections are not.
Robert Greenwalt1448f052014-04-08 13:41:39 -070034 */
35public final class NetworkCapabilities implements Parcelable {
Robert Greenwalt7569f182014-06-08 16:42:59 -070036 /**
37 * @hide
38 */
Robert Greenwalt01d004e2014-05-18 15:24:21 -070039 public NetworkCapabilities() {
40 }
41
42 public NetworkCapabilities(NetworkCapabilities nc) {
43 if (nc != null) {
44 mNetworkCapabilities = nc.mNetworkCapabilities;
45 mTransportTypes = nc.mTransportTypes;
46 mLinkUpBandwidthKbps = nc.mLinkUpBandwidthKbps;
47 mLinkDownBandwidthKbps = nc.mLinkDownBandwidthKbps;
Robert Greenwalt94badcc2014-07-10 14:53:24 -070048 mNetworkSpecifier = nc.mNetworkSpecifier;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070049 }
50 }
Robert Greenwalt1448f052014-04-08 13:41:39 -070051
52 /**
53 * Represents the network's capabilities. If any are specified they will be satisfied
54 * by any Network that matches all of them.
55 */
Robert Greenwalt16e12ab2014-07-08 15:31:37 -070056 private long mNetworkCapabilities = (1 << NET_CAPABILITY_NOT_RESTRICTED) |
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040057 (1 << NET_CAPABILITY_TRUSTED) | (1 << NET_CAPABILITY_NOT_VPN);
Robert Greenwalt1448f052014-04-08 13:41:39 -070058
59 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -070060 * Indicates this is a network that has the ability to reach the
61 * carrier's MMSC for sending and receiving MMS messages.
Robert Greenwalt1448f052014-04-08 13:41:39 -070062 */
63 public static final int NET_CAPABILITY_MMS = 0;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070064
65 /**
66 * Indicates this is a network that has the ability to reach the carrier's
67 * SUPL server, used to retrieve GPS information.
68 */
Robert Greenwalt1448f052014-04-08 13:41:39 -070069 public static final int NET_CAPABILITY_SUPL = 1;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070070
71 /**
72 * Indicates this is a network that has the ability to reach the carrier's
73 * DUN or tethering gateway.
74 */
Robert Greenwalt1448f052014-04-08 13:41:39 -070075 public static final int NET_CAPABILITY_DUN = 2;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070076
77 /**
78 * Indicates this is a network that has the ability to reach the carrier's
79 * FOTA portal, used for over the air updates.
80 */
Robert Greenwalt1448f052014-04-08 13:41:39 -070081 public static final int NET_CAPABILITY_FOTA = 3;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070082
83 /**
84 * Indicates this is a network that has the ability to reach the carrier's
85 * IMS servers, used for network registration and signaling.
86 */
Robert Greenwalt1448f052014-04-08 13:41:39 -070087 public static final int NET_CAPABILITY_IMS = 4;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070088
89 /**
90 * Indicates this is a network that has the ability to reach the carrier's
91 * CBS servers, used for carrier specific services.
92 */
Robert Greenwalt1448f052014-04-08 13:41:39 -070093 public static final int NET_CAPABILITY_CBS = 5;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070094
95 /**
96 * Indicates this is a network that has the ability to reach a Wi-Fi direct
97 * peer.
98 */
Robert Greenwalt1448f052014-04-08 13:41:39 -070099 public static final int NET_CAPABILITY_WIFI_P2P = 6;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700100
101 /**
102 * Indicates this is a network that has the ability to reach a carrier's
103 * Initial Attach servers.
104 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700105 public static final int NET_CAPABILITY_IA = 7;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700106
107 /**
108 * Indicates this is a network that has the ability to reach a carrier's
109 * RCS servers, used for Rich Communication Services.
110 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700111 public static final int NET_CAPABILITY_RCS = 8;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700112
113 /**
114 * Indicates this is a network that has the ability to reach a carrier's
115 * XCAP servers, used for configuration and control.
116 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700117 public static final int NET_CAPABILITY_XCAP = 9;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700118
119 /**
120 * Indicates this is a network that has the ability to reach a carrier's
121 * Emergency IMS servers, used for network signaling during emergency calls.
122 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700123 public static final int NET_CAPABILITY_EIMS = 10;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700124
125 /**
126 * Indicates that this network is unmetered.
127 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700128 public static final int NET_CAPABILITY_NOT_METERED = 11;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700129
130 /**
131 * Indicates that this network should be able to reach the internet.
132 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700133 public static final int NET_CAPABILITY_INTERNET = 12;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700134
135 /**
136 * Indicates that this network is available for general use. If this is not set
137 * applications should not attempt to communicate on this network. Note that this
138 * is simply informative and not enforcement - enforcement is handled via other means.
139 * Set by default.
140 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700141 public static final int NET_CAPABILITY_NOT_RESTRICTED = 13;
142
Robert Greenwalt16e12ab2014-07-08 15:31:37 -0700143 /**
144 * Indicates that the user has indicated implicit trust of this network. This
145 * generally means it's a sim-selected carrier, a plugged in ethernet, a paired
146 * BT device or a wifi the user asked to connect to. Untrusted networks
147 * are probably limited to unknown wifi AP. Set by default.
148 */
149 public static final int NET_CAPABILITY_TRUSTED = 14;
150
Paul Jensen76b610a2015-03-18 09:33:07 -0400151 /**
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400152 * Indicates that this network is not a VPN. This capability is set by default and should be
Paul Jensen76b610a2015-03-18 09:33:07 -0400153 * explicitly cleared for VPN networks.
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400154 */
155 public static final int NET_CAPABILITY_NOT_VPN = 15;
156
Lorenzo Colitti403aa262014-11-28 11:21:30 +0900157 /**
158 * Indicates that connectivity on this network was successfully validated. For example, for a
159 * network with NET_CAPABILITY_INTERNET, it means that Internet connectivity was successfully
160 * detected.
161 * @hide
162 */
163 public static final int NET_CAPABILITY_VALIDATED = 16;
Robert Greenwalt16e12ab2014-07-08 15:31:37 -0700164
Robert Greenwalt1448f052014-04-08 13:41:39 -0700165 private static final int MIN_NET_CAPABILITY = NET_CAPABILITY_MMS;
Lorenzo Colitti403aa262014-11-28 11:21:30 +0900166 private static final int MAX_NET_CAPABILITY = NET_CAPABILITY_VALIDATED;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700167
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700168 /**
169 * Adds the given capability to this {@code NetworkCapability} instance.
170 * Multiple capabilities may be applied sequentially. Note that when searching
171 * for a network to satisfy a request, all capabilities requested must be satisfied.
172 *
Robert Greenwalt7569f182014-06-08 16:42:59 -0700173 * @param capability the {@code NetworkCapabilities.NET_CAPABILITY_*} to be added.
174 * @return This NetworkCapability to facilitate chaining.
175 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700176 */
Robert Greenwalt7569f182014-06-08 16:42:59 -0700177 public NetworkCapabilities addCapability(int capability) {
178 if (capability < MIN_NET_CAPABILITY || capability > MAX_NET_CAPABILITY) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700179 throw new IllegalArgumentException("NetworkCapability out of range");
180 }
Robert Greenwalt7569f182014-06-08 16:42:59 -0700181 mNetworkCapabilities |= 1 << capability;
182 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700183 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700184
185 /**
186 * Removes (if found) the given capability from this {@code NetworkCapability} instance.
187 *
Robert Greenwalt7569f182014-06-08 16:42:59 -0700188 * @param capability the {@code NetworkCapabilities.NET_CAPABILTIY_*} to be removed.
189 * @return This NetworkCapability to facilitate chaining.
190 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700191 */
Robert Greenwalt7569f182014-06-08 16:42:59 -0700192 public NetworkCapabilities removeCapability(int capability) {
193 if (capability < MIN_NET_CAPABILITY || capability > MAX_NET_CAPABILITY) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700194 throw new IllegalArgumentException("NetworkCapability out of range");
195 }
Robert Greenwalt7569f182014-06-08 16:42:59 -0700196 mNetworkCapabilities &= ~(1 << capability);
197 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700198 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700199
200 /**
201 * Gets all the capabilities set on this {@code NetworkCapability} instance.
202 *
Robert Greenwalt7569f182014-06-08 16:42:59 -0700203 * @return an array of {@code NetworkCapabilities.NET_CAPABILITY_*} values
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700204 * for this instance.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700205 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700206 */
Robert Greenwalt7569f182014-06-08 16:42:59 -0700207 public int[] getCapabilities() {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700208 return enumerateBits(mNetworkCapabilities);
209 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700210
211 /**
212 * Tests for the presence of a capabilitity on this instance.
213 *
Robert Greenwalt7569f182014-06-08 16:42:59 -0700214 * @param capability the {@code NetworkCapabilities.NET_CAPABILITY_*} to be tested for.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700215 * @return {@code true} if set on this instance.
216 */
Robert Greenwalt7569f182014-06-08 16:42:59 -0700217 public boolean hasCapability(int capability) {
218 if (capability < MIN_NET_CAPABILITY || capability > MAX_NET_CAPABILITY) {
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700219 return false;
220 }
Robert Greenwalt7569f182014-06-08 16:42:59 -0700221 return ((mNetworkCapabilities & (1 << capability)) != 0);
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700222 }
Robert Greenwalt1448f052014-04-08 13:41:39 -0700223
Robert Greenwalt7569f182014-06-08 16:42:59 -0700224 private int[] enumerateBits(long val) {
225 int size = Long.bitCount(val);
226 int[] result = new int[size];
227 int index = 0;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700228 int resource = 0;
229 while (val > 0) {
Robert Greenwalt7569f182014-06-08 16:42:59 -0700230 if ((val & 1) == 1) result[index++] = resource;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700231 val = val >> 1;
232 resource++;
233 }
234 return result;
235 }
236
237 private void combineNetCapabilities(NetworkCapabilities nc) {
238 this.mNetworkCapabilities |= nc.mNetworkCapabilities;
239 }
240
241 private boolean satisfiedByNetCapabilities(NetworkCapabilities nc) {
242 return ((nc.mNetworkCapabilities & this.mNetworkCapabilities) == this.mNetworkCapabilities);
243 }
244
Robert Greenwalt06314e42014-10-29 14:04:06 -0700245 /** @hide */
246 public boolean equalsNetCapabilities(NetworkCapabilities nc) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700247 return (nc.mNetworkCapabilities == this.mNetworkCapabilities);
248 }
249
250 /**
251 * Representing the transport type. Apps should generally not care about transport. A
252 * request for a fast internet connection could be satisfied by a number of different
253 * transports. If any are specified here it will be satisfied a Network that matches
254 * any of them. If a caller doesn't care about the transport it should not specify any.
255 */
256 private long mTransportTypes;
257
258 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700259 * Indicates this network uses a Cellular transport.
Robert Greenwalt1448f052014-04-08 13:41:39 -0700260 */
261 public static final int TRANSPORT_CELLULAR = 0;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700262
263 /**
264 * Indicates this network uses a Wi-Fi transport.
265 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700266 public static final int TRANSPORT_WIFI = 1;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700267
268 /**
269 * Indicates this network uses a Bluetooth transport.
270 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700271 public static final int TRANSPORT_BLUETOOTH = 2;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700272
273 /**
274 * Indicates this network uses an Ethernet transport.
275 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700276 public static final int TRANSPORT_ETHERNET = 3;
277
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400278 /**
279 * Indicates this network uses a VPN transport.
280 */
281 public static final int TRANSPORT_VPN = 4;
282
Robert Greenwalt1448f052014-04-08 13:41:39 -0700283 private static final int MIN_TRANSPORT = TRANSPORT_CELLULAR;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400284 private static final int MAX_TRANSPORT = TRANSPORT_VPN;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700285
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700286 /**
287 * Adds the given transport type to this {@code NetworkCapability} instance.
288 * Multiple transports may be applied sequentially. Note that when searching
289 * for a network to satisfy a request, any listed in the request will satisfy the request.
290 * For example {@code TRANSPORT_WIFI} and {@code TRANSPORT_ETHERNET} added to a
291 * {@code NetworkCapabilities} would cause either a Wi-Fi network or an Ethernet network
292 * to be selected. This is logically different than
293 * {@code NetworkCapabilities.NET_CAPABILITY_*} listed above.
294 *
295 * @param transportType the {@code NetworkCapabilities.TRANSPORT_*} to be added.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700296 * @return This NetworkCapability to facilitate chaining.
297 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700298 */
Robert Greenwalt7569f182014-06-08 16:42:59 -0700299 public NetworkCapabilities addTransportType(int transportType) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700300 if (transportType < MIN_TRANSPORT || transportType > MAX_TRANSPORT) {
301 throw new IllegalArgumentException("TransportType out of range");
302 }
303 mTransportTypes |= 1 << transportType;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700304 setNetworkSpecifier(mNetworkSpecifier); // used for exception checking
Robert Greenwalt7569f182014-06-08 16:42:59 -0700305 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700306 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700307
308 /**
309 * Removes (if found) the given transport from this {@code NetworkCapability} instance.
310 *
311 * @param transportType the {@code NetworkCapabilities.TRANSPORT_*} to be removed.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700312 * @return This NetworkCapability to facilitate chaining.
313 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700314 */
Robert Greenwalt7569f182014-06-08 16:42:59 -0700315 public NetworkCapabilities removeTransportType(int transportType) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700316 if (transportType < MIN_TRANSPORT || transportType > MAX_TRANSPORT) {
317 throw new IllegalArgumentException("TransportType out of range");
318 }
319 mTransportTypes &= ~(1 << transportType);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700320 setNetworkSpecifier(mNetworkSpecifier); // used for exception checking
Robert Greenwalt7569f182014-06-08 16:42:59 -0700321 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700322 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700323
324 /**
325 * Gets all the transports set on this {@code NetworkCapability} instance.
326 *
Robert Greenwalt7569f182014-06-08 16:42:59 -0700327 * @return an array of {@code NetworkCapabilities.TRANSPORT_*} values
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700328 * for this instance.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700329 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700330 */
Robert Greenwalt7569f182014-06-08 16:42:59 -0700331 public int[] getTransportTypes() {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700332 return enumerateBits(mTransportTypes);
333 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700334
335 /**
336 * Tests for the presence of a transport on this instance.
337 *
338 * @param transportType the {@code NetworkCapabilities.TRANSPORT_*} to be tested for.
339 * @return {@code true} if set on this instance.
340 */
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700341 public boolean hasTransport(int transportType) {
342 if (transportType < MIN_TRANSPORT || transportType > MAX_TRANSPORT) {
343 return false;
344 }
345 return ((mTransportTypes & (1 << transportType)) != 0);
346 }
Robert Greenwalt1448f052014-04-08 13:41:39 -0700347
348 private void combineTransportTypes(NetworkCapabilities nc) {
349 this.mTransportTypes |= nc.mTransportTypes;
350 }
351 private boolean satisfiedByTransportTypes(NetworkCapabilities nc) {
352 return ((this.mTransportTypes == 0) ||
353 ((this.mTransportTypes & nc.mTransportTypes) != 0));
354 }
Robert Greenwalt06314e42014-10-29 14:04:06 -0700355 /** @hide */
356 public boolean equalsTransportTypes(NetworkCapabilities nc) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700357 return (nc.mTransportTypes == this.mTransportTypes);
358 }
359
360 /**
361 * Passive link bandwidth. This is a rough guide of the expected peak bandwidth
362 * for the first hop on the given transport. It is not measured, but may take into account
363 * link parameters (Radio technology, allocated channels, etc).
364 */
365 private int mLinkUpBandwidthKbps;
366 private int mLinkDownBandwidthKbps;
367
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700368 /**
369 * Sets the upstream bandwidth for this network in Kbps. This always only refers to
370 * the estimated first hop transport bandwidth.
371 * <p>
372 * Note that when used to request a network, this specifies the minimum acceptable.
373 * When received as the state of an existing network this specifies the typical
374 * first hop bandwidth expected. This is never measured, but rather is inferred
375 * from technology type and other link parameters. It could be used to differentiate
376 * between very slow 1xRTT cellular links and other faster networks or even between
377 * 802.11b vs 802.11AC wifi technologies. It should not be used to differentiate between
378 * fast backhauls and slow backhauls.
379 *
380 * @param upKbps the estimated first hop upstream (device to network) bandwidth.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700381 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700382 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700383 public void setLinkUpstreamBandwidthKbps(int upKbps) {
384 mLinkUpBandwidthKbps = upKbps;
385 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700386
387 /**
388 * Retrieves the upstream bandwidth for this network in Kbps. This always only refers to
389 * the estimated first hop transport bandwidth.
390 *
391 * @return The estimated first hop upstream (device to network) bandwidth.
392 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700393 public int getLinkUpstreamBandwidthKbps() {
394 return mLinkUpBandwidthKbps;
395 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700396
397 /**
398 * Sets the downstream bandwidth for this network in Kbps. This always only refers to
399 * the estimated first hop transport bandwidth.
400 * <p>
401 * Note that when used to request a network, this specifies the minimum acceptable.
402 * When received as the state of an existing network this specifies the typical
403 * first hop bandwidth expected. This is never measured, but rather is inferred
404 * from technology type and other link parameters. It could be used to differentiate
405 * between very slow 1xRTT cellular links and other faster networks or even between
406 * 802.11b vs 802.11AC wifi technologies. It should not be used to differentiate between
407 * fast backhauls and slow backhauls.
408 *
409 * @param downKbps the estimated first hop downstream (network to device) bandwidth.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700410 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700411 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700412 public void setLinkDownstreamBandwidthKbps(int downKbps) {
413 mLinkDownBandwidthKbps = downKbps;
414 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700415
416 /**
417 * Retrieves the downstream bandwidth for this network in Kbps. This always only refers to
418 * the estimated first hop transport bandwidth.
419 *
420 * @return The estimated first hop downstream (network to device) bandwidth.
421 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700422 public int getLinkDownstreamBandwidthKbps() {
423 return mLinkDownBandwidthKbps;
424 }
425
426 private void combineLinkBandwidths(NetworkCapabilities nc) {
427 this.mLinkUpBandwidthKbps =
428 Math.max(this.mLinkUpBandwidthKbps, nc.mLinkUpBandwidthKbps);
429 this.mLinkDownBandwidthKbps =
430 Math.max(this.mLinkDownBandwidthKbps, nc.mLinkDownBandwidthKbps);
431 }
432 private boolean satisfiedByLinkBandwidths(NetworkCapabilities nc) {
433 return !(this.mLinkUpBandwidthKbps > nc.mLinkUpBandwidthKbps ||
434 this.mLinkDownBandwidthKbps > nc.mLinkDownBandwidthKbps);
435 }
436 private boolean equalsLinkBandwidths(NetworkCapabilities nc) {
437 return (this.mLinkUpBandwidthKbps == nc.mLinkUpBandwidthKbps &&
438 this.mLinkDownBandwidthKbps == nc.mLinkDownBandwidthKbps);
439 }
440
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700441 private String mNetworkSpecifier;
442 /**
443 * Sets the optional bearer specific network specifier.
444 * This has no meaning if a single transport is also not specified, so calling
445 * this without a single transport set will generate an exception, as will
446 * subsequently adding or removing transports after this is set.
447 * </p>
448 * The interpretation of this {@code String} is bearer specific and bearers that use
449 * it should document their particulars. For example, Bluetooth may use some sort of
Robert Greenwalt94badcc2014-07-10 14:53:24 -0700450 * device id while WiFi could used SSID and/or BSSID. Cellular may use carrier SPN (name)
451 * or Subscription ID.
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700452 *
453 * @param networkSpecifier An {@code String} of opaque format used to specify the bearer
454 * specific network specifier where the bearer has a choice of
455 * networks.
456 * @hide
457 */
458 public void setNetworkSpecifier(String networkSpecifier) {
459 if (TextUtils.isEmpty(networkSpecifier) == false && Long.bitCount(mTransportTypes) != 1) {
460 throw new IllegalStateException("Must have a single transport specified to use " +
461 "setNetworkSpecifier");
462 }
463 mNetworkSpecifier = networkSpecifier;
464 }
465
466 /**
467 * Gets the optional bearer specific network specifier.
468 *
469 * @return The optional {@code String} specifying the bearer specific network specifier.
470 * See {@link #setNetworkSpecifier}.
471 * @hide
472 */
473 public String getNetworkSpecifier() {
474 return mNetworkSpecifier;
475 }
476
477 private void combineSpecifiers(NetworkCapabilities nc) {
478 String otherSpecifier = nc.getNetworkSpecifier();
479 if (TextUtils.isEmpty(otherSpecifier)) return;
480 if (TextUtils.isEmpty(mNetworkSpecifier) == false) {
481 throw new IllegalStateException("Can't combine two networkSpecifiers");
482 }
483 setNetworkSpecifier(otherSpecifier);
484 }
485 private boolean satisfiedBySpecifier(NetworkCapabilities nc) {
486 return (TextUtils.isEmpty(mNetworkSpecifier) ||
487 mNetworkSpecifier.equals(nc.mNetworkSpecifier));
488 }
489 private boolean equalsSpecifier(NetworkCapabilities nc) {
490 if (TextUtils.isEmpty(mNetworkSpecifier)) {
491 return TextUtils.isEmpty(nc.mNetworkSpecifier);
492 } else {
493 return mNetworkSpecifier.equals(nc.mNetworkSpecifier);
494 }
495 }
496
Robert Greenwalt1448f052014-04-08 13:41:39 -0700497 /**
498 * Combine a set of Capabilities to this one. Useful for coming up with the complete set
499 * {@hide}
500 */
501 public void combineCapabilities(NetworkCapabilities nc) {
502 combineNetCapabilities(nc);
503 combineTransportTypes(nc);
504 combineLinkBandwidths(nc);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700505 combineSpecifiers(nc);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700506 }
507
508 /**
509 * Check if our requirements are satisfied by the given Capabilities.
510 * {@hide}
511 */
512 public boolean satisfiedByNetworkCapabilities(NetworkCapabilities nc) {
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700513 return (nc != null &&
514 satisfiedByNetCapabilities(nc) &&
Robert Greenwalt1448f052014-04-08 13:41:39 -0700515 satisfiedByTransportTypes(nc) &&
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700516 satisfiedByLinkBandwidths(nc) &&
517 satisfiedBySpecifier(nc));
Robert Greenwalt1448f052014-04-08 13:41:39 -0700518 }
519
520 @Override
521 public boolean equals(Object obj) {
522 if (obj == null || (obj instanceof NetworkCapabilities == false)) return false;
523 NetworkCapabilities that = (NetworkCapabilities)obj;
524 return (equalsNetCapabilities(that) &&
525 equalsTransportTypes(that) &&
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700526 equalsLinkBandwidths(that) &&
527 equalsSpecifier(that));
Robert Greenwalt1448f052014-04-08 13:41:39 -0700528 }
529
530 @Override
531 public int hashCode() {
532 return ((int)(mNetworkCapabilities & 0xFFFFFFFF) +
533 ((int)(mNetworkCapabilities >> 32) * 3) +
534 ((int)(mTransportTypes & 0xFFFFFFFF) * 5) +
535 ((int)(mTransportTypes >> 32) * 7) +
536 (mLinkUpBandwidthKbps * 11) +
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700537 (mLinkDownBandwidthKbps * 13) +
538 (TextUtils.isEmpty(mNetworkSpecifier) ? 0 : mNetworkSpecifier.hashCode() * 17));
Robert Greenwalt1448f052014-04-08 13:41:39 -0700539 }
540
Wink Saville4e2dea72014-09-20 11:04:03 -0700541 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -0700542 public int describeContents() {
543 return 0;
544 }
Wink Saville4e2dea72014-09-20 11:04:03 -0700545 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -0700546 public void writeToParcel(Parcel dest, int flags) {
547 dest.writeLong(mNetworkCapabilities);
548 dest.writeLong(mTransportTypes);
549 dest.writeInt(mLinkUpBandwidthKbps);
550 dest.writeInt(mLinkDownBandwidthKbps);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700551 dest.writeString(mNetworkSpecifier);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700552 }
553 public static final Creator<NetworkCapabilities> CREATOR =
554 new Creator<NetworkCapabilities>() {
Wink Saville4e2dea72014-09-20 11:04:03 -0700555 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -0700556 public NetworkCapabilities createFromParcel(Parcel in) {
557 NetworkCapabilities netCap = new NetworkCapabilities();
558
559 netCap.mNetworkCapabilities = in.readLong();
560 netCap.mTransportTypes = in.readLong();
561 netCap.mLinkUpBandwidthKbps = in.readInt();
562 netCap.mLinkDownBandwidthKbps = in.readInt();
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700563 netCap.mNetworkSpecifier = in.readString();
Robert Greenwalt1448f052014-04-08 13:41:39 -0700564 return netCap;
565 }
Wink Saville4e2dea72014-09-20 11:04:03 -0700566 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -0700567 public NetworkCapabilities[] newArray(int size) {
568 return new NetworkCapabilities[size];
569 }
570 };
571
Wink Saville4e2dea72014-09-20 11:04:03 -0700572 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -0700573 public String toString() {
Robert Greenwalt7569f182014-06-08 16:42:59 -0700574 int[] types = getTransportTypes();
575 String transports = (types.length > 0 ? " Transports: " : "");
576 for (int i = 0; i < types.length;) {
577 switch (types[i]) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700578 case TRANSPORT_CELLULAR: transports += "CELLULAR"; break;
579 case TRANSPORT_WIFI: transports += "WIFI"; break;
580 case TRANSPORT_BLUETOOTH: transports += "BLUETOOTH"; break;
581 case TRANSPORT_ETHERNET: transports += "ETHERNET"; break;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400582 case TRANSPORT_VPN: transports += "VPN"; break;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700583 }
Robert Greenwalt7569f182014-06-08 16:42:59 -0700584 if (++i < types.length) transports += "|";
Robert Greenwalt1448f052014-04-08 13:41:39 -0700585 }
586
Robert Greenwalt7569f182014-06-08 16:42:59 -0700587 types = getCapabilities();
588 String capabilities = (types.length > 0 ? " Capabilities: " : "");
589 for (int i = 0; i < types.length; ) {
590 switch (types[i]) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700591 case NET_CAPABILITY_MMS: capabilities += "MMS"; break;
592 case NET_CAPABILITY_SUPL: capabilities += "SUPL"; break;
593 case NET_CAPABILITY_DUN: capabilities += "DUN"; break;
594 case NET_CAPABILITY_FOTA: capabilities += "FOTA"; break;
595 case NET_CAPABILITY_IMS: capabilities += "IMS"; break;
596 case NET_CAPABILITY_CBS: capabilities += "CBS"; break;
597 case NET_CAPABILITY_WIFI_P2P: capabilities += "WIFI_P2P"; break;
598 case NET_CAPABILITY_IA: capabilities += "IA"; break;
599 case NET_CAPABILITY_RCS: capabilities += "RCS"; break;
600 case NET_CAPABILITY_XCAP: capabilities += "XCAP"; break;
601 case NET_CAPABILITY_EIMS: capabilities += "EIMS"; break;
602 case NET_CAPABILITY_NOT_METERED: capabilities += "NOT_METERED"; break;
603 case NET_CAPABILITY_INTERNET: capabilities += "INTERNET"; break;
604 case NET_CAPABILITY_NOT_RESTRICTED: capabilities += "NOT_RESTRICTED"; break;
Robert Greenwalt16e12ab2014-07-08 15:31:37 -0700605 case NET_CAPABILITY_TRUSTED: capabilities += "TRUSTED"; break;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400606 case NET_CAPABILITY_NOT_VPN: capabilities += "NOT_VPN"; break;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700607 }
Robert Greenwalt7569f182014-06-08 16:42:59 -0700608 if (++i < types.length) capabilities += "&";
Robert Greenwalt1448f052014-04-08 13:41:39 -0700609 }
610
611 String upBand = ((mLinkUpBandwidthKbps > 0) ? " LinkUpBandwidth>=" +
612 mLinkUpBandwidthKbps + "Kbps" : "");
613 String dnBand = ((mLinkDownBandwidthKbps > 0) ? " LinkDnBandwidth>=" +
614 mLinkDownBandwidthKbps + "Kbps" : "");
615
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700616 String specifier = (mNetworkSpecifier == null ?
617 "" : " Specifier: <" + mNetworkSpecifier + ">");
618
619 return "[" + transports + capabilities + upBand + dnBand + specifier + "]";
Robert Greenwalt1448f052014-04-08 13:41:39 -0700620 }
621}