blob: 3918cfdfb48511e11e33b6572fa5bfa0e320dad9 [file] [log] [blame]
Jeff Sharkey9a13f362011-04-26 16:25:36 -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
19import android.os.Parcel;
20import android.os.Parcelable;
21import android.os.SystemClock;
Jeff Sharkey47eb1022011-08-25 17:48:52 -070022import android.util.Log;
Jeff Sharkey61ee0bb2011-05-29 22:50:42 -070023import android.util.SparseBooleanArray;
Jeff Sharkey9a13f362011-04-26 16:25:36 -070024
Jeff Sharkeya63ba592011-07-19 23:47:12 -070025import com.android.internal.util.Objects;
26
Jeff Sharkey9a13f362011-04-26 16:25:36 -070027import java.io.CharArrayWriter;
28import java.io.PrintWriter;
Jeff Sharkey4a971222011-06-11 22:16:55 -070029import java.util.Arrays;
Jeff Sharkey75279902011-05-24 18:39:45 -070030import java.util.HashSet;
Jeff Sharkey9a13f362011-04-26 16:25:36 -070031
32/**
Jeff Sharkey75279902011-05-24 18:39:45 -070033 * Collection of active network statistics. Can contain summary details across
34 * all interfaces, or details with per-UID granularity. Internally stores data
35 * as a large table, closely matching {@code /proc/} data format. This structure
36 * optimizes for rapid in-memory comparison, but consider using
37 * {@link NetworkStatsHistory} when persisting.
Jeff Sharkey9a13f362011-04-26 16:25:36 -070038 *
39 * @hide
40 */
41public class NetworkStats implements Parcelable {
Jeff Sharkey47eb1022011-08-25 17:48:52 -070042 private static final String TAG = "NetworkStats";
43
Jeff Sharkey75279902011-05-24 18:39:45 -070044 /** {@link #iface} value when interface details unavailable. */
Jeff Sharkey9a13f362011-04-26 16:25:36 -070045 public static final String IFACE_ALL = null;
Jeff Sharkey75279902011-05-24 18:39:45 -070046 /** {@link #uid} value when UID details unavailable. */
47 public static final int UID_ALL = -1;
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -070048 /** {@link #set} value when all sets combined. */
49 public static final int SET_ALL = -1;
50 /** {@link #set} value where background data is accounted. */
51 public static final int SET_DEFAULT = 0;
52 /** {@link #set} value where foreground data is accounted. */
53 public static final int SET_FOREGROUND = 1;
54 /** {@link #tag} value for total data across all tags. */
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070055 public static final int TAG_NONE = 0;
Jeff Sharkeyeedcb952011-05-17 14:55:15 -070056
Jeff Sharkey9a13f362011-04-26 16:25:36 -070057 /**
58 * {@link SystemClock#elapsedRealtime()} timestamp when this data was
59 * generated.
60 */
Jeff Sharkeyd37948f2011-07-12 13:57:00 -070061 private final long elapsedRealtime;
62 private int size;
63 private String[] iface;
64 private int[] uid;
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -070065 private int[] set;
Jeff Sharkeyd37948f2011-07-12 13:57:00 -070066 private int[] tag;
67 private long[] rxBytes;
68 private long[] rxPackets;
69 private long[] txBytes;
70 private long[] txPackets;
Jeff Sharkey63d27a92011-08-03 17:04:22 -070071 private long[] operations;
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -070072
73 public static class Entry {
74 public String iface;
75 public int uid;
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -070076 public int set;
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -070077 public int tag;
78 public long rxBytes;
79 public long rxPackets;
80 public long txBytes;
81 public long txPackets;
Jeff Sharkey63d27a92011-08-03 17:04:22 -070082 public long operations;
Jeff Sharkeyd37948f2011-07-12 13:57:00 -070083
84 public Entry() {
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -070085 this(IFACE_ALL, UID_ALL, SET_DEFAULT, TAG_NONE, 0L, 0L, 0L, 0L, 0L);
Jeff Sharkey63d27a92011-08-03 17:04:22 -070086 }
87
88 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -070089 this(IFACE_ALL, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets,
90 operations);
Jeff Sharkeyd37948f2011-07-12 13:57:00 -070091 }
92
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -070093 public Entry(String iface, int uid, int set, int tag, long rxBytes, long rxPackets,
94 long txBytes, long txPackets, long operations) {
Jeff Sharkeyd37948f2011-07-12 13:57:00 -070095 this.iface = iface;
96 this.uid = uid;
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -070097 this.set = set;
Jeff Sharkeyd37948f2011-07-12 13:57:00 -070098 this.tag = tag;
99 this.rxBytes = rxBytes;
100 this.rxPackets = rxPackets;
101 this.txBytes = txBytes;
102 this.txPackets = txPackets;
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700103 this.operations = operations;
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700104 }
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700105 }
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700106
Jeff Sharkey4a971222011-06-11 22:16:55 -0700107 public NetworkStats(long elapsedRealtime, int initialSize) {
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700108 this.elapsedRealtime = elapsedRealtime;
Jeff Sharkey4a971222011-06-11 22:16:55 -0700109 this.size = 0;
110 this.iface = new String[initialSize];
111 this.uid = new int[initialSize];
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700112 this.set = new int[initialSize];
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700113 this.tag = new int[initialSize];
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700114 this.rxBytes = new long[initialSize];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700115 this.rxPackets = new long[initialSize];
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700116 this.txBytes = new long[initialSize];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700117 this.txPackets = new long[initialSize];
Jeff Sharkey63d27a92011-08-03 17:04:22 -0700118 this.operations = new long[initialSize];
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700119 }
120
121 public NetworkStats(Parcel parcel) {
122 elapsedRealtime = parcel.readLong();
Jeff Sharkey4a971222011-06-11 22:16:55 -0700123 size = parcel.readInt();
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700124 iface = parcel.createStringArray();
125 uid = parcel.createIntArray();
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700126 set = parcel.createIntArray();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700127 tag = parcel.createIntArray();
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700128 rxBytes = parcel.createLongArray();
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700129 rxPackets = parcel.createLongArray();
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700130 txBytes = parcel.createLongArray();
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700131 txPackets = parcel.createLongArray();
Jeff Sharkey63d27a92011-08-03 17:04:22 -0700132 operations = parcel.createLongArray();
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700133 }
134
135 /** {@inheritDoc} */
136 public void writeToParcel(Parcel dest, int flags) {
137 dest.writeLong(elapsedRealtime);
138 dest.writeInt(size);
139 dest.writeStringArray(iface);
140 dest.writeIntArray(uid);
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700141 dest.writeIntArray(set);
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700142 dest.writeIntArray(tag);
143 dest.writeLongArray(rxBytes);
144 dest.writeLongArray(rxPackets);
145 dest.writeLongArray(txBytes);
146 dest.writeLongArray(txPackets);
Jeff Sharkey63d27a92011-08-03 17:04:22 -0700147 dest.writeLongArray(operations);
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700148 }
149
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700150 // @VisibleForTesting
151 public NetworkStats addIfaceValues(
152 String iface, long rxBytes, long rxPackets, long txBytes, long txPackets) {
153 return addValues(
154 iface, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets, 0L);
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700155 }
156
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700157 // @VisibleForTesting
158 public NetworkStats addValues(String iface, int uid, int set, int tag, long rxBytes,
159 long rxPackets, long txBytes, long txPackets, long operations) {
160 return addValues(new Entry(
161 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700162 }
163
164 /**
165 * Add new stats entry, copying from given {@link Entry}. The {@link Entry}
166 * object can be recycled across multiple calls.
167 */
168 public NetworkStats addValues(Entry entry) {
Jeff Sharkey4a971222011-06-11 22:16:55 -0700169 if (size >= this.iface.length) {
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700170 final int newLength = Math.max(iface.length, 10) * 3 / 2;
171 iface = Arrays.copyOf(iface, newLength);
172 uid = Arrays.copyOf(uid, newLength);
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700173 set = Arrays.copyOf(set, newLength);
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700174 tag = Arrays.copyOf(tag, newLength);
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700175 rxBytes = Arrays.copyOf(rxBytes, newLength);
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700176 rxPackets = Arrays.copyOf(rxPackets, newLength);
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700177 txBytes = Arrays.copyOf(txBytes, newLength);
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700178 txPackets = Arrays.copyOf(txPackets, newLength);
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700179 operations = Arrays.copyOf(operations, newLength);
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700180 }
181
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700182 iface[size] = entry.iface;
183 uid[size] = entry.uid;
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700184 set[size] = entry.set;
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700185 tag[size] = entry.tag;
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700186 rxBytes[size] = entry.rxBytes;
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700187 rxPackets[size] = entry.rxPackets;
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700188 txBytes[size] = entry.txBytes;
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700189 txPackets[size] = entry.txPackets;
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700190 operations[size] = entry.operations;
Jeff Sharkey4a971222011-06-11 22:16:55 -0700191 size++;
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700192
Jeff Sharkey4a971222011-06-11 22:16:55 -0700193 return this;
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700194 }
195
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700196 /**
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700197 * Return specific stats entry.
198 */
199 public Entry getValues(int i, Entry recycle) {
200 final Entry entry = recycle != null ? recycle : new Entry();
201 entry.iface = iface[i];
202 entry.uid = uid[i];
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700203 entry.set = set[i];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700204 entry.tag = tag[i];
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700205 entry.rxBytes = rxBytes[i];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700206 entry.rxPackets = rxPackets[i];
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700207 entry.txBytes = txBytes[i];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700208 entry.txPackets = txPackets[i];
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700209 entry.operations = operations[i];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700210 return entry;
211 }
212
213 public long getElapsedRealtime() {
214 return elapsedRealtime;
215 }
216
217 public int size() {
218 return size;
219 }
220
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700221 // @VisibleForTesting
222 public int internalSize() {
223 return iface.length;
224 }
225
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700226 @Deprecated
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700227 public NetworkStats combineValues(String iface, int uid, int tag, long rxBytes, long rxPackets,
Jeff Sharkey63d27a92011-08-03 17:04:22 -0700228 long txBytes, long txPackets, long operations) {
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700229 return combineValues(
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700230 iface, uid, SET_DEFAULT, tag, rxBytes, rxPackets, txBytes, txPackets, operations);
231 }
232
233 public NetworkStats combineValues(String iface, int uid, int set, int tag, long rxBytes,
234 long rxPackets, long txBytes, long txPackets, long operations) {
235 return combineValues(new Entry(
236 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700237 }
238
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700239 /**
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700240 * Combine given values with an existing row, or create a new row if
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700241 * {@link #findIndex(String, int, int, int)} is unable to find match. Can
242 * also be used to subtract values from existing rows.
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700243 */
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700244 public NetworkStats combineValues(Entry entry) {
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700245 final int i = findIndex(entry.iface, entry.uid, entry.set, entry.tag);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700246 if (i == -1) {
247 // only create new entry when positive contribution
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700248 addValues(entry);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700249 } else {
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700250 rxBytes[i] += entry.rxBytes;
251 rxPackets[i] += entry.rxPackets;
252 txBytes[i] += entry.txBytes;
253 txPackets[i] += entry.txPackets;
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700254 operations[i] += entry.operations;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700255 }
256 return this;
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700257 }
258
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700259 /**
260 * Find first stats index that matches the requested parameters.
261 */
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700262 public int findIndex(String iface, int uid, int set, int tag) {
Jeff Sharkey4a971222011-06-11 22:16:55 -0700263 for (int i = 0; i < size; i++) {
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700264 if (Objects.equal(iface, this.iface[i]) && uid == this.uid[i] && set == this.set[i]
265 && tag == this.tag[i]) {
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700266 return i;
267 }
268 }
269 return -1;
270 }
271
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700272 /**
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700273 * Splice in {@link #operations} from the given {@link NetworkStats} based
274 * on matching {@link #uid} and {@link #tag} rows. Ignores {@link #iface},
275 * since operation counts are at data layer.
276 */
277 public void spliceOperationsFrom(NetworkStats stats) {
278 for (int i = 0; i < size; i++) {
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700279 final int j = stats.findIndex(IFACE_ALL, uid[i], set[i], tag[i]);
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700280 if (j == -1) {
281 operations[i] = 0;
282 } else {
283 operations[i] = stats.operations[j];
284 }
285 }
286 }
287
288 /**
Jeff Sharkey75279902011-05-24 18:39:45 -0700289 * Return list of unique interfaces known by this data structure.
290 */
Jeff Sharkey61ee0bb2011-05-29 22:50:42 -0700291 public String[] getUniqueIfaces() {
Jeff Sharkey75279902011-05-24 18:39:45 -0700292 final HashSet<String> ifaces = new HashSet<String>();
293 for (String iface : this.iface) {
294 if (iface != IFACE_ALL) {
295 ifaces.add(iface);
296 }
297 }
298 return ifaces.toArray(new String[ifaces.size()]);
299 }
300
301 /**
Jeff Sharkey61ee0bb2011-05-29 22:50:42 -0700302 * Return list of unique UIDs known by this data structure.
303 */
304 public int[] getUniqueUids() {
305 final SparseBooleanArray uids = new SparseBooleanArray();
306 for (int uid : this.uid) {
307 uids.put(uid, true);
308 }
309
310 final int size = uids.size();
311 final int[] result = new int[size];
312 for (int i = 0; i < size; i++) {
313 result[i] = uids.keyAt(i);
314 }
315 return result;
316 }
317
318 /**
Jeff Sharkey8e9992a2011-08-23 18:37:23 -0700319 * Return total bytes represented by this snapshot object, usually used when
320 * checking if a {@link #subtract(NetworkStats)} delta passes a threshold.
321 */
322 public long getTotalBytes() {
Jeff Sharkey07b0dd92011-09-01 13:06:19 -0700323 final Entry entry = getTotal(null);
324 return entry.rxBytes + entry.txBytes;
325 }
326
327 /**
328 * Return total of all fields represented by this snapshot object.
329 */
330 public Entry getTotal(Entry recycle) {
331 final Entry entry = recycle != null ? recycle : new Entry();
332
333 entry.iface = IFACE_ALL;
334 entry.uid = UID_ALL;
335 entry.set = SET_ALL;
336 entry.tag = TAG_NONE;
337 entry.rxBytes = 0;
338 entry.rxPackets = 0;
339 entry.txBytes = 0;
340 entry.txPackets = 0;
341
Jeff Sharkey8e9992a2011-08-23 18:37:23 -0700342 for (int i = 0; i < size; i++) {
343 // skip specific tags, since already counted in TAG_NONE
344 if (tag[i] != TAG_NONE) continue;
345
Jeff Sharkey07b0dd92011-09-01 13:06:19 -0700346 entry.rxBytes += rxBytes[i];
347 entry.rxPackets += rxPackets[i];
348 entry.txBytes += txBytes[i];
349 entry.txPackets += txPackets[i];
350 entry.operations += operations[i];
Jeff Sharkey8e9992a2011-08-23 18:37:23 -0700351 }
Jeff Sharkey07b0dd92011-09-01 13:06:19 -0700352 return entry;
Jeff Sharkey8e9992a2011-08-23 18:37:23 -0700353 }
354
355 /**
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700356 * Subtract the given {@link NetworkStats}, effectively leaving the delta
357 * between two snapshots in time. Assumes that statistics rows collect over
358 * time, and that none of them have disappeared.
Jeff Sharkey75279902011-05-24 18:39:45 -0700359 *
Jeff Sharkey3f391352011-06-05 17:42:53 -0700360 * @throws IllegalArgumentException when given {@link NetworkStats} is
361 * non-monotonic.
362 */
363 public NetworkStats subtract(NetworkStats value) {
364 return subtract(value, true, false);
365 }
366
367 /**
368 * Subtract the given {@link NetworkStats}, effectively leaving the delta
369 * between two snapshots in time. Assumes that statistics rows collect over
370 * time, and that none of them have disappeared.
371 * <p>
372 * Instead of throwing when counters are non-monotonic, this variant clamps
373 * results to never be negative.
374 */
375 public NetworkStats subtractClamped(NetworkStats value) {
376 return subtract(value, false, true);
377 }
378
379 /**
380 * Subtract the given {@link NetworkStats}, effectively leaving the delta
381 * between two snapshots in time. Assumes that statistics rows collect over
382 * time, and that none of them have disappeared.
383 *
Jeff Sharkey75279902011-05-24 18:39:45 -0700384 * @param enforceMonotonic Validate that incoming value is strictly
385 * monotonic compared to this object.
Jeff Sharkey3f391352011-06-05 17:42:53 -0700386 * @param clampNegative Instead of throwing like {@code enforceMonotonic},
387 * clamp resulting counters at 0 to prevent negative values.
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700388 */
Jeff Sharkey3f391352011-06-05 17:42:53 -0700389 private NetworkStats subtract(
390 NetworkStats value, boolean enforceMonotonic, boolean clampNegative) {
Jeff Sharkey75279902011-05-24 18:39:45 -0700391 final long deltaRealtime = this.elapsedRealtime - value.elapsedRealtime;
392 if (enforceMonotonic && deltaRealtime < 0) {
393 throw new IllegalArgumentException("found non-monotonic realtime");
394 }
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700395
Jeff Sharkey75279902011-05-24 18:39:45 -0700396 // result will have our rows, and elapsed time between snapshots
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700397 final Entry entry = new Entry();
Jeff Sharkey4a971222011-06-11 22:16:55 -0700398 final NetworkStats result = new NetworkStats(deltaRealtime, size);
399 for (int i = 0; i < size; i++) {
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700400 entry.iface = iface[i];
401 entry.uid = uid[i];
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700402 entry.set = set[i];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700403 entry.tag = tag[i];
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700404
405 // find remote row that matches, and subtract
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700406 final int j = value.findIndex(entry.iface, entry.uid, entry.set, entry.tag);
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700407 if (j == -1) {
408 // newly appearing row, return entire value
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700409 entry.rxBytes = rxBytes[i];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700410 entry.rxPackets = rxPackets[i];
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700411 entry.txBytes = txBytes[i];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700412 entry.txPackets = txPackets[i];
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700413 entry.operations = operations[i];
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700414 } else {
415 // existing row, subtract remote value
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700416 entry.rxBytes = rxBytes[i] - value.rxBytes[j];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700417 entry.rxPackets = rxPackets[i] - value.rxPackets[j];
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700418 entry.txBytes = txBytes[i] - value.txBytes[j];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700419 entry.txPackets = txPackets[i] - value.txPackets[j];
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700420 entry.operations = operations[i] - value.operations[j];
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700421 if (enforceMonotonic
422 && (entry.rxBytes < 0 || entry.rxPackets < 0 || entry.txBytes < 0
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700423 || entry.txPackets < 0 || entry.operations < 0)) {
Jeff Sharkey47eb1022011-08-25 17:48:52 -0700424 Log.v(TAG, "lhs=" + this);
425 Log.v(TAG, "rhs=" + value);
426 throw new IllegalArgumentException(
427 "found non-monotonic values at lhs[" + i + "] - rhs[" + j + "]");
Jeff Sharkey75279902011-05-24 18:39:45 -0700428 }
Jeff Sharkey3f391352011-06-05 17:42:53 -0700429 if (clampNegative) {
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700430 entry.rxBytes = Math.max(0, entry.rxBytes);
431 entry.rxPackets = Math.max(0, entry.rxPackets);
432 entry.txBytes = Math.max(0, entry.txBytes);
433 entry.txPackets = Math.max(0, entry.txPackets);
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700434 entry.operations = Math.max(0, entry.operations);
Jeff Sharkey3f391352011-06-05 17:42:53 -0700435 }
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700436 }
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700437
438 result.addValues(entry);
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700439 }
440
Jeff Sharkey4a971222011-06-11 22:16:55 -0700441 return result;
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700442 }
443
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700444 public void dump(String prefix, PrintWriter pw) {
445 pw.print(prefix);
446 pw.print("NetworkStats: elapsedRealtime="); pw.println(elapsedRealtime);
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700447 for (int i = 0; i < size; i++) {
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700448 pw.print(prefix);
449 pw.print(" iface="); pw.print(iface[i]);
450 pw.print(" uid="); pw.print(uid[i]);
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700451 pw.print(" set="); pw.print(setToString(set[i]));
452 pw.print(" tag="); pw.print(tagToString(tag[i]));
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700453 pw.print(" rxBytes="); pw.print(rxBytes[i]);
Jeff Sharkeyfd8be3e2011-07-11 14:36:15 -0700454 pw.print(" rxPackets="); pw.print(rxPackets[i]);
Jeff Sharkeyd37948f2011-07-12 13:57:00 -0700455 pw.print(" txBytes="); pw.print(txBytes[i]);
Jeff Sharkeya63ba592011-07-19 23:47:12 -0700456 pw.print(" txPackets="); pw.print(txPackets[i]);
457 pw.print(" operations="); pw.println(operations[i]);
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700458 }
459 }
460
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -0700461 /**
462 * Return text description of {@link #set} value.
463 */
464 public static String setToString(int set) {
465 switch (set) {
466 case SET_ALL:
467 return "ALL";
468 case SET_DEFAULT:
469 return "DEFAULT";
470 case SET_FOREGROUND:
471 return "FOREGROUND";
472 default:
473 return "UNKNOWN";
474 }
475 }
476
477 /**
478 * Return text description of {@link #tag} value.
479 */
480 public static String tagToString(int tag) {
481 return "0x" + Integer.toHexString(tag);
482 }
483
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700484 @Override
485 public String toString() {
486 final CharArrayWriter writer = new CharArrayWriter();
487 dump("", new PrintWriter(writer));
488 return writer.toString();
489 }
490
491 /** {@inheritDoc} */
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700492 public int describeContents() {
493 return 0;
494 }
495
Jeff Sharkey9a13f362011-04-26 16:25:36 -0700496 public static final Creator<NetworkStats> CREATOR = new Creator<NetworkStats>() {
497 public NetworkStats createFromParcel(Parcel in) {
498 return new NetworkStats(in);
499 }
500
501 public NetworkStats[] newArray(int size) {
502 return new NetworkStats[size];
503 }
504 };
505}