-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathSetup.cpp
More file actions
248 lines (196 loc) · 5.75 KB
/
Setup.cpp
File metadata and controls
248 lines (196 loc) · 5.75 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/*
* Copyright (C) 2012 Yee Young Han <websearch@naver.com> (http://blog.naver.com/websearch)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "StdAfx.h"
#include "Setup.h"
CSetup gclsSetup;
CSetup::CSetup() : m_iSipServerPort(5060), m_iCallTotalCount(100), m_iCallConcurrentCount(10), m_iTestType(0)
{
}
CSetup::~CSetup()
{
}
/**
* @ingroup SipSpeed
* @brief 설정 파일을 읽어서 멤버변수에 저장한다.
* @return 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool CSetup::Get()
{
if( GetFile() == false ) return false;
GetString( ST_SIP_SERVER_IP, m_strSipServerIp );
m_iSipServerPort = GetInt( ST_SIP_SERVER_PORT, 5060 );
GetString( ST_SIP_DOMAIN, m_strSipDomain );
GetString( ST_CALLER_ID, m_strCallerId );
GetString( ST_CALLER_PW, m_strCallerPassWord );
GetString( ST_CALLEE_ID, m_strCalleeId );
GetString( ST_CALLEE_PW, m_strCalleePassWord );
m_iCallTotalCount = GetInt( ST_CALL_TOTAL_COUNT, 100 );
m_iCallConcurrentCount = GetInt( ST_CALL_CONCURRENT_COUNT, 10 );
m_iTestType = GetInt( ST_TEST_TYPE, 0 );
m_clsMap.clear();
return true;
}
/**
* @ingroup SipSpeed
* @brief 멤버변수를 설정 파일로 저장한다.
* @return 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool CSetup::Put()
{
PutString( ST_SIP_SERVER_IP, m_strSipServerIp.c_str() );
PutInt( ST_SIP_SERVER_PORT, m_iSipServerPort );
PutString( ST_SIP_DOMAIN, m_strSipDomain.c_str() );
PutString( ST_CALLER_ID, m_strCallerId.c_str() );
PutString( ST_CALLER_PW, m_strCallerPassWord.c_str() );
PutString( ST_CALLEE_ID, m_strCalleeId.c_str() );
PutString( ST_CALLEE_PW, m_strCalleePassWord.c_str() );
PutInt( ST_CALL_TOTAL_COUNT, m_iCallTotalCount );
PutInt( ST_CALL_CONCURRENT_COUNT, m_iCallConcurrentCount );
PutInt( ST_TEST_TYPE, m_iTestType );
bool bRes = PutFile();
m_clsMap.clear();
return bRes;
}
/**
* @ingroup SipSpeed
* @brief 설정 파일을 읽어서 키/값 자료구조에 저장한다.
* @return 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool CSetup::GetFile()
{
FILE * fd = fopen( SETUP_FILENAME, "r" );
if( fd == NULL ) return false;
char szBuf[1024];
int iLen;
std::string strKey, strValue;
memset( szBuf, 0, sizeof(szBuf) );
while( fgets( szBuf, sizeof(szBuf), fd ) )
{
iLen = (int)strlen( szBuf );
if( iLen >= 2 && szBuf[iLen-2] == '\r' )
{
szBuf[iLen-2] = '\0';
iLen -= 2;
}
else if( iLen >= 1 && szBuf[iLen-1] == '\n' )
{
szBuf[iLen-1] = '\0';
iLen -= 1;
}
strKey.clear();
strValue.clear();
for( int i = 0; i < iLen; ++i )
{
if( szBuf[i] == '=' )
{
strKey.append( szBuf, i );
strValue.append( szBuf + i + 1 );
SETUP_MAP::iterator it;
it = m_clsMap.find( strKey );
if( it == m_clsMap.end() )
{
m_clsMap.insert( SETUP_MAP::value_type( strKey, strValue ) );
}
break;
}
}
memset( szBuf, 0, sizeof(szBuf) );
}
fclose( fd );
return true;
}
/**
* @ingroup SipSpeed
* @brief 키/값 자료구조를 설정 파일에 저장한다.
* @return 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool CSetup::PutFile()
{
FILE * fd = fopen( SETUP_FILENAME, "w" );
if( fd == NULL ) return false;
SETUP_MAP::iterator it;
for( it = m_clsMap.begin(); it != m_clsMap.end(); ++it )
{
fprintf( fd, "%s=%s\r\n", it->first.c_str(), it->second.c_str() );
}
fclose( fd );
return true;
}
int CSetup::GetInt( const char * pszName, int iIndex, int iDefaultValue )
{
int iInt;
char szIndex[11];
std::string strKey, strValue;
_snprintf( szIndex, sizeof(szIndex), "%d", iIndex );
strKey = pszName;
strKey.append( "_" );
strKey.append( szIndex );
if( GetString( strKey.c_str(), strValue ) == false ) return iDefaultValue;
iInt = atoi( strValue.c_str() );
return iInt;
}
int CSetup::GetInt( const char * pszName, int iDefaultValue )
{
int iInt;
std::string strValue;
if( GetString( pszName, strValue ) == false ) return iDefaultValue;
iInt = atoi( strValue.c_str() );
return iInt;
}
bool CSetup::GetString( const char * pszName, std::string & strValue )
{
SETUP_MAP::iterator it;
it = m_clsMap.find( pszName );
if( it != m_clsMap.end() )
{
strValue = it->second;
return true;
}
return false;
}
bool CSetup::PutInt( const char * pszName, int iIndex, int iValue )
{
char szIndex[11];
std::string strKey;
_snprintf( szIndex, sizeof(szIndex), "%d", iIndex );
strKey = pszName;
strKey.append( "_" );
strKey.append( szIndex );
_snprintf( szIndex, sizeof(szIndex), "%d", iValue );
return PutString( strKey.c_str(), szIndex );
}
bool CSetup::PutInt( const char * pszName, int iValue )
{
char szValue[11];
_snprintf( szValue, sizeof(szValue), "%d", iValue );
return PutString( pszName, szValue );
}
bool CSetup::PutString( const char * pszName, const char * pszValue )
{
SETUP_MAP::iterator it;
it = m_clsMap.find( pszName );
if( it != m_clsMap.end() )
{
it->second = pszValue;
}
else
{
m_clsMap.insert( SETUP_MAP::value_type( pszName, pszValue ) );
}
return true;
}