1 // Copyright (C) 2020 The Android Open Source Project 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #include "package_change_observer.h" 16 #include "package_manager_remote.h" 17 #include "manager/event_manager.h" 18 19 #include <android-base/logging.h> 20 #include <android-base/properties.h> 21 22 namespace iorap::binder { 23 PackageChangeObserver(std::shared_ptr<iorap::manager::EventManager> event_manager)24PackageChangeObserver::PackageChangeObserver( 25 std::shared_ptr<iorap::manager::EventManager> event_manager) : 26 event_manager_(event_manager){} 27 onPackageChanged(const android::content::pm::PackageChangeEvent & event)28android::binder::Status PackageChangeObserver::onPackageChanged( 29 const android::content::pm::PackageChangeEvent& event) { 30 LOG(DEBUG) << "Received PackageChangeObserver::onPackageChanged"; 31 if (event_manager_->OnPackageChanged(event)) { 32 return android::binder::Status::ok(); 33 } else { 34 return android::binder::Status::fromStatusT(android::BAD_VALUE); 35 } 36 } 37 } // namespace iorap::binder 38