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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
/************************************************************************
*
* Copyright (C) 2017-2021 IRCAD France
* Copyright (C) 2017-2019 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/>.
*
***********************************************************************/
#include "io/dicom/helper/SegmentedPropertyRegistry.hpp"
#include "io/base/reader/CsvReader.hpp"
#include "io/dicom/helper/DicomCodedAttribute.hpp"
#include <core/log/Logger.hpp>
#include <filesystem>
namespace sight::io::dicom
{
namespace helper
{
//------------------------------------------------------------------------------
const SegmentedPropertyRegistry::EntryType SegmentedPropertyRegistry::s_DEFAULT_ENTRY_VALUE =
{{"(111176;DCM;Unspecified)", "(T-D000A;SRT;Anatomical Structure)", "", "", ""}};
//------------------------------------------------------------------------------
SegmentedPropertyRegistry::SegmentedPropertyRegistry()
{
}
//------------------------------------------------------------------------------
bool checkAndFormatEntry(
const std::string& structureType,
SegmentedPropertyRegistry::EntryType& entry,
const core::log::Logger::sptr& logger
)
{
bool result = true;
// Check condition and add critical log on failure
auto checkCondition = [&](bool condition, const std::string& msg)
{
result &= condition;
SIGHT_ERROR_IF(msg, !condition && !logger);
if(!condition && logger)
{
logger->critical(msg);
}
};
// Structure type
checkCondition(!structureType.empty(), "Structure type of registry entries shall not be empty.");
// Property type
std::string& propertyType = entry[0];
checkCondition(!propertyType.empty(), "Property Type shall not be empty for '" + structureType + "'.");
checkCondition(
propertyType.empty()
|| io::dicom::helper::DicomCodedAttribute::checkAndFormatEntry(propertyType),
"Coded entry is badly formatted : '" + propertyType + "'. Please check registry."
);
// Property category
std::string& propertyCategory = entry[1];
checkCondition(!propertyCategory.empty(), "Property Category shall not be empty for '" + structureType + "'.");
checkCondition(
propertyCategory.empty()
|| io::dicom::helper::DicomCodedAttribute::checkAndFormatEntry(propertyCategory),
"Coded entry is badly formatted : '" + propertyCategory + "'. Please check registry."
);
// Property type modifiers (may be empty)
std::string& propertyTypeModifiers = entry[2];
checkCondition(
propertyTypeModifiers.empty()
|| io::dicom::helper::DicomCodedAttribute::checkAndFormatEntry(propertyTypeModifiers, true),
"Coded entry is badly formatted : '" + propertyTypeModifiers + "'. Please check registry."
);
// Anatomic region
std::string& anatomicRegion = entry[3];
checkCondition(
propertyCategory != "(M-01000;SRT;Morphologically Altered Structure)" || !anatomicRegion.empty(),
"Anatomic Region shall not be empty for altered structures. See '" + structureType + "'."
);
checkCondition(
anatomicRegion.empty()
|| io::dicom::helper::DicomCodedAttribute::checkAndFormatEntry(anatomicRegion),
"Coded entry is badly formatted : '" + anatomicRegion + "'. Please check registry."
);
// Anatomic region modifiers (may be empty)
std::string& anatomicRegionModifiers = entry[4];
checkCondition(
anatomicRegionModifiers.empty()
|| io::dicom::helper::DicomCodedAttribute::checkAndFormatEntry(anatomicRegionModifiers, true),
"Coded entry is badly formatted : '" + anatomicRegionModifiers + "'. Please check registry."
);
return result;
}
//------------------------------------------------------------------------------
bool SegmentedPropertyRegistry::readSegmentedPropertyRegistryFile(
const std::filesystem::path& filepath,
bool omitFirstLine,
const core::log::Logger::sptr& logger
)
{
if(std::filesystem::exists(filepath))
{
bool result = true;
// Read CSV
io::base::reader::CsvReader reader(filepath);
const std::string separator = "|";
auto tokens = reader.getLine(separator);
if(omitFirstLine)
{
// First line is omitted (titles)
tokens = reader.getLine(separator);
}
while(!tokens.empty())
{
const std::string& structureType = tokens[0];
// Each lines of valid csv file shall contain at least 6 elements.
if(tokens.size() >= 6)
{
EntryType entry;
// First element is skipped because it contains the title of csv file.
std::copy_n(tokens.begin() + 1, 5, entry.begin());
if(checkAndFormatEntry(structureType, entry, logger))
{
m_registry[structureType] = entry;
}
else
{
result = false;
}
}
else if(logger)
{
logger->critical("Entry badly formatted for structure '" + structureType + "'.");
result = false;
}
tokens = reader.getLine(separator);
}
// Check uniqueness of entries
std::set<EntryType> uniquenessSet;
for(const auto& entry : m_registry)
{
if(uniquenessSet.find(entry.second) != uniquenessSet.end())
{
const std::string msg = "Several structure types have the same attribute combination : {"
+ entry.second[0] + ";"
+ entry.second[1] + ";"
+ entry.second[2] + ";"
+ entry.second[3] + ";"
+ entry.second[4] + "}";
SIGHT_ERROR_IF(msg, !logger);
if(logger)
{
logger->critical(msg);
}
result = false;
}
uniquenessSet.insert(entry.second);
}
return result;
}
return false;
}
//------------------------------------------------------------------------------
bool SegmentedPropertyRegistry::empty() const
{
return m_registry.empty();
}
//------------------------------------------------------------------------------
std::size_t SegmentedPropertyRegistry::count() const
{
return m_registry.size();
}
//------------------------------------------------------------------------------
void SegmentedPropertyRegistry::clear()
{
m_registry.clear();
}
//------------------------------------------------------------------------------
bool SegmentedPropertyRegistry::hasEntry(const std::string& structureType) const
{
return m_registry.find(structureType) != m_registry.end();
}
//------------------------------------------------------------------------------
SegmentedPropertyRegistry::EntryType SegmentedPropertyRegistry::getEntry(const std::string& structureType) const
{
const auto it = m_registry.find(structureType);
if(it != m_registry.end())
{
return it->second;
}
return s_DEFAULT_ENTRY_VALUE;
}
//------------------------------------------------------------------------------
#define GET_ENTRY_VALUE(index) \
const auto it = m_registry.find(structureType); \
if(it != m_registry.end()) \
{ \
return it->second[index]; \
} \
return s_DEFAULT_ENTRY_VALUE[index];
//------------------------------------------------------------------------------
std::string SegmentedPropertyRegistry::getPropertyType(const std::string& structureType) const
{
GET_ENTRY_VALUE(0);
}
//------------------------------------------------------------------------------
std::string SegmentedPropertyRegistry::getPropertyCategory(const std::string& structureType) const
{
GET_ENTRY_VALUE(1);
}
//------------------------------------------------------------------------------
std::string SegmentedPropertyRegistry::getPropertyTypeModifiers(const std::string& structureType) const
{
GET_ENTRY_VALUE(2);
}
//------------------------------------------------------------------------------
std::string SegmentedPropertyRegistry::getAnatomicRegion(const std::string& structureType) const
{
GET_ENTRY_VALUE(3);
}
//------------------------------------------------------------------------------
std::string SegmentedPropertyRegistry::getAnatomicRegionModifiers(const std::string& structureType) const
{
GET_ENTRY_VALUE(4);
}
#undef GET_ENTRY_VALUE
//------------------------------------------------------------------------------
std::string SegmentedPropertyRegistry::getStructureType(
const std::string& propertyType,
const std::string& propertyCategory,
const std::string& propertyTypeModifiers,
const std::string& anatomicRegion,
const std::string& anatomicRegionModifiers
) const
{
// Entry that we are looking for
const EntryType entry = {{propertyType,
propertyCategory,
propertyTypeModifiers,
anatomicRegion,
anatomicRegionModifiers
}
};
// Search predicate
const auto predicate = [&](const EntryRegistryType::value_type& value) -> bool
{
return value.second == entry;
};
// Search for entry
const auto it = std::find_if(m_registry.begin(), m_registry.end(), predicate);
return (it != m_registry.end()) ? it->first : "";
}
//------------------------------------------------------------------------------
} //namespace helper
} //namespace sight::io::dicom
|