1/*
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.net.INetworkStatsSession;
20import android.net.NetworkStats;
21import android.net.NetworkStatsHistory;
22import android.net.NetworkTemplate;
23
24/** {@hide} */
25interface INetworkStatsService {
26
27    /** Start a statistics query session. */
28    INetworkStatsSession openSession();
29
30    /** Return network layer usage total for traffic that matches template. */
31    long getNetworkTotalBytes(in NetworkTemplate template, long start, long end);
32
33    /** Return data layer snapshot of UID network usage. */
34    NetworkStats getDataLayerSnapshotForUid(int uid);
35    /** Return set of any ifaces associated with mobile networks since boot. */
36    String[] getMobileIfaces();
37
38    /** Increment data layer count of operations performed for UID and tag. */
39    void incrementOperationCount(int uid, int tag, int operationCount);
40
41    /** Mark given UID as being in foreground for stats purposes. */
42    void setUidForeground(int uid, boolean uidForeground);
43
44    /** Force update of ifaces. */
45    void forceUpdateIfaces();
46    /** Force update of statistics. */
47    void forceUpdate();
48
49    /** Advise persistance threshold; may be overridden internally. */
50    void advisePersistThreshold(long thresholdBytes);
51
52}
53