ITK
5.2.0
Insight Toolkit
|
#include <itkByteSwapper.h>
Public Types | |
using | BufferSizeType = SizeValueType |
using | ConstPointer = SmartPointer< const Self > |
using | OStreamType = std::ostream |
using | Pointer = SmartPointer< Self > |
using | Self = ByteSwapper |
using | Superclass = Object |
Public Types inherited from itk::Object | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = Object |
using | Superclass = LightObject |
Public Types inherited from itk::LightObject | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = LightObject |
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
Public Member Functions inherited from itk::Object | |
unsigned long | AddObserver (const EventObject &event, Command *) |
unsigned long | AddObserver (const EventObject &event, Command *) const |
unsigned long | AddObserver (const EventObject &event, std::function< void(const EventObject &)> function) const |
LightObject::Pointer | CreateAnother () const override |
virtual void | DebugOff () const |
virtual void | DebugOn () const |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary () |
const MetaDataDictionary & | GetMetaDataDictionary () const |
virtual ModifiedTimeType | GetMTime () const |
virtual const TimeStamp & | GetTimeStamp () const |
bool | HasObserver (const EventObject &event) const |
void | InvokeEvent (const EventObject &) |
void | InvokeEvent (const EventObject &) const |
virtual void | Modified () const |
void | Register () const override |
void | RemoveAllObservers () |
void | RemoveObserver (unsigned long tag) |
void | SetDebug (bool debugFlag) const |
void | SetReferenceCount (int) override |
void | UnRegister () const noexcept override |
void | SetMetaDataDictionary (const MetaDataDictionary &rhs) |
void | SetMetaDataDictionary (MetaDataDictionary &&rrhs) |
virtual void | SetObjectName (std::string _arg) |
virtual const std::string & | GetObjectName () const |
Public Member Functions inherited from itk::LightObject | |
Pointer | Clone () const |
virtual void | Delete () |
virtual int | GetReferenceCount () const |
void | Print (std::ostream &os, Indent indent=0) const |
Static Public Member Functions | |
static void | SwapFromSystemToBigEndian (T *p) |
static void | SwapRangeFromSystemToBigEndian (T *p, BufferSizeType num) |
static bool | SystemIsBE () |
static bool | SystemIsBigEndian () |
static bool | SystemIsLE () |
static bool | SystemIsLittleEndian () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
static void | SwapWriteRangeFromSystemToBigEndian (T *p, int num, OStreamType *fp) |
static void | SwapFromSystemToLittleEndian (T *p) |
static void | SwapRangeFromSystemToLittleEndian (T *p, BufferSizeType num) |
static void | SwapWriteRangeFromSystemToLittleEndian (T *p, int num, OStreamType *fp) |
ByteSwapper ()=default | |
~ByteSwapper () override=default | |
static void | Swap2 (void *pin) |
static void | Swap2Range (void *ptr, BufferSizeType num) |
static void | SwapWrite2Range (void *ptr, BufferSizeType num, OStreamType *fp) |
static void | Swap4 (void *ptr) |
static void | Swap4Range (void *ptr, BufferSizeType num) |
static void | SwapWrite4Range (void *ptr, BufferSizeType num, OStreamType *fp) |
static void | Swap8 (void *ptr) |
static void | Swap8Range (void *ptr, BufferSizeType num) |
static void | SwapWrite8Range (void *ptr, BufferSizeType num, OStreamType *fp) |
Additional Inherited Members | |
Protected Member Functions inherited from itk::Object | |
Object () | |
~Object () override | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &timeStamp) |
Protected Member Functions inherited from itk::LightObject | |
virtual LightObject::Pointer | InternalClone () const |
LightObject () | |
virtual void | PrintHeader (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
Perform machine dependent byte swapping.
ByteSwapper is used by I/O classes to perform machine dependent byte swapping. Byte swapping is often used when reading or writing binary files. Files can either be Big Endian (BE) or Little Endian (LE).
Definition at line 50 of file itkByteSwapper.h.
using itk::ByteSwapper< T >::BufferSizeType = SizeValueType |
Type for representing large buffers, including those in 64bits architectures
Definition at line 95 of file itkByteSwapper.h.
using itk::ByteSwapper< T >::ConstPointer = SmartPointer<const Self> |
Definition at line 59 of file itkByteSwapper.h.
using itk::ByteSwapper< T >::OStreamType = std::ostream |
Work around MSVC bug (including ByteSwapper.h in a templated class).
Definition at line 62 of file itkByteSwapper.h.
using itk::ByteSwapper< T >::Pointer = SmartPointer<Self> |
Definition at line 58 of file itkByteSwapper.h.
using itk::ByteSwapper< T >::Self = ByteSwapper |
Standard class type aliases.
Definition at line 56 of file itkByteSwapper.h.
using itk::ByteSwapper< T >::Superclass = Object |
Definition at line 57 of file itkByteSwapper.h.
|
protecteddefault |
Generic swap method handles type T. The data is swapped and written (in binary) to the ostream given. A total of num values of type T are written and swapped. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Big Endian.
|
overrideprotecteddefault |
Generic swap method handles type T. The data is swapped and written (in binary) to the ostream given. A total of num values of type T are written and swapped. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Big Endian.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::Object.
|
staticprotected |
Swap 2 bytes.
|
staticprotected |
Swap a range of two-byte words. Num is the number of two-byte words to swap.
|
staticprotected |
Swap four bytes.
|
staticprotected |
Swap a range of four-byte words. Num is the number of four-byte words to swap.
|
staticprotected |
Swap 8 bytes.
|
staticprotected |
Swap a range of 8-byte words. Num is the number of four-byte words to swap.
|
static |
Generic swap method handles type T. The swapping is done in-place. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Big Endian.
Referenced by itk::DCMTKFileReader::GetElementDSorOB().
|
static |
Generic swap method handles type T. The swapping is done in-place. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Little Endian.
Referenced by itk::DCMTKFileReader::GetElementDSorOB().
|
static |
Generic swap method handles type T. The swapping is done in-place. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Big Endian.
Referenced by itk::MeshIOBase::ReadBufferAsBinary(), itk::VTKPolyDataMeshIO::ReadCellDataBufferAsBINARY(), itk::VTKPolyDataMeshIO::ReadPointDataBufferAsBINARY(), itk::VTKPolyDataMeshIO::ReadPointsBufferAsBINARY(), and itk::MeshIOBase::WriteBufferAsBinary().
|
static |
Generic swap method handles type T. The swapping is done in-place. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Little Endian.
Referenced by itk::MeshIOBase::ReadBufferAsBinary(), and itk::MeshIOBase::WriteBufferAsBinary().
|
staticprotected |
Swap and write a range of two-byte words. Num is the number of two-byte words to swap and write.
|
staticprotected |
Swap and write a range of four-byte words. Num is the number of four-byte words to swap and write.
|
staticprotected |
Swap and write a range of 8-byte words. Num is the number of four-byte words to swap and write.
|
static |
Generic swap method handles type T. The data is swapped and written (in binary) to the ostream given. A total of num values of type T are written and swapped. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Big Endian.
Referenced by itk::VTKPolyDataMeshIO::WriteCellDataBufferAsBINARY(), itk::FreeSurferBinaryMeshIO::WriteCells(), itk::VTKPolyDataMeshIO::WriteCellsBufferAsBINARY(), itk::FreeSurferBinaryMeshIO::WritePointData(), itk::VTKPolyDataMeshIO::WritePointDataBufferAsBINARY(), itk::FreeSurferBinaryMeshIO::WritePoints(), and itk::VTKPolyDataMeshIO::WritePointsBufferAsBINARY().
|
static |
Generic swap method handles type T. The data is swapped and written (in binary) to the ostream given. A total of num values of type T are written and swapped. 2, 4 and 8 byte swapping can be handled. Single byte types are not swapped; others raise an exception. The method is used to swap to and from Little Endian.
|
inlinestatic |
Definition at line 72 of file itkByteSwapper.h.
|
static |
Query the machine Endian-ness.
|
inlinestatic |
Definition at line 80 of file itkByteSwapper.h.
|
static |