/*
 * Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 *          http://license.coscl.org.cn/MulanPSL2
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
 * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 */

#ifndef SIMPLEPARTITIONER_H
#define SIMPLEPARTITIONER_H
#include "StreamPartitionerV2.h"

namespace omnistream {
template <typename T>
class SimplePartitioner : public StreamPartitionerV2<T> {
public:
    SimplePartitioner() = default;
    void setup(int numberOfChannels) override
    {
        this->numberOfChannels = numberOfChannels;
    }

    int selectRowChannel(omnistream::VectorBatch* record, int rowIndex) override
    {
        return 0;
    };

    int selectRowChannel(RowData* record) override
    {
        return 0;
    };

    std::unique_ptr<SubtaskStateMapper> getDownstreamSubtaskStateMapper() override
    {
        return std::make_unique<SubtaskStateMapper>(UnsupportedMapper());
    }

    std::unique_ptr<SubtaskStateMapper> getUpstreamSubtaskStateMapper() override
    {
        return std::make_unique<SubtaskStateMapper>(UnsupportedMapper());
    }

    bool isPointwise() override
    {
        return true;
    }

    std::unique_ptr<StreamPartitionerV2<T>> copy() override
    {
        return std::make_unique<SimplePartitioner<T>>(*this);
    }

    [[nodiscard]] std::string toString() const override
    {
        return "SIMPLE";
    }
};

} // namespace omnistream

#endif