blob: abf917830119fad4a75c23b7d0cf3e636cb9ae7c [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.
*/
#ifndef NIFI_MINIFI_CPP_PUTSQL_H
#define NIFI_MINIFI_CPP_PUTSQL_H
#include <core/Resource.h>
#include <core/Processor.h>
#include <concurrentqueue.h>
#include "SQLiteConnection.h"
namespace org {
namespace apache {
namespace nifi {
namespace minifi {
namespace processors {
class PutSQL : public core::Processor {
public:
explicit PutSQL(const std::string &name, utils::Identifier uuid = utils::Identifier())
: Processor(name, uuid),
batch_size_(100),
logger_(logging::LoggerFactory<PutSQL>::getLogger()) {
}
static core::Property ConnectionURL;
static core::Property SQLStatement;
static core::Property BatchSize;
static core::Relationship Success;
static core::Relationship Retry;
static core::Relationship Failure;
void initialize() override;
void onSchedule(core::ProcessContext *context, core::ProcessSessionFactory *sessionFactory) override;
void onTrigger(core::ProcessContext *context, core::ProcessSession *session) override {
logger_->log_error("onTrigger invocation with raw pointers is not implemented");
}
void onTrigger(const std::shared_ptr<core::ProcessContext> &context,
const std::shared_ptr<core::ProcessSession> &session) override;
class SQLReadCallback : public InputStreamCallback {
public:
explicit SQLReadCallback(std::shared_ptr<std::string> sql)
: sql_(std::move(sql)) {
}
int64_t process(std::shared_ptr<io::BaseStream> stream) override;
private:
std::shared_ptr<std::string> sql_;
};
private:
std::shared_ptr<logging::Logger> logger_;
moodycamel::ConcurrentQueue<std::shared_ptr<minifi::sqlite::SQLiteConnection>> conn_q_;
uint64_t batch_size_;
std::string db_url_;
std::string sql_;
};
REGISTER_RESOURCE(PutSQL, "Executes a SQL UPDATE or INSERT command. The content of an incoming FlowFile is expected to be the SQL command to execute. "
"The SQL command may use the ? character to bind parameters. In this case, the parameters to use must exist as FlowFile attributes with the naming "
"convention sql.args.N.type and sql.args.N.value, where N is a positive integer. The content of the FlowFile is expected to be in UTF-8 format."); // NOLINT
} /* namespace processors */
} /* namespace minifi */
} /* namespace nifi */
} /* namespace apache */
} /* namespace org */
#endif //NIFI_MINIFI_CPP_PUTSQL_H