Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | */ |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 16 | |
Yangster-mac | 2087716 | 2017-12-22 17:19:39 -0800 | [diff] [blame] | 17 | #pragma once |
| 18 | |
| 19 | #include <gtest/gtest_prod.h> |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 20 | #include "config/ConfigListener.h" |
Jonathan Nguyen | 703c42f | 2020-02-04 15:54:26 -0800 | [diff] [blame] | 21 | #include "logd/LogEvent.h" |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 22 | #include "metrics/MetricsManager.h" |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 23 | #include "packages/UidMap.h" |
Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 24 | #include "external/StatsPullerManager.h" |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 25 | |
| 26 | #include "frameworks/base/cmds/statsd/src/statsd_config.pb.h" |
Jeffrey Huang | b8f5403 | 2020-03-23 13:42:42 -0700 | [diff] [blame] | 27 | #include "frameworks/base/cmds/statsd/src/statsd_metadata.pb.h" |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 28 | |
Yao Chen | 44cf27c | 2017-09-14 22:32:50 -0700 | [diff] [blame] | 29 | #include <stdio.h> |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 30 | #include <unordered_map> |
| 31 | |
Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 32 | namespace android { |
| 33 | namespace os { |
| 34 | namespace statsd { |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 35 | |
Chenjie Yu | e36018b | 2018-04-16 15:18:30 -0700 | [diff] [blame] | 36 | |
Tej Singh | 9ec159a | 2019-11-14 11:59:48 -0800 | [diff] [blame] | 37 | class StatsLogProcessor : public ConfigListener, public virtual PackageInfoListener { |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 38 | public: |
Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 39 | StatsLogProcessor(const sp<UidMap>& uidMap, const sp<StatsPullerManager>& pullerManager, |
| 40 | const sp<AlarmMonitor>& anomalyAlarmMonitor, |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 41 | const sp<AlarmMonitor>& subscriberTriggerAlarmMonitor, |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 42 | const int64_t timeBaseNs, |
Tej Singh | 6ede28b | 2019-01-29 17:06:54 -0800 | [diff] [blame] | 43 | const std::function<bool(const ConfigKey&)>& sendBroadcast, |
| 44 | const std::function<bool(const int&, |
| 45 | const vector<int64_t>&)>& sendActivationBroadcast); |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 46 | virtual ~StatsLogProcessor(); |
| 47 | |
Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 48 | void OnLogEvent(LogEvent* event); |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 49 | |
Yangster-mac | c04feba | 2018-04-02 14:37:33 -0700 | [diff] [blame] | 50 | void OnConfigUpdated(const int64_t timestampNs, const ConfigKey& key, |
| 51 | const StatsdConfig& config); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 52 | void OnConfigRemoved(const ConfigKey& key); |
David Chen | 0656b7a | 2017-09-13 15:53:39 -0700 | [diff] [blame] | 53 | |
Yangster | 7c334a1 | 2017-11-22 14:24:24 -0800 | [diff] [blame] | 54 | size_t GetMetricsSize(const ConfigKey& key) const; |
| 55 | |
Tej Singh | 6ede28b | 2019-01-29 17:06:54 -0800 | [diff] [blame] | 56 | void GetActiveConfigs(const int uid, vector<int64_t>& outActiveConfigs); |
| 57 | |
Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 58 | void onDumpReport(const ConfigKey& key, const int64_t dumpTimeNs, |
Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 59 | const bool include_current_partial_bucket, const bool erase_data, |
Muhammad Qureshi | 3a5ebf5 | 2019-03-28 12:38:21 -0700 | [diff] [blame] | 60 | const DumpReportReason dumpReportReason, |
Olivier Gaillard | 6c75ecd | 2019-02-20 09:57:33 +0000 | [diff] [blame] | 61 | const DumpLatency dumpLatency, |
| 62 | vector<uint8_t>* outData); |
Bookatz | ff71cad | 2018-09-20 17:17:49 -0700 | [diff] [blame] | 63 | void onDumpReport(const ConfigKey& key, const int64_t dumpTimeNs, |
| 64 | const bool include_current_partial_bucket, const bool erase_data, |
Olivier Gaillard | 6c75ecd | 2019-02-20 09:57:33 +0000 | [diff] [blame] | 65 | const DumpReportReason dumpReportReason, |
| 66 | const DumpLatency dumpLatency, |
| 67 | ProtoOutputStream* proto); |
Bookatz | cc5adef2 | 2017-11-21 14:36:23 -0800 | [diff] [blame] | 68 | |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 69 | /* Tells MetricsManager that the alarms in alarmSet have fired. Modifies anomaly alarmSet. */ |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 70 | void onAnomalyAlarmFired( |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 71 | const int64_t& timestampNs, |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 72 | unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet); |
| 73 | |
| 74 | /* Tells MetricsManager that the alarms in alarmSet have fired. Modifies periodic alarmSet. */ |
| 75 | void onPeriodicAlarmFired( |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 76 | const int64_t& timestampNs, |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 77 | unordered_set<sp<const InternalAlarm>, SpHash<InternalAlarm>> alarmSet); |
yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 78 | |
yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 79 | /* Flushes data to disk. Data on memory will be gone after written to disk. */ |
Olivier Gaillard | 6c75ecd | 2019-02-20 09:57:33 +0000 | [diff] [blame] | 80 | void WriteDataToDisk(const DumpReportReason dumpReportReason, |
| 81 | const DumpLatency dumpLatency); |
Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 82 | |
Muhammad Qureshi | 844694b | 2019-04-05 10:10:40 -0700 | [diff] [blame] | 83 | /* Persist configs containing metrics with active activations to disk. */ |
| 84 | void SaveActiveConfigsToDisk(int64_t currentTimeNs); |
Chenjie Yu | c7939cb | 2019-02-04 17:25:45 -0800 | [diff] [blame] | 85 | |
Tej Singh | f53d445 | 2019-05-09 18:17:59 -0700 | [diff] [blame] | 86 | /* Writes the current active status/ttl for all configs and metrics to ProtoOutputStream. */ |
| 87 | void WriteActiveConfigsToProtoOutputStream( |
| 88 | int64_t currentTimeNs, const DumpReportReason reason, ProtoOutputStream* proto); |
| 89 | |
Muhammad Qureshi | 844694b | 2019-04-05 10:10:40 -0700 | [diff] [blame] | 90 | /* Load configs containing metrics with active activations from disk. */ |
| 91 | void LoadActiveConfigsFromDisk(); |
Chenjie Yu | c7939cb | 2019-02-04 17:25:45 -0800 | [diff] [blame] | 92 | |
Jeffrey Huang | b8f5403 | 2020-03-23 13:42:42 -0700 | [diff] [blame] | 93 | /* Persist metadata for configs and metrics to disk. */ |
| 94 | void SaveMetadataToDisk(int64_t currentWallClockTimeNs, int64_t systemElapsedTimeNs); |
| 95 | |
| 96 | /* Writes the statsd metadata for all configs and metrics to StatsMetadataList. */ |
| 97 | void WriteMetadataToProto(int64_t currentWallClockTimeNs, |
| 98 | int64_t systemElapsedTimeNs, |
| 99 | metadata::StatsMetadataList* metadataList); |
| 100 | |
Jeffrey Huang | 475677e | 2020-03-30 19:52:07 -0700 | [diff] [blame] | 101 | /* Load stats metadata for configs and metrics from disk. */ |
| 102 | void LoadMetadataFromDisk(int64_t currentWallClockTimeNs, |
| 103 | int64_t systemElapsedTimeNs); |
| 104 | |
| 105 | /* Sets the metadata for all configs and metrics */ |
| 106 | void SetMetadataState(const metadata::StatsMetadataList& statsMetadataList, |
| 107 | int64_t currentWallClockTimeNs, |
| 108 | int64_t systemElapsedTimeNs); |
| 109 | |
Tej Singh | f53d445 | 2019-05-09 18:17:59 -0700 | [diff] [blame] | 110 | /* Sets the active status/ttl for all configs and metrics to the status in ActiveConfigList. */ |
| 111 | void SetConfigsActiveState(const ActiveConfigList& activeConfigList, int64_t currentTimeNs); |
| 112 | |
Tej Singh | 9ec159a | 2019-11-14 11:59:48 -0800 | [diff] [blame] | 113 | /* Notify all MetricsManagers of app upgrades */ |
| 114 | void notifyAppUpgrade(const int64_t& eventTimeNs, const string& apk, const int uid, |
| 115 | const int64_t version) override; |
| 116 | |
| 117 | /* Notify all MetricsManagers of app removals */ |
| 118 | void notifyAppRemoved(const int64_t& eventTimeNs, const string& apk, const int uid) override; |
| 119 | |
| 120 | /* Notify all MetricsManagers of uid map snapshots received */ |
| 121 | void onUidMapReceived(const int64_t& eventTimeNs) override; |
| 122 | |
Tej Singh | e678cb7 | 2020-04-14 16:23:30 -0700 | [diff] [blame] | 123 | /* Notify all metrics managers of boot completed |
| 124 | * This will force a bucket split when the boot is finished. |
| 125 | */ |
| 126 | void onStatsdInitCompleted(const int64_t& elapsedTimeNs); |
| 127 | |
Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 128 | // Reset all configs. |
| 129 | void resetConfigs(); |
yro | 947fbce | 2017-11-15 22:50:23 -0800 | [diff] [blame] | 130 | |
Yangster-mac | b5bc741 | 2018-01-06 23:17:45 -0800 | [diff] [blame] | 131 | inline sp<UidMap> getUidMap() { |
| 132 | return mUidMap; |
| 133 | } |
| 134 | |
Yao Chen | a80e5c0 | 2018-09-04 13:55:29 -0700 | [diff] [blame] | 135 | void dumpStates(int outFd, bool verbose); |
Yao Chen | 884c8c1 | 2018-01-26 10:36:25 -0800 | [diff] [blame] | 136 | |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 137 | void informPullAlarmFired(const int64_t timestampNs); |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 138 | |
David Chen | d37bc23 | 2018-04-12 18:05:11 -0700 | [diff] [blame] | 139 | int64_t getLastReportTimeNs(const ConfigKey& key); |
| 140 | |
Yao Chen | 876889c | 2018-05-02 11:16:16 -0700 | [diff] [blame] | 141 | inline void setPrintLogs(bool enabled) { |
| 142 | #ifdef VERY_VERBOSE_PRINTING |
| 143 | std::lock_guard<std::mutex> lock(mMetricsMutex); |
| 144 | mPrintAllLogs = enabled; |
| 145 | #endif |
| 146 | } |
| 147 | |
David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 148 | // Add a specific config key to the possible configs to dump ASAP. |
| 149 | void noteOnDiskData(const ConfigKey& key); |
| 150 | |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 151 | private: |
Yangster-mac | be10ddf | 2018-03-13 15:39:51 -0700 | [diff] [blame] | 152 | // For testing only. |
| 153 | inline sp<AlarmMonitor> getAnomalyAlarmMonitor() const { |
| 154 | return mAnomalyAlarmMonitor; |
| 155 | } |
| 156 | |
Yangster-mac | 684d195 | 2018-03-24 16:47:16 -0700 | [diff] [blame] | 157 | inline sp<AlarmMonitor> getPeriodicAlarmMonitor() const { |
| 158 | return mPeriodicAlarmMonitor; |
| 159 | } |
| 160 | |
Yangster-mac | b0d0628 | 2018-01-05 15:44:07 -0800 | [diff] [blame] | 161 | mutable mutex mMetricsMutex; |
David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 162 | |
Yao Chen | d10f7b1 | 2017-12-18 12:53:50 -0800 | [diff] [blame] | 163 | std::unordered_map<ConfigKey, sp<MetricsManager>> mMetricsManagers; |
David Chen | de70169 | 2017-10-05 13:16:02 -0700 | [diff] [blame] | 164 | |
Tej Singh | 5a801c8 | 2019-11-01 10:45:22 -0700 | [diff] [blame] | 165 | std::unordered_map<ConfigKey, int64_t> mLastBroadcastTimes; |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 166 | |
Tej Singh | 6ede28b | 2019-01-29 17:06:54 -0800 | [diff] [blame] | 167 | // Last time we sent a broadcast to this uid that the active configs had changed. |
Tej Singh | 5a801c8 | 2019-11-01 10:45:22 -0700 | [diff] [blame] | 168 | std::unordered_map<int, int64_t> mLastActivationBroadcastTimes; |
Tej Singh | 6ede28b | 2019-01-29 17:06:54 -0800 | [diff] [blame] | 169 | |
David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 170 | // Tracks when we last checked the bytes consumed for each config key. |
Tej Singh | 5a801c8 | 2019-11-01 10:45:22 -0700 | [diff] [blame] | 171 | std::unordered_map<ConfigKey, int64_t> mLastByteSizeTimes; |
David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 172 | |
David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 173 | // Tracks which config keys has metric reports on disk |
| 174 | std::set<ConfigKey> mOnDiskDataConfigs; |
| 175 | |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 176 | sp<UidMap> mUidMap; // Reference to the UidMap to lookup app name and version for each uid. |
yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 177 | |
Chenjie Yu | e221920 | 2018-06-08 10:07:51 -0700 | [diff] [blame] | 178 | sp<StatsPullerManager> mPullerManager; // Reference to StatsPullerManager |
Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 179 | |
Yangster-mac | 932ecec | 2018-02-01 10:23:52 -0800 | [diff] [blame] | 180 | sp<AlarmMonitor> mAnomalyAlarmMonitor; |
| 181 | |
| 182 | sp<AlarmMonitor> mPeriodicAlarmMonitor; |
Yangster-mac | e2cd6d5 | 2017-11-09 20:38:30 -0800 | [diff] [blame] | 183 | |
Tej Singh | 480392f | 2019-10-23 15:53:46 -0700 | [diff] [blame] | 184 | void OnLogEvent(LogEvent* event, int64_t elapsedRealtimeNs); |
| 185 | |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 186 | void resetIfConfigTtlExpiredLocked(const int64_t timestampNs); |
| 187 | |
| 188 | void OnConfigUpdatedLocked( |
| 189 | const int64_t currentTimestampNs, const ConfigKey& key, const StatsdConfig& config); |
| 190 | |
Tej Singh | 6ede28b | 2019-01-29 17:06:54 -0800 | [diff] [blame] | 191 | void GetActiveConfigsLocked(const int uid, vector<int64_t>& outActiveConfigs); |
| 192 | |
Tej Singh | f53d445 | 2019-05-09 18:17:59 -0700 | [diff] [blame] | 193 | void WriteActiveConfigsToProtoOutputStreamLocked( |
| 194 | int64_t currentTimeNs, const DumpReportReason reason, ProtoOutputStream* proto); |
| 195 | |
| 196 | void SetConfigsActiveStateLocked(const ActiveConfigList& activeConfigList, |
| 197 | int64_t currentTimeNs); |
| 198 | |
Jeffrey Huang | 475677e | 2020-03-30 19:52:07 -0700 | [diff] [blame] | 199 | void SetMetadataStateLocked(const metadata::StatsMetadataList& statsMetadataList, |
| 200 | int64_t currentWallClockTimeNs, |
| 201 | int64_t systemElapsedTimeNs); |
| 202 | |
Jeffrey Huang | b8f5403 | 2020-03-23 13:42:42 -0700 | [diff] [blame] | 203 | void WriteMetadataToProtoLocked(int64_t currentWallClockTimeNs, |
| 204 | int64_t systemElapsedTimeNs, |
| 205 | metadata::StatsMetadataList* metadataList); |
| 206 | |
Olivier Gaillard | 6c75ecd | 2019-02-20 09:57:33 +0000 | [diff] [blame] | 207 | void WriteDataToDiskLocked(const DumpReportReason dumpReportReason, |
| 208 | const DumpLatency dumpLatency); |
Jeffrey Huang | b8f5403 | 2020-03-23 13:42:42 -0700 | [diff] [blame] | 209 | |
Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 210 | void WriteDataToDiskLocked(const ConfigKey& key, const int64_t timestampNs, |
Olivier Gaillard | 6c75ecd | 2019-02-20 09:57:33 +0000 | [diff] [blame] | 211 | const DumpReportReason dumpReportReason, |
| 212 | const DumpLatency dumpLatency); |
Yangster-mac | e68f3a5 | 2018-04-04 00:01:43 -0700 | [diff] [blame] | 213 | |
Yao Chen | 9a43b4f | 2019-04-10 10:43:20 -0700 | [diff] [blame] | 214 | void onConfigMetricsReportLocked( |
| 215 | const ConfigKey& key, const int64_t dumpTimeStampNs, |
| 216 | const bool include_current_partial_bucket, const bool erase_data, |
| 217 | const DumpReportReason dumpReportReason, const DumpLatency dumpLatency, |
| 218 | /*if dataSavedToDisk is true, it indicates the caller will write the data to disk |
| 219 | (e.g., before reboot). So no need to further persist local history.*/ |
| 220 | const bool dataSavedToDisk, vector<uint8_t>* proto); |
Yangster-mac | 8617950 | 2018-01-23 15:47:15 -0800 | [diff] [blame] | 221 | |
David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 222 | /* Check if we should send a broadcast if approaching memory limits and if we're over, we |
| 223 | * actually delete the data. */ |
Tej Singh | 480392f | 2019-10-23 15:53:46 -0700 | [diff] [blame] | 224 | void flushIfNecessaryLocked(const ConfigKey& key, MetricsManager& metricsManager); |
yro | 31eb67b | 2017-10-24 13:33:21 -0700 | [diff] [blame] | 225 | |
Yangster-mac | d40053e | 2018-01-09 16:29:22 -0800 | [diff] [blame] | 226 | // Maps the isolated uid in the log event to host uid if the log event contains uid fields. |
| 227 | void mapIsolatedUidToHostUidIfNecessaryLocked(LogEvent* event) const; |
| 228 | |
| 229 | // Handler over the isolated uid change event. |
| 230 | void onIsolatedUidChangedEventLocked(const LogEvent& event); |
| 231 | |
Jonathan Nguyen | a0e6de1 | 2020-01-28 18:33:55 -0800 | [diff] [blame] | 232 | // Handler over the binary push state changed event. |
| 233 | void onBinaryPushStateChangedEventLocked(LogEvent* event); |
| 234 | |
Jonathan Nguyen | 703c42f | 2020-02-04 15:54:26 -0800 | [diff] [blame] | 235 | // Handler over the watchdog rollback occurred event. |
| 236 | void onWatchdogRollbackOccurredLocked(LogEvent* event); |
| 237 | |
Jonathan Nguyen | a0e6de1 | 2020-01-28 18:33:55 -0800 | [diff] [blame] | 238 | // Updates train info on disk based on binary push state changed info and |
| 239 | // write disk info into parameters. |
Jonathan Nguyen | 703c42f | 2020-02-04 15:54:26 -0800 | [diff] [blame] | 240 | void getAndUpdateTrainInfoOnDisk(bool is_rollback, InstallTrainInfo* trainInfoIn); |
| 241 | |
| 242 | // Gets experiment ids on disk for associated train and updates them |
| 243 | // depending on rollback type. Then writes them back to disk and returns |
| 244 | // them. |
| 245 | std::vector<int64_t> processWatchdogRollbackOccurred(const int32_t rollbackTypeIn, |
| 246 | const string& packageName); |
Jonathan Nguyen | a0e6de1 | 2020-01-28 18:33:55 -0800 | [diff] [blame] | 247 | |
Yangster-mac | 892f3d3 | 2018-05-02 14:16:48 -0700 | [diff] [blame] | 248 | // Reset all configs. |
| 249 | void resetConfigsLocked(const int64_t timestampNs); |
| 250 | // Reset the specified configs. |
Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 251 | void resetConfigsLocked(const int64_t timestampNs, const std::vector<ConfigKey>& configs); |
| 252 | |
David Chen | 1d7b0cd | 2017-11-15 14:20:04 -0800 | [diff] [blame] | 253 | // Function used to send a broadcast so that receiver for the config key can call getData |
| 254 | // to retrieve the stored data. |
David Chen | 4894490 | 2018-05-03 10:29:11 -0700 | [diff] [blame] | 255 | std::function<bool(const ConfigKey& key)> mSendBroadcast; |
yro | 69007c8 | 2017-10-26 20:42:57 -0700 | [diff] [blame] | 256 | |
Tej Singh | 6ede28b | 2019-01-29 17:06:54 -0800 | [diff] [blame] | 257 | // Function used to send a broadcast so that receiver can be notified of which configs |
| 258 | // are currently active. |
| 259 | std::function<bool(const int& uid, const vector<int64_t>& configIds)> mSendActivationBroadcast; |
| 260 | |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 261 | const int64_t mTimeBaseNs; |
Chenjie Yu | 85ed838 | 2017-12-14 16:48:54 -0800 | [diff] [blame] | 262 | |
Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 263 | // Largest timestamp of the events that we have processed. |
| 264 | int64_t mLargestTimestampSeen = 0; |
| 265 | |
| 266 | int64_t mLastTimestampSeen = 0; |
| 267 | |
Tej Singh | 5a801c8 | 2019-11-01 10:45:22 -0700 | [diff] [blame] | 268 | int64_t mLastPullerCacheClearTimeSec = 0; |
Chenjie Yu | fa22d65 | 2018-02-05 14:37:48 -0800 | [diff] [blame] | 269 | |
Tej Singh | 42f9e06 | 2018-11-09 10:01:00 -0800 | [diff] [blame] | 270 | // Last time we wrote data to disk. |
| 271 | int64_t mLastWriteTimeNs = 0; |
| 272 | |
jianjin | 996f40d | 2019-03-29 13:53:48 -0700 | [diff] [blame] | 273 | // Last time we wrote active metrics to disk. |
| 274 | int64_t mLastActiveMetricsWriteNs = 0; |
| 275 | |
Jeffrey Huang | b8f5403 | 2020-03-23 13:42:42 -0700 | [diff] [blame] | 276 | //Last time we wrote metadata to disk. |
| 277 | int64_t mLastMetadataWriteNs = 0; |
| 278 | |
Yao Chen | 876889c | 2018-05-02 11:16:16 -0700 | [diff] [blame] | 279 | #ifdef VERY_VERBOSE_PRINTING |
| 280 | bool mPrintAllLogs = false; |
| 281 | #endif |
| 282 | |
Yao Chen | 163d260 | 2018-04-10 10:39:53 -0700 | [diff] [blame] | 283 | FRIEND_TEST(StatsLogProcessorTest, TestOutOfOrderLogs); |
David Chen | d9269e2 | 2017-12-05 13:43:51 -0800 | [diff] [blame] | 284 | FRIEND_TEST(StatsLogProcessorTest, TestRateLimitByteSize); |
| 285 | FRIEND_TEST(StatsLogProcessorTest, TestRateLimitBroadcast); |
| 286 | FRIEND_TEST(StatsLogProcessorTest, TestDropWhenByteSizeTooLarge); |
Tej Singh | 5a4727d | 2020-06-09 18:13:12 -0700 | [diff] [blame^] | 287 | FRIEND_TEST(StatsLogProcessorTest, InvalidConfigRemoved); |
Chenjie Yu | c7939cb | 2019-02-04 17:25:45 -0800 | [diff] [blame] | 288 | FRIEND_TEST(StatsLogProcessorTest, TestActiveConfigMetricDiskWriteRead); |
Chenjie Yu | a9a310e | 2019-02-06 13:40:10 -0800 | [diff] [blame] | 289 | FRIEND_TEST(StatsLogProcessorTest, TestActivationOnBoot); |
Muhammad Qureshi | 844694b | 2019-04-05 10:10:40 -0700 | [diff] [blame] | 290 | FRIEND_TEST(StatsLogProcessorTest, TestActivationOnBootMultipleActivations); |
Muhammad Qureshi | 15f8da9 | 2019-04-05 10:10:40 -0700 | [diff] [blame] | 291 | FRIEND_TEST(StatsLogProcessorTest, |
| 292 | TestActivationOnBootMultipleActivationsDifferentActivationTypes); |
Tej Singh | f53d445 | 2019-05-09 18:17:59 -0700 | [diff] [blame] | 293 | FRIEND_TEST(StatsLogProcessorTest, TestActivationsPersistAcrossSystemServerRestart); |
Chenjie Yu | c7939cb | 2019-02-04 17:25:45 -0800 | [diff] [blame] | 294 | |
Yao Chen | 8a8d16c | 2018-02-08 14:50:40 -0800 | [diff] [blame] | 295 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForSumDuration1); |
| 296 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForSumDuration2); |
| 297 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForSumDuration3); |
| 298 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForMaxDuration1); |
| 299 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForMaxDuration2); |
| 300 | FRIEND_TEST(WakelockDurationE2eTest, TestAggregatedPredicateDimensionsForMaxDuration3); |
| 301 | FRIEND_TEST(MetricConditionLinkE2eTest, TestMultiplePredicatesAndLinks1); |
| 302 | FRIEND_TEST(MetricConditionLinkE2eTest, TestMultiplePredicatesAndLinks2); |
Yangster-mac | e06cfd7 | 2018-03-10 23:22:59 -0800 | [diff] [blame] | 303 | FRIEND_TEST(AttributionE2eTest, TestAttributionMatchAndSliceByFirstUid); |
| 304 | FRIEND_TEST(AttributionE2eTest, TestAttributionMatchAndSliceByChain); |
Yangster-mac | 87718e2 | 2018-01-11 16:16:26 -0800 | [diff] [blame] | 305 | FRIEND_TEST(GaugeMetricE2eTest, TestMultipleFieldsForPushedEvent); |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 306 | FRIEND_TEST(GaugeMetricE2eTest, TestRandomSamplePulledEvents); |
| 307 | FRIEND_TEST(GaugeMetricE2eTest, TestRandomSamplePulledEvent_LateAlarm); |
Tej Singh | 597c716 | 2019-04-17 16:41:45 -0700 | [diff] [blame] | 308 | FRIEND_TEST(GaugeMetricE2eTest, TestRandomSamplePulledEventsWithActivation); |
| 309 | FRIEND_TEST(GaugeMetricE2eTest, TestRandomSamplePulledEventsNoCondition); |
Yangster-mac | 32f07af | 2018-10-13 17:08:11 -0700 | [diff] [blame] | 310 | FRIEND_TEST(GaugeMetricE2eTest, TestConditionChangeToTrueSamplePulledEvents); |
Yangster-mac | 15f6bbc | 2018-04-08 11:52:26 -0700 | [diff] [blame] | 311 | |
Yangster-mac | be10ddf | 2018-03-13 15:39:51 -0700 | [diff] [blame] | 312 | FRIEND_TEST(AnomalyDetectionE2eTest, TestSlicedCountMetric_single_bucket); |
| 313 | FRIEND_TEST(AnomalyDetectionE2eTest, TestSlicedCountMetric_multiple_buckets); |
Jeffrey Huang | b8f5403 | 2020-03-23 13:42:42 -0700 | [diff] [blame] | 314 | FRIEND_TEST(AnomalyDetectionE2eTest, TestCountMetric_save_refractory_to_disk_no_data_written); |
| 315 | FRIEND_TEST(AnomalyDetectionE2eTest, TestCountMetric_save_refractory_to_disk); |
Jeffrey Huang | 475677e | 2020-03-30 19:52:07 -0700 | [diff] [blame] | 316 | FRIEND_TEST(AnomalyDetectionE2eTest, TestCountMetric_load_refractory_from_disk); |
Yangster-mac | be10ddf | 2018-03-13 15:39:51 -0700 | [diff] [blame] | 317 | FRIEND_TEST(AnomalyDetectionE2eTest, TestDurationMetric_SUM_single_bucket); |
| 318 | FRIEND_TEST(AnomalyDetectionE2eTest, TestDurationMetric_SUM_multiple_buckets); |
| 319 | FRIEND_TEST(AnomalyDetectionE2eTest, TestDurationMetric_SUM_long_refractory_period); |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 320 | |
Yangster-mac | 684d195 | 2018-03-24 16:47:16 -0700 | [diff] [blame] | 321 | FRIEND_TEST(AlarmE2eTest, TestMultipleAlarms); |
Yangster-mac | b142cc8 | 2018-03-30 15:22:08 -0700 | [diff] [blame] | 322 | FRIEND_TEST(ConfigTtlE2eTest, TestCountMetric); |
Yangster-mac | 849dfdc2 | 2018-10-12 15:41:45 -0700 | [diff] [blame] | 323 | FRIEND_TEST(MetricActivationE2eTest, TestCountMetric); |
Muhammad Qureshi | 3a5ebf5 | 2019-03-28 12:38:21 -0700 | [diff] [blame] | 324 | FRIEND_TEST(MetricActivationE2eTest, TestCountMetricWithOneDeactivation); |
| 325 | FRIEND_TEST(MetricActivationE2eTest, TestCountMetricWithTwoDeactivations); |
Tej Singh | ee4495e | 2019-06-03 18:37:35 -0700 | [diff] [blame] | 326 | FRIEND_TEST(MetricActivationE2eTest, TestCountMetricWithSameDeactivation); |
Muhammad Qureshi | 3a5ebf5 | 2019-03-28 12:38:21 -0700 | [diff] [blame] | 327 | FRIEND_TEST(MetricActivationE2eTest, TestCountMetricWithTwoMetricsTwoDeactivations); |
Muhammad Qureshi | 18e4692 | 2019-05-24 16:38:49 -0700 | [diff] [blame] | 328 | |
tsaichristine | 70a7ee5 | 2020-05-18 10:05:09 -0700 | [diff] [blame] | 329 | FRIEND_TEST(CountMetricE2eTest, TestInitialConditionChanges); |
tsaichristine | 69000e6 | 2019-10-18 17:34:52 -0700 | [diff] [blame] | 330 | FRIEND_TEST(CountMetricE2eTest, TestSlicedState); |
| 331 | FRIEND_TEST(CountMetricE2eTest, TestSlicedStateWithMap); |
| 332 | FRIEND_TEST(CountMetricE2eTest, TestMultipleSlicedStates); |
| 333 | FRIEND_TEST(CountMetricE2eTest, TestSlicedStateWithPrimaryFields); |
tsaichristine | d21aacf | 2019-10-07 14:47:38 -0700 | [diff] [blame] | 334 | |
Muhammad Qureshi | 18e4692 | 2019-05-24 16:38:49 -0700 | [diff] [blame] | 335 | FRIEND_TEST(DurationMetricE2eTest, TestOneBucket); |
| 336 | FRIEND_TEST(DurationMetricE2eTest, TestTwoBuckets); |
| 337 | FRIEND_TEST(DurationMetricE2eTest, TestWithActivation); |
| 338 | FRIEND_TEST(DurationMetricE2eTest, TestWithCondition); |
| 339 | FRIEND_TEST(DurationMetricE2eTest, TestWithSlicedCondition); |
| 340 | FRIEND_TEST(DurationMetricE2eTest, TestWithActivationAndSlicedCondition); |
tsaichristine | 1449fa4 | 2020-01-02 12:12:05 -0800 | [diff] [blame] | 341 | FRIEND_TEST(DurationMetricE2eTest, TestWithSlicedState); |
| 342 | FRIEND_TEST(DurationMetricE2eTest, TestWithConditionAndSlicedState); |
| 343 | FRIEND_TEST(DurationMetricE2eTest, TestWithSlicedStateMapped); |
| 344 | FRIEND_TEST(DurationMetricE2eTest, TestSlicedStatePrimaryFieldsNotSubsetDimInWhat); |
| 345 | FRIEND_TEST(DurationMetricE2eTest, TestWithSlicedStatePrimaryFieldsSubset); |
tsaichristine | c876b49 | 2019-12-10 13:47:05 -0800 | [diff] [blame] | 346 | |
tsaichristine | 70a7ee5 | 2020-05-18 10:05:09 -0700 | [diff] [blame] | 347 | FRIEND_TEST(ValueMetricE2eTest, TestInitialConditionChanges); |
| 348 | FRIEND_TEST(ValueMetricE2eTest, TestPulledEvents); |
| 349 | FRIEND_TEST(ValueMetricE2eTest, TestPulledEvents_LateAlarm); |
| 350 | FRIEND_TEST(ValueMetricE2eTest, TestPulledEvents_WithActivation); |
tsaichristine | c876b49 | 2019-12-10 13:47:05 -0800 | [diff] [blame] | 351 | FRIEND_TEST(ValueMetricE2eTest, TestInitWithSlicedState); |
| 352 | FRIEND_TEST(ValueMetricE2eTest, TestInitWithSlicedState_WithDimensions); |
| 353 | FRIEND_TEST(ValueMetricE2eTest, TestInitWithSlicedState_WithIncorrectDimensions); |
Yao Chen | ab273e2 | 2017-09-06 12:53:50 -0700 | [diff] [blame] | 354 | }; |
Bookatz | 906a35c | 2017-09-20 15:26:44 -0700 | [diff] [blame] | 355 | |
Yao Chen | ef99c4f | 2017-09-22 16:26:54 -0700 | [diff] [blame] | 356 | } // namespace statsd |
| 357 | } // namespace os |
| 358 | } // namespace android |