Loading [MathJax]/jax/output/HTML-CSS/config.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkXMLFile.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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#ifndef itkXMLFile_h
19#define itkXMLFile_h
21#include "ITKIOXMLExport.h"
22#include <fstream>
23
24namespace itk
25{
35class ITKIOXML_EXPORT XMLReaderBase : public LightProcessObject
36{
37public:
38 ITK_DISALLOW_COPY_AND_MOVE(XMLReaderBase);
39
41
43 itkSetStringMacro(Filename);
44
46 itkGetStringMacro(Filename);
47
49 virtual int
50 CanReadFile(const char * name) = 0;
51
53 virtual void
55
59 virtual void
60 StartElement(const char * name, const char ** atts) = 0;
61
65 virtual void
66 EndElement(const char * name) = 0;
67
71 virtual void
72 CharacterDataHandler(const char * inData, int inLength) = 0;
73
74protected:
75 XMLReaderBase() = default;
76 ~XMLReaderBase() override = default;
77 void
78 PrintSelf(std::ostream & os, Indent indent) const override;
79
84 void
86
87 std::string m_Filename{};
88};
89
99template <typename T>
100class ITK_TEMPLATE_EXPORT XMLReader : public XMLReaderBase
101{
102public:
103 ITK_DISALLOW_COPY_AND_MOVE(XMLReader);
104
106
110 void
112 {
113 m_OutputObject = obj;
114 }
115
117 T *
119 {
120 return m_OutputObject;
121 }
122
123protected:
125 : m_OutputObject(nullptr)
126 {}
127
128 ~XMLReader() override = default;
129
131};
132
143template <typename T>
144class ITK_TEMPLATE_EXPORT XMLWriterBase : public LightProcessObject
145{
146public:
147 ITK_DISALLOW_COPY_AND_MOVE(XMLWriterBase);
148
150
155
157 itkSetStringMacro(Filename);
159 itkGetStringMacro(Filename);
161 virtual int
162 CanWriteFile(const char * name) = 0;
163
165 void
166 SetObject(T * toWrite)
167 {
168 m_InputObject = toWrite;
169 }
170
171 virtual int
173
174#if !defined(ITK_WRAPPING_PARSER)
176 void
177 WriteStartElement(const char * const tag, std::ofstream & file)
178 {
179 file << '<' << tag << '>';
180 }
181
183 void
184 WriteEndElement(const char * const tag, std::ofstream & file)
185 {
186 file << '<' << '/' << tag << '>';
187 }
188
190 void
191 WriteCharacterData(const char * const data, std::ofstream & file)
192 {
193 file << data;
194 }
195
197 void
198 WriteStartElement(std::string & tag, std::ofstream & file)
199 {
200 WriteStartElement(tag.c_str(), file);
201 }
202
204 void
205 WriteEndElement(std::string & tag, std::ofstream & file)
206 {
207 WriteEndElement(tag.c_str(), file);
208 }
209
211 void
212 WriteCharacterData(std::string & data, std::ofstream & file)
213 {
214 WriteCharacterData(data.c_str(), file);
215 }
216#endif
217
218protected:
219 T * m_InputObject{}; // object to write out to an XML file
220 std::string m_Filename{}; // name of file to write.
221};
222} // namespace itk
223#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual int CanReadFile(const char *name)=0
virtual void EndElement(const char *name)=0
~XMLReaderBase() override=default
virtual void GenerateOutputInformation()
virtual void CharacterDataHandler(const char *inData, int inLength)=0
XMLReaderBase Self
Definition itkXMLFile.h:40
virtual void StartElement(const char *name, const char **atts)=0
XMLReaderBase()=default
std::string m_Filename
Definition itkXMLFile.h:87
void PrintSelf(std::ostream &os, Indent indent) const override
~XMLReader() override=default
T * GetOutputObject()
Definition itkXMLFile.h:118
XMLReader Self
Definition itkXMLFile.h:105
GroupSpatialObject< 3 > * m_OutputObject
Definition itkXMLFile.h:130
void SetOutputObject(T *obj)
Definition itkXMLFile.h:111
virtual int WriteFile()=0
void WriteStartElement(std::string &tag, std::ofstream &file)
Definition itkXMLFile.h:198
void WriteCharacterData(std::string &data, std::ofstream &file)
Definition itkXMLFile.h:212
void WriteEndElement(std::string &tag, std::ofstream &file)
Definition itkXMLFile.h:205
void WriteStartElement(const char *const tag, std::ofstream &file)
Definition itkXMLFile.h:177
virtual int CanWriteFile(const char *name)=0
void WriteCharacterData(const char *const data, std::ofstream &file)
Definition itkXMLFile.h:191
void WriteEndElement(const char *const tag, std::ofstream &file)
Definition itkXMLFile.h:184
void SetObject(T *toWrite)
Definition itkXMLFile.h:166
XMLWriterBase Self
Definition itkXMLFile.h:149
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....