/usr/include/ITK-4.9/itkMetaDataObject.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
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 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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
*
* http://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 ITKCommon_TEMPLATE_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);
/**
* 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.
*/
virtual const char * GetMetaDataObjectTypeName() const ITK_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
*/
virtual const std::type_info & GetMetaDataObjectTypeInfo() const ITK_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
*/
virtual void Print(std::ostream & os) const ITK_OVERRIDE;
protected:
MetaDataObject();
virtual ~MetaDataObject();
private:
MetaDataObject(const Self &) ITK_DELETE_FUNCTION;
void operator=(const Self &) ITK_DELETE_FUNCTION;
/**
* 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 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< 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)
{
if ( !Dictionary.HasKey(key) )
{
return false;
}
const MetaDataObjectBase::ConstPointer baseObjectSmartPointer = Dictionary[key];
MetaDataObject< T > const * const TempMetaDataObject = dynamic_cast< MetaDataObject< T > const * >( baseObjectSmartPointer.GetPointer() );
if ( TempMetaDataObject == ITK_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
# else
// We are using this library
# define ITKCommon_EXPORT_EXPLICIT ITKCommon_EXPORT
# endif
namespace itk
{
#ifdef ITK_HAS_GCC_PRAGMA_DIAG_PUSHPOP
ITK_GCC_PRAGMA_DIAG_PUSH()
#endif
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< 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<double> >;
#ifdef ITK_HAS_GCC_PRAGMA_DIAG_PUSHPOP
ITK_GCC_PRAGMA_DIAG_POP()
#else
ITK_GCC_PRAGMA_DIAG(warning "-Wattributes")
#endif
} // end namespace itk
# undef ITKCommon_EXPORT_EXPLICIT
#endif
|