* 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 OMNISTREAM_LOCALRECOVEREDINPUTCHANNEL_H
#define OMNISTREAM_LOCALRECOVEREDINPUTCHANNEL_H
#include "RecoveredInputChannel.h"
#include <partition/ResultPartitionManager.h>
#include "LocalInputChannel.h"
#include "OmniLocalInputChannel.h"
#include "iostream"
#include "checkpoint/channel/ChannelStateWriterImpl.h"
class LocalRecoveredInputChannel : public RecoveredInputChannel {
public:
LocalRecoveredInputChannel(std::shared_ptr<omnistream::SingleInputGate> inputGate, int channelIndex,
omnistream::ResultPartitionIDPOD partitionId,
int consumedSubpartitionIndex, std::shared_ptr<omnistream::ResultPartitionManager> manager, int initialBackoff, int maxBackoff,
std::shared_ptr<omnistream::Counter> numBytesIn,
std::shared_ptr<omnistream::Counter> numBuffersIn, int networkBuffersPerChannel)
: RecoveredInputChannel(inputGate, channelIndex, partitionId, consumedSubpartitionIndex, initialBackoff,
maxBackoff, numBytesIn, numBuffersIn, networkBuffersPerChannel),partitionManager(manager){
}
std::shared_ptr<omnistream::InputChannel> toInputChannelInternal()
{
auto stateWriter = GetChannelStateWriter();
if (stateWriter == nullptr) {
LOG("ERROR: LocalRecoveredInputChannel stateWriter is null.")
throw std::runtime_error("ERROR: LocalRecoveredInputChannel stateWriter is null.");
}
if (IsOmniChannel()) {
return std::make_shared<omnistream::OmniLocalInputChannel>(inputGate, getChannelIndex(), partitionId,
partitionManager, initialBackoff, maxBackoff,
getNetworkBuffersPerChannel(), numBytesIn,
numBuffersIn, stateWriter);
}
return std::make_shared<omnistream::LocalInputChannel>(inputGate, getChannelIndex(), partitionId,
partitionManager, initialBackoff, maxBackoff, numBytesIn,
numBuffersIn, stateWriter);
}
private:
std::shared_ptr<omnistream::ResultPartitionManager> partitionManager;
};
#endif