blob: 666da0a455fafb50c5becc7cd9de30de66595a5f [file] [log] [blame]
Jeff Davidsondc960e22014-04-07 15:19:44 -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
Sundeep Ghuman6c929622016-12-16 13:30:45 -080019import android.annotation.IntDef;
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -080020import android.annotation.Nullable;
Jeff Davidson7be8e972014-07-16 17:24:46 -070021import android.annotation.SystemApi;
Jeremy Joslind1daf6d2016-11-28 17:47:35 -080022import android.os.Bundle;
Jeff Davidsondc960e22014-04-07 15:19:44 -070023import android.os.Parcel;
24import android.os.Parcelable;
25
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -080026import java.lang.Math;
27import java.lang.UnsupportedOperationException;
Sundeep Ghuman6c929622016-12-16 13:30:45 -080028import java.lang.annotation.Retention;
29import java.lang.annotation.RetentionPolicy;
Jeff Davidson6a4b2202014-04-16 17:29:40 -070030import java.util.Objects;
31
Jeff Davidsondc960e22014-04-07 15:19:44 -070032/**
33 * A network identifier along with a score for the quality of that network.
34 *
35 * @hide
36 */
Jeff Davidson7be8e972014-07-16 17:24:46 -070037@SystemApi
Jeff Davidsondc960e22014-04-07 15:19:44 -070038public class ScoredNetwork implements Parcelable {
Sundeep Ghuman6c929622016-12-16 13:30:45 -080039
40 /**
41 * Key used with the {@link #attributes} bundle to define the badging curve.
42 *
43 * <p>The badging curve is a {@link RssiCurve} used to map different RSSI values to {@link
Sundeep Ghuman699deaf2017-02-13 15:32:13 -080044 * NetworkBadging.Badging} enums.
Sundeep Ghuman6c929622016-12-16 13:30:45 -080045 */
46 public static final String ATTRIBUTES_KEY_BADGING_CURVE =
47 "android.net.attributes.key.BADGING_CURVE";
Jeremy Joslind1daf6d2016-11-28 17:47:35 -080048 /**
49 * Extra used with {@link #attributes} to specify whether the
50 * network is believed to have a captive portal.
51 * <p>
52 * This data may be used, for example, to display a visual indicator
53 * in a network selection list.
54 * <p>
55 * Note that the this extra conveys the possible presence of a
56 * captive portal, not its state or the user's ability to open
57 * the portal.
58 * <p>
59 * If no value is associated with this key then it's unknown.
60 */
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -080061 public static final String ATTRIBUTES_KEY_HAS_CAPTIVE_PORTAL =
62 "android.net.attributes.key.HAS_CAPTIVE_PORTAL";
63
64 /**
65 * Key used with the {@link #attributes} bundle to define the rankingScoreOffset int value.
66 *
67 * <p>The rankingScoreOffset is used when calculating the ranking score used to rank networks
68 * against one another. See {@link #calculateRankingScore} for more information.
69 */
70 public static final String ATTRIBUTES_KEY_RANKING_SCORE_OFFSET =
71 "android.net.attributes.key.RANKING_SCORE_OFFSET";
Jeff Davidsondc960e22014-04-07 15:19:44 -070072
Sundeep Ghuman699deaf2017-02-13 15:32:13 -080073 /** A {@link NetworkKey} uniquely identifying this network. */
74 public final NetworkKey networkKey;
75
Jeff Davidsondc960e22014-04-07 15:19:44 -070076 /**
77 * The {@link RssiCurve} representing the scores for this network based on the RSSI.
78 *
79 * <p>This field is optional and may be set to null to indicate that no score is available for
80 * this network at this time. Such networks, along with networks for which the scorer has not
81 * responded, are always prioritized below scored networks, regardless of the score.
82 */
83 public final RssiCurve rssiCurve;
84
85 /**
Jeremy Joslin85870d62016-03-16 20:07:30 -070086 * A boolean value that indicates whether or not the network is believed to be metered.
87 *
88 * <p>A network can be classified as metered if the user would be
89 * sensitive to heavy data usage on that connection due to monetary costs,
90 * data limitations or battery/performance issues. A typical example would
91 * be a wifi connection where the user would be charged for usage.
92 */
93 public final boolean meteredHint;
94
95 /**
Jeremy Joslind1daf6d2016-11-28 17:47:35 -080096 * An additional collection of optional attributes set by
97 * the Network Recommendation Provider.
98 *
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -080099 * @see #ATTRIBUTES_KEY_HAS_CAPTIVE_PORTAL
Sundeep Ghumanc3cd62f2017-02-06 14:54:09 -0800100 * @see #ATTRIBUTES_KEY_RANKING_SCORE_OFFSET
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800101 */
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -0800102 @Nullable
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800103 public final Bundle attributes;
104
105 /**
Jeff Davidsondc960e22014-04-07 15:19:44 -0700106 * Construct a new {@link ScoredNetwork}.
107 *
108 * @param networkKey the {@link NetworkKey} uniquely identifying this network.
109 * @param rssiCurve the {@link RssiCurve} representing the scores for this network based on the
110 * RSSI. This field is optional, and may be skipped to represent a network which the scorer
111 * has opted not to score at this time. Passing a null value here is strongly preferred to
112 * not returning any {@link ScoredNetwork} for a given {@link NetworkKey} because it
113 * indicates to the system not to request scores for this network in the future, although
114 * the scorer may choose to issue an out-of-band update at any time.
115 */
116 public ScoredNetwork(NetworkKey networkKey, RssiCurve rssiCurve) {
Jeremy Joslin85870d62016-03-16 20:07:30 -0700117 this(networkKey, rssiCurve, false /* meteredHint */);
118 }
119
120 /**
121 * Construct a new {@link ScoredNetwork}.
122 *
123 * @param networkKey the {@link NetworkKey} uniquely identifying this network.
124 * @param rssiCurve the {@link RssiCurve} representing the scores for this network based on the
125 * RSSI. This field is optional, and may be skipped to represent a network which the scorer
126 * has opted not to score at this time. Passing a null value here is strongly preferred to
127 * not returning any {@link ScoredNetwork} for a given {@link NetworkKey} because it
128 * indicates to the system not to request scores for this network in the future, although
129 * the scorer may choose to issue an out-of-band update at any time.
130 * @param meteredHint A boolean value indicating whether or not the network is believed to be
131 * metered.
132 */
133 public ScoredNetwork(NetworkKey networkKey, RssiCurve rssiCurve, boolean meteredHint) {
Sundeep Ghuman23f98eb2016-12-12 14:36:03 -0800134 this(networkKey, rssiCurve, meteredHint, null /* attributes */);
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800135 }
136
137 /**
138 * Construct a new {@link ScoredNetwork}.
139 *
140 * @param networkKey the {@link NetworkKey} uniquely identifying this network
141 * @param rssiCurve the {@link RssiCurve} representing the scores for this network based on the
142 * RSSI. This field is optional, and may be skipped to represent a network which the scorer
143 * has opted not to score at this time. Passing a null value here is strongly preferred to
144 * not returning any {@link ScoredNetwork} for a given {@link NetworkKey} because it
145 * indicates to the system not to request scores for this network in the future, although
146 * the scorer may choose to issue an out-of-band update at any time.
147 * @param meteredHint a boolean value indicating whether or not the network is believed to be
148 * metered
149 * @param attributes optional provider specific attributes
150 */
151 public ScoredNetwork(NetworkKey networkKey, RssiCurve rssiCurve, boolean meteredHint,
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -0800152 @Nullable Bundle attributes) {
Jeff Davidsondc960e22014-04-07 15:19:44 -0700153 this.networkKey = networkKey;
154 this.rssiCurve = rssiCurve;
Jeremy Joslin85870d62016-03-16 20:07:30 -0700155 this.meteredHint = meteredHint;
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800156 this.attributes = attributes;
Jeff Davidsondc960e22014-04-07 15:19:44 -0700157 }
158
159 private ScoredNetwork(Parcel in) {
160 networkKey = NetworkKey.CREATOR.createFromParcel(in);
161 if (in.readByte() == 1) {
162 rssiCurve = RssiCurve.CREATOR.createFromParcel(in);
163 } else {
164 rssiCurve = null;
165 }
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -0800166 meteredHint = (in.readByte() == 1);
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800167 attributes = in.readBundle();
Jeff Davidsondc960e22014-04-07 15:19:44 -0700168 }
169
170 @Override
171 public int describeContents() {
172 return 0;
173 }
174
175 @Override
176 public void writeToParcel(Parcel out, int flags) {
177 networkKey.writeToParcel(out, flags);
178 if (rssiCurve != null) {
179 out.writeByte((byte) 1);
180 rssiCurve.writeToParcel(out, flags);
181 } else {
182 out.writeByte((byte) 0);
183 }
Jeremy Joslin85870d62016-03-16 20:07:30 -0700184 out.writeByte((byte) (meteredHint ? 1 : 0));
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800185 out.writeBundle(attributes);
Jeff Davidsondc960e22014-04-07 15:19:44 -0700186 }
187
188 @Override
Jeff Davidson6a4b2202014-04-16 17:29:40 -0700189 public boolean equals(Object o) {
190 if (this == o) return true;
191 if (o == null || getClass() != o.getClass()) return false;
192
193 ScoredNetwork that = (ScoredNetwork) o;
194
Jeremy Joslin85870d62016-03-16 20:07:30 -0700195 return Objects.equals(networkKey, that.networkKey)
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800196 && Objects.equals(rssiCurve, that.rssiCurve)
197 && Objects.equals(meteredHint, that.meteredHint)
198 && Objects.equals(attributes, that.attributes);
Jeff Davidson6a4b2202014-04-16 17:29:40 -0700199 }
200
201 @Override
202 public int hashCode() {
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800203 return Objects.hash(networkKey, rssiCurve, meteredHint, attributes);
Jeff Davidson6a4b2202014-04-16 17:29:40 -0700204 }
205
206 @Override
Jeff Davidsondc960e22014-04-07 15:19:44 -0700207 public String toString() {
Sundeep Ghuman23ccbcd2017-01-11 16:54:08 -0800208 StringBuilder out = new StringBuilder(
209 "ScoredNetwork{" +
Jeremy Joslind1daf6d2016-11-28 17:47:35 -0800210 "networkKey=" + networkKey +
211 ", rssiCurve=" + rssiCurve +
Sundeep Ghuman23ccbcd2017-01-11 16:54:08 -0800212 ", meteredHint=" + meteredHint);
Sundeep Ghuman7a9612f2017-01-12 13:48:51 -0800213 // calling isEmpty will unparcel the bundle so its contents can be converted to a string
214 if (attributes != null && !attributes.isEmpty()) {
Sundeep Ghuman23ccbcd2017-01-11 16:54:08 -0800215 out.append(", attributes=" + attributes);
216 }
217 out.append('}');
218 return out.toString();
Jeff Davidsondc960e22014-04-07 15:19:44 -0700219 }
220
Sundeep Ghumanc63d5b02016-12-07 13:32:33 -0800221 /**
222 * Returns true if a ranking score can be calculated for this network.
223 *
224 * @hide
225 */
226 public boolean hasRankingScore() {
227 return (rssiCurve != null)
228 || (attributes != null
229 && attributes.containsKey(ATTRIBUTES_KEY_RANKING_SCORE_OFFSET));
230 }
231
232 /**
233 * Returns a ranking score for a given RSSI which can be used to comparatively
234 * rank networks.
235 *
236 * <p>The score obtained by the rssiCurve is bitshifted left by 8 bits to expand it to an
237 * integer and then the offset is added. If the addition operation overflows or underflows,
238 * Integer.MAX_VALUE and Integer.MIN_VALUE will be returned respectively.
239 *
240 * <p>{@link #hasRankingScore} should be called first to ensure this network is capable
241 * of returning a ranking score.
242 *
243 * @throws UnsupportedOperationException if there is no RssiCurve and no rankingScoreOffset
244 * for this network (hasRankingScore returns false).
245 *
246 * @hide
247 */
248 public int calculateRankingScore(int rssi) throws UnsupportedOperationException {
249 if (!hasRankingScore()) {
250 throw new UnsupportedOperationException(
251 "Either rssiCurve or rankingScoreOffset is required to calculate the "
252 + "ranking score");
253 }
254
255 int offset = 0;
256 if (attributes != null) {
257 offset += attributes.getInt(ATTRIBUTES_KEY_RANKING_SCORE_OFFSET, 0 /* default */);
258 }
259
260 int score = (rssiCurve == null) ? 0 : rssiCurve.lookupScore(rssi) << Byte.SIZE;
261
262 try {
263 return Math.addExact(score, offset);
264 } catch (ArithmeticException e) {
265 return (score < 0) ? Integer.MIN_VALUE : Integer.MAX_VALUE;
266 }
267 }
268
Sundeep Ghuman6c929622016-12-16 13:30:45 -0800269 /**
Sundeep Ghuman699deaf2017-02-13 15:32:13 -0800270 * Return the {@link NetworkBadging.Badging} enum for this network for the given RSSI, derived from the
Sundeep Ghuman6c929622016-12-16 13:30:45 -0800271 * badging curve.
272 *
273 * <p>If no badging curve is present, {@link #BADGE_NONE} will be returned.
274 *
275 * @param rssi The rssi level for which the badge should be calculated
276 */
Sundeep Ghuman699deaf2017-02-13 15:32:13 -0800277 @NetworkBadging.Badging
Sundeep Ghuman6c929622016-12-16 13:30:45 -0800278 public int calculateBadge(int rssi) {
279 if (attributes != null && attributes.containsKey(ATTRIBUTES_KEY_BADGING_CURVE)) {
280 RssiCurve badgingCurve =
281 attributes.getParcelable(ATTRIBUTES_KEY_BADGING_CURVE);
282 return badgingCurve.lookupScore(rssi);
283 }
284
Sundeep Ghuman699deaf2017-02-13 15:32:13 -0800285 return NetworkBadging.BADGING_NONE;
Sundeep Ghuman6c929622016-12-16 13:30:45 -0800286 }
287
Jeff Davidsondc960e22014-04-07 15:19:44 -0700288 public static final Parcelable.Creator<ScoredNetwork> CREATOR =
289 new Parcelable.Creator<ScoredNetwork>() {
290 @Override
291 public ScoredNetwork createFromParcel(Parcel in) {
292 return new ScoredNetwork(in);
293 }
294
295 @Override
296 public ScoredNetwork[] newArray(int size) {
297 return new ScoredNetwork[size];
298 }
299 };
300}