* 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.
*/
#include "OmniLocalInputChannel.h"
#include <buffer/ReadOnlySlicedNetworkBuffer.h>
#include "buffer/NetworkBuffer.h"
#include "buffer/ReadOnlySlicedNetworkBuffer.h"
namespace omnistream {
OmniLocalInputChannel::OmniLocalInputChannel(
std::shared_ptr<SingleInputGate> inputGate,
int channelIndex,
ResultPartitionIDPOD partitionId,
std::shared_ptr<ResultPartitionManager> partitionManager,
int initialBackoff,
int maxBackoff,
int networkBuffersPerChannel,
std::shared_ptr<Counter> numBytesIn,
std::shared_ptr<Counter> numBuffersIn,
std::shared_ptr<ChannelStateWriter> stateWriter)
: LocalInputChannel(
inputGate,
channelIndex,
partitionId,
partitionManager,
initialBackoff,
maxBackoff,
numBytesIn,
numBuffersIn,
stateWriter)
{
originalNetworkBufferRecycler_ = std::make_shared<OriginalNetworkBufferRecycler>();
channelInfo.setOmni();
LOG("Get OmniLocalInputChannel omni: " << channelInfo.getOmni());
}
void OmniLocalInputChannel::notifyOriginalDataAvailable(
long bufferAddress, int bufferLength, int readIndex, int sequenceNumber, int memorySegmentOffset, int bufferType)
{
MemorySegment* memorySegment = new MemorySegment(reinterpret_cast<uint8_t*>(bufferAddress), bufferLength, this);
datastream::NetworkBuffer* networkBuffer = new datastream::NetworkBuffer(
memorySegment, bufferLength, readIndex, originalNetworkBufferRecycler_, bufferType, true);
datastream::ReadOnlySlicedNetworkBuffer* readOnlyBuffer =
new datastream::ReadOnlySlicedNetworkBuffer(networkBuffer, readIndex + memorySegmentOffset, bufferLength);
std::unique_lock<std::recursive_mutex> lock(queueMutex);
std::shared_ptr<BufferAndAvailability> data = std::make_shared<BufferAndAvailability>(
readOnlyBuffer, ObjectBufferDataType::DATA_BUFFER, dataQueue.size(), sequenceNumber);
if (data != nullptr) {
dataQueue.push(data);
}
lock.unlock();
notifyDataAvailable();
}
std::optional<BufferAndAvailability> OmniLocalInputChannel::getNextBuffer()
{
std::unique_lock<std::recursive_mutex> lock(queueMutex);
if (dataQueue.empty()) {
return std::nullopt;
}
auto buffer = dataQueue.front();
dataQueue.pop();
lock.unlock();
return std::optional<BufferAndAvailability>{*buffer};
}
void OmniLocalInputChannel::requestSubpartition(int subpartitionIndex)
{
LOG("OmniLocalInputChannel::requestSubpartition called, but it does nothing.");
}
long OmniLocalInputChannel::GetRecycleBufferAddress()
{
return originalNetworkBufferRecycler_->getRecycleBufferAddress();
}
void OmniLocalInputChannel::releaseAllResources()
{
originalNetworkBufferRecycler_->stop();
}
void OmniLocalInputChannel::resumeConsumption()
{
if (!forwardResumeToJava_) {
return;
}
if (omniLocalInputChannelBridge == nullptr) {
return;
}
omniLocalInputChannelBridge->InvokeDoResumeConsumption();
}
void OmniLocalInputChannel::SetOmniLocalInputChannelBridge(std::shared_ptr<OmniLocalInputChannelBridge> bridge)
{
omniLocalInputChannelBridge = bridge;
}
}