43987c948b
Test: tested compilation Change-Id: Ieb949243da1284dec3bad2caa895a59465858adc
102 lines
2.7 KiB
C++
102 lines
2.7 KiB
C++
//
|
|
// Copyright (C) 2020 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 <sstream>
|
|
#include <string>
|
|
|
|
#include "fastboot.h"
|
|
#include "fastboot_driver.h"
|
|
#include "super_flash_helper.h"
|
|
#include "util.h"
|
|
|
|
class Task {
|
|
public:
|
|
Task() = default;
|
|
virtual void Run() = 0;
|
|
virtual ~Task() = default;
|
|
};
|
|
|
|
class FlashTask : public Task {
|
|
public:
|
|
FlashTask(const std::string& slot, const std::string& pname);
|
|
FlashTask(const std::string& slot, const std::string& pname, const std::string& fname);
|
|
|
|
void Run() override;
|
|
|
|
private:
|
|
const std::string pname_;
|
|
const std::string fname_;
|
|
const std::string slot_;
|
|
};
|
|
|
|
class RebootTask : public Task {
|
|
public:
|
|
RebootTask(FlashingPlan* fp);
|
|
RebootTask(FlashingPlan* fp, const std::string& reboot_target);
|
|
void Run() override;
|
|
|
|
private:
|
|
const std::string reboot_target_ = "";
|
|
const FlashingPlan* fp_;
|
|
};
|
|
|
|
class FlashSuperLayoutTask : public Task {
|
|
public:
|
|
FlashSuperLayoutTask(const std::string& super_name, std::unique_ptr<SuperFlashHelper> helper,
|
|
SparsePtr sparse_layout);
|
|
static std::unique_ptr<FlashSuperLayoutTask> Initialize(FlashingPlan* fp,
|
|
std::vector<ImageEntry>& os_images);
|
|
using ImageEntry = std::pair<const Image*, std::string>;
|
|
void Run() override;
|
|
|
|
private:
|
|
const std::string super_name_;
|
|
std::unique_ptr<SuperFlashHelper> helper_;
|
|
SparsePtr sparse_layout_;
|
|
};
|
|
|
|
class UpdateSuperTask : public Task {
|
|
public:
|
|
UpdateSuperTask(FlashingPlan* fp);
|
|
void Run() override;
|
|
|
|
private:
|
|
const FlashingPlan* fp_;
|
|
};
|
|
|
|
class ResizeTask : public Task {
|
|
public:
|
|
ResizeTask(FlashingPlan* fp, const std::string& pname, const std::string& size,
|
|
const std::string& slot);
|
|
void Run() override;
|
|
|
|
private:
|
|
const FlashingPlan* fp_;
|
|
const std::string pname_;
|
|
const std::string size_;
|
|
const std::string slot_;
|
|
};
|
|
|
|
class DeleteTask : public Task {
|
|
public:
|
|
DeleteTask(FlashingPlan* _fp, const std::string& _pname);
|
|
void Run() override;
|
|
|
|
private:
|
|
const FlashingPlan* fp_;
|
|
const std::string pname_;
|
|
};
|