view StoragePlugin/PostgreSQLStorageArea.h @ 187:e2ea55a0dc24 default tip

migration to orthanc-databases
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Jul 2018 08:18:50 +0200 (2018-07-04)
parents 5611e6b1ec14
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 "../Core/GlobalProperties.h"
#include "../Core/PostgreSQLConnection.h"
#include "../Core/PostgreSQLStatement.h"

#include <orthanc/OrthancCPlugin.h>
#include <memory>
#include <boost/thread/mutex.hpp>

namespace OrthancPlugins
{  
  class PostgreSQLStorageArea
  {
  private:
    std::auto_ptr<PostgreSQLConnection>  db_;
    GlobalProperties globalProperties_;

    boost::mutex mutex_;
    std::auto_ptr<PostgreSQLStatement>  create_;
    std::auto_ptr<PostgreSQLStatement>  read_;
    std::auto_ptr<PostgreSQLStatement>  remove_;

    void Prepare();

  public:
    PostgreSQLStorageArea(PostgreSQLConnection* db,   // Takes the ownership
                          bool useLock,
                          bool allowUnlock);

    ~PostgreSQLStorageArea();

    void Create(const std::string& uuid,
                const void* content,
                size_t size,
                OrthancPluginContentType type);

    void Read(std::string& content,
              const std::string& uuid,
              OrthancPluginContentType type);

    void Read(void*& content,
              size_t& size,
              const std::string& uuid,
              OrthancPluginContentType type);

    void Remove(const std::string& uuid,
                OrthancPluginContentType type);

    void Clear();

    // For unit tests only (not thread-safe)!
    PostgreSQLConnection& GetConnection()
    {
      return *db_;
    }
  };
}