blob: 1d7e5a618cc929c060e49250b4efbb3feeed0cd8 [file] [log] [blame]
Joe Onorato5dcbc6c2017-08-29 15:13:58 -07001/*
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
17#ifndef STATS_SERVICE_H
18#define STATS_SERVICE_H
19
David Chen0656b7a2017-09-13 15:53:39 -070020#include "StatsLogProcessor.h"
Joe Onorato9fc9edf2017-10-15 20:08:52 -070021#include "anomaly/AnomalyMonitor.h"
22#include "config/ConfigManager.h"
23#include "external/StatsPullerManager.h"
24#include "packages/UidMap.h"
David Chen0656b7a2017-09-13 15:53:39 -070025
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070026#include <android/os/BnStatsManager.h>
yro31eb67b2017-10-24 13:33:21 -070027#include <android/os/IStatsCallbacks.h>
Bookatzb487b552017-09-18 11:26:01 -070028#include <android/os/IStatsCompanionService.h>
Joe Onorato2cbc2cc2017-08-30 17:03:23 -070029#include <binder/IResultReceiver.h>
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070030#include <utils/Looper.h>
31
32#include <deque>
33#include <mutex>
34
35using namespace android;
36using namespace android::base;
37using namespace android::binder;
38using namespace android::os;
39using namespace std;
Bookatzb487b552017-09-18 11:26:01 -070040
Bookatz906a35c2017-09-20 15:26:44 -070041namespace android {
42namespace os {
43namespace statsd {
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070044
yro31eb67b2017-10-24 13:33:21 -070045class StatsService : public BnStatsManager, public LogListener, public IBinder::DeathRecipient {
Joe Onorato5dcbc6c2017-08-29 15:13:58 -070046public:
47 StatsService(const sp<Looper>& handlerLooper);
48 virtual ~StatsService();
49
Joe Onorato2cbc2cc2017-08-30 17:03:23 -070050 virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
Joe Onorato2cbc2cc2017-08-30 17:03:23 -070051 virtual status_t dump(int fd, const Vector<String16>& args);
Joe Onorato2cbc2cc2017-08-30 17:03:23 -070052 virtual status_t command(FILE* in, FILE* out, FILE* err, Vector<String8>& args);
53
54 virtual Status systemRunning();
Bookatzb487b552017-09-18 11:26:01 -070055 virtual Status statsCompanionReady();
Bookatz1b0b1142017-09-08 11:58:42 -070056 virtual Status informAnomalyAlarmFired();
Bookatz1b0b1142017-09-08 11:58:42 -070057 virtual Status informPollAlarmFired();
David Chende701692017-10-05 13:16:02 -070058 virtual Status informAllUidData(const vector<int32_t>& uid, const vector<int32_t>& version,
59 const vector<String16>& app);
60 virtual Status informOnePackage(const String16& app, int32_t uid, int32_t version);
61 virtual Status informOnePackageRemoved(const String16& app, int32_t uid);
62
Joe Onorato9fc9edf2017-10-15 20:08:52 -070063 /**
64 * Called right before we start processing events.
65 */
66 void Startup();
67
68 /**
69 * Called by LogReader when there's a log event to process.
70 */
Joe Onoratoc4dfae52017-10-17 23:38:21 -070071 virtual void OnLogEvent(const LogEvent& event);
David Chen0656b7a2017-09-13 15:53:39 -070072
yro31eb67b2017-10-24 13:33:21 -070073 /**
74 * Binder call to force trigger pushLog. This would be called by callback
75 * clients.
76 */
77 virtual Status requestPush() override;
78
79 /**
80 * Pushes stats log entries from statsd to callback clients.
81 */
82 Status pushLog(const vector<uint8_t>& log);
83
84 /**
85 * Binder call to listen to statsd to send stats log entries.
86 */
87 virtual Status subscribeStatsLog(const sp<IStatsCallbacks>& callbacks) override;
88
Yao Chenef99c4f2017-09-22 16:26:54 -070089 // TODO: public for testing since statsd doesn't run when system starts. Change to private
90 // later.
Bookatzb487b552017-09-18 11:26:01 -070091 /** Inform statsCompanion that statsd is ready. */
92 virtual void sayHiToStatsCompanion();
93
Bookatzc68a9d22017-09-27 14:09:55 -070094 /** Fetches and returns the StatsCompanionService. */
95 static sp<IStatsCompanionService> getStatsCompanionService();
96
yro31eb67b2017-10-24 13:33:21 -070097 /** IBinder::DeathRecipient */
98 virtual void binderDied(const wp<IBinder>& who) override;
99
Chenjie Yu1a317ba2017-10-05 16:05:32 -0700100private:
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700101 /**
102 * Load system properties at init.
103 */
104 void init_system_properties();
David Chende701692017-10-05 13:16:02 -0700105
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700106 /**
107 * Helper for loading system properties.
108 */
109 static void init_build_type_callback(void* cookie, const char* name, const char* value,
110 uint32_t serial);
Bookatz906a35c2017-09-20 15:26:44 -0700111
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700112 /**
113 * Text output of dumpsys.
114 */
115 void dump_impl(FILE* out);
Bookatzb487b552017-09-18 11:26:01 -0700116
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700117 /**
118 * Print usage information for the commands
119 */
120 void print_cmd_help(FILE* out);
Bookatzb487b552017-09-18 11:26:01 -0700121
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700122 /**
123 * Handle the config sub-command.
124 */
125 status_t cmd_config(FILE* in, FILE* out, FILE* err, Vector<String8>& args);
Chenjie Yu1a317ba2017-10-05 16:05:32 -0700126
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700127 /**
128 * Print the event log.
129 */
130 status_t cmd_print_stats_log(FILE* out, const Vector<String8>& args);
131
132 /**
Yao Chen729093d2017-10-16 10:33:26 -0700133 * Print the event log.
134 */
135 status_t cmd_dump_report(FILE* out, FILE* err, const Vector<String8>& args);
136
137 /**
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700138 * Print the mapping of uids to package names.
139 */
140 status_t cmd_print_uid_map(FILE* out);
141
142 /**
David Chen1481fe12017-10-16 13:16:34 -0700143 * Print contents of a pulled metrics source.
144 */
145 status_t cmd_print_pulled_metrics(FILE* out, const Vector<String8>& args);
146
147 /**
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700148 * Update a configuration.
149 */
150 void set_config(int uid, const string& name, const StatsdConfig& config);
151
152 /**
153 * Tracks the uid <--> package name mapping.
154 */
155 sp<UidMap> mUidMap;
156
157 /**
158 * Fetches external metrics.
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700159 */
Chenjie Yu5305e1d2017-10-31 13:49:36 -0700160 StatsPullerManager& mStatsPullerManager = StatsPullerManager::GetInstance();
David Chende701692017-10-05 13:16:02 -0700161
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700162 /**
163 * Tracks the configurations that have been passed to statsd.
164 */
165 sp<ConfigManager> mConfigManager;
Bookatzb487b552017-09-18 11:26:01 -0700166
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700167 /**
168 * The metrics recorder.
169 */
170 sp<StatsLogProcessor> mProcessor;
Bookatzb487b552017-09-18 11:26:01 -0700171
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700172 /**
173 * The anomaly detector.
174 */
175 const sp<AnomalyMonitor> mAnomalyMonitor;
Bookatzb487b552017-09-18 11:26:01 -0700176
Joe Onorato9fc9edf2017-10-15 20:08:52 -0700177 /**
178 * Whether this is an eng build.
179 */
180 bool mEngBuild;
yro31eb67b2017-10-24 13:33:21 -0700181
182 /**
183 * Lock for callback handling.
184 */
185 std::mutex mLock;
186
187 /**
188 * Vector maintaining the list of callbacks for clients.
189 */
190 Vector< sp<IStatsCallbacks> > mCallbacks;
Joe Onorato5dcbc6c2017-08-29 15:13:58 -0700191};
192
Yao Chenef99c4f2017-09-22 16:26:54 -0700193} // namespace statsd
194} // namespace os
195} // namespace android
Bookatz906a35c2017-09-20 15:26:44 -0700196
Yao Chenef99c4f2017-09-22 16:26:54 -0700197#endif // STATS_SERVICE_H