diff Framework/MySQL/MySQLParameters.cpp @ 0:7cea966b6829

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Jul 2018 08:16:29 +0200
parents
children 1e9bad493475
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Framework/MySQL/MySQLParameters.cpp	Wed Jul 04 08:16:29 2018 +0200
@@ -0,0 +1,128 @@
+/**
+ * Orthanc - A Lightweight, RESTful DICOM Store
+ * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
+ * Department, University Hospital of Liege, Belgium
+ * Copyright (C) 2017-2018 Osimis S.A., Belgium
+ *
+ * This program is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License
+ * as published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Affero General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ **/
+
+
+#include "MySQLParameters.h"
+
+#include <Core/Logging.h>
+#include <Core/OrthancException.h>
+
+namespace OrthancDatabases
+{
+  void MySQLParameters::Reset()
+  {
+    host_ = "localhost";
+    username_.clear();
+    password_.clear();
+    database_.clear();
+    port_ = 3306;
+    unixSocket_ = "/var/run/mysqld/mysqld.sock";
+    lock_ = true;
+  }
+
+  
+  MySQLParameters::MySQLParameters()
+  {
+    Reset();
+  }
+
+
+  MySQLParameters::MySQLParameters(const OrthancPlugins::OrthancConfiguration& configuration)
+  {
+    Reset();
+
+    std::string s;
+    if (configuration.LookupStringValue(s, "Host"))
+    {
+      SetHost(s);
+    }
+
+    if (configuration.LookupStringValue(s, "Username"))
+    {
+      SetUsername(s);
+    }
+
+    if (configuration.LookupStringValue(s, "Password"))
+    {
+      SetPassword(s);
+    }
+
+    if (configuration.LookupStringValue(s, "Database"))
+    {
+      SetDatabase(s);
+    }
+
+    unsigned int port;
+    if (configuration.LookupUnsignedIntegerValue(port, "Port"))
+    {
+      SetPort(port);
+    }
+
+    if (configuration.LookupStringValue(s, "UnixSocket"))
+    {
+      SetUnixSocket(s);
+    }
+
+    lock_ = configuration.GetBooleanValue("Lock", true);  // Use locking by default
+  }
+
+
+  void MySQLParameters::SetHost(const std::string& host)
+  {
+    host_ = host;
+  }
+
+  
+  void MySQLParameters::SetUsername(const std::string& username)
+  {
+    username_ = username;
+  }
+
+  
+  void MySQLParameters::SetPassword(const std::string& password)
+  {
+    password_ = password;
+  }
+
+  
+  void MySQLParameters::SetDatabase(const std::string& database)
+  {
+    database_ = database;
+  }
+
+  
+  void MySQLParameters::SetPort(unsigned int port)
+  {
+    if (port >= 65535)
+    {
+      throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange);
+    }
+    else
+    {
+      port_ = port;
+    }
+  }
+
+  
+  void MySQLParameters::SetUnixSocket(const std::string& socket)
+  {
+    unixSocket_ = socket;
+  }
+}