ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkDOMNodeXMLReader.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
19#ifndef itkDOMNodeXMLReader_h
20#define itkDOMNodeXMLReader_h
21
22#include "itkDOMNode.h"
23#include "itkObject.h"
24#include "ITKIOXMLExport.h"
25
26#include <istream>
27
28namespace itk
29{
30
61class ITKIOXML_EXPORT DOMNodeXMLReader : public Object
62{
63public:
64 ITK_DISALLOW_COPY_AND_MOVE(DOMNodeXMLReader);
65
71
73 itkNewMacro(Self);
74
76 itkOverrideGetNameOfClassMacro(DOMNodeXMLReader);
77
80
82 itkSetStringMacro(FileName);
83
85 itkGetStringMacro(FileName);
86
92 itkSetObjectMacro(DOMNodeXML, OutputType);
93#if !defined(ITK_LEGACY_REMOVE)
94 // Provide backwards compatible interface
95 virtual void
96 SetOutput(OutputType * _arg)
97 {
98 this->SetDOMNodeXML(_arg);
99 }
100#endif
110 // NOTE: The m_DOMNodeXML is only
111 // exposed via the Source generation interface
112 // by the GetOutput() method that mimics
113 // a process object.
114 virtual const OutputType *
115 GetOutput() const
116 {
117 return this->m_DOMNodeXML.GetPointer();
118 }
119 virtual OutputType *
121 {
122 return this->m_DOMNodeXML.GetPointer();
123 }
124
125#if !defined(ITK_LEGACY_REMOVE)
126 // This interface was exposed in ITKv4 when the itkGetModifiableObjectMacro was used
127 virtual OutputType *
128 GetModifiedOutput()
129 {
130 return this->m_DOMNodeXML.GetPointer();
131 }
132#endif
133
138 void
139 Update(std::istream & is);
140
144 virtual void
146
150 virtual void
151 StartElement(const char * name, const char ** atts);
152
156 virtual void
157 EndElement(const char * name);
158
162 virtual void
163 CharacterDataHandler(const char * text, int len);
164
165protected:
167
168private:
170 std::string m_FileName{};
171
174
176 OutputType * m_Context{ nullptr };
177};
178
179} // namespace itk
180
182inline std::istream &
183operator>>(std::istream & is, itk::DOMNode & object)
184{
185 auto reader = itk::DOMNodeXMLReader::New();
186 reader->SetDOMNodeXML(&object);
187 reader->Update(is);
188 return is;
189}
190#endif // itkDOMNodeXMLReader_h
OutputType::Pointer OutputPointer
SmartPointer< Self > Pointer
virtual void StartElement(const char *name, const char **atts)
static Pointer New()
virtual OutputType * GetOutput()
virtual void EndElement(const char *name)
virtual void SetDOMNodeXML(OutputType *_arg)
virtual void CharacterDataHandler(const char *text, int len)
void Update(std::istream &is)
virtual void Update()
virtual const OutputType * GetOutput() const
SmartPointer< const Self > ConstPointer
Class to represent a node in a Document Object Model (DOM) tree structure.
Definition itkDOMNode.h:54
SmartPointer< Self > Pointer
Definition itkDOMNode.h:61
Implements transparent reference counting.
std::istream & operator>>(std::istream &is, itk::DOMNode &object)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....