X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocument.h;h=841bd685b15d8968bd0a1e9423d30054afcf551d;hb=224ab29921c6a0d7411d11f8e60a353cb3dd01a4;hp=bf0f1d919dc63b8db9d08eb4d0924e03bdbcbd34;hpb=8401b1407f4b482a8d9e8cf6759009d1076b6a7c;p=gdcm.git diff --git a/src/gdcmDocument.h b/src/gdcmDocument.h index bf0f1d91..841bd685 100644 --- a/src/gdcmDocument.h +++ b/src/gdcmDocument.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocument.h,v $ Language: C++ - Date: $Date: 2005/11/21 16:14:39 $ - Version: $Revision: 1.135 $ + Date: $Date: 2006/02/16 20:06:14 $ + Version: $Revision: 1.140 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,6 +24,7 @@ #include "gdcmElementSet.h" #include "gdcmException.h" #include "gdcmDebug.h" // for LEGACY +#include "gdcmCommandManager.h" #include #include @@ -47,8 +48,9 @@ public: // Loading //Deprecated : use SetFileName() + Load() - //GDCM_LEGACY( virtual bool Load( std::string const &filename ) ); - virtual bool Load( std::string const &filename ); +#ifndef GDCM_LEGACY_REMOVE + virtual bool Load( std::string const &filename ); +#endif virtual bool Load( ); // Dictionaries @@ -83,11 +85,11 @@ public: bool CloseFile(); void WriteContent( std::ofstream *fp, FileType type ); -// Content entries +// Data entries virtual void LoadEntryBinArea(uint16_t group, uint16_t elem); virtual void LoadEntryBinArea(DataEntry *entry); - void LoadDocEntrySafe(DocEntry *entry); + void SetMaxSizeLoadEntry(long); void AddForceLoadElement(uint16_t group, uint16_t elem); // Ordering of Documents @@ -112,10 +114,16 @@ protected: // gdcm::DicomDir are meaningfull). Document(); virtual ~Document(); - + + virtual void CallStartMethod(); + virtual void CallProgressMethod(); + virtual void CallEndMethod(); + uint16_t ReadInt16() throw ( FormatError ); uint32_t ReadInt32() throw ( FormatError ); - void SkipBytes(uint32_t); + + /// \brief skips bytes inside the source file + void SkipBytes(uint32_t nBytes) { Fp->seekg((long)nBytes, std::ios::cur);} int ComputeGroup0002Length( ); // Variables @@ -177,7 +185,7 @@ protected: private: // Methods void Initialize(); - bool DoTheLoadingDocumentJob(); + bool DoTheLoadingDocumentJob(); // System access (meaning endian related !?) uint16_t SwapShort(uint16_t); @@ -208,7 +216,6 @@ private: bool CheckSwap(); void SwitchByteSwapCode(); - void SetMaxSizeLoadEntry(long); // DocEntry related utilities DocEntry *ReadNextDocEntry(); @@ -218,6 +225,11 @@ private: DocEntry *Backtrack(DocEntry *docEntry); // Variables +protected: + /// value of the ??? for any progress bar + float Progress; + mutable bool Abort; + /// Public dictionary used to parse this header Dict *RefPubDict; /// \brief Optional "shadow dictionary" (private elements) used to parse