blob: 410a03e039c4bc5bb686de85e58dfcbc59a05e06 [file] [log] [blame]
Sandeep Dhavale488f4092022-11-08 22:30:30 +00001/*
2 * Copyright (C) 2022 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#pragma once
18
19#include <aidl/android/hardware/fastboot/BnFastboot.h>
20#include <android/hardware/fastboot/1.1/IFastboot.h>
21
22namespace aidl {
23namespace android {
24namespace hardware {
25namespace fastboot {
26// Shim that wraps HIDL IFastboot with AIDL BnFastboot
27class FastbootShim : public BnFastboot {
28 using HidlFastboot = ::android::hardware::fastboot::V1_1::IFastboot;
29
30 public:
31 explicit FastbootShim(const ::android::sp<HidlFastboot>& service);
32 ::ndk::ScopedAStatus doOemCommand(const std::string& in_oemCmd,
33 std::string* _aidl_return) override;
34 ::ndk::ScopedAStatus doOemSpecificErase() override;
35 ::ndk::ScopedAStatus getBatteryVoltageFlashingThreshold(int32_t* _aidl_return) override;
36 ::ndk::ScopedAStatus getOffModeChargeState(bool* _aidl_return) override;
37 ::ndk::ScopedAStatus getPartitionType(
38 const std::string& in_partitionName,
39 ::aidl::android::hardware::fastboot::FileSystemType* _aidl_return) override;
40 ::ndk::ScopedAStatus getVariant(std::string* _aidl_return) override;
41
42 private:
43 ::android::sp<HidlFastboot> service_;
44};
45
46} // namespace fastboot
47} // namespace hardware
48} // namespace android
49} // namespace aidl