blob: ea776fae05833639b98197a220e264f88f3c000d [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
tsaichristinec876b492019-12-10 13:47:05 -080031void StateManager::clear() {
32 mStateTrackers.clear();
33}
34
tsaichristine10978642019-09-10 14:12:49 -070035void StateManager::onLogEvent(const LogEvent& event) {
tsaichristine10978642019-09-10 14:12:49 -070036 if (mStateTrackers.find(event.GetTagId()) != mStateTrackers.end()) {
37 mStateTrackers[event.GetTagId()]->onLogEvent(event);
38 }
39}
40
tsaichristinec876b492019-12-10 13:47:05 -080041bool StateManager::registerListener(const int32_t atomId, wp<StateListener> listener) {
tsaichristine7192e0a2019-12-06 02:20:00 -080042 // Check if state tracker already exists.
tsaichristined21aacf2019-10-07 14:47:38 -070043 if (mStateTrackers.find(atomId) == mStateTrackers.end()) {
tsaichristine7192e0a2019-12-06 02:20:00 -080044 // Create a new state tracker iff atom is a state atom.
tsaichristined21aacf2019-10-07 14:47:38 -070045 auto it = android::util::AtomsInfo::kStateAtomsFieldOptions.find(atomId);
tsaichristine10978642019-09-10 14:12:49 -070046 if (it != android::util::AtomsInfo::kStateAtomsFieldOptions.end()) {
tsaichristined21aacf2019-10-07 14:47:38 -070047 mStateTrackers[atomId] = new StateTracker(atomId, it->second);
tsaichristine10978642019-09-10 14:12:49 -070048 } else {
tsaichristined21aacf2019-10-07 14:47:38 -070049 ALOGE("StateManager cannot register listener, Atom %d is not a state atom", atomId);
tsaichristine10978642019-09-10 14:12:49 -070050 return false;
51 }
52 }
tsaichristined21aacf2019-10-07 14:47:38 -070053 mStateTrackers[atomId]->registerListener(listener);
tsaichristine10978642019-09-10 14:12:49 -070054 return true;
55}
56
tsaichristinec876b492019-12-10 13:47:05 -080057void StateManager::unregisterListener(const int32_t atomId, wp<StateListener> listener) {
tsaichristine10978642019-09-10 14:12:49 -070058 std::unique_lock<std::mutex> lock(mMutex);
59
60 // Hold the sp<> until the lock is released so that ~StateTracker() is
61 // not called while the lock is held.
62 sp<StateTracker> toRemove;
63
64 // Unregister listener from correct StateTracker
tsaichristined21aacf2019-10-07 14:47:38 -070065 auto it = mStateTrackers.find(atomId);
tsaichristine10978642019-09-10 14:12:49 -070066 if (it != mStateTrackers.end()) {
67 it->second->unregisterListener(listener);
68
69 // Remove the StateTracker if it has no listeners
70 if (it->second->getListenersCount() == 0) {
71 toRemove = it->second;
72 mStateTrackers.erase(it);
73 }
74 } else {
75 ALOGE("StateManager cannot unregister listener, StateTracker for atom %d does not exist",
tsaichristined21aacf2019-10-07 14:47:38 -070076 atomId);
tsaichristine10978642019-09-10 14:12:49 -070077 }
78 lock.unlock();
79}
80
tsaichristinec876b492019-12-10 13:47:05 -080081bool StateManager::getStateValue(const int32_t atomId, const HashableDimensionKey& key,
tsaichristine69000e62019-10-18 17:34:52 -070082 FieldValue* output) const {
tsaichristine69000e62019-10-18 17:34:52 -070083 auto it = mStateTrackers.find(atomId);
84 if (it != mStateTrackers.end()) {
85 return it->second->getStateValue(key, output);
86 }
87 return false;
tsaichristine10978642019-09-10 14:12:49 -070088}
89
90} // namespace statsd
91} // namespace os
92} // namespace android