blob: 80d398339ebb9bcdfa473800a2e3e85545177d0e [file] [log] [blame]
tsaichristine10978642019-09-10 14:12:49 -07001/*
2 * Copyright (C) 2019, 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#define DEBUG false // STOPSHIP if true
18#include "Log.h"
19
20#include "StateManager.h"
21
22namespace android {
23namespace os {
24namespace statsd {
25
26StateManager& StateManager::getInstance() {
27 static StateManager sStateManager;
28 return sStateManager;
29}
30
31void StateManager::onLogEvent(const LogEvent& event) {
tsaichristine10978642019-09-10 14:12:49 -070032 if (mStateTrackers.find(event.GetTagId()) != mStateTrackers.end()) {
33 mStateTrackers[event.GetTagId()]->onLogEvent(event);
34 }
35}
36
tsaichristine69000e62019-10-18 17:34:52 -070037bool StateManager::registerListener(int32_t atomId, wp<StateListener> listener) {
tsaichristine7192e0a2019-12-06 02:20:00 -080038 // Check if state tracker already exists.
tsaichristined21aacf2019-10-07 14:47:38 -070039 if (mStateTrackers.find(atomId) == mStateTrackers.end()) {
tsaichristine7192e0a2019-12-06 02:20:00 -080040 // Create a new state tracker iff atom is a state atom.
tsaichristined21aacf2019-10-07 14:47:38 -070041 auto it = android::util::AtomsInfo::kStateAtomsFieldOptions.find(atomId);
tsaichristine10978642019-09-10 14:12:49 -070042 if (it != android::util::AtomsInfo::kStateAtomsFieldOptions.end()) {
tsaichristined21aacf2019-10-07 14:47:38 -070043 mStateTrackers[atomId] = new StateTracker(atomId, it->second);
tsaichristine10978642019-09-10 14:12:49 -070044 } else {
tsaichristined21aacf2019-10-07 14:47:38 -070045 ALOGE("StateManager cannot register listener, Atom %d is not a state atom", atomId);
tsaichristine10978642019-09-10 14:12:49 -070046 return false;
47 }
48 }
tsaichristined21aacf2019-10-07 14:47:38 -070049 mStateTrackers[atomId]->registerListener(listener);
tsaichristine10978642019-09-10 14:12:49 -070050 return true;
51}
52
tsaichristine69000e62019-10-18 17:34:52 -070053void StateManager::unregisterListener(int32_t atomId, wp<StateListener> listener) {
tsaichristine10978642019-09-10 14:12:49 -070054 std::unique_lock<std::mutex> lock(mMutex);
55
56 // Hold the sp<> until the lock is released so that ~StateTracker() is
57 // not called while the lock is held.
58 sp<StateTracker> toRemove;
59
60 // Unregister listener from correct StateTracker
tsaichristined21aacf2019-10-07 14:47:38 -070061 auto it = mStateTrackers.find(atomId);
tsaichristine10978642019-09-10 14:12:49 -070062 if (it != mStateTrackers.end()) {
63 it->second->unregisterListener(listener);
64
65 // Remove the StateTracker if it has no listeners
66 if (it->second->getListenersCount() == 0) {
67 toRemove = it->second;
68 mStateTrackers.erase(it);
69 }
70 } else {
71 ALOGE("StateManager cannot unregister listener, StateTracker for atom %d does not exist",
tsaichristined21aacf2019-10-07 14:47:38 -070072 atomId);
tsaichristine10978642019-09-10 14:12:49 -070073 }
74 lock.unlock();
75}
76
tsaichristine69000e62019-10-18 17:34:52 -070077bool StateManager::getStateValue(int32_t atomId, const HashableDimensionKey& key,
78 FieldValue* output) const {
tsaichristine69000e62019-10-18 17:34:52 -070079 auto it = mStateTrackers.find(atomId);
80 if (it != mStateTrackers.end()) {
81 return it->second->getStateValue(key, output);
82 }
83 return false;
tsaichristine10978642019-09-10 14:12:49 -070084}
85
86} // namespace statsd
87} // namespace os
88} // namespace android