blob: 7e1b1e0abaf69410ff2052fef042fa533e839560 [file] [log] [blame]
Joe Onorato1754d742016-11-21 17:51:35 -08001/**
2 * Copyright (c) 2016, 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.os;
18
Joe Onorato1754d742016-11-21 17:51:35 -080019import android.os.IIncidentReportStatusListener;
Joe Onorato99598ee2019-02-11 15:55:13 +000020import android.os.IncidentManager;
Joe Onorato1754d742016-11-21 17:51:35 -080021import android.os.IncidentReportArgs;
22
23/**
24 * Binder interface to report system health incidents.
25 * {@hide}
26 */
Joe Onorato99598ee2019-02-11 15:55:13 +000027interface IIncidentManager {
Joe Onorato1754d742016-11-21 17:51:35 -080028
29 /**
30 * Takes a report with the given args, reporting status to the optional listener.
31 *
32 * When the report is completed, the system report listener will be notified.
33 */
Joe Onorato99598ee2019-02-11 15:55:13 +000034 oneway void reportIncident(in IncidentReportArgs args);
Joe Onorato1754d742016-11-21 17:51:35 -080035
36 /**
37 * Takes a report with the given args, reporting status to the optional listener.
38 *
39 * When the report is completed, the system report listener will be notified.
40 */
Joe Onorato99598ee2019-02-11 15:55:13 +000041 oneway void reportIncidentToStream(in IncidentReportArgs args,
Joe Onorato1754d742016-11-21 17:51:35 -080042 @nullable IIncidentReportStatusListener listener,
43 FileDescriptor stream);
44
45 /**
Mike Ma5a57d792019-08-21 14:52:46 -070046 * Takes a report with the given args, reporting status to the optional listener.
47 * This should only be callable by dumpstate (enforced by callee).
48 *
49 * When the report is completed, the system report listener will be notified.
50 */
51 oneway void reportIncidentToDumpstate(FileDescriptor stream,
52 @nullable IIncidentReportStatusListener listener);
53
54 /**
Joe Onorato1754d742016-11-21 17:51:35 -080055 * Tell the incident daemon that the android system server is up and running.
56 */
Joe Onorato99598ee2019-02-11 15:55:13 +000057 oneway void systemRunning();
58
59 /**
60 * List the incident reports for the given ComponentName. This is called
61 * via IncidentCompanion, which validates that the package name matches
62 * the caller.
63 */
64 List<String> getIncidentReportList(String pkg, String cls);
65
66 /**
67 * Get the IncidentReport object.
68 */
69 IncidentManager.IncidentReport getIncidentReport(String pkg, String cls, String id);
70
71 /**
72 * Reduce the refcount on this receiver. This is called
73 * via IncidentCompanion, which validates that the package name matches
74 * the caller.
75 */
76 void deleteIncidentReports(String pkg, String cls, String id);
77
78 /**
79 * Delete all incident reports for this package.
80 */
81 void deleteAllIncidentReports(String pkg);
Joe Onorato1754d742016-11-21 17:51:35 -080082}