-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectoryFingerprintCheckDlg.cpp
149 lines (124 loc) · 3.71 KB
/
DirectoryFingerprintCheckDlg.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
// DirectoryFingerprintCheckDlg.cpp : implementation file
//
#include "stdafx.h"
#include "AlegrDiff.h"
#include "DirectoryFingerprintCheckDlg.h"
#include "AlegrDiffDoc.h"
#include <io.h>
#include <fcntl.h>
#include <afxpriv.h>
#include "MessageBoxSynch.h"
// CDirectoryFingerprintCheckDlg dialog
CDirectoryFingerprintCheckDlg::CDirectoryFingerprintCheckDlg(
CAlegrDiffDoc * pDoc,
LPCTSTR DirectoryToCheck,
LPCTSTR FingerprintFilename,
CWnd* pParent /*=NULL*/)
: BaseClass(IDD, pParent)
, m_pDocument(pDoc)
, m_bIncludeSubdirectories(false)
, m_sDirectory(DirectoryToCheck)
, m_FingerprintFilename(FingerprintFilename)
{
}
CDirectoryFingerprintCheckDlg::~CDirectoryFingerprintCheckDlg()
{
}
void CDirectoryFingerprintCheckDlg::DoDataExchange(CDataExchange* pDX)
{
BaseClass::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CDirectoryFingerprintCheckDlg, BaseClass)
END_MESSAGE_MAP()
// CDirectoryFingerprintCheckDlg message handlers
BOOL CDirectoryFingerprintCheckDlg::OnInitDialog()
{
BaseClass::OnInitDialog();
TRACE("CDirectoryFingerprintCheckDlg::OnInitDialog()\n");
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
unsigned CDirectoryFingerprintCheckDlg::ThreadProc()
{
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_BELOW_NORMAL);
// load the directory
m_pDocument->m_sSecondDir = m_sDirectory;
m_pDocument->m_bRecurseSubdirs = (m_bIncludeSubdirectories != 0);
if (!m_pDocument->BuildFilePairList(m_FingerprintFilename, m_sDirectory))
{
SetNextItem(__T(""), 0, 0);
SignalDialogEnd(IDABORT);
return IDABORT;
}
m_TotalDataSize = 0;
// calculate total size to read
for (FilePair * pPair = m_pDocument->GetFirstFilePair(); m_pDocument->FilePairNotEnd(pPair); pPair = m_pDocument->GetNextFilePair(pPair))
{
if (pPair->pFirstFile != NULL
&& NULL != pPair->pSecondFile
&& ! pPair->pFirstFile->IsFolder()
&& ! pPair->pSecondFile->IsFolder()
)
{
ULONGLONG Length1 = pPair->pFirstFile->GetFileLength();
ULONGLONG Length2 = pPair->pSecondFile->GetFileLength();
if (Length1 < Length2)
{
pPair->SetComparisonResult(FilePair::SecondFileLonger);
}
else if (Length1 > Length2)
{
pPair->SetComparisonResult(FilePair::FirstFileLonger);
}
else
{
m_TotalDataSize += FILE_OPEN_OVERHEAD + pPair->pFirstFile->GetFileLength();
}
}
}
// read files, verify MD5
CMd5HashCalculator HashCalc;
for (FilePair * pPair = m_pDocument->GetFirstFilePair(); m_pDocument->FilePairNotEnd(pPair); pPair = m_pDocument->GetNextFilePair(pPair))
{
if (pPair->pFirstFile != NULL
&& NULL != pPair->pSecondFile
&& ! pPair->pFirstFile->IsFolder()
&& ! pPair->pSecondFile->IsFolder())
{
if (pPair->pFirstFile->GetFileLength() == pPair->pSecondFile->GetFileLength())
{
SetNextItem(pPair->pSecondFile->GetFullName(), pPair->pSecondFile->GetFileLength(), FILE_OPEN_OVERHEAD, true);
if (pPair->pSecondFile->CalculateHashes( & HashCalc, this))
{
if (0 == memcmp(pPair->pFirstFile->GetDigest(),
pPair->pSecondFile->GetDigest(), pPair->pFirstFile->GetDigestLength()))
{
pPair->SetComparisonResult(FilePair::FilesIdentical);
}
else
{
pPair->SetComparisonResult(FilePair::FilesDifferent);
}
}
else
{
if (GetLastError() == ERROR_ACCESS_DENIED)
{
pPair->SetComparisonResult(FilePair::FileUnaccessible);
}
else if (GetLastError() != ERROR_CANCELLED)
{
pPair->SetComparisonResult(FilePair::ErrorReadingSecondFile);
}
else
{
break;
}
}
AddDoneItem(pPair->pSecondFile->GetFileLength());
}
}
}
SignalDialogEnd(IDOK);
return 0;
}