]> Creatis software - clitk.git/blob - common/rtkImagXXMLFileReader.h
Merge branch 'master' of git.creatis.insa-lyon.fr:clitk
[clitk.git] / common / rtkImagXXMLFileReader.h
1 /*=========================================================================
2  *
3  *  Copyright RTK Consortium
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *=========================================================================*/
18
19 #ifndef __rtkImagXXMLFileReader_h
20 #define __rtkImagXXMLFileReader_h
21
22 #ifdef _MSC_VER
23 #pragma warning ( disable : 4786 )
24 #endif
25
26 #include <itkXMLFile.h>
27 #include <itkMetaDataDictionary.h>
28
29 #include <map>
30
31 namespace rtk
32 {
33
34 /** \class ImagXXMLFileReader
35  *
36  * TODO
37  *
38  */
39 class ImagXXMLFileReader : public itk::XMLReader<itk::MetaDataDictionary>
40 {
41 public:
42   /** Standard typedefs */
43   typedef ImagXXMLFileReader                      Self;
44   typedef itk::XMLReader<itk::MetaDataDictionary> Superclass;
45   typedef itk::SmartPointer<Self>                 Pointer;
46
47   /** Run-time type information (and related methods). */
48   itkTypeMacro(ImagXXMLFileReader, itk::XMLReader);
49
50   /** Method for creation through the object factory. */
51   itkNewMacro(Self);
52
53   /** Determine if a file can be read */
54   int CanReadFile(const char* name);
55
56 protected:
57   ImagXXMLFileReader() {m_OutputObject = &m_Dictionary;}
58   virtual ~ImagXXMLFileReader() {}
59
60   virtual void StartElement(const char * name,const char **atts);
61
62   virtual void EndElement(const char *name);
63
64   void CharacterDataHandler(const char *inData, int inLength);
65
66 private:
67   ImagXXMLFileReader(const Self&); //purposely not implemented
68   void operator=(const Self&);     //purposely not implemented
69
70   itk::MetaDataDictionary m_Dictionary;
71   std::string             m_CurCharacterData;
72 };
73
74 }
75 #endif