2018-07-20 22:35:50 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class FastbootDevice;
|
|
|
|
|
2018-08-31 23:40:22 +02:00
|
|
|
bool GetVersion(FastbootDevice* device, const std::vector<std::string>& args, std::string* message);
|
|
|
|
bool GetBootloaderVersion(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetBasebandVersion(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2020-01-21 11:31:23 +01:00
|
|
|
bool GetOsVersion(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetVndkVersion(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-08-31 23:40:22 +02:00
|
|
|
bool GetProduct(FastbootDevice* device, const std::vector<std::string>& args, std::string* message);
|
|
|
|
bool GetSerial(FastbootDevice* device, const std::vector<std::string>& args, std::string* message);
|
|
|
|
bool GetSecure(FastbootDevice* device, const std::vector<std::string>& args, std::string* message);
|
|
|
|
bool GetCurrentSlot(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetSlotCount(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetSlotSuccessful(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetSlotUnbootable(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetMaxDownloadSize(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetUnlocked(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetHasSlot(FastbootDevice* device, const std::vector<std::string>& args, std::string* message);
|
|
|
|
bool GetPartitionSize(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-09-06 01:57:24 +02:00
|
|
|
bool GetPartitionType(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-08-31 23:40:22 +02:00
|
|
|
bool GetPartitionIsLogical(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetIsUserspace(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2022-11-22 10:32:21 +01:00
|
|
|
bool GetIsForceDebuggable(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-09-05 03:11:03 +02:00
|
|
|
bool GetHardwareRevision(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-09-26 22:08:16 +02:00
|
|
|
bool GetVariant(FastbootDevice* device, const std::vector<std::string>& args, std::string* message);
|
2018-09-27 19:41:01 +02:00
|
|
|
bool GetOffModeChargeState(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-09-28 20:41:22 +02:00
|
|
|
bool GetBatteryVoltage(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-10-04 00:53:22 +02:00
|
|
|
bool GetBatterySoCOk(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2018-11-06 03:01:32 +01:00
|
|
|
bool GetSuperPartitionName(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2019-10-22 01:45:59 +02:00
|
|
|
bool GetSnapshotUpdateStatus(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2019-11-13 10:13:49 +01:00
|
|
|
bool GetCpuAbi(FastbootDevice* device, const std::vector<std::string>& args, std::string* message);
|
2020-01-21 11:31:23 +01:00
|
|
|
bool GetSystemFingerprint(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetVendorFingerprint(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetDynamicPartition(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetFirstApiLevel(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetSecurityPatchLevel(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
|
|
|
bool GetTrebleEnabled(FastbootDevice* device, const std::vector<std::string>& args,
|
|
|
|
std::string* message);
|
2021-02-17 22:44:49 +01:00
|
|
|
bool GetMaxFetchSize(FastbootDevice* /* device */, const std::vector<std::string>& /* args */,
|
|
|
|
std::string* message);
|
2018-10-04 00:53:22 +02:00
|
|
|
|
2022-06-18 04:17:43 +02:00
|
|
|
// Complex cases.
|
|
|
|
bool GetDmesg(FastbootDevice* device);
|
|
|
|
|
2018-09-01 01:44:25 +02:00
|
|
|
// Helpers for getvar all.
|
|
|
|
std::vector<std::vector<std::string>> GetAllPartitionArgsWithSlot(FastbootDevice* device);
|
|
|
|
std::vector<std::vector<std::string>> GetAllPartitionArgsNoSlot(FastbootDevice* device);
|