Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2015 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 | #ifndef UPDATE_ENGINE_BINDER_SERVICE_ANDROID_H_ |
| 18 | #define UPDATE_ENGINE_BINDER_SERVICE_ANDROID_H_ |
| 19 | |
| 20 | #include <vector> |
| 21 | |
| 22 | #include <utils/Errors.h> |
| 23 | #include <utils/String16.h> |
| 24 | #include <utils/StrongPointer.h> |
| 25 | |
| 26 | #include "android/os/BnUpdateEngine.h" |
| 27 | #include "android/os/IUpdateEngineCallback.h" |
| 28 | |
| 29 | namespace chromeos_update_engine { |
| 30 | |
Alex Deymo | e97b39c | 2016-01-20 13:22:17 -0800 | [diff] [blame] | 31 | class BinderUpdateEngineAndroidService : public android::os::BnUpdateEngine { |
Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 32 | public: |
Alex Deymo | e97b39c | 2016-01-20 13:22:17 -0800 | [diff] [blame] | 33 | BinderUpdateEngineAndroidService() = default; |
| 34 | ~BinderUpdateEngineAndroidService() override = default; |
Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 35 | |
| 36 | android::binder::Status applyPayload( |
| 37 | const android::String16& url, |
| 38 | const std::vector<android::String16>& header_kv_pairs) override; |
| 39 | |
| 40 | android::binder::Status bind( |
| 41 | const android::sp<android::os::IUpdateEngineCallback>& callback, |
| 42 | bool* return_value) override; |
| 43 | |
| 44 | android::binder::Status suspend() override; |
| 45 | |
| 46 | android::binder::Status resume() override; |
| 47 | |
| 48 | android::binder::Status cancel() override; |
Alex Deymo | e97b39c | 2016-01-20 13:22:17 -0800 | [diff] [blame] | 49 | }; |
Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 50 | |
| 51 | } // namespace chromeos_update_engine |
| 52 | |
| 53 | #endif // UPDATE_ENGINE_BINDER_SERVICE_ANDROID_H_ |