Mercurial > hg > orthanc-dicomweb
view Plugin/DicomWebPeers.h @ 107:fea72403194b dev
refactoring, definition of peers in the configuration
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 27 Apr 2016 17:24:23 +0200 |
parents | |
children | c1529571af96 |
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 * * 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 <list> #include <string> #include <boost/thread/mutex.hpp> #include <json/value.h> namespace OrthancPlugins { class DicomWebPeer { private: std::string url_; std::string username_; std::string password_; void SetUrl(const std::string& url); public: DicomWebPeer(const std::string& url, const std::string& username, const std::string& password) : username_(username), password_(password) { SetUrl(url); } DicomWebPeer(const std::string& url) { SetUrl(url); } const std::string& GetUrl() const { return url_; } const std::string& GetUsername() const { return username_; } const std::string& GetPassword() const { return password_; } const char* GetUsernameC() const { return username_.empty() ? NULL : username_.c_str(); } const char* GetPasswordC() const { return password_.empty() ? NULL : password_.c_str(); } }; class DicomWebPeers { private: typedef std::map<std::string, DicomWebPeer*> Peers; boost::mutex mutex_; Peers peers_; void Clear(); DicomWebPeers() // Forbidden (singleton pattern) { } public: void Load(const Json::Value& configuration); ~DicomWebPeers() { Clear(); } static DicomWebPeers& GetInstance(); DicomWebPeer GetPeer(const std::string& name); void ListPeers(std::list<std::string>& peers); }; }