Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 20 | #include "StatsCallbackPuller.h" |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 21 | #include "PullResultReceiver.h" |
| 22 | #include "StatsPullerManager.h" |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 23 | #include "logd/LogEvent.h" |
| 24 | #include "stats_log_util.h" |
| 25 | |
Ruchir Rastogi | e449b0c | 2020-02-10 17:40:09 -0800 | [diff] [blame] | 26 | #include <aidl/android/util/StatsEventParcel.h> |
| 27 | |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 28 | using namespace std; |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 29 | |
Ruchir Rastogi | e449b0c | 2020-02-10 17:40:09 -0800 | [diff] [blame] | 30 | using Status = ::ndk::ScopedAStatus; |
| 31 | using aidl::android::util::StatsEventParcel; |
| 32 | using ::ndk::SharedRefBase; |
| 33 | |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 34 | namespace android { |
| 35 | namespace os { |
| 36 | namespace statsd { |
| 37 | |
Ruchir Rastogi | e449b0c | 2020-02-10 17:40:09 -0800 | [diff] [blame] | 38 | StatsCallbackPuller::StatsCallbackPuller(int tagId, const shared_ptr<IPullAtomCallback>& callback, |
Tej Singh | 5b4951b | 2020-01-24 13:23:56 -0800 | [diff] [blame] | 39 | const int64_t coolDownNs, int64_t timeoutNs, |
| 40 | const vector<int> additiveFields) |
| 41 | : StatsPuller(tagId, coolDownNs, timeoutNs, additiveFields), mCallback(callback) { |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 42 | VLOG("StatsCallbackPuller created for tag %d", tagId); |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | bool StatsCallbackPuller::PullInternal(vector<shared_ptr<LogEvent>>* data) { |
Tej Singh | 8f35860 | 2020-01-15 16:05:39 -0800 | [diff] [blame] | 46 | VLOG("StatsCallbackPuller called for tag %d", mTagId); |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 47 | if(mCallback == nullptr) { |
| 48 | ALOGW("No callback registered"); |
| 49 | return false; |
| 50 | } |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 51 | |
| 52 | // Shared variables needed in the result receiver. |
| 53 | shared_ptr<mutex> cv_mutex = make_shared<mutex>(); |
| 54 | shared_ptr<condition_variable> cv = make_shared<condition_variable>(); |
| 55 | shared_ptr<bool> pullFinish = make_shared<bool>(false); |
| 56 | shared_ptr<bool> pullSuccess = make_shared<bool>(false); |
| 57 | shared_ptr<vector<shared_ptr<LogEvent>>> sharedData = |
| 58 | make_shared<vector<shared_ptr<LogEvent>>>(); |
| 59 | |
Ruchir Rastogi | e449b0c | 2020-02-10 17:40:09 -0800 | [diff] [blame] | 60 | shared_ptr<PullResultReceiver> resultReceiver = SharedRefBase::make<PullResultReceiver>( |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 61 | [cv_mutex, cv, pullFinish, pullSuccess, sharedData]( |
Ruchir Rastogi | cd9dd94 | 2019-11-27 15:26:03 -0800 | [diff] [blame] | 62 | int32_t atomTag, bool success, const vector<StatsEventParcel>& output) { |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 63 | // This is the result of the pull, executing in a statsd binder thread. |
| 64 | // The pull could have taken a long time, and we should only modify |
| 65 | // data (the output param) if the pointer is in scope and the pull did not time out. |
| 66 | { |
| 67 | lock_guard<mutex> lk(*cv_mutex); |
Ruchir Rastogi | cd9dd94 | 2019-11-27 15:26:03 -0800 | [diff] [blame] | 68 | for (const StatsEventParcel& parcel: output) { |
Ruchir Rastogi | e449b0c | 2020-02-10 17:40:09 -0800 | [diff] [blame] | 69 | uint8_t* buf = reinterpret_cast<uint8_t*>( |
| 70 | const_cast<int8_t*>(parcel.buffer.data())); |
Tej Singh | 8981763 | 2019-12-09 16:58:08 -0800 | [diff] [blame] | 71 | shared_ptr<LogEvent> event = make_shared<LogEvent>( |
Jeffrey Huang | 1e4368a | 2020-02-18 12:28:52 -0800 | [diff] [blame] | 72 | buf, parcel.buffer.size(), /*uid=*/-1, /*pid=*/-1); |
Ruchir Rastogi | cd9dd94 | 2019-11-27 15:26:03 -0800 | [diff] [blame] | 73 | sharedData->push_back(event); |
| 74 | } |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 75 | *pullSuccess = success; |
| 76 | *pullFinish = true; |
| 77 | } |
| 78 | cv->notify_one(); |
| 79 | }); |
| 80 | |
Tej Singh | 8981763 | 2019-12-09 16:58:08 -0800 | [diff] [blame] | 81 | // Initiate the pull. This is a oneway call to a different process, except |
| 82 | // in unit tests. In process calls are not oneway. |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 83 | Status status = mCallback->onPullAtom(mTagId, resultReceiver); |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 84 | if (!status.isOk()) { |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 85 | return false; |
| 86 | } |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 87 | |
| 88 | { |
| 89 | unique_lock<mutex> unique_lk(*cv_mutex); |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 90 | // Wait until the pull finishes, or until the pull timeout. |
Tej Singh | 5b4951b | 2020-01-24 13:23:56 -0800 | [diff] [blame] | 91 | cv->wait_for(unique_lk, chrono::nanoseconds(mPullTimeoutNs), |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 92 | [pullFinish] { return *pullFinish; }); |
| 93 | if (!*pullFinish) { |
| 94 | // Note: The parent stats puller will also note that there was a timeout and that the |
| 95 | // cache should be cleared. Once we migrate all pullers to this callback, we could |
| 96 | // consolidate the logic. |
| 97 | return true; |
| 98 | } else { |
| 99 | // Only copy the data if we did not timeout and the pull was successful. |
Tej Singh | 8981763 | 2019-12-09 16:58:08 -0800 | [diff] [blame] | 100 | if (*pullSuccess) { |
Tej Singh | 6a5c943 | 2019-10-11 11:07:06 -0700 | [diff] [blame] | 101 | *data = std::move(*sharedData); |
| 102 | } |
| 103 | VLOG("StatsCallbackPuller::pull succeeded for %d", mTagId); |
| 104 | return *pullSuccess; |
| 105 | } |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 106 | } |
Tej Singh | a0c89dd | 2019-01-25 16:39:18 -0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | } // namespace statsd |
| 110 | } // namespace os |
| 111 | } // namespace android |