1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/************************************************************************
*
* Copyright (C) 2017-2021 IRCAD France
* Copyright (C) 2017 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight 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.
*
* Sight 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 Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#pragma once
#include "io/dicom/config.hpp"
#include <core/base.hpp>
#include <map>
#include <string>
namespace sight::io::dicom
{
namespace helper
{
/**
* @brief SOPClass tools
*/
class IO_DICOM_CLASS_API SOPClass
{
public:
/**
* @brief Returns SOP Class Name
* @param SOPClassUID SOP Class UID
* @return SOP Class Name according to UID
* @note If the UID is not registered, the function returns the UID
*/
IO_DICOM_API static std::string getSOPClassName(const std::string& SOPClassUID);
/**
* @brief Returns whether the SOP Class is hazardous or not
* @param SOPClassUID SOP Class UID
* @return True if the SOP Class is hazardous
* @note A hazardous SOP class may contain patient's information even after
* the anonymization process (like pictures, pdf report, etc.)
* @note If the UID is not registered, the function returns true
*/
IO_DICOM_API static bool isHazardousSOPClass(const std::string& SOPClassUID);
private:
/// Container holding SOP Class Names and associated Hazardousness
typedef std::pair<std::string, bool> SOPClassNameAndHazardousnessPairType;
/**
* @brief Map holding associations between SOP Class UID and SOP Class Name/Hazardousness
* @{ */
typedef std::map<std::string, SOPClassNameAndHazardousnessPairType> SOPClassContainerType;
static const SOPClassContainerType s_SOP_CLASS_LIST;
/** @} */
};
} // namespace helper
} // namespace sight::io::dicom
|