Welcome to mirror list, hosted at ThFree Co, Russian Federation.

http_thread_qt.hpp « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ea32fca7cf0d0df17635b36f93c34b75212dd49 (plain)
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
#pragma once

#include "std/string.hpp"
#include "std/cstdint.hpp"

#include <QObject>
#include <QNetworkReply>

namespace downloader { class IHttpThreadCallback; }

class HttpThread : public QObject
{
  Q_OBJECT

public:
  HttpThread(string const & url,
                         downloader::IHttpThreadCallback & cb,
                         int64_t beg,
                         int64_t end,
                         int64_t size,
                         string const & pb);
  virtual ~HttpThread();

private slots:
  void OnHeadersReceived();
  void OnChunkDownloaded();
  void OnDownloadFinished();

private:
  downloader::IHttpThreadCallback & m_callback;
  QNetworkReply * m_reply;
  int64_t m_begRange;
  int64_t m_endRange;
  int64_t m_downloadedBytes;
  int64_t m_expectedSize;
};