Added library based archive extracting
[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 <string.h>
39 #include <errno.h>
40
41 /** XdxfDictDownloader is responsible for getting dict list from XDXF website
42     and other actions necessary to download and add dictionary
43
44     When user want to add dictionary he may choose "browse" or "download",
45     after selecting "download"  XDXFDictDownloader would present him list of
46     dictionaries and when he select one downloading would be started. Next
47     step is to extract archive and move file to ~/.mdictionary
48 */
49 class XdxfDictDownloader : public QObject {
50     Q_OBJECT
51 public:
52     XdxfDictDownloader(QObject *parent = 0);
53     //! \return name of downloaded file
54     QString downloadedFile();
55
56 public Q_SLOTS:
57     //! downloads dictionaries list from xdxf website
58     void download(QWidget* parent);
59
60 Q_SIGNALS:
61     //! emmited when file download precess is complete
62     void fileDownloaded(QString);
63     //! emitted to inform user about errors and warnings
64     void notify(Notify::NotifyType, QString);
65
66 private Q_SLOTS:
67     //! obtained list of dictionaries from website
68     void dictListReceived(QNetworkReply*);
69
70     //! one of system processes finished
71     void processFinished(int);
72
73     //! user cancel downloading
74     void breakDownloading();
75
76 private:
77     //! dict is downloaded and unpacked
78     void downloadComplete();
79     QList<DownloadDict> dicts;
80     QWidget* parentDialog;
81     QString _downloadedFile;
82     XdxfDictDownloadProgressDialog* progressDialog;
83     QStringList commands;
84     int currentCommand;
85     QProcess* process;
86     QString _fileName;
87     bool downloadError;
88     bool aborted;
89     QNetworkAccessManager *manager;
90     bool extract(QString file);
91 };
92
93 #endif // XDXFDICTDOWNLOADER_H