summaryrefslogtreecommitdiffstats
path: root/api/logic/net/MetaCacheSink.h
blob: 0f3bbdf6877f08d0482d135ca7d6bcf2455cd36b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once
#include "FileSink.h"
#include "ChecksumValidator.h"
#include "net/HttpMetaCache.h"

namespace Net {
class MetaCacheSink : public FileSink
{
public: /* con/des */
	MetaCacheSink(MetaEntryPtr entry, ChecksumValidator * md5sum);
	virtual ~MetaCacheSink();
	bool hasLocalData() override;

protected: /* methods */
	JobStatus initCache(QNetworkRequest & request) override;
	JobStatus finalizeCache(QNetworkReply & reply) override;

private: /* data */
	MetaEntryPtr m_entry;
	ChecksumValidator * m_md5Node;
};
}