/*
 * Copyright (c) 2022-2023 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 "idevmgr_hdi.h"
#include "v1_0/ipartition_slot.h"

using namespace OHOS::HDI::Partitionslot::V1_0;
using OHOS::HDI::DeviceManager::V1_0::IDeviceManager;
static const int32_t PARTITION_ARGC = 2;

static int LoadDevice()
{
    auto devmgr = IDeviceManager::Get();
    if (devmgr != nullptr) {
        return devmgr->LoadDevice("partition_slot_service");
    } else {
        std::cout << "Load devmgr failed" << std::endl;
        return -1;
    }
}

static void UnloadDevice()
{
    auto devmgr = IDeviceManager::Get();
    if (devmgr != nullptr) {
        devmgr->UnloadDevice("partition_slot_service");
    }
}

static int GetSlot(BShellHandle handle, int32_t argc, char *argv[])
{
    if (LoadDevice() != 0) {
        return -1;
    }
    std::cout << "Command: partitionslot getslot" << std::endl;
    sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get();
    if (partitionslot != nullptr) {
        int bootSlots = 0;
        int currentSlot = 0;
        partitionslot->GetCurrentSlot(currentSlot, bootSlots);
        std::cout << "The number of slots: " << bootSlots << "," <<  "current slot: " << currentSlot << std::endl;
    }
    UnloadDevice();
    return 0;
}

static int GetSuffix(BShellHandle handle, int32_t argc, char *argv[])
{
    if (argc != PARTITION_ARGC) {
        BShellCmdHelp(handle, argc, argv);
        return -1;
    }
    if (LoadDevice() != 0) {
        return -1;
    }
    std::cout << "Command: partitionslot getsuffix" << std::endl;
    int slot = atoi(argv[1]);
    sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get();
    if (partitionslot != nullptr) {
        std::string suffix = "";
        partitionslot->GetSlotSuffix(slot, suffix);
        std::cout << "The slot " << slot << " matches with suffix: " << suffix << std::endl;
    }
    UnloadDevice();
    return 0;
}

static int SetActiveSlot(BShellHandle handle, int32_t argc, char *argv[])
{
    if (argc != PARTITION_ARGC) {
        BShellCmdHelp(handle, argc, argv);
        return -1;
    }
    if (LoadDevice() != 0) {
        return -1;
    }
    std::cout << "Command: partitionslot setactive" << std::endl;
    int slot = atoi(argv[1]);
    sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get();
    if (partitionslot != nullptr) {
#ifndef STARTUP_INIT_TEST
        partitionslot->SetActiveSlot(slot);
#endif
        std::cout << "Set active slot: " << slot << std::endl;
    }
    UnloadDevice();
    return 0;
}

static int SetUnbootSlot(BShellHandle handle, int32_t argc, char *argv[])
{
    if (argc != PARTITION_ARGC) {
        BShellCmdHelp(handle, argc, argv);
        return -1;
    }
    if (LoadDevice() != 0) {
        return -1;
    }
    std::cout << "Command: partitionslot setunboot" << std::endl;
    int slot = atoi(argv[1]);
    sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get();
    if (partitionslot != nullptr) {
        partitionslot->SetSlotUnbootable(slot);
        std::cout << "Set unboot slot: " << slot << std::endl;
    }
    UnloadDevice();
    return 0;
}

MODULE_CONSTRUCTOR(void)
{
    CmdInfo infos[] = {
        {
            const_cast<char *>("partitionslot"), GetSlot,
            const_cast<char *>("get the number of slots and current slot"),
            const_cast<char *>("partitionslot getslot"), const_cast<char *>("partitionslot getslot")
        },
        {
            const_cast<char *>("partitionslot"), GetSuffix,
            const_cast<char *>("get suffix that matches with the slot"),
            const_cast<char *>("partitionslot getsuffix [slot]"), const_cast<char *>("partitionslot getsuffix")
        },
        {
            const_cast<char *>("partitionslot"), SetActiveSlot,
            const_cast<char *>("set active slot"),
            const_cast<char *>("partitionslot setactive [slot]"), const_cast<char *>("partitionslot setactive")
        },
        {
            const_cast<char *>("partitionslot"), SetUnbootSlot,
            const_cast<char *>("set unboot slot"),
            const_cast<char *>("partitionslot setunboot [slot]"), const_cast<char *>("partitionslot setunboot")
        }
    };
    for (size_t i = sizeof(infos) / sizeof(infos[0]); i > 0; i--) {
        BShellEnvRegisterCmd(GetShellHandle(), &infos[i - 1]);
    }
}