blob: 2fa28c9846fd2b52172ffee42676f815adb00a07 [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) {
32 std::lock_guard<std::mutex> lock(mMutex);
33 if (mStateTrackers.find(event.GetTagId()) != mStateTrackers.end()) {
34 mStateTrackers[event.GetTagId()]->onLogEvent(event);
35 }
36}
37
tsaichristine69000e62019-10-18 17:34:52 -070038bool StateManager::registerListener(int32_t atomId, wp<StateListener> listener) {
tsaichristine10978642019-09-10 14:12:49 -070039 std::lock_guard<std::mutex> lock(mMutex);
40
41 // Check if state tracker already exists
tsaichristined21aacf2019-10-07 14:47:38 -070042 if (mStateTrackers.find(atomId) == mStateTrackers.end()) {
tsaichristine10978642019-09-10 14:12:49 -070043 // Create a new state tracker iff atom is a state atom
tsaichristined21aacf2019-10-07 14:47:38 -070044 auto it = android::util::AtomsInfo::kStateAtomsFieldOptions.find(atomId);
tsaichristine10978642019-09-10 14:12:49 -070045 if (it != android::util::AtomsInfo::kStateAtomsFieldOptions.end()) {
tsaichristined21aacf2019-10-07 14:47:38 -070046 mStateTrackers[atomId] = new StateTracker(atomId, it->second);
tsaichristine10978642019-09-10 14:12:49 -070047 } else {
tsaichristined21aacf2019-10-07 14:47:38 -070048 ALOGE("StateManager cannot register listener, Atom %d is not a state atom", atomId);
tsaichristine10978642019-09-10 14:12:49 -070049 return false;
50 }
51 }
tsaichristined21aacf2019-10-07 14:47:38 -070052 mStateTrackers[atomId]->registerListener(listener);
tsaichristine10978642019-09-10 14:12:49 -070053 return true;
54}
55
tsaichristine69000e62019-10-18 17:34:52 -070056void StateManager::unregisterListener(int32_t atomId, wp<StateListener> listener) {
tsaichristine10978642019-09-10 14:12:49 -070057 std::unique_lock<std::mutex> lock(mMutex);
58
59 // Hold the sp<> until the lock is released so that ~StateTracker() is
60 // not called while the lock is held.
61 sp<StateTracker> toRemove;
62
63 // Unregister listener from correct StateTracker
tsaichristined21aacf2019-10-07 14:47:38 -070064 auto it = mStateTrackers.find(atomId);
tsaichristine10978642019-09-10 14:12:49 -070065 if (it != mStateTrackers.end()) {
66 it->second->unregisterListener(listener);
67
68 // Remove the StateTracker if it has no listeners
69 if (it->second->getListenersCount() == 0) {
70 toRemove = it->second;
71 mStateTrackers.erase(it);
72 }
73 } else {
74 ALOGE("StateManager cannot unregister listener, StateTracker for atom %d does not exist",
tsaichristined21aacf2019-10-07 14:47:38 -070075 atomId);
tsaichristine10978642019-09-10 14:12:49 -070076 }
77 lock.unlock();
78}
79
tsaichristine69000e62019-10-18 17:34:52 -070080bool StateManager::getStateValue(int32_t atomId, const HashableDimensionKey& key,
81 FieldValue* output) const {
tsaichristine10978642019-09-10 14:12:49 -070082 std::lock_guard<std::mutex> lock(mMutex);
tsaichristine10978642019-09-10 14:12:49 -070083
tsaichristine69000e62019-10-18 17:34:52 -070084 auto it = mStateTrackers.find(atomId);
85 if (it != mStateTrackers.end()) {
86 return it->second->getStateValue(key, output);
87 }
88 return false;
tsaichristine10978642019-09-10 14:12:49 -070089}
90
91} // namespace statsd
92} // namespace os
93} // namespace android