blob: 1eb4cfd963d0b9ae30fc85a2d1f428f7115e677f [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
#pragma once
#include <memory>
#include <string>
#include "NetworkListenerProcessor.h"
#include "core/logging/LoggerConfiguration.h"
namespace org::apache::nifi::minifi::processors {
class ListenUDP : public NetworkListenerProcessor {
public:
explicit ListenUDP(const std::string& name, const utils::Identifier& uuid = {})
: NetworkListenerProcessor(name, uuid, core::logging::LoggerFactory<ListenUDP>::getLogger()) {
}
EXTENSIONAPI static constexpr const char* Description = "Listens for incoming UDP datagrams. For each datagram the processor produces a single FlowFile.";
EXTENSIONAPI static const core::Property Port;
EXTENSIONAPI static const core::Property MaxBatchSize;
EXTENSIONAPI static const core::Property MaxQueueSize;
static auto properties() {
return std::array{
Port,
MaxBatchSize,
MaxQueueSize,
};
}
EXTENSIONAPI static const core::Relationship Success;
static auto relationships() { return std::array{Success}; }
void initialize() override;
void onSchedule(const std::shared_ptr<core::ProcessContext>& context, const std::shared_ptr<core::ProcessSessionFactory>& sessionFactory) override;
protected:
const core::Property& getMaxBatchSizeProperty() override;
const core::Property& getMaxQueueSizeProperty() override;
const core::Property& getPortProperty() override;
private:
void transferAsFlowFile(const utils::net::Message& message, core::ProcessSession& session) override;
};
} // namespace org::apache::nifi::minifi::processors