Cleaning the code associated with parsing ifo file
[mdictionary] / src / plugins / stardict / StarDictPlugin.cpp
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 /*! \file stardictplugin.cpp
23 */
24
25 #include "StarDictPlugin.h"
26 #include <QDebug>
27 #include "../../include/Notify.h"
28 #include <QTranslator>
29 #include <QCoreApplication>
30 #include <QThread>
31
32 StarDictPlugin::StarDictPlugin(QObject *parent) : CommonDictInterface(parent),
33                     _langFrom(""), _langTo(""),_name(""), _infoNote("") {
34     _settings = new Settings();
35     _dictDialog = new StarDictDialog(this, this);
36
37     connect(_dictDialog, SIGNAL(notify(Notify::NotifyType,QString)),
38             this, SIGNAL(notify(Notify::NotifyType,QString)));
39
40
41     _settings->setValue("type","stardict");
42     _icon = QIcon("/usr/share/mdictionary/xdxf.png");
43     _wordsCount = -1;
44     stopped = false;
45
46     initAccents();
47 }
48
49 void StarDictPlugin::retranslate() {
50     QString locale = QLocale::system().name();
51
52     QTranslator *translator = new QTranslator(this);
53
54     if(!translator->load(":/xdxf/translations/" + locale)) {
55         translator->load(":/xdxf/translations/en_US");
56     }
57     QCoreApplication::installTranslator(translator);
58 }
59
60
61 StarDictPlugin::~StarDictPlugin() {
62     delete _settings;
63     delete _dictDialog;
64 }
65
66
67 QString StarDictPlugin::langFrom() const {
68     return _langFrom;
69 }
70
71
72 QString StarDictPlugin::langTo() const {
73     return  _langTo;
74 }
75
76
77 QString StarDictPlugin::name() const {
78     return  _name;
79 }
80
81
82 QString StarDictPlugin::type() const {
83     return QString("stardict");
84 }
85
86
87 QString StarDictPlugin::infoNote() const {
88     return _infoNote;
89 }
90
91
92 QList<Translation*> StarDictPlugin::searchWordList(QString word, int limit) {
93     QSet<Translation*> translations;
94     return translations.toList();
95 }
96
97
98
99 QString StarDictPlugin::search(QString key) {
100     return "";
101 }
102
103 void StarDictPlugin::parseIfoFile() {
104     QFile file(settings()->value("path"));
105     if (!file.open(QIODevice::ReadOnly)) {
106         return;
107     }
108     QTextStream in(&file);
109     while (!in.atEnd()) {
110         QString line = in.readLine();
111         QStringList list = line.split("=");
112         if(list.size() == 2) {
113             settings()->setValue(list.at(0),list.at(1));
114         }
115     }
116 }
117
118
119 void StarDictPlugin::stop() {
120     stopped=true;
121 }
122
123
124 DictDialog* StarDictPlugin::dictDialog() {
125      return _dictDialog;
126 }
127
128
129 CommonDictInterface* StarDictPlugin::getNew(const Settings *settings) const {
130     StarDictPlugin *plugin = new StarDictPlugin();
131
132     connect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
133             this, SIGNAL(notify(Notify::NotifyType,QString)));
134
135     ((StarDictDialog*)plugin->dictDialog())->setLastDialogParent(_dictDialog->lastDialogParent());
136
137
138
139     if(settings && plugin->setSettings(settings)) {
140
141         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
142                 this, SIGNAL(notify(Notify::NotifyType,QString)));
143         return plugin;
144     }
145     else {
146         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
147                 this, SIGNAL(notify(Notify::NotifyType,QString)));
148         delete plugin;
149         return 0;
150     }
151 }
152
153
154 bool StarDictPlugin::isAvailable() const {
155     return true;
156 }
157
158
159 Settings* StarDictPlugin::settings() {
160     return _settings;
161 }
162
163
164 bool StarDictPlugin::isCached() {
165     return false;
166 }
167
168
169 bool StarDictPlugin::setSettings(const Settings *settings) {
170     if(settings) {
171
172     } else
173         return false;
174     Q_EMIT settingsChanged();
175     return true;
176 }
177
178
179 bool StarDictPlugin::getDictionaryInfo() {
180     QFile dictionaryFile(_settings->value("path"));
181     if(!QFile::exists(_settings->value("path"))
182                 || !dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
183        Q_EMIT notify(Notify::Warning,
184                QString(tr("StarDict dictionary cannot be read from file")));
185         qDebug()<<"Error: could not open the file";
186         return false;
187     }
188
189     return false;
190 }
191
192
193 QIcon* StarDictPlugin::icon() {
194     return &_icon;
195 }
196
197
198 int StarDictPlugin::countWords() {
199     return 0;
200 }
201
202
203
204 void StarDictPlugin::clean() {
205
206 }
207
208
209 Q_EXPORT_PLUGIN2(stardict, StarDictPlugin)