DLConfig.cpp
1.79 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "stdafx.h"
#include "DLConfig.h"
#include <sstream>
#include "mangerCmd.h"
#include "commonCmd.h"
#include "afxinet.h"
#include <string>
#include <cstdint>
#include "tinyxml.h"
CDLConfig::CDLConfig():
m_u16Port(0), m_u32PWMPort(0), m_iEncryptType(0)
{
}
CDLConfig::~CDLConfig()
{}
bool CDLConfig::ReadConfig()
{
bool bResult = false;
CString sXMLPath = /*GetModulePath() +*/ L".\\Config\\PWMConfig.xml";
TiXmlDocument xmlDoc(wstr_2_str(sXMLPath.GetBuffer()).c_str());
if (xmlDoc.LoadFile())
{
try
{
bResult = true;
TiXmlElement *pRootEle = xmlDoc.RootElement();
TiXmlElement *pPWMIP = pRootEle->FirstChildElement();
m_sPWMIP = pPWMIP->GetText();
TiXmlElement *pPWMPort = pPWMIP->NextSiblingElement();
std::string sPWMPort = pPWMPort->GetText();
m_u32PWMPort = atoi(sPWMPort.c_str());
TiXmlElement *pHost = pPWMPort->NextSiblingElement();
m_sHost = pHost->GetText();
TiXmlElement *pPort = pHost->NextSiblingElement();
std::string sPort = pPort->GetText();
m_u16Port = atoi(sPort.c_str());
TiXmlElement *pUsePWM = pPort->NextSiblingElement();
std::string sUsePWM = pUsePWM->GetText();
if (sUsePWM.compare("0") == 0)
{
m_iEncryptType = 0;
}
else
{
m_iEncryptType = 1;
}
TiXmlElement *pSecurityLevel = pUsePWM->NextSiblingElement();
std::string sSecurityLevel = pSecurityLevel->GetText();
std::stringstream ssTemp;
ssTemp << sSecurityLevel;
ssTemp >> m_iSecurityLevel;
}
catch (...)
{
bResult = false;
}
}
return bResult;
}
CString CDLConfig::GetModulePath()
{
CString sPath;
TCHAR szPath[MAX_PATH];
GetModuleFileName(NULL, szPath, MAX_PATH);
CString sMudolePath = szPath;
CString sMudoleName = AfxGetAppName();
sPath = sMudolePath.Left(sMudolePath.GetLength() - sMudoleName.GetLength() - 4);
return sPath;
}