-Added some error checking to torrent file writing
[qtrapids] / src / plugins / searchplugin / DownloadManager.h
1 /***************************************************************************
2  *   Copyright (C) 2009 by Lassi Väätämöinen   *
3  *   lassi.vaatamoinen@ixonos.com   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #ifndef DOWNLOADMANAGER_H
21 #define DOWNLOADMANAGER_H
22
23
24 #include <QNetworkAccessManager>
25 #include <QNetworkRequest>
26 #include <QNetworkReply>
27 #include <QUrl>
28 #include <QFile>
29
30
31 class DownloadManager : public QObject
32 {
33         Q_OBJECT
34         
35         public:
36                 DownloadManager(QObject *parent = NULL);
37                 DownloadManager(QUrl url, QString outfile, QObject *parent = NULL);
38                 virtual ~DownloadManager();
39                 virtual void start();
40                 void setUrl(QUrl url);
41                 void setFilepath(QString filepath);
42                 
43         public slots:
44                 void on_readyRead();
45                 void on_downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
46                 void on_replyFinished();
47                 
48         signals:
49                 void progress(int prog);
50                 void finished(QString filepath);
51                 
52         private:
53                 bool WriteToFile();
54                 
55         private:
56                 QNetworkAccessManager manager_;
57                 QUrl url_;
58                 QNetworkReply *reply_;
59                 QString filepath_;
60                 QFile file_;
61 };
62
63 #endif