RequestUnitsGet.cpp
1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "RequestUnitsGet.h"
#include "../UnitManager/UnitManager.h"
using namespace TREPS::UnitManager;
namespace TREPS
{
namespace RequestManager
{
RequestUnitsGetClass::RequestUnitsGetClass(void):RequestAbstractClass()
{
this->outputType = OUTPUT_XMLFILE;
}
RequestUnitsGetClass::~RequestUnitsGetClass(void)
{
}
string RequestUnitsGetClass::getRequestId(void)
{
return "units_get";
}
bool RequestUnitsGetClass::load(RequestLoaderClass *loader)
{
//nothing to do
return true;
}
bool RequestUnitsGetClass::run(void)
{
string unitsFile = this->app->getConf()->getUnitsFilePath();
if (unitsFile.compare("") == 0)
return false;
//get unit manager instance
UnitManagerClass *unitMgr = new UnitManagerClass;
//file validation
bool fileOK = unitMgr->init(unitsFile.c_str());
return fileOK;
}
void RequestUnitsGetClass::writeResult(ResultWriterClass *writer)
{
//No result file for this request
}
string RequestUnitsGetClass::getResultFileSuffix(void)
{
return "";
}
string RequestUnitsGetClass::getXMLFilePath(void)
{
return this->app->getConf()->getUnitsFilePath();
}
string RequestUnitsGetClass::getStringResult(void)
{
return "";
}
}
}