mirror of
https://gitee.com/openharmony/startup_init
synced 2025-01-12 14:00:43 +00:00
936d58c343
Signed-off-by: chengjinsong <chengjinsong2@huawei.com> Change-Id: I029b6cbf428f17721119d7b0a70c698cbc40b796
97 lines
3.3 KiB
C++
97 lines
3.3 KiB
C++
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* 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.
|
|
*/
|
|
|
|
#include <iostream>
|
|
|
|
#include "begetctl.h"
|
|
#include "partitionslot_manager.h"
|
|
|
|
using namespace OHOS::HDI::Partitionslot::V1_0;
|
|
const int32_t PARTITION_ARGC = 2;
|
|
|
|
static int GetSlot(BShellHandle handle, int32_t argc, char *argv[])
|
|
{
|
|
std::cout << "Command: partitionslot getslot" << std::endl;
|
|
int bootSlots = 0;
|
|
int currentSlot = PartitionSlotManager::GetInstance()->GetCurrentSlot(bootSlots);
|
|
std::cout << "The number of slots: " << bootSlots << "," << "current slot: " << currentSlot << std::endl;
|
|
return 0;
|
|
}
|
|
|
|
static int GetSuffix(BShellHandle handle, int32_t argc, char *argv[])
|
|
{
|
|
if (argc != PARTITION_ARGC) {
|
|
BShellCmdHelp(handle, argc, argv);
|
|
return 0;
|
|
}
|
|
std::cout << "Command: partitionslot getsuffix" << std::endl;
|
|
int slot = atoi(argv[1]);
|
|
std::string suffix = "";
|
|
PartitionSlotManager::GetInstance()->GetSlotSuffix(slot, suffix);
|
|
std::cout << "The slot " << slot << " matches with suffix: " << suffix << std::endl;
|
|
return 0;
|
|
}
|
|
|
|
static int SetActiveSlot(BShellHandle handle, int32_t argc, char *argv[])
|
|
{
|
|
if (argc != PARTITION_ARGC) {
|
|
BShellCmdHelp(handle, argc, argv);
|
|
return 0;
|
|
}
|
|
std::cout << "Command: partitionslot setactive" << std::endl;
|
|
int slot = atoi(argv[1]);
|
|
PartitionSlotManager::GetInstance()->SetActiveSlot(slot);
|
|
std::cout << "Set active slot: " << slot << std::endl;
|
|
return 0;
|
|
}
|
|
|
|
static int SetUnbootSlot(BShellHandle handle, int32_t argc, char *argv[])
|
|
{
|
|
if (argc != PARTITION_ARGC) {
|
|
BShellCmdHelp(handle, argc, argv);
|
|
return 0;
|
|
}
|
|
std::cout << "Command: partitionslot setunboot" << std::endl;
|
|
int slot = atoi(argv[1]);
|
|
PartitionSlotManager::GetInstance()->SetSlotUnbootable(slot);
|
|
std::cout << "Set unboot slot: " << slot << std::endl;
|
|
return 0;
|
|
}
|
|
|
|
MODULE_CONSTRUCTOR(void)
|
|
{
|
|
CmdInfo infos[] = {
|
|
{
|
|
(char *)"partitionslot", GetSlot, (char *)"get the number of slots and current slot",
|
|
(char *)"partitionslot getslot", (char *)"partitionslot getslot"
|
|
},
|
|
{
|
|
(char *)"partitionslot", GetSuffix, (char *)"get suffix that matches with the slot",
|
|
(char *)"partitionslot getsuffix [slot]", (char *)"partitionslot getsuffix"
|
|
},
|
|
{
|
|
(char *)"partitionslot", SetActiveSlot, (char *)"set active slot",
|
|
(char *)"partitionslot setactive [slot]", (char *)"partitionslot setactive"
|
|
},
|
|
{
|
|
(char *)"partitionslot", SetUnbootSlot, (char *)"set unboot slot",
|
|
(char *)"partitionslot setunboot [slot]", (char *)"partitionslot setunboot"
|
|
}
|
|
};
|
|
for (size_t i = sizeof(infos) / sizeof(infos[0]); i > 0; i--) {
|
|
BShellEnvRegitsterCmd(GetShellHandle(), &infos[i - 1]);
|
|
}
|
|
}
|