-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUtilsTools.cpp
More file actions
288 lines (252 loc) · 5.45 KB
/
UtilsTools.cpp
File metadata and controls
288 lines (252 loc) · 5.45 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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#include <ZApplication.h>
#include <ZConfig.h>
#include <qstring.h>
#include <qfile.h>
#include <qdir.h>
#include <qtextcodec.h>
#include <qtextstream.h>
#include <time.h>
#include <dirent.h>
#include <sys/stat.h>
#include <iostream>
#include "UtilsTools.h"
QString readFileLine(const QString & fileName)
{
QFile f(fileName);
QString s;
if ( f.open( IO_ReadOnly ) )
{
QTextStream t( &f );
if ( !t.eof() )
s = t.readLine();
f.close();
}
return s;
}
//////////////////////////////////////////////////////////////////////////////////////
bool readLineConfig(QString &file, QString &key, QString &type, QString &dest)
{
if( !QFile::exists(file) )
return false;
QFile f(file);
QString str;
if ( f.open( IO_ReadOnly ) )
{
while ( !f.atEnd() )
{
f.readLine(str, 512);
//cout<<str<<endl;
if(str.find( key+type ) > -1) {
dest = str.replace(key+type, "");
f.close();
return true;
}
}
f.close();
return false;
}
return false;
}
bool setLineConfig(QString &file, QString &key, QString &type, QString &value)
{
if( !QFile::exists(file) )
return false;
bool status = false;
QString str;
QString dest;
QFile f(file);
if ( f.open( IO_ReadOnly | IO_WriteOnly ) )
{
while ( !f.atEnd() )
{
f.readLine(str, 512);
if(str.find(key+type) > -1) {
dest += key+type+value;
status = true;
} else {
dest += str;
}
}
if( status == false )
dest += key+type+value;
f.close();
if ( f.open( IO_WriteOnly | IO_Truncate ) )
{
f.writeBlock( dest, dest.length() );
f.close();
return true;
}
return false;
}
return false;
}
bool deleteKeyLine(QString &file, QString &deleteMark)
{
if( !QFile::exists(file) )
return false;
QString str;
QString dest;
QFile f(file);
if ( f.open( IO_ReadOnly | IO_WriteOnly ) )
{
while ( !f.atEnd() )
{
f.readLine(str, 512);
if(str.find(deleteMark) > -1)
continue;
else
dest += str;
}
f.close();
if ( f.open( IO_WriteOnly | IO_Truncate ) )
{
f.writeBlock( dest, dest.length() );
f.close();
return true;
}
return false;
}
return false;
}
/*
QString ctr(const char*ChineseString)
{
QTextCodec* gbk_codec = QTextCodec::codecForName("UTF-8");
return gbk_codec->toUnicode(ChineseString);
}
*/
QString getAppDir()
{
QString tmp = QString(qApp->argv()[0]);
int i = tmp.findRev("/");
tmp.remove(i+1,tmp.length()-1);
return tmp;
}
QString getIMEI()
{
QString result = QString::null;
unsigned int res;
TAPI_IMEI_NUMBER_A imei;
TAPI_CLIENT_Init ( NULL, 0 );
res = TAPI_ACCE_GetImei ( imei );
if ( res == 0 )
{
QString pImei = QString::fromLatin1 ( reinterpret_cast<char*> ( imei ) );
result = pImei;
}
TAPI_CLIENT_Fini();
return result;
}
QString getIMSI()
{
QString result = QString::null;
unsigned int res;
TAPI_IMSI_NUMBER_A imsi;
TAPI_CLIENT_Init ( NULL, 0 );
res = TAPI_ACCE_GetImsi ( imsi );
if ( res == 0 )
{
QString pImsi = QString::fromLatin1 ( reinterpret_cast<char*> ( imsi ) );
result = pImsi;
}
TAPI_CLIENT_Fini();
return result;
}
QString getGname(int step)
{
time_t t;
srand( (unsigned)time(&t) );
int data[8];
QString uuid;
for (int i = 0; i < 8; ++i) {
data[i] = rand() % step;//255;
if (data[i] < 16)
uuid += "0";
uuid += QString::number(data[i],16);
if( i==4 || i==6 || i==8 )
uuid += "-";
}
return uuid;
}
int showQ(const QString &title, const QString &text, int type)
{
ZMessageDlg* dlg = new ZMessageDlg(title, text, (ZMessageDlg::MessageDlgType)type);
int ret = dlg->exec();
delete dlg;
dlg = NULL;
return ret;
}
void showNotify(const QString &title, const QString &text, int type, int time)
{
ZNoticeDlg *dlg = new ZNoticeDlg((ZNoticeDlg::Type)type, text, "");
if(type==2) dlg->setTitleIcon("error_pop.bmp");
dlg->setTitle(title);
dlg->setAutoDismissTime(time*1000);
dlg->exec();
delete dlg;
dlg = NULL;
}
bool isValidFileName(QString &fileName)
{
if(fileName == "") return true;
char resultName[128];
sprintf(resultName, fileName.local8Bit());
int i=0, j=strlen(resultName);
for(i=0; i<j; i++)
{
switch(resultName[i])
{
case '*':
case '/':
case '\\':
case '<':
case '>':
case ':':
case '|':
case '?':
case '"':
return true;
break;
default:
break;
}
}
return false;
}
unsigned int getDirSize(const char* path)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;
unsigned int size=0;
char newDir[256];
if ((dp=opendir(path))==NULL) {
return 0;
}
chdir(path);
while ((entry=readdir(dp))!=NULL)
{
if (strcmp(entry->d_name, ".") && strcmp(entry->d_name, ".."))
{
stat(entry->d_name, &statbuf);
if ((statbuf.st_mode&S_IFMT)==S_IFDIR) {
sprintf(newDir, "%s/%s", path, entry->d_name);
size+=getDirSize(newDir);
}
else if ((statbuf.st_mode&S_IFMT)==S_IFREG) {
size+=statbuf.st_size;
}
}
}
return size;
}
QString size2string(unsigned long size)
{
if (size < 1024)
return QString("%1 b").arg(size);
else if (size < 1024 * 1024)
return QString("%1 Kb").arg((double) size / 1024);
else
return QString("%1 Mb").arg((double) size / 1024 / 1024);
return "";
}