/*========================================================================= Program: GDCM (Grassroots DICOM). A DICOM library Copyright (c) 2006-2011 Mathieu Malaterre All rights reserved. See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html 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 notice for more information. =========================================================================*/ #include "gdcmImplementationVersionNameSub.h" #include "gdcmFileMetaInformation.h" #include "gdcmSwapper.h" namespace gdcm { namespace network { const uint8_t ImplementationVersionNameSub::ItemType = 0x55; const uint8_t ImplementationVersionNameSub::Reserved2 = 0x00; ImplementationVersionNameSub::ImplementationVersionNameSub() { ImplementationVersionName = FileMetaInformation::GetImplementationVersionName(); ItemLength = (uint16_t)ImplementationVersionName.size(); assert( (size_t)ItemLength + 4 == Size() ); } std::istream &ImplementationVersionNameSub::Read(std::istream &is) { //uint8_t itemtype = 0x0; //is.read( (char*)&itemtype, sizeof(ItemType) ); //assert( itemtype == ItemType ); uint8_t reserved2; is.read( (char*)&reserved2, sizeof(Reserved2) ); uint16_t itemlength; is.read( (char*)&itemlength, sizeof(ItemLength) ); SwapperDoOp::SwapArray(&itemlength,1); ItemLength = itemlength; char name[256]; assert( itemlength < 256 ); is.read( name, itemlength ); ImplementationVersionName = std::string(name,itemlength); return is; } const std::ostream &ImplementationVersionNameSub::Write(std::ostream &os) const { os.write( (const char*)&ItemType, sizeof(ItemType) ); os.write( (const char*)&Reserved2, sizeof(Reserved2) ); //os.write( (const char*)&ItemLength, sizeof(ItemLength) ); uint16_t copy = ItemLength; SwapperDoOp::SwapArray(©,1); os.write( (const char*)©, sizeof(ItemLength) ); os.write( ImplementationVersionName.c_str(), ImplementationVersionName.size() ); return os; } size_t ImplementationVersionNameSub::Size() const { size_t ret = 0; assert( ImplementationVersionName.size() == ItemLength ); ret += sizeof(ItemType); ret += sizeof(Reserved2); ret += sizeof(ItemLength); ret += ItemLength; return ret; } void ImplementationVersionNameSub::Print(std::ostream &os) const { os << "ImplementationVersionName: " << ImplementationVersionName << std::endl; } } // end namespace network } // end namespace gdcm