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 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
/*=========================================================================
*
* Portions of this file are subject to the VTK Toolkit Version 3 copyright.
*
* Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
*
* For complete copyright, license and disclaimer of warranty information
* please refer to the NOTICE file at the top of the ITK source tree.
*
*=========================================================================*/
#ifndef itkMetaDataObject_h
#define itkMetaDataObject_h
#include "itkMetaDataDictionary.h"
#include "itkMacro.h"
#include "itkArray.h"
#include "itkMatrix.h"
#include <cstring>
namespace itk
{
/**
* \class MetaDataObject
* \brief Allows arbitrary data types to be stored as MetaDataObjectBase types,
* and to be stored in a MetaDataDictionary.
*
* \author Hans J. Johnson
*
* The MetaDataObject class is a templated class that
* is a specialization of the MetaDataObjectBase type.
* This class allows arbitrary data types to be
* stored as MetaDataObjectBase types, and to be stored in
* a MetaDataDictionary.
*
* Any class or built in type that has valid copy constructor and operator=
* can be wrapped directly with this simple template type.
*
* Classes or built in types that do not have valid copy constructors or operator=
* implemented will have to implement those functions by deriving from MetaDataObject<MetaDataObjectType>
* and redefining the copy constructor and initializing constructor and the Get/Set functions
* to work around those deficiencies.
*
* The behavior of the MetaDataObject<Type>::Print() function has many plausible
* application dependent implementations. The default implementation prints the
* string "[UNKNOWN PRINT CHARACTERISTICS]" that works for all possible
* MetaDataObject types.
*
* The application developer may overload the default implementation to provide
* a specialized Print() characteristics to produce results desirable for their application.
* A set of very crude Macros {NATIVE_TYPE_METADATAPRINT, ITK_OBJECT_TYPE_METADATAPRINT_1COMMA,
* ITK_IMAGE_TYPE_METADATAPRINT } are provided to facilitate a very simple implementation, and as an example.
*
* \ingroup ITKCommon
*
*/
template <typename MetaDataObjectType>
class ITK_TEMPLATE_EXPORT MetaDataObject : public MetaDataObjectBase
{
public:
ITK_DISALLOW_COPY_AND_MOVE(MetaDataObject);
/** Smart pointer type alias support */
using Self = MetaDataObject;
using Superclass = MetaDataObjectBase;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** Method for creation through the object factory. */
itkFactorylessNewMacro(Self);
/** \see LightObject::GetNameOfClass() */
itkOverrideGetNameOfClassMacro(MetaDataObject);
/**
* The definition of this function is necessary to fulfill
* the interface of the MetaDataObjectBase
* \author Hans J. Johnson
* \return A pointer to a const char array containing the unique type name.
*/
const char *
GetMetaDataObjectTypeName() const override;
/**
* The definition of this function is necessary to fulfill
* the interface of the MetaDataObjectBase
* \author Hans J. Johnson
* \return A constant reference to a std::type_info object
*/
const std::type_info &
GetMetaDataObjectTypeInfo() const override;
/**
* Function to return the stored value of type MetaDataObjectType.
* \author Hans J. Johnson
* \return a constant reference to a MetaDataObjectType
*/
const MetaDataObjectType &
GetMetaDataObjectValue() const;
/**
* Function to set the stored value of type MetaDataObjectType.
* \author Hans J. Johnson
* \param newValue A constant reference to at MetaDataObjectType.
*/
void
SetMetaDataObjectValue(const MetaDataObjectType & newValue);
/**
* Defines the default behavior for printing out this element
* \param os An output stream
*/
void
Print(std::ostream & os) const override;
/** Returns (metaDataObject1 == metaDataObject2). */
friend bool
operator==(const Self & lhs, const Self & rhs)
{
return Self::EqualValues(lhs.m_MetaDataObjectValue, rhs.m_MetaDataObjectValue);
}
/** Returns (metaDataObject1 != metaDataObject2). */
friend bool
operator!=(const Self & lhs, const Self & rhs)
{
return !(lhs == rhs);
}
protected:
MetaDataObject() = default;
~MetaDataObject() override = default;
private:
/** Assigns the value of `source` to `target`.
* \note The trailing return type is there, just to enable SFINAE.*/
template <typename TValue>
static auto
Assign(TValue & target, const TValue & source) -> decltype(target = source)
{
return target = source;
}
/** `Assign` overload for C-style arrays (as well as arrays of arrays). */
template <typename TValue, size_t VNumberOfElements>
static void
Assign(TValue (&target)[VNumberOfElements], const TValue (&source)[VNumberOfElements])
{
for (size_t i = 0; i < VNumberOfElements; ++i)
{
Self::Assign(target[i], source[i]);
}
}
/** Tells whether the specified arguments compare equal.
* \note The trailing return type is there, just to enable SFINAE.*/
template <typename TValue>
static auto
EqualValues(const TValue & lhs, const TValue & rhs) -> decltype(lhs == rhs)
{
return lhs == rhs;
}
/** `EqualValues` overload for C-style arrays (as well as arrays of arrays). */
template <typename TValue, size_t VNumberOfElements>
static bool
EqualValues(const TValue (&lhs)[VNumberOfElements], const TValue (&rhs)[VNumberOfElements])
{
for (size_t i = 0; i < VNumberOfElements; ++i)
{
if (!Self::EqualValues(lhs[i], rhs[i]))
{
return false;
}
}
return true;
}
/** Internal helper function used to implement operator== for MetaDataObjectBase. */
bool
Equal(const MetaDataObjectBase & metaDataObjectBase) const override
{
const auto metaDataObject = dynamic_cast<const Self *>(&metaDataObjectBase);
return (metaDataObject != nullptr) && (*this == *metaDataObject);
}
/**
* A variable to store this derived type.
* \author Hans J. Johnson
*/
MetaDataObjectType m_MetaDataObjectValue{};
};
/**
* EncapsulateMetaData is a convenience function that encapsulates raw MetaData into a
* MetaDataObject that can be put into the MetaDataDictionary.
* \param Dictionary reference to a dictionary
* \param key string identifier for this object
* \param invalue the value of type T that is to be encapsulated.
*/
template <typename T>
inline void
EncapsulateMetaData(MetaDataDictionary & Dictionary, const std::string & key, const T & invalue)
{
typename MetaDataObject<T>::Pointer temp = MetaDataObject<T>::New();
temp->SetMetaDataObjectValue(invalue);
Dictionary[key] = temp;
}
template <typename T>
inline void
EncapsulateMetaData(MetaDataDictionary & Dictionary, const char * key, const T & invalue)
{
EncapsulateMetaData(Dictionary, std::string(key), invalue);
}
/**
* ExposeMetaData provides a shortcut for pulling a value of type
* T out of a MetaDataDictionary.
* If Dictionary[key] isn't set, return false, otherwise copy into
* outval reference and return true.
* \param Dictionary -- reference to a dictionary
* \param key -- string identifier for this object
* \param outval -- where to store value found in table.
*/
template <typename T>
inline bool
ExposeMetaData(const MetaDataDictionary & Dictionary, const std::string key, T & outval)
{
auto keyIter = Dictionary.Find(key);
if (keyIter == Dictionary.End())
{
return false;
}
auto const * const TempMetaDataObject = dynamic_cast<MetaDataObject<T> const *>(keyIter->second.GetPointer());
if (TempMetaDataObject == nullptr)
{
return false;
}
outval = TempMetaDataObject->GetMetaDataObjectValue();
return true;
}
} // end namespace itk
/**
* \def ITK_NATIVE_TYPE_METADATAPRINT( TYPE_NAME )
* \brief An ugly macro to facilitate creating a simple implementation of
* the MetaDataObject<Type>::Print() function for types that
* have operator<< defined.
* \param TYPE_NAME the native type parameter type
*/
#define ITK_NATIVE_TYPE_METADATAPRINT(TYPE_NAME) \
template <> \
void itk::MetaDataObject<TYPE_NAME>::Print(std::ostream & os) const \
{ \
os << this->m_MetaDataObjectValue << std::endl; \
}
/**
* \def ITK_OBJECT_TYPE_METADATAPRINT_1COMMA( TYPE_NAME_PART1, TYPE_NAME_PART2 )
* \brief An ugly macro to facilitate creating a simple implementation of
* the MetaDataObject< Type >::Print() function for
* itk::Objects that have 1 comma in their type definition
* \param TYPE_NAME_PART1
* \param TYPE_NAME_PART2
*/
#define ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(TYPE_NAME_PART1, TYPE_NAME_PART2) \
template <> \
void itk::MetaDataObject<TYPE_NAME_PART1, TYPE_NAME_PART2>::Print(std::ostream & os) const \
{ \
this->m_MetaDataObjectValue->Print(os); \
}
/**
* \def ITK_IMAGE_TYPE_METADATAPRINT( STORAGE_TYPE )
* An ugly macro to facilitate creating a simple implementation of
* the MetaDataObject<Type>::Print() function for
* itk::Image\<STORAGE_TYPE,[1-8]\>\::Pointer
* \param STORAGE_TYPE The storage type of the image type to print.
*/
#define ITK_IMAGE_TYPE_METADATAPRINT(STORAGE_TYPE) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 1>::Pointer) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 2>::Pointer) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 3>::Pointer) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 4>::Pointer) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 5>::Pointer) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 6>::Pointer) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 7>::Pointer) \
ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(itk::Image<STORAGE_TYPE, 8>::Pointer)
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkMetaDataObject.hxx"
#endif
#endif // itkMetaDataObject_h
/** Explicit instantiations */
#ifndef ITK_TEMPLATE_EXPLICIT_MetaDataObject
// Explicit instantiation is required to ensure correct dynamic_cast
// behavior across shared libraries.
//
// IMPORTANT: Since within the same compilation unit,
// ITK_TEMPLATE_EXPLICIT_<classname> defined and undefined states
// need to be considered. This code *MUST* be *OUTSIDE* the header
// guards.
//
#if defined(ITKCommon_EXPORTS)
// We are building this library
# define ITKCommon_EXPORT_EXPLICIT ITK_TEMPLATE_EXPORT
#else
// We are using this library
# define ITKCommon_EXPORT_EXPLICIT ITKCommon_EXPORT
#endif
namespace itk
{
ITK_GCC_PRAGMA_DIAG_PUSH()
ITK_GCC_PRAGMA_DIAG(ignored "-Wattributes")
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<bool>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<unsigned char>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<char>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<signed char>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<unsigned short>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<short>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<unsigned int>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<int>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<unsigned long>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<long>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<unsigned long long>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<long long>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<float>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<double>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<std::string>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<std::vector<float>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<std::vector<double>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<std::vector<std::vector<float>>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<std::vector<std::vector<double>>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<Array<char>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<Array<int>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<Array<float>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<Array<double>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<Matrix<float, 4, 4>>;
extern template class ITKCommon_EXPORT_EXPLICIT MetaDataObject<Matrix<double>>;
ITK_GCC_PRAGMA_DIAG_POP()
} // end namespace itk
#undef ITKCommon_EXPORT_EXPLICIT
#endif
|