Add notifying about downloading errors in xdxf downloader
[mdictionary] / src / plugins / xdxf / XdxfDictDownloader.h
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary 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 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary 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 mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21
22 /*!
23   \file XdxfDictDownloader.h
24   \author Mateusz Półrola <mateusz.polrola@comarch.pl>
25  */
26
27 #ifndef XDXFDICTDOWNLOADER_H
28 #define XDXFDICTDOWNLOADER_H
29
30 #include <QObject>
31 #include "XdxfDictSelectDialog.h"
32 #include <QTimer>
33 #include <QNetworkAccessManager>
34 #include <QNetworkReply>
35 #include <DownloadDict.h>
36 #include "XdxfDictDownloadProgressDialog.h"
37 #include "../../include/Notify.h"
38 #include "HttpDownloader.h"
39 #include <string.h>
40 #include <errno.h>
41
42 /** XdxfDictDownloader is responsible for getting dict list from XDXF website
43     and other actions necessary to download and add dictionary
44
45     When user want to add dictionary he may choose "browse" or "download",
46     after selecting "download"  XDXFDictDownloader would present him list of
47     dictionaries and when he select one downloading would be started. Next
48     step is to extract archive and move file to ~/.mdictionary
49 */
50 class XdxfDictDownloader : public QObject {
51     Q_OBJECT
52 public:
53     XdxfDictDownloader(QObject *parent = 0);
54     //! \return name of downloaded file
55     QString downloadedFile();
56
57 public Q_SLOTS:
58     //! downloads dictionaries list from xdxf website
59     void download(QWidget* parent);
60
61 Q_SIGNALS:
62     //! emmited when file download precess is complete
63     void fileDownloaded(QString);
64     //! emitted to inform user about errors and warnings
65     void notify(Notify::NotifyType, QString);
66
67 private Q_SLOTS:
68     //! obtained list of dictionaries from website
69     void dictListReceived(QNetworkReply*);
70
71     //! one of system processes finished
72     void processFinished();
73
74     //! user cancel downloading
75     void breakDownloading();
76
77     void downloadingError(QString);
78
79 private:
80     //! dict is downloaded and unpacked
81     void downloadComplete();
82     QList<DownloadDict> dicts;
83     QWidget* parentDialog;
84     QString _downloadedFile;
85     XdxfDictDownloadProgressDialog* progressDialog;
86     QStringList commands;
87     int currentCommand;
88     QProcess* process;
89     QString _fileName;
90     bool downloadError;
91     bool aborted;
92     QNetworkAccessManager *manager;
93     bool extract(QString file);
94     HttpDownloader http;
95 };
96
97 #endif // XDXFDICTDOWNLOADER_H