Joe Onorato | 5dcbc6c | 2017-08-29 15:13:58 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 20 | #include "AnomalyMonitor.h" |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 21 | #include "StatsLogProcessor.h" |
Bookatz | c68a9d2 | 2017-09-27 14:09:55 -0700 | [diff] [blame^] | 22 | #include "StatsPuller.h" |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 23 | |
Joe Onorato | 5dcbc6c | 2017-08-29 15:13:58 -0700 | [diff] [blame] | 24 | #include <android/os/BnStatsManager.h> |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 25 | #include <android/os/IStatsCompanionService.h> |
Joe Onorato | 2cbc2cc | 2017-08-30 17:03:23 -0700 | [diff] [blame] | 26 | #include <binder/IResultReceiver.h> |
| 27 | #include <binder/IShellCallback.h> |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 28 | #include <frameworks/base/cmds/statsd/src/statsd_config.pb.h> |
Joe Onorato | 5dcbc6c | 2017-08-29 15:13:58 -0700 | [diff] [blame] | 29 | #include <utils/Looper.h> |
| 30 | |
| 31 | #include <deque> |
| 32 | #include <mutex> |
| 33 | |
| 34 | using namespace android; |
| 35 | using namespace android::base; |
| 36 | using namespace android::binder; |
| 37 | using namespace android::os; |
| 38 | using namespace std; |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 39 | |
Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 40 | namespace android { |
| 41 | namespace os { |
| 42 | namespace statsd { |
Joe Onorato | 5dcbc6c | 2017-08-29 15:13:58 -0700 | [diff] [blame] | 43 | |
Joe Onorato | 5dcbc6c | 2017-08-29 15:13:58 -0700 | [diff] [blame] | 44 | class StatsService : public BnStatsManager { |
| 45 | public: |
| 46 | StatsService(const sp<Looper>& handlerLooper); |
| 47 | virtual ~StatsService(); |
| 48 | |
Joe Onorato | 2cbc2cc | 2017-08-30 17:03:23 -0700 | [diff] [blame] | 49 | virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags); |
Joe Onorato | 5dcbc6c | 2017-08-29 15:13:58 -0700 | [diff] [blame] | 50 | |
Joe Onorato | 2cbc2cc | 2017-08-30 17:03:23 -0700 | [diff] [blame] | 51 | virtual status_t dump(int fd, const Vector<String16>& args); |
| 52 | |
| 53 | virtual status_t command(FILE* in, FILE* out, FILE* err, Vector<String8>& args); |
| 54 | |
| 55 | virtual Status systemRunning(); |
Yao Chen | 482d272 | 2017-09-12 13:25:43 -0700 | [diff] [blame] | 56 | |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 57 | // Inform statsd that statsCompanion is ready. |
| 58 | virtual Status statsCompanionReady(); |
| 59 | |
Bookatz | 1b0b114 | 2017-09-08 11:58:42 -0700 | [diff] [blame] | 60 | virtual Status informAnomalyAlarmFired(); |
| 61 | |
| 62 | virtual Status informPollAlarmFired(); |
| 63 | |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 64 | virtual status_t setProcessor(const sp<StatsLogProcessor>& main_processor); |
| 65 | |
Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 66 | // TODO: public for testing since statsd doesn't run when system starts. Change to private |
| 67 | // later. |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 68 | /** Inform statsCompanion that statsd is ready. */ |
| 69 | virtual void sayHiToStatsCompanion(); |
| 70 | |
Bookatz | c68a9d2 | 2017-09-27 14:09:55 -0700 | [diff] [blame^] | 71 | // TODO: Move this to a more logical file/class |
| 72 | // TODO: Should be private. Temporarily public for testing purposes only. |
| 73 | const sp<AnomalyMonitor> mAnomalyMonitor; |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 74 | |
Bookatz | c68a9d2 | 2017-09-27 14:09:55 -0700 | [diff] [blame^] | 75 | /** Fetches and returns the StatsCompanionService. */ |
| 76 | static sp<IStatsCompanionService> getStatsCompanionService(); |
| 77 | |
| 78 | private: |
| 79 | sp<StatsLogProcessor> m_processor; // Reference to the processor for updating configs. |
Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 80 | |
Yao Chen | 482d272 | 2017-09-12 13:25:43 -0700 | [diff] [blame] | 81 | status_t doPrintStatsLog(FILE* out, const Vector<String8>& args); |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 82 | |
Yao Chen | 482d272 | 2017-09-12 13:25:43 -0700 | [diff] [blame] | 83 | void printCmdHelp(FILE* out); |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 84 | |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 85 | status_t doLoadConfig(FILE* in); |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | // --- StatsdDeathRecipient --- |
| 89 | class StatsdDeathRecipient : public IBinder::DeathRecipient { |
| 90 | public: |
Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 91 | StatsdDeathRecipient(sp<AnomalyMonitor> anomalyMonitor) : mAnmlyMntr(anomalyMonitor) { |
Bookatz | b487b55 | 2017-09-18 11:26:01 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | virtual void binderDied(const wp<IBinder>& who); |
| 95 | |
| 96 | private: |
| 97 | const sp<AnomalyMonitor> mAnmlyMntr; |
Joe Onorato | 5dcbc6c | 2017-08-29 15:13:58 -0700 | [diff] [blame] | 98 | }; |
| 99 | |
Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 100 | } // namespace statsd |
| 101 | } // namespace os |
| 102 | } // namespace android |
Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 103 | |
Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 104 | #endif // STATS_SERVICE_H |