Mercurial > hg > orthanc-postgresql
view Core/PostgreSQLConnection.h @ 164:f0ca1c5facf6 readonly-mode
updated NEWS
author | amazy |
---|---|
date | Tue, 13 Mar 2018 11:31:16 +0100 |
parents | 43d5a4e03e8d |
children |
line wrap: on
line source
/** * 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/>. **/ #pragma once #include <string> #include <boost/noncopyable.hpp> #include <stdint.h> namespace OrthancPlugins { class PostgreSQLConnection : public boost::noncopyable { private: friend class PostgreSQLStatement; friend class PostgreSQLLargeObject; std::string host_; uint16_t port_; std::string username_; std::string password_; std::string database_; std::string uri_; bool readonly_; void* pg_; /* Object of type "PGconn*" */ void Close(); public: PostgreSQLConnection(); PostgreSQLConnection(const PostgreSQLConnection& other); ~PostgreSQLConnection() { Close(); } void SetConnectionUri(const std::string& uri); std::string GetConnectionUri() const; void SetHost(const std::string& host); const std::string& GetHost() const { return host_; } void SetPortNumber(uint16_t port); uint16_t GetPortNumber() const { return port_; } void SetUsername(const std::string& username); const std::string& GetUsername() const { return username_; } void SetPassword(const std::string& password); const std::string& GetPassword() const { return password_; } void SetDatabase(const std::string& database); void ResetDatabase() { SetDatabase(""); } const std::string& GetDatabase() const { return database_; } void Open(); void Execute(const std::string& sql); bool DoesTableExist(const char* name); void ClearAll(); void SetReadOnly(bool readonly); bool IsReadOnly() const { return readonly_; } }; }