Fraxinus  16.5.0-fx-rc9
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ProbeXmlConfigParserMock.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 
34 
35 #include <QStringList>
36 #include <iostream>
37 
38 ProbeXmlConfigParserMock::ProbeXmlConfigParserMock(QString& pathToXml, bool provideRTSource) :
39  mFileName(pathToXml),
40  mProvideRTSource(provideRTSource)
41 {}
42 
44 {
45 }
46 
48 {
49  return mFileName;
50 }
51 
52 void ProbeXmlConfigParserMock::removeConfig(QString scanner, QString probe, QString rtsource, QString configId)
53 {}
54 
56 {}
57 
59 {
60  QStringList retval;
61  retval << "DummyScanner";
62  return retval;
63 }
64 
65 QStringList ProbeXmlConfigParserMock::getProbeList(QString scanner)
66 {
67  QStringList retval;
68  retval << "DummyProbe";
69  return retval;
70 }
71 
72 
73 QStringList ProbeXmlConfigParserMock::getRtSourceList(QString scanner, QString probe)
74 {
75  QStringList retval;
76  if (mProvideRTSource)
77  retval << "DummySource";
78  return retval;
79 }
80 
81 QStringList ProbeXmlConfigParserMock::getConfigIdList(QString scanner, QString probe, QString rtsource)
82 {
83  QStringList retval;
84  QString retString = scanner + " " + probe + " " + rtsource;
85  retval << retString;
86  return retval;
87 }
88 
89 ProbeXmlConfigParser::Configuration ProbeXmlConfigParserMock::getConfiguration(QString scanner, QString probe, QString rtsource, QString configId)
90 {
91  Configuration retval;
92  retval.mName = "Dummy config";
93  retval.mUsScanner = scanner;
94  retval.mUsProbe = probe;
95  retval.mRtSource = rtsource;
96  retval.mConfigId = configId;
97  retval.mNotes = "Found no notes.";
98  retval.mTemporalCalibration = 0;
99  retval.mEmpty = false;
100  return retval;
101 }
102 
103 
< a easy-to-work-with struct for a specific xml configuration
ProbeXmlConfigParserMock(QString &pathToXml, bool provideRTSource=true)
virtual QStringList getRtSourceList(QString scanner, QString probe)
get a list of rt sources for that scanner/probe combo
virtual void saveCurrentConfig(ProbeXmlConfigParser::Configuration config)
virtual ProbeXmlConfigParser::Configuration getConfiguration(QString scanner, QString probe, QString rtsource, QString configId)
get a easy-to-work-with struct of a specific config
virtual QStringList getProbeList(QString scanner)
get a list of all probes for that scanner
virtual QStringList getScannerList()
get a list of all scanner in the xml
virtual QStringList getConfigIdList(QString scanner, QString probe, QString rtSource)
get a list of config ids for that scanner/probe/rsource combo
double mTemporalCalibration
delay in timestamping in grabber source relative to master clock.
QString mName
Name of config set.
virtual void removeConfig(QString scanner, QString probe, QString rtsource, QString configId)