am-c-p-p commented on a change in pull request #656: MINIFI-1013 Used soci 
library.
URL: https://github.com/apache/nifi-minifi-cpp/pull/656#discussion_r359217372
 
 

 ##########
 File path: extensions/sql/services/DatabaseService.h
 ##########
 @@ -0,0 +1,127 @@
+/**
+ *
+ * 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 LIBMINIFI_INCLUDE_CONTROLLERS_DATABASESERVICE_H_
+#define LIBMINIFI_INCLUDE_CONTROLLERS_DATABASESERVICE_H_
+
+#include "core/logging/LoggerConfiguration.h"
+#include "core/controller/ControllerService.h"
+#include "data/DatabaseConnectors.h"
+#include <soci.h>
+#include <memory>
+#include <unordered_map>
+
+namespace org {
+namespace apache {
+namespace nifi {
+namespace minifi {
+namespace sql {
+namespace controllers {
+
+/**
+ * Purpose and Justification: Controller services function as a layerable way 
to provide
+ * services to internal services. While a controller service is generally 
configured from the flow,
+ * we want to follow the open closed principle and provide Database services
+ */
+class DatabaseService : public core::controller::ControllerService {
+ public:
+
+  /**
+   * Constructors for the controller service.
+   */
+  explicit DatabaseService(const std::string &name, const std::string &id)
+      : ControllerService(name, id),
+        initialized_(false),
+        logger_(logging::LoggerFactory<DatabaseService>::getLogger()) {
+    initialize();
+  }
+
+  explicit DatabaseService(const std::string &name, utils::Identifier uuid = 
utils::Identifier())
+      : ControllerService(name, uuid),
+        initialized_(false),
+        logger_(logging::LoggerFactory<DatabaseService>::getLogger()) {
+    initialize();
+  }
+
+  explicit DatabaseService(const std::string &name, const 
std::shared_ptr<Configure> &configuration)
+      : ControllerService(name),
+        initialized_(false),
+        logger_(logging::LoggerFactory<DatabaseService>::getLogger()) {
+    setConfiguration(configuration);
+    initialize();
+  }
+
+  /**
+   * Parameters needed.
+   */
+  static core::Property ConnectionString;
+
+  virtual void initialize() override;
+
+  void yield() override {
+
+  }
+
+  bool isRunning() override {
+    return getState() == core::controller::ControllerServiceState::ENABLED;
+  }
+
+  bool isWorkAvailable() override {
+    return false;
+  }
+
+  virtual void onEnable() override;
+
+  /**
+   * Sends the payload to the endpoint, returning the response as we await. 
Will retry transmission
+   * @param type type of payload to endpoint interaction ( GET, POST, PUT, 
DELETE ).
+   * @param end endpoint is the connecting endpoint on the server
+   * @param payload is the data to be sent
+   * @param size size of the payload to be sent
+   * @return CoAPMessage that contains the response code and data, if any.
+   */
+
+  virtual std::unique_ptr<sql::Connection> getConnection() const = 0;
+
+ protected:
+
+  void initializeProperties();
+
+  // connector mutex to controll access to the mapping, above.
+  std::mutex connector_mutex_;
 
 Review comment:
   Fixed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to