/**
* Orthanc - A Lightweight, RESTful DICOM Store
* Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
* Department, University Hospital of Liege, Belgium
* Copyright (C) 2017-2023 Osimis S.A., Belgium
* Copyright (C) 2024-2025 Orthanc Team SRL, Belgium
* Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program. If not, see
* .
**/
#pragma once
#if ORTHANC_ENABLE_DCMTK_NETWORKING != 1
# error The macro ORTHANC_ENABLE_DCMTK_NETWORKING must be set to 1
#endif
#if !defined(ORTHANC_ENABLE_SSL)
# error The macro ORTHANC_ENABLE_SSL must be defined
#endif
#if ORTHANC_ENABLE_SSL == 1
# include "Internals/DicomTls.h"
#endif
#include "../Compatibility.h" // For std::unique_ptr<>
#include "DicomAssociationParameters.h"
#include
#include // For uint8_t
#include
#include
#include
namespace Orthanc
{
class DicomAssociation : public boost::noncopyable
{
private:
// This is the maximum number of presentation context IDs (the
// number of odd integers between 1 and 255)
// http://dicom.nema.org/medical/dicom/2019e/output/chtml/part08/sect_9.3.2.2.html
static const size_t MAX_PROPOSED_PRESENTATIONS = 128;
struct ProposedPresentationContext
{
std::string abstractSyntax_;
std::list transferSyntaxes_;
DicomAssociationRole role_;
};
typedef std::map >
AcceptedPresentationContexts;
bool isOpen_;
std::vector proposed_;
AcceptedPresentationContexts accepted_;
T_ASC_Network* net_;
T_ASC_Parameters* params_;
T_ASC_Association* assoc_;
#if ORTHANC_ENABLE_SSL == 1
std::unique_ptr tls_;
#endif
void CheckConnecting(const DicomAssociationParameters& parameters,
const OFCondition& cond);
void CloseInternal();
void AddAccepted(const std::string& abstractSyntax,
DicomTransferSyntax syntax,
uint8_t presentationContextId);
public:
DicomAssociation();
~DicomAssociation();
bool IsOpen() const
{
return isOpen_;
}
void ClearPresentationContexts();
void Open(const DicomAssociationParameters& parameters);
void Close();
bool LookupAcceptedPresentationContext(
std::map& target,
const std::string& abstractSyntax) const;
void ProposeGenericPresentationContext(const std::string& abstractSyntax);
void ProposeGenericPresentationContext(const std::string& abstractSyntax,
DicomAssociationRole role);
void ProposePresentationContext(const std::string& abstractSyntax,
DicomTransferSyntax transferSyntax,
DicomAssociationRole role);
void ProposePresentationContext(const std::string& abstractSyntax,
DicomTransferSyntax transferSyntax);
size_t GetRemainingPropositions() const;
void ProposePresentationContext(
const std::string& abstractSyntax,
const std::list& transferSyntaxes);
void ProposePresentationContext(
const std::string& abstractSyntax,
const std::list& transferSyntaxes,
DicomAssociationRole role);
T_ASC_Association& GetDcmtkAssociation() const;
T_ASC_Network& GetDcmtkNetwork() const;
bool GetAssociationParameters(std::string& remoteAet,
std::string& remoteIp,
std::string& calledAet) const;
static void CheckCondition(const OFCondition& cond,
const DicomAssociationParameters& parameters,
const std::string& command);
static void ReportStorageCommitment(
const DicomAssociationParameters& parameters,
const std::string& transactionUid,
const std::vector& sopClassUids,
const std::vector& sopInstanceUids,
const std::vector& failureReasons);
static void RequestStorageCommitment(
const DicomAssociationParameters& parameters,
const std::string& transactionUid,
const std::vector& sopClassUids,
const std::vector& sopInstanceUids);
};
}