-
Notifications
You must be signed in to change notification settings - Fork 0
/
filehashthread.h
66 lines (54 loc) · 1.4 KB
/
filehashthread.h
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
#ifndef FILEHASHTHREAD_H
#define FILEHASHTHREAD_H
#include <QThread>
#include <QCryptographicHash>
#include "CRC/crclib.h"
class FileHashThread : public QThread
{
Q_OBJECT
public:
// 构造函数
FileHashThread();
// 析构函数
~FileHashThread();
// 线程函数
void run()
Q_DECL_OVERRIDE;
// 设置待计算文件集合
void setFileList(QStringList fileList);
// 设置是否停止计算
void setStop(bool isStop);
private:
// 计算文件哈希
void hash(QString path, int index);
// 发送错误信息
void emitError(int index, QString error);
// 待计算文件集合
QStringList fileList;
// 是否停止计算
bool isStop;
// 文件缓冲区
int bufferSize;
// 校验算法
QCryptographicHash* md4;
QCryptographicHash* md5;
QCryptographicHash* sha1;
QCryptographicHash* sha256;
QCryptographicHash* sha512;
CRC32Calculator* crc32;
signals:
// 哈希校验开始
void hashStarted(int count);
// 哈希校验结束
void hashEnded();
// 哈希校验错误
void hashError(QString error);
// 哈希校验进度改变
void hashProgressChanged(int progress);
// 哈希校验索引改变
void hashIndexChanged(int index);
// 哈希校验结果
void hashResult(QString result);
void hashResultList(QStringList listMessage);
};
#endif // FILEHASHTHREAD_H