-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTool.cpp
276 lines (231 loc) · 6.14 KB
/
Tool.cpp
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
#include "Tool.h"
// #include <io.h> // for _findfirst
// #include <sys/stat.h>
#include <fstream>
#include <unistd.h>
#include <time.h>
#include <errno.h>
#include <fcntl.h>
#include <iostream>
#include <stdlib.h>
#include "SHA1.h"
#ifdef WIN32
#include <direct.h> // for _getcwd()
#else
#include <unistd.h>
#define _getcwd getcwd
#endif
BOOL IsFileExists(string strileName, BOOL bFlag)
{
fstream cFileStream;
cFileStream.open(strileName.c_str(), ios::in);
if (!cFileStream)
{
return FALSE;
}
else
{
return TRUE;
}
}
BOOL IsFolderExists(string strFolderName, BOOL bFlag)
{
if (access(strFolderName.c_str(), F_OK) == 0)
{
//cout << "IsFolderExists:[" << __LINE__ << "] " << strFolderName.c_str() <<endl;
return TRUE;
}
else
{
return FALSE;
}
}
string GetCurrentDateTime()
{
time_t t;
struct tm* tm;
char szBuffer[256] = {0};
time(&t);
tm=localtime(&t);
sprintf(szBuffer,
"%04d-%02d-%02d %02d:%02d:%02d",
tm->tm_year-100+2000,
tm->tm_mon+1,
tm->tm_mday,
tm->tm_hour,
tm->tm_min,
tm->tm_sec);
return string(szBuffer);
}
BOOL GetFileSHA1Hash(string strFileName, PBYTE pbyHash)
{
ifstream cInputFile(strFileName.c_str(), ios::in | ios::binary);
if(!cInputFile)
{
cout<<"File open error!\n";
return FALSE;
}
char buf[2048]={0};
int nTotalFileLength = 0;
// get length of file:
cInputFile.seekg (0, cInputFile.end);
nTotalFileLength = cInputFile.tellg();
cInputFile.seekg (0, cInputFile.beg);
CSHA1 sha1;
while(!cInputFile.eof())
{
cInputFile.read(buf,2048);
int nGetSize = 2048;
if (nTotalFileLength > 2048)
{
nTotalFileLength -= 2048;
}
else
{
nGetSize = nTotalFileLength;
}
sha1.Update((unsigned char*)buf, nGetSize);
}
sha1.Final();
sha1.GetHash(pbyHash);
cInputFile.close();
return TRUE;
}
void CopyFile(string strSrc, string strDst)
{
string strCmd = "cp -f ";
strCmd += strSrc;
strCmd += " ";
strCmd += strDst;
system(strCmd.c_str());
}
BOOL CopyAllFiles(string strSrcFolderName, string strDstFolderName)
{
string strMsg;
//DWORD dwRet = 0;
//Step1: Make sure that the destination folder had been created!
//////////////////////////////////////////////////////////////////////////
if (IsFolderExists(strDstFolderName.c_str(), TRUE))
{
string strSrcFolder = strSrcFolderName;
string strDstFolder = strDstFolderName;
for (int i=0; i<TOTAL_FILES; i++)
{
//Step2: Make sure that the source file could be found
//////////////////////////////////////////////////////////////////////////
if (IsFileExists(strSrcFolder + FILE_LIST[i], TRUE))
{
//Step3: Make sure that the file copying is OK
//////////////////////////////////////////////////////////////////////////
CopyFile(strSrcFolder + FILE_LIST[i], strDstFolder + FILE_LIST[i]);
}
else
{
return FALSE;
}
}
}
else
{
return FALSE;
}
return TRUE;
}
BOOL CopyDismissedFiles(string strSrcFolderName, string strDstFolderName)
{
string strMsg;
//DWORD dwRet = 0;
//Step1: Make sure that the destination folder had been created!
//////////////////////////////////////////////////////////////////////////
if (IsFolderExists(strDstFolderName, TRUE))
{
string strSrcFolder = strSrcFolderName;
string strDstFolder = strDstFolderName;
for (int i=0; i<TOTAL_FILES; i++)
{
if (IsFileExists(strDstFolder + FILE_LIST[i], TRUE))
{
continue;
}
//Step2: Make sure that the source file could be found
//////////////////////////////////////////////////////////////////////////
if (IsFileExists(strSrcFolder + FILE_LIST[i], TRUE))
{
//Step3: Make sure that the file copying is OK
//////////////////////////////////////////////////////////////////////////
CopyFile(strSrcFolder + FILE_LIST[i], strDstFolder + FILE_LIST[i]);
}
else
{
return FALSE;
}
}
}
else
{
return FALSE;
}
return TRUE;
}
BOOL DeleteAllFiles(string strFolderName, BOOL bTimeout)
{
string strCmd = "rm -rf ";
strCmd += strFolderName;
system(strCmd.c_str());
return TRUE;
}
BOOL CheckAllFilehash(string strFolderName)
{
string strTemp;
BYTE bySha1Hash[20] = {0};
for (int i=0; i<TOTAL_FILES; i++)
{
strTemp = strFolderName;
strTemp += FILE_LIST[i];
//Step 1: Make sure that the file is exist first
//////////////////////////////////////////////////////////////////////////
if (IsFileExists(strTemp.c_str(), TRUE))
{
if (!GetFileSHA1Hash(strTemp.c_str(), bySha1Hash)
|| memcmp(bySha1Hash, SHA1_HASH_LIST[i], 20)!=0)
{
cout << "FileName = " << strTemp << endl;
cout << "--Generated hash value--" << endl;
PrintInfo(bySha1Hash, 20);
cout << "--Expected hash value--" << endl;
PrintInfo(SHA1_HASH_LIST[i], 20);
return FALSE;
}
}
else
{
return FALSE;
}
}
return TRUE;
}
void GetCurrentDirectory(string &strPath)
{
char buffer[1024] = "";
_getcwd(buffer, sizeof(buffer) );
strPath = buffer;
cout << "Path:" << buffer << endl;
}
BOOL DeployFolderAction(string strSrc, string strDst)
{
return FALSE;
}
void PrintInfo(BYTE* ptr, int nSize)
{
if (ptr != NULL)
{
string strMsg;
for (int i=0; i< nSize; i++)
{
char szTemp[12] = {0};
sprintf(szTemp, "%02X ", ptr[i]);
strMsg += szTemp;
}
cout << "Buffer:" << strMsg << endl;
}
}