| /* |
| * Copyright (C) 2017 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #define DEBUG false // STOPSHIP if true |
| #include "Log.h" |
| |
| #include "StatsPuller.h" |
| #include "StatsPullerManager.h" |
| #include "guardrail/StatsdStats.h" |
| #include "puller_util.h" |
| #include "stats_log_util.h" |
| |
| namespace android { |
| namespace os { |
| namespace statsd { |
| |
| using std::lock_guard; |
| |
| sp<UidMap> StatsPuller::mUidMap = nullptr; |
| void StatsPuller::SetUidMap(const sp<UidMap>& uidMap) { mUidMap = uidMap; } |
| |
| StatsPuller::StatsPuller(const int tagId) |
| : mTagId(tagId), mLastPullTimeNs(0) { |
| } |
| |
| bool StatsPuller::Pull(std::vector<std::shared_ptr<LogEvent>>* data) { |
| lock_guard<std::mutex> lock(mLock); |
| int64_t elapsedTimeNs = getElapsedRealtimeNs(); |
| StatsdStats::getInstance().notePull(mTagId); |
| const bool shouldUseCache = |
| elapsedTimeNs - mLastPullTimeNs < |
| StatsPullerManager::kAllPullAtomInfo.at({.atomTag = mTagId}).coolDownNs; |
| if (shouldUseCache) { |
| if (mHasGoodData) { |
| (*data) = mCachedData; |
| StatsdStats::getInstance().notePullFromCache(mTagId); |
| } |
| return mHasGoodData; |
| } |
| |
| if (mLastPullTimeNs > 0) { |
| StatsdStats::getInstance().updateMinPullIntervalSec( |
| mTagId, (elapsedTimeNs - mLastPullTimeNs) / NS_PER_SEC); |
| } |
| mCachedData.clear(); |
| mLastPullTimeNs = elapsedTimeNs; |
| mHasGoodData = PullInternal(&mCachedData); |
| if (!mHasGoodData) { |
| return mHasGoodData; |
| } |
| const int64_t pullDurationNs = getElapsedRealtimeNs() - elapsedTimeNs; |
| StatsdStats::getInstance().notePullTime(mTagId, pullDurationNs); |
| const bool pullTimeOut = |
| pullDurationNs > |
| StatsPullerManager::kAllPullAtomInfo.at({.atomTag = mTagId}).pullTimeoutNs; |
| if (pullTimeOut) { |
| // Something went wrong. Discard the data. |
| clearCacheLocked(); |
| mHasGoodData = false; |
| StatsdStats::getInstance().notePullTimeout(mTagId); |
| ALOGW("Pull for atom %d exceeds timeout %lld nano seconds.", mTagId, |
| (long long)pullDurationNs); |
| return mHasGoodData; |
| } |
| |
| if (mCachedData.size() > 0) { |
| mapAndMergeIsolatedUidsToHostUid(mCachedData, mUidMap, mTagId); |
| } |
| |
| (*data) = mCachedData; |
| return mHasGoodData; |
| } |
| |
| int StatsPuller::ForceClearCache() { |
| return clearCache(); |
| } |
| |
| int StatsPuller::clearCache() { |
| lock_guard<std::mutex> lock(mLock); |
| return clearCacheLocked(); |
| } |
| |
| int StatsPuller::clearCacheLocked() { |
| int ret = mCachedData.size(); |
| mCachedData.clear(); |
| mLastPullTimeNs = 0; |
| return ret; |
| } |
| |
| int StatsPuller::ClearCacheIfNecessary(int64_t timestampNs) { |
| if (timestampNs - mLastPullTimeNs > |
| StatsPullerManager::kAllPullAtomInfo.at({.atomTag = mTagId}).coolDownNs) { |
| return clearCache(); |
| } else { |
| return 0; |
| } |
| } |
| |
| } // namespace statsd |
| } // namespace os |
| } // namespace android |