Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -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 | */ |
| 16 | |
| 17 | #include "config/ConfigManager.h" |
| 18 | |
| 19 | #include "stats_util.h" |
| 20 | |
| 21 | #include <vector> |
| 22 | |
| 23 | #include <stdio.h> |
| 24 | |
| 25 | namespace android { |
| 26 | namespace os { |
| 27 | namespace statsd { |
| 28 | |
| 29 | static StatsdConfig build_fake_config(); |
| 30 | |
| 31 | ConfigManager::ConfigManager() { |
| 32 | } |
| 33 | |
| 34 | ConfigManager::~ConfigManager() { |
| 35 | } |
| 36 | |
| 37 | void ConfigManager::Startup() { |
| 38 | // TODO: Implement me -- read from storage and call onto all of the listeners. |
| 39 | // Instead, we'll just make a fake one. |
| 40 | |
| 41 | // this should be called from StatsService when it receives a statsd_config |
| 42 | UpdateConfig(ConfigKey(0, "fake"), build_fake_config()); |
| 43 | } |
| 44 | |
| 45 | void ConfigManager::AddListener(const sp<ConfigListener>& listener) { |
| 46 | mListeners.push_back(listener); |
| 47 | } |
| 48 | |
| 49 | void ConfigManager::UpdateConfig(const ConfigKey& key, const StatsdConfig& config) { |
| 50 | // Add to map |
| 51 | mConfigs[key] = config; |
| 52 | // Why doesn't this work? mConfigs.insert({key, config}); |
| 53 | |
| 54 | // Save to disk |
| 55 | update_saved_configs(); |
| 56 | |
| 57 | // Tell everyone |
| 58 | for (auto& listener : mListeners) { |
| 59 | listener->OnConfigUpdated(key, config); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | void ConfigManager::RemoveConfig(const ConfigKey& key) { |
| 64 | unordered_map<ConfigKey, StatsdConfig>::iterator it = mConfigs.find(key); |
| 65 | if (it != mConfigs.end()) { |
| 66 | // Remove from map |
| 67 | mConfigs.erase(it); |
| 68 | |
| 69 | // Save to disk |
| 70 | update_saved_configs(); |
| 71 | |
| 72 | // Tell everyone |
| 73 | for (auto& listener : mListeners) { |
| 74 | listener->OnConfigRemoved(key); |
| 75 | } |
| 76 | } |
| 77 | // If we didn't find it, just quietly ignore it. |
| 78 | } |
| 79 | |
| 80 | void ConfigManager::RemoveConfigs(int uid) { |
| 81 | vector<ConfigKey> removed; |
| 82 | |
| 83 | for (auto it = mConfigs.begin(); it != mConfigs.end();) { |
| 84 | // Remove from map |
| 85 | if (it->first.GetUid() == uid) { |
| 86 | removed.push_back(it->first); |
| 87 | it = mConfigs.erase(it); |
| 88 | } else { |
| 89 | it++; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | // Remove separately so if they do anything in the callback they can't mess up our iteration. |
| 94 | for (auto& key : removed) { |
| 95 | // Tell everyone |
| 96 | for (auto& listener : mListeners) { |
| 97 | listener->OnConfigRemoved(key); |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | void ConfigManager::Dump(FILE* out) { |
| 103 | fprintf(out, "CONFIGURATIONS (%d)\n", (int)mConfigs.size()); |
| 104 | fprintf(out, " uid name\n"); |
| 105 | for (unordered_map<ConfigKey, StatsdConfig>::const_iterator it = mConfigs.begin(); |
| 106 | it != mConfigs.end(); it++) { |
| 107 | fprintf(out, " %6d %s\n", it->first.GetUid(), it->first.GetName().c_str()); |
| 108 | // TODO: Print the contents of the config too. |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | void ConfigManager::update_saved_configs() { |
| 113 | // TODO: Implement me -- write to disk. |
| 114 | } |
| 115 | |
| 116 | static StatsdConfig build_fake_config() { |
| 117 | // HACK: Hard code a test metric for counting screen on events... |
| 118 | StatsdConfig config; |
| 119 | config.set_config_id(12345L); |
| 120 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 121 | int WAKE_LOCK_TAG_ID = 11; |
| 122 | int WAKE_LOCK_UID_KEY_ID = 1; |
| 123 | int WAKE_LOCK_STATE_KEY = 2; |
| 124 | int WAKE_LOCK_ACQUIRE_VALUE = 1; |
| 125 | int WAKE_LOCK_RELEASE_VALUE = 0; |
| 126 | |
| 127 | int APP_USAGE_ID = 12345; |
| 128 | int APP_USAGE_UID_KEY_ID = 1; |
| 129 | int APP_USAGE_STATE_KEY = 2; |
| 130 | int APP_USAGE_FOREGROUND = 1; |
| 131 | int APP_USAGE_BACKGROUND = 0; |
| 132 | |
Bookatz | c1a050a | 2017-10-10 15:49:28 -0700 | [diff] [blame] | 133 | int SCREEN_EVENT_TAG_ID = 29; |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 134 | int SCREEN_EVENT_STATE_KEY = 1; |
| 135 | int SCREEN_EVENT_ON_VALUE = 2; |
| 136 | int SCREEN_EVENT_OFF_VALUE = 1; |
| 137 | |
Bookatz | c1a050a | 2017-10-10 15:49:28 -0700 | [diff] [blame] | 138 | int UID_PROCESS_STATE_TAG_ID = 27; |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 139 | int UID_PROCESS_STATE_UID_KEY = 1; |
| 140 | |
| 141 | // Count Screen ON events. |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 142 | CountMetric* metric = config.add_count_metric(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 143 | metric->set_metric_id(1); |
| 144 | metric->set_what("SCREEN_TURNED_ON"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 145 | metric->mutable_bucket()->set_bucket_size_millis(30 * 1000L); |
| 146 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 147 | // Count process state changes, slice by uid. |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 148 | metric = config.add_count_metric(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 149 | metric->set_metric_id(2); |
| 150 | metric->set_what("PROCESS_STATE_CHANGE"); |
| 151 | metric->mutable_bucket()->set_bucket_size_millis(30 * 1000L); |
| 152 | KeyMatcher* keyMatcher = metric->add_dimension(); |
| 153 | keyMatcher->set_key(UID_PROCESS_STATE_UID_KEY); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 154 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 155 | // Count process state changes, slice by uid, while SCREEN_IS_OFF |
| 156 | metric = config.add_count_metric(); |
| 157 | metric->set_metric_id(3); |
| 158 | metric->set_what("PROCESS_STATE_CHANGE"); |
| 159 | metric->mutable_bucket()->set_bucket_size_millis(30 * 1000L); |
| 160 | keyMatcher = metric->add_dimension(); |
| 161 | keyMatcher->set_key(UID_PROCESS_STATE_UID_KEY); |
| 162 | metric->set_condition("SCREEN_IS_OFF"); |
| 163 | |
| 164 | // Count wake lock, slice by uid, while SCREEN_IS_OFF and app in background |
| 165 | metric = config.add_count_metric(); |
| 166 | metric->set_metric_id(4); |
| 167 | metric->set_what("APP_GET_WL"); |
| 168 | metric->mutable_bucket()->set_bucket_size_millis(30 * 1000L); |
| 169 | keyMatcher = metric->add_dimension(); |
| 170 | keyMatcher->set_key(WAKE_LOCK_UID_KEY_ID); |
| 171 | metric->set_condition("APP_IS_BACKGROUND_AND_SCREEN_ON"); |
| 172 | EventConditionLink* link = metric->add_links(); |
| 173 | link->set_condition("APP_IS_BACKGROUND"); |
| 174 | link->add_key_in_main()->set_key(WAKE_LOCK_UID_KEY_ID); |
| 175 | link->add_key_in_condition()->set_key(APP_USAGE_UID_KEY_ID); |
| 176 | |
| 177 | // Duration of an app holding wl, while screen on and app in background |
| 178 | DurationMetric* durationMetric = config.add_duration_metric(); |
| 179 | durationMetric->set_metric_id(5); |
| 180 | durationMetric->set_start("APP_GET_WL"); |
| 181 | durationMetric->set_stop("APP_RELEASE_WL"); |
| 182 | durationMetric->mutable_bucket()->set_bucket_size_millis(30 * 1000L); |
| 183 | durationMetric->set_type(DurationMetric_AggregationType_DURATION_SUM); |
| 184 | keyMatcher = durationMetric->add_dimension(); |
| 185 | keyMatcher->set_key(WAKE_LOCK_UID_KEY_ID); |
| 186 | durationMetric->set_predicate("APP_IS_BACKGROUND_AND_SCREEN_ON"); |
| 187 | link = durationMetric->add_links(); |
| 188 | link->set_condition("APP_IS_BACKGROUND"); |
| 189 | link->add_key_in_main()->set_key(WAKE_LOCK_UID_KEY_ID); |
| 190 | link->add_key_in_condition()->set_key(APP_USAGE_UID_KEY_ID); |
| 191 | |
| 192 | // Event matchers............ |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 193 | LogEntryMatcher* eventMatcher = config.add_log_entry_matcher(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 194 | eventMatcher->set_name("SCREEN_TURNED_ON"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 195 | SimpleLogEntryMatcher* simpleLogEntryMatcher = eventMatcher->mutable_simple_log_entry_matcher(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 196 | simpleLogEntryMatcher->set_tag(SCREEN_EVENT_TAG_ID); |
| 197 | KeyValueMatcher* keyValueMatcher = simpleLogEntryMatcher->add_key_value_matcher(); |
| 198 | keyValueMatcher->mutable_key_matcher()->set_key(SCREEN_EVENT_STATE_KEY); |
| 199 | keyValueMatcher->set_eq_int(SCREEN_EVENT_ON_VALUE); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 200 | |
| 201 | eventMatcher = config.add_log_entry_matcher(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 202 | eventMatcher->set_name("SCREEN_TURNED_OFF"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 203 | simpleLogEntryMatcher = eventMatcher->mutable_simple_log_entry_matcher(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 204 | simpleLogEntryMatcher->set_tag(SCREEN_EVENT_TAG_ID); |
| 205 | keyValueMatcher = simpleLogEntryMatcher->add_key_value_matcher(); |
| 206 | keyValueMatcher->mutable_key_matcher()->set_key(SCREEN_EVENT_STATE_KEY); |
| 207 | keyValueMatcher->set_eq_int(SCREEN_EVENT_OFF_VALUE); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 208 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 209 | eventMatcher = config.add_log_entry_matcher(); |
| 210 | eventMatcher->set_name("PROCESS_STATE_CHANGE"); |
| 211 | simpleLogEntryMatcher = eventMatcher->mutable_simple_log_entry_matcher(); |
| 212 | simpleLogEntryMatcher->set_tag(UID_PROCESS_STATE_TAG_ID); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 213 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 214 | eventMatcher = config.add_log_entry_matcher(); |
| 215 | eventMatcher->set_name("APP_GOES_BACKGROUND"); |
| 216 | simpleLogEntryMatcher = eventMatcher->mutable_simple_log_entry_matcher(); |
| 217 | simpleLogEntryMatcher->set_tag(APP_USAGE_ID); |
| 218 | keyValueMatcher = simpleLogEntryMatcher->add_key_value_matcher(); |
| 219 | keyValueMatcher->mutable_key_matcher()->set_key(APP_USAGE_STATE_KEY); |
| 220 | keyValueMatcher->set_eq_int(APP_USAGE_BACKGROUND); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 221 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 222 | eventMatcher = config.add_log_entry_matcher(); |
| 223 | eventMatcher->set_name("APP_GOES_FOREGROUND"); |
| 224 | simpleLogEntryMatcher = eventMatcher->mutable_simple_log_entry_matcher(); |
| 225 | simpleLogEntryMatcher->set_tag(APP_USAGE_ID); |
| 226 | keyValueMatcher = simpleLogEntryMatcher->add_key_value_matcher(); |
| 227 | keyValueMatcher->mutable_key_matcher()->set_key(APP_USAGE_STATE_KEY); |
| 228 | keyValueMatcher->set_eq_int(APP_USAGE_FOREGROUND); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 229 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 230 | eventMatcher = config.add_log_entry_matcher(); |
| 231 | eventMatcher->set_name("APP_GET_WL"); |
| 232 | simpleLogEntryMatcher = eventMatcher->mutable_simple_log_entry_matcher(); |
| 233 | simpleLogEntryMatcher->set_tag(WAKE_LOCK_TAG_ID); |
| 234 | keyValueMatcher = simpleLogEntryMatcher->add_key_value_matcher(); |
| 235 | keyValueMatcher->mutable_key_matcher()->set_key(WAKE_LOCK_STATE_KEY); |
| 236 | keyValueMatcher->set_eq_int(WAKE_LOCK_ACQUIRE_VALUE); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 237 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 238 | eventMatcher = config.add_log_entry_matcher(); |
| 239 | eventMatcher->set_name("APP_RELEASE_WL"); |
| 240 | simpleLogEntryMatcher = eventMatcher->mutable_simple_log_entry_matcher(); |
| 241 | simpleLogEntryMatcher->set_tag(WAKE_LOCK_TAG_ID); |
| 242 | keyValueMatcher = simpleLogEntryMatcher->add_key_value_matcher(); |
| 243 | keyValueMatcher->mutable_key_matcher()->set_key(WAKE_LOCK_STATE_KEY); |
| 244 | keyValueMatcher->set_eq_int(WAKE_LOCK_RELEASE_VALUE); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 245 | |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 246 | // Conditions............. |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 247 | Condition* condition = config.add_condition(); |
| 248 | condition->set_name("SCREEN_IS_ON"); |
| 249 | SimpleCondition* simpleCondition = condition->mutable_simple_condition(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 250 | simpleCondition->set_start("SCREEN_TURNED_ON"); |
| 251 | simpleCondition->set_stop("SCREEN_TURNED_OFF"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 252 | |
| 253 | condition = config.add_condition(); |
| 254 | condition->set_name("SCREEN_IS_OFF"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 255 | simpleCondition = condition->mutable_simple_condition(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 256 | simpleCondition->set_start("SCREEN_TURNED_OFF"); |
| 257 | simpleCondition->set_stop("SCREEN_TURNED_ON"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 258 | |
| 259 | condition = config.add_condition(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 260 | condition->set_name("APP_IS_BACKGROUND"); |
| 261 | simpleCondition = condition->mutable_simple_condition(); |
| 262 | simpleCondition->set_start("APP_GOES_BACKGROUND"); |
| 263 | simpleCondition->set_stop("APP_GOES_FOREGROUND"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 264 | |
| 265 | condition = config.add_condition(); |
Yao Chen | 729093d | 2017-10-16 10:33:26 -0700 | [diff] [blame] | 266 | condition->set_name("APP_IS_BACKGROUND_AND_SCREEN_ON"); |
| 267 | Condition_Combination* combination_condition = condition->mutable_combination(); |
| 268 | combination_condition->set_operation(LogicalOperation::AND); |
| 269 | combination_condition->add_condition("APP_IS_BACKGROUND"); |
| 270 | combination_condition->add_condition("SCREEN_IS_ON"); |
Joe Onorato | 9fc9edf | 2017-10-15 20:08:52 -0700 | [diff] [blame] | 271 | |
| 272 | return config; |
| 273 | } |
| 274 | |
| 275 | } // namespace statsd |
| 276 | } // namespace os |
| 277 | } // namespace android |