Mercurial > hg > orthanc
view OrthancServer/OrthancInitialization.h @ 807:566a2fb3c1fb
update/delete modalities
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 07 May 2014 15:54:23 +0200 |
parents | 557575fd93e9 |
children | 2d9a000aa3a6 |
line wrap: on
line source
/** * Orthanc - A Lightweight, RESTful DICOM Store * Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege, * Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * In addition, as a special exception, the copyright holders of this * program give permission to link the code of its release with the * OpenSSL project's "OpenSSL" library (or with modified versions of it * that use the same license as the "OpenSSL" library), and distribute * the linked executables. You must obey the GNU General Public License * in all respects for all of the code used other than "OpenSSL". If you * modify file(s) with this exception, you may extend this exception to * your version of the file(s), but you are not obligated to do so. If * you do not wish to do so, delete this exception statement from your * version. If you delete this exception statement from all source files * in the program, then also delete it here. * * 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #pragma once #include <string> #include <set> #include <json/json.h> #include <stdint.h> #include "../Core/HttpServer/MongooseServer.h" #include "DicomProtocol/RemoteModalityParameters.h" #include "ServerEnumerations.h" namespace Orthanc { class OrthancPeerParameters { private: std::string name_; std::string url_; std::string username_; std::string password_; public: OrthancPeerParameters() : url_("http://localhost:8042/") { } const std::string& GetName() const { return name_; } void SetName(const std::string& name) { name_ = name; } const std::string& GetUrl() const { return url_; } void SetUrl(const std::string& url) { url_ = url; } const std::string& GetUsername() const { return username_; } void SetUsername(const std::string& username) { username_ = username; } const std::string& GetPassword() const { return password_; } void SetPassword(const std::string& password) { password_ = password; } }; void OrthancInitialize(const char* configurationFile = NULL); void OrthancFinalize(); std::string GetGlobalStringParameter(const std::string& parameter, const std::string& defaultValue); int GetGlobalIntegerParameter(const std::string& parameter, int defaultValue); bool GetGlobalBoolParameter(const std::string& parameter, bool defaultValue); void GetDicomModalityUsingSymbolicName(RemoteModalityParameters& modality, const std::string& name); bool LookupDicomModalityUsingAETitle(RemoteModalityParameters& modality, const std::string& aet); void GetOrthancPeer(OrthancPeerParameters& peer, const std::string& name); void GetListOfDicomModalities(std::set<std::string>& target); void GetListOfOrthancPeers(std::set<std::string>& target); void SetupRegisteredUsers(MongooseServer& httpServer); std::string InterpretRelativePath(const std::string& baseDirectory, const std::string& relativePath); std::string InterpretStringParameterAsPath(const std::string& parameter); void GetGlobalListOfStringsParameter(std::list<std::string>& target, const std::string& key); bool IsKnownAETitle(const std::string& aet); bool IsSameAETitle(const std::string& aet1, const std::string& aet2); RemoteModalityParameters GetModalityUsingSymbolicName(const std::string& name); RemoteModalityParameters GetModalityUsingAet(const std::string& aet); void UpdateModality(const RemoteModalityParameters& modality); void RemoveModality(const std::string& symbolicName); }