blob: 23be72143643a252b8a8ab06b9b520910cb9b61e [file] [log] [blame]
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001/*
2 * Copyright (C) 2018 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 <memory>
20#include <string>
21#include <unordered_map>
22#include <utility>
23#include <vector>
24
Hridya Valsaraju31d2c262018-07-20 13:35:50 -070025#include <android/hardware/boot/1.0/IBootControl.h>
David Anderson220ddb12019-10-31 18:02:41 -070026#include <android/hardware/boot/1.1/IBootControl.h>
josephjang29069752020-09-23 16:28:03 +080027#include <android/hardware/fastboot/1.1/IFastboot.h>
Hridya Valsaraju47658ca2018-09-28 11:41:22 -070028#include <android/hardware/health/2.0/IHealth.h>
Hridya Valsaraju31d2c262018-07-20 13:35:50 -070029
Hridya Valsarajudea91b42018-07-17 11:14:01 -070030#include "commands.h"
31#include "transport.h"
Hridya Valsaraju31d2c262018-07-20 13:35:50 -070032#include "variables.h"
Hridya Valsarajudea91b42018-07-17 11:14:01 -070033
34class FastbootDevice {
35 public:
36 FastbootDevice();
37 ~FastbootDevice();
38
39 void CloseDevice();
40 void ExecuteCommands();
41 bool WriteStatus(FastbootResult result, const std::string& message);
42 bool HandleData(bool read, std::vector<char>* data);
Hridya Valsaraju31d2c262018-07-20 13:35:50 -070043 std::string GetCurrentSlot();
Hridya Valsarajudea91b42018-07-17 11:14:01 -070044
David Anderson0f626632018-08-31 16:44:25 -070045 // Shortcuts for writing status results.
David Anderson856b7ec2018-08-08 17:58:56 -070046 bool WriteOkay(const std::string& message);
47 bool WriteFail(const std::string& message);
David Anderson0f626632018-08-31 16:44:25 -070048 bool WriteInfo(const std::string& message);
David Anderson856b7ec2018-08-08 17:58:56 -070049
David Anderson12211d12018-07-24 15:21:20 -070050 std::vector<char>& download_data() { return download_data_; }
Hridya Valsarajudea91b42018-07-17 11:14:01 -070051 Transport* get_transport() { return transport_.get(); }
Hridya Valsaraju31d2c262018-07-20 13:35:50 -070052 android::sp<android::hardware::boot::V1_0::IBootControl> boot_control_hal() {
53 return boot_control_hal_;
54 }
David Anderson220ddb12019-10-31 18:02:41 -070055 android::sp<android::hardware::boot::V1_1::IBootControl> boot1_1() { return boot1_1_; }
josephjang29069752020-09-23 16:28:03 +080056 android::sp<android::hardware::fastboot::V1_1::IFastboot> fastboot_hal() {
Hridya Valsarajubf9f8d12018-09-05 16:57:24 -070057 return fastboot_hal_;
58 }
Hridya Valsaraju47658ca2018-09-28 11:41:22 -070059 android::sp<android::hardware::health::V2_0::IHealth> health_hal() { return health_hal_; }
Hridya Valsarajudea91b42018-07-17 11:14:01 -070060
Hridya Valsaraju20bdf892018-10-10 11:02:19 -070061 void set_active_slot(const std::string& active_slot) { active_slot_ = active_slot; }
62
Hridya Valsarajudea91b42018-07-17 11:14:01 -070063 private:
64 const std::unordered_map<std::string, CommandHandler> kCommandMap;
65
66 std::unique_ptr<Transport> transport_;
Hridya Valsaraju31d2c262018-07-20 13:35:50 -070067 android::sp<android::hardware::boot::V1_0::IBootControl> boot_control_hal_;
David Anderson220ddb12019-10-31 18:02:41 -070068 android::sp<android::hardware::boot::V1_1::IBootControl> boot1_1_;
Hridya Valsaraju47658ca2018-09-28 11:41:22 -070069 android::sp<android::hardware::health::V2_0::IHealth> health_hal_;
josephjang29069752020-09-23 16:28:03 +080070 android::sp<android::hardware::fastboot::V1_1::IFastboot> fastboot_hal_;
Hridya Valsarajudea91b42018-07-17 11:14:01 -070071 std::vector<char> download_data_;
Hridya Valsaraju20bdf892018-10-10 11:02:19 -070072 std::string active_slot_;
Hridya Valsarajudea91b42018-07-17 11:14:01 -070073};