MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkUSNavigationExperimentLogging.cpp
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
14#include "mitkDataNode.h"
15
16#include "itkRealTimeClock.h"
17
18#include "Poco/DOM/Document.h"
19#include "Poco/DOM/Element.h"
20#include "Poco/DOM/Text.h"
21#include "Poco/DOM/NodeList.h"
22#include "Poco/DOM/DOMWriter.h"
23#include "Poco/XML/XMLWriter.h"
24
26 : m_CurrentResultNumber(0),
27 m_RealTimeClock(itk::RealTimeClock::New())
28{
29 this->Reset();
30}
31
35
37{
38 m_StartTime = m_RealTimeClock->GetTimeInSeconds();
39
40 m_OutputXML = new Poco::XML::Document();
41 m_OutputXMLRoot = m_OutputXML->createElement("ExperimentResults");
42 m_OutputXML->appendChild(m_OutputXMLRoot);
43}
44
45void mitk::USNavigationExperimentLogging::SetFileName(const std::string& fileName)
46{
47 m_FileName = fileName;
48}
49
51{
52 Poco::AutoPtr<Poco::XML::Element> currentResultElement = m_OutputXML->createElement(resultNode->GetName());
53 m_OutputXMLRoot->appendChild(currentResultElement);
54
55 this->AddCurrentTimeAttributes(currentResultElement);
56
57 const mitk::PropertyList::PropertyMap* propertyMap = resultNode->GetPropertyList()->GetMap();
58
59 for ( mitk::PropertyList::PropertyMap::const_iterator it = propertyMap->begin();
60 it != propertyMap->end(); ++it )
61 {
62 size_t prefixSize = m_KeyPrefix.size();
63
64 // only write properties with keys beginning with the prefix (if a prefix was set)
65 if ( ! m_KeyPrefix.empty() && it->first.substr(0, prefixSize) != m_KeyPrefix ) { continue; }
66
67 if ( prefixSize >= it->first.size() )
68 {
69 MITK_ERROR("USNavigationExperimentLogging") << "Property key must contain more characters then the key prefix.";
70 mitkThrow() << "Property key must contain more characters then the key prefix.";
71 }
72
73 // create a xml element named like the key but without the prefix and
74 // append it into the xml tree
75 Poco::AutoPtr<Poco::XML::Element> mapElement = m_OutputXML->createElement(it->first.substr(prefixSize, it->first.size() - prefixSize));
76 currentResultElement->appendChild(mapElement);
77
78 // get the class of the property and save it in the tree
79 mapElement->setAttribute("class", it->second->GetNameOfClass());
80
81 // convert the value of the property to a string and save it in the tree
82 Poco::AutoPtr<Poco::XML::Text> value = m_OutputXML->createTextNode(it->second->GetValueAsString());
83 mapElement->appendChild(value);
84 }
85
86 this->WriteXmlToFile();
87}
88
89void mitk::USNavigationExperimentLogging::AddCurrentTimeAttributes(Poco::AutoPtr<Poco::XML::Element> element)
90{
91 // get the current time and add it as attribute to the xml
92 std::stringstream stringStreamTime;
93 stringStreamTime.precision(2);
94 stringStreamTime << std::fixed << m_RealTimeClock->GetTimeInSeconds();
95 element->setAttribute("time", stringStreamTime.str());
96
97 // get the duration since the start time and add it as attribute to the xml
98 std::stringstream stringStreamExperimentTime;
99 stringStreamExperimentTime.precision(2);
100 stringStreamExperimentTime << std::fixed << m_RealTimeClock->GetTimeInSeconds() - m_StartTime;
101 element->setAttribute("duration", stringStreamExperimentTime.str());
102}
103
105{
106 // open file and write tree if successful
107 std::ofstream filestream(m_FileName.c_str());
108 if ( filestream.is_open() )
109 {
110 // print xml tree to the file
111 Poco::XML::DOMWriter domWriter;
112 domWriter.setNewLine("\n");
113 domWriter.setOptions(Poco::XML::XMLWriter::PRETTY_PRINT);
114
115 try
116 {
117 domWriter.writeNode(filestream, m_OutputXML);
118 }
119 catch (const Poco::Exception &e)
120 {
121 MITK_ERROR("USNavigationExperimentLogging") << "Cannot write XML tree (" << e.displayText() << ").";
122 mitkThrow() << "Cannot write XML tree (" << e.displayText() << ").";
123 }
124
125 filestream.close();
126 }
127 else
128 {
129 MITK_ERROR("USNavigationExperimentLogging") << "Cannot open output file (" << m_FileName << "). Nothing will be stored at the file system.";
130 mitkThrow() << "Cannot open output file (" << m_FileName << "). Nothing will be stored at the file system.";
131 }
132}
RealTimeClock is a superclass to WindowsRealTimeClock, LinuxRealTimeClock, etc.
void SetResult(const itk::SmartPointer< mitk::DataNode > resultNode)
The properties of the given node are appended to the XML tree. The data node gets its own XML node un...
void WriteXmlToFile()
Does the actual writing of the complete XML tree to the file system.
void SetFileName(const std::string &fileName)
Setter for the file path and name of the XML file.
USNavigationExperimentLogging()
Constructs an empty XML tree and starts the real time clock.
void Reset()
Clears the XML tree. Can be used to start logging a new experiment. Make sure that the output file na...
void AddCurrentTimeAttributes(Poco::AutoPtr< Poco::XML::Element >)