/usr/include/InsightToolkit/Common/itkMetaDataObject.h is in libinsighttoolkit3-dev 3.20.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkMetaDataObject.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkMetaDataObject_h
#define __itkMetaDataObject_h
#include "itkMetaDataDictionary.h"
#include "itkMacro.h"
#include "itkObjectFactory.h"
#include "itkCommand.h"
#include "itkFastMutexLock.h"
#include <string.h>
#include <cstring>
namespace itk
{
/**
* \class MetaDataObject
* \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 dependant 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.
*/
template <class MetaDataObjectType>
class ITK_EXPORT MetaDataObject: public MetaDataObjectBase
{
public:
/** Smart pointer typedef support. */
typedef MetaDataObject Self;
typedef MetaDataObjectBase Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Method for creation through the object factory. */
itkFactorylessNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(MetaDataObject, MetaDataObjectBase);
/**
* \author Hans J. Johnson
* Default constructor with no initialization.
*/
MetaDataObject(void);
/** \author Hans J. Johnson
* Default virtual Destructor
*/
virtual ~MetaDataObject(void);
/**
* \author Hans J. Johnson
* Initializer constructor that sets m_MetaDataObjectValue to InitializerValue
*/
MetaDataObject(const MetaDataObjectType InitializerValue);
/**
* \author Hans J. Johnson
* Copy constructor that sets m_MetaDataObjectValue to TemplateObject.m_MetaDataObjectValue
*/
MetaDataObject(const MetaDataObject<MetaDataObjectType> &TemplateObject);
/**
* \author Hans J. Johnson
*
* The definition of this function is necessary to fulfill
* the interface of the MetaDataObjectBase
* \return A pointer to a const char array containing the unique type name.
*/
virtual const char * GetMetaDataObjectTypeName(void) const;
/**
* \author Hans J. Johnson
*
* The definition of this function is necessary to fulfill
* the interface of the MetaDataObjectBase
* \return A constant reference to a std::type_info object
*/
virtual const std::type_info & GetMetaDataObjectTypeInfo(void) const;
/**
* \author Hans J. Johnson
* Function to return the stored value of type MetaDataObjectType.
* \return a constant reference to a MetaDataObjectType
*/
const MetaDataObjectType & GetMetaDataObjectValue(void) const;
/**
* \author Hans J. Johnson
* Function to set the stored value of type MetaDataObjectType.
* \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
*/
virtual void Print(std::ostream& os) const;
private:
//This is made private to force the use of the MetaDataObject<MetaDataObjectType>::New() operator!
//void * operator new(size_t nothing) {};//purposefully not implemented
/**
* \author Hans J. Johnson
* A variable to store this derived type.
*/
MetaDataObjectType m_MetaDataObjectValue;
};
/**
* EncapsulateMetaData is a convenience function that encapsulates raw MetaData into a
* MetaDataObject that can be put into the MetaDataDictionary.
* \param Dictionary TODO
* \param key TODO
* \param invalue the value of type T that is to be encapsulated.
* \return A smartpointer ot a MetaDataObject that is suitable for
* insertion into a MetaDataDictionary.
*/
template <class 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 <class T>
inline void EncapsulateMetaData(MetaDataDictionary &Dictionary, const char *key, const T &invalue)
{
EncapsulateMetaData(Dictionary, std::string(key), invalue);
}
/**
* FindValInDictionary 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 <class T>
inline bool ExposeMetaData(MetaDataDictionary &Dictionary, const std::string key, T &outval)
{
if(!Dictionary.HasKey(key))
{
return false;
}
MetaDataObjectBase::Pointer baseObjectSmartPointer = Dictionary[key];
if(strcmp(typeid(T).name(),baseObjectSmartPointer->GetMetaDataObjectTypeName()) != 0)
{
return false;
}
//The following is necessary for getting this to work on
//kitware's SGI computers. It is not necessary for
//for IRIX 6.5.18m with MIPSPro 7.3.1.3m.
#if (defined(__sgi) && !defined(__GNUC__))
/**
* from page 10.4.11 pg 256 of the Stroustrup book:
* ========================================================================
* The reinterpret_cast is the crudest and potentially nastiest of the type
* conversion operators. In most caes, it simply yeilds a value with the
* same bit pattern as it's argument wit the type required. Thus, it can
* be used for the inherently implementation-depend, dangerous, and
* occasionally absolutely necessary activity of converting interger values
* to pointers, and vice versa.
*/
outval =
reinterpret_cast<MetaDataObject <T> *>(Dictionary[key].GetPointer())->GetMetaDataObjectValue();
#else
{
if(MetaDataObject <T> * TempMetaDataObject =dynamic_cast<MetaDataObject <T> *>(Dictionary[key].GetPointer()))
{
outval = TempMetaDataObject->GetMetaDataObjectValue();
}
else
{
return false;
}
}
#endif
// --------------- ^^^^^^^^^^^^
// SmartPointer MetaDataObject<T>*
return true;
}
//This is only necessary to make the borland compiler happy. It should not be necesary for most compilers.
//This should not change the behavior, it just adds an extra level of complexity to using the ExposeMetaData
//with const char * keys.
template <class T>
inline bool ExposeMetaData(MetaDataDictionary &Dictionary, const char * const key, T &outval)
{
return ExposeMetaData(Dictionary, std::string(key), outval);
}
// const versions of ExposeMetaData just to make life easier for enduser programmers, and to maintain backwards compatibility.
// The other option is to cast away constness in the main function.
template <class T>
inline bool ExposeMetaData(const MetaDataDictionary &Dictionary, const std::string key, T &outval)
{
MetaDataDictionary NonConstVersion=Dictionary;
return ExposeMetaData(NonConstVersion,key,outval);
}
template <class T>
inline bool ExposeMetaData(const MetaDataDictionary &Dictionary, const char * const key, T &outval)
{
MetaDataDictionary NonConstVersion=Dictionary;
return ExposeMetaData(Dictionary, std::string(key), outval);
}
} // end namespace itk
/**
* NATIVE_TYPE_METADATAPRINT
* 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 NATIVE_TYPE_METADATAPRINT(TYPE_NAME) \
template <> \
void \
itk::MetaDataObject< TYPE_NAME > \
::Print(std::ostream& os) const \
{ \
os << this->m_MetaDataObjectValue << std::endl; \
} \
template <> \
void \
itk::MetaDataObject< const TYPE_NAME > \
::Print(std::ostream& os) const \
{ \
os << this->m_MetaDataObjectValue << std::endl; \
}
/**
* ITK_OBJECT_TYPE_METADATAPRINT_1COMMA
* 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); \
} \
template <> \
void \
itk::MetaDataObject< const TYPE_NAME_PART1 , TYPE_NAME_PART2 > \
::Print(std::ostream& os) const \
{ \
this->m_MetaDataObjectValue->Print(os); \
}
/**
* ITK_IMAGE_TYPE_METADATAPRINT
* 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) \
// Define instantiation macro for this template.
#define ITK_TEMPLATE_MetaDataObject(_, EXPORT, x, y) namespace itk { \
_(1(class EXPORT MetaDataObject< ITK_TEMPLATE_1 x >)) \
namespace Templates { typedef MetaDataObject< ITK_TEMPLATE_1 x > \
MetaDataObject##y; } \
}
#if ITK_TEMPLATE_EXPLICIT
# include "Templates/itkMetaDataObject+-.h"
#endif
#if ITK_TEMPLATE_TXX
# include "itkMetaDataObject.txx"
#endif
#endif //itkMetaDataObject_h
|