fee5602a1c990fd854d21e62bd98af53c89f1829
[mdictionary] / trunk / src / plugins / xdxf / src / xdxfplugin.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 #include "xdxfplugin.h"
23 #include <QDebug>
24 #include <QFile>
25 #include <QXmlStreamReader>
26 #include <QtPlugin>
27 #include "TranslationXdxf.h"
28 #include "../../../includes/settings.h"
29
30 XdxfPlugin::XdxfPlugin(QObject *parent) : CommonDictInterface(parent),
31                     _langFrom(tr("")), _langTo(tr("")),_name(tr("")),
32                     _type(tr("xdxf")), _infoNote(tr("")) {
33     _wordsCount = -1;
34     _settings = new Settings();
35     _dictDialog = new XdxfDictDialog(this, this);
36     cachingDialog = new XdxfCachingDialog(this);
37
38     connect(cachingDialog, SIGNAL(cancelCaching()),
39             this, SLOT(stop()));
40
41     _settings->setValue("type","xdxf");
42
43     stopped = false;
44
45     _icon = QIcon(":/icons/xdxf.png");
46 }
47
48 QString XdxfPlugin::langFrom() const {   
49     return _langFrom;
50 }
51
52 QString XdxfPlugin::langTo() const {
53     return  _langTo;
54 }
55
56 QString XdxfPlugin::name() const {
57     return  _name;
58 }
59
60 QString XdxfPlugin::type() const {
61 //    return _settings->value("type");
62     return _type;
63 }
64
65 QString XdxfPlugin::infoNote() const {
66     return  _infoNote;
67 }
68
69 QList<Translation*> XdxfPlugin::searchWordList(QString word, int limit) {
70     //if(_settings->value("cached") == "true")
71     if(word.indexOf("*")==-1 && word.indexOf("?")==-1 && word.indexOf("_")==-1
72        && word.indexOf("%")==-1)
73         word+="*";
74     if(isCached())
75         return searchWordListCache(word,limit);
76     return searchWordListFile(word, limit);
77 }
78
79 QList<Translation*> XdxfPlugin::searchWordListCache(QString word, int limit) {
80
81     QSet<Translation*> translations;
82     QString cacheFilePath = _settings->value("cache_path");
83         db.setDatabaseName(cacheFilePath);
84         if(!db.open()) {
85             qDebug() << "Database error" << db.lastError().text() << endl;
86             return searchWordListFile(word, limit);
87         }
88
89         stopped = false;
90         if(word.indexOf("*")==-1 && word.indexOf("?")== 0)
91             word+="%";
92         word = word.replace("*", "%");
93         word = word.replace("?", "_");
94         word = removeAccents(word);
95         qDebug() << word;
96
97         QSqlQuery cur(db);
98         cur.prepare("select word from dict where word like ? limit ?");
99         cur.addBindValue(word);
100         cur.addBindValue(limit);
101         cur.exec();
102         while(cur.next())
103             translations.insert(new TranslationXdxf(cur.value(0).toString(),
104                                                     _infoNote, this));
105         db.close();
106         return translations.toList();
107 }
108
109
110
111 QList<Translation*> XdxfPlugin::searchWordListFile(QString word, int limit) {
112     QSet<Translation*> translations;
113     QFile dictionaryFile(path);
114
115     word = removeAccents(word);
116
117     stopped = false;
118     QRegExp regWord(word);
119     regWord.setCaseSensitivity(Qt::CaseInsensitive);
120     regWord.setPatternSyntax(QRegExp::Wildcard);
121     if(!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
122         qDebug()<<"Error: could not open file";
123         return translations.toList();
124     }
125
126     QXmlStreamReader reader(&dictionaryFile);
127     /*search words list*/
128     QString a;
129     int i=0;
130     while(!reader.atEnd() && !stopped){
131         reader.readNextStartElement();
132         if(reader.name()=="ar") {
133             while(reader.name()!="k" && !reader.atEnd())
134                 reader.readNextStartElement();
135             if(!reader.atEnd())
136                 a = reader.readElementText();
137             if(regWord.exactMatch(removeAccents(a)) && (i<limit || limit==0)) {
138                 bool ok=true;
139                 Translation *tran;
140                 foreach(tran,translations) {
141                     if(tran->key()==a)
142                         ok=false;  /*if key word is in the dictionary more that one */
143                 }
144                 if(ok)  /*add key word to list*/
145                     translations<<(new TranslationXdxf(a,_infoNote,this));
146                 i++;
147                 if(i>=limit && limit!=0)
148                     break;
149             }
150         }
151         this->thread()->yieldCurrentThread();
152     }
153     stopped=false;
154     dictionaryFile.close();
155     return translations.toList();
156 }
157
158 QString XdxfPlugin::search(QString key) {
159 //    if(_settings->value("cached") == "true")
160     if(isCached())
161         return searchCache(key);
162     return searchFile(key);
163 }
164
165
166
167 QString XdxfPlugin::searchCache(QString key) {
168     QString result;
169     QString cacheFilePath = _settings->value("cache_path");
170     db.setDatabaseName(cacheFilePath);
171
172     if(!db.open()) {
173         qDebug() << "Database error" << db.lastError().text() << endl;
174         return searchFile(key);
175     }
176
177     QSqlQuery cur(db);
178     cur.prepare("select translation from dict where word like ? limit 1");
179     cur.addBindValue(key);
180     cur.exec();
181     if(cur.next())
182         result = cur.value(0).toString();
183     db.close();
184     return result;
185
186 }
187
188
189
190
191 QString XdxfPlugin::searchFile(QString key) {
192     QFile dictionaryFile(path);
193     QString resultString("");
194     if(!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
195         qDebug()<<"Error: could not open file";
196         return "";
197     }
198     QXmlStreamReader reader(&dictionaryFile);
199
200
201     QString a;
202
203     bool match =false;
204     stopped = false;
205     while (!reader.atEnd()&& !stopped) {
206         reader.readNext();
207         if(reader.tokenType() == QXmlStreamReader::StartElement) {
208             if(reader.name()=="k") {
209                 a = reader.readElementText();
210                 if(a==key)
211                     match = true;
212             }
213         }
214         if(match) {
215             QString temp("");
216             while(reader.name()!="ar" && !reader.atEnd()) {
217                 if(reader.name()!="" && reader.name()!="k") {
218                     if(reader.tokenType()==QXmlStreamReader::EndElement)
219                         temp+=tr("</");
220                     if(reader.tokenType()==QXmlStreamReader::StartElement)
221                         temp+=tr("<");
222                     temp+=reader.name().toString();
223                     if(reader.name().toString()=="c" && reader.tokenType()==QXmlStreamReader::StartElement)
224                        temp= temp + tr(" c=\"") + reader.attributes().value(tr("c")).toString() + tr("\"");
225                     temp+=tr(">");
226                 }
227                 temp+= reader.text().toString();
228                 reader.readNext();
229             }
230             resultString+=tr("<t>") + temp.replace("\n","") + tr("</t>");
231             match=false;
232         }
233         this->thread()->yieldCurrentThread();
234     }
235     stopped=false;
236     dictionaryFile.close();
237     return resultString;
238 }
239
240 void XdxfPlugin::stop() {
241     stopped=true;
242 }
243
244 DictDialog* XdxfPlugin::dictDialog() {
245      return _dictDialog;
246 }
247
248 void XdxfPlugin::setPath(QString path){
249     this->path=path;
250     _settings->setValue("path",path);
251     //getDictionaryInfo();
252 }
253
254
255 CommonDictInterface* XdxfPlugin::getNew(const Settings *settings) const {
256     XdxfPlugin *plugin = new XdxfPlugin();
257     if(settings){
258         plugin->setPath(settings->value("path"));
259
260         QStringList list = settings->keys();
261         foreach(QString key, list)
262             plugin->settings()->setValue(key, settings->value(key));
263
264
265         plugin->db_name = plugin->_settings->value("type")
266                + plugin->_settings->value("path");
267         if(!plugin->db.connectionName().isEmpty())
268         plugin->db = QSqlDatabase::addDatabase("QSQLITE", plugin->db_name);
269
270         if(settings->value("cached").isEmpty() &&
271            settings->value("generateCache") == "true") {
272             plugin->makeCache("");
273         }
274     }
275
276     plugin->getDictionaryInfo();
277     return  plugin;
278 }
279
280 bool XdxfPlugin::isAvailable() const {
281     return true;
282 }
283
284 void XdxfPlugin::setHash(uint _hash) {
285     this->_hash=_hash;
286 }
287
288 uint XdxfPlugin::hash() const {
289    return _hash;
290 }
291
292 Settings* XdxfPlugin::settings() {
293     return _settings;
294 }
295
296 bool XdxfPlugin::isCached() {
297     if(_settings->value("cached") == "true")
298         return true;
299     return false;
300 }
301
302 void XdxfPlugin::setSettings(Settings *settings) {
303
304     QString oldPath = _settings->value("path");
305     if(oldPath != settings->value("path")) {
306         setPath(settings->value("path"));
307     }
308
309     if((_settings->value("cached") == "false" ||
310         _settings->value("cached").isEmpty()) &&
311        settings->value("generateCache") == "true") {
312         makeCache("");
313     }
314     else {
315        _settings->setValue("cached", "false");
316     }
317
318     emit settingsChanged();
319 }
320
321
322 void XdxfPlugin::getDictionaryInfo() {
323     QFile dictionaryFile(path);
324     if(!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
325         qDebug()<<"Error: could not open file";
326         return;
327     }
328
329     QXmlStreamReader reader(&dictionaryFile);
330     reader.readNextStartElement();
331     if(reader.name()=="xdxf") {
332       if(reader.attributes().hasAttribute("lang_from"))
333         _langFrom = reader.attributes().value("lang_from").toString();
334       if(reader.attributes().hasAttribute("lang_to"))
335         _langTo = reader.attributes().value("lang_to").toString();
336     }
337     reader.readNextStartElement();
338     if(reader.name()=="full_name")
339         _name=reader.readElementText();
340     reader.readNextStartElement();
341     if(reader.name()=="description")
342         _infoNote=reader.readElementText();
343
344     dictionaryFile.close();
345 }
346
347 QString XdxfPlugin::removeAccents(QString string) {
348
349     string = string.replace(QString::fromUtf8("ł"), "l", Qt::CaseInsensitive);
350     QString normalized = string.normalized(QString::NormalizationForm_D);
351     normalized = normalized;
352     for(int i=0; i<normalized.size(); i++) {
353         if( !normalized[i].isLetterOrNumber() &&
354             !normalized[i].isSpace() &&
355             !normalized[i].isDigit() &&
356             normalized[i] != '*' &&
357             normalized[i] != '%' &&
358             normalized[i] != '_' &&
359             normalized[i] != '?' ) {
360             normalized.remove(i,1);
361         }
362     }
363     return normalized;
364 }
365
366 QIcon* XdxfPlugin::icon() {
367     return &_icon;
368 }
369
370 int XdxfPlugin::countWords() {
371     if(_wordsCount > 0)
372         return _wordsCount;
373
374     QFile dictionaryFile(path);
375     if(!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
376         qDebug()<<"Error: could not open file";
377         return -1;
378     }
379
380     dictionaryFile.seek(0);
381
382     long wordsCount = 0;
383
384     QString line;
385     while(!dictionaryFile.atEnd()) {
386         line = dictionaryFile.readLine();
387         if(line.contains("<k>")) {
388             wordsCount++;
389         }
390     }
391     _wordsCount = wordsCount;
392     dictionaryFile.close();
393     return wordsCount;
394 }
395
396
397
398 bool XdxfPlugin::makeCache(QString dir) {
399     cachingDialog->setVisible(true);
400     QCoreApplication::processEvents();
401     stopped = false;
402     QFileInfo dictFileN(_settings->value("path"));
403     QString cachePathN;
404     cachePathN = QDir::homePath() + "/.mdictionary/"
405                  + dictFileN.completeBaseName() + ".cache";
406
407     QFile dictionaryFile(dictFileN.filePath());
408
409
410     if (!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
411         return 0;
412     }
413
414     QXmlStreamReader reader(&dictionaryFile);
415
416     db.setDatabaseName(cachePathN);
417     if(!db.open()) {
418         qDebug() << "Database error" << db.lastError().text() << endl;
419         return false;
420     }
421     QCoreApplication::processEvents();
422     QSqlQuery cur(db);
423     cur.exec("PRAGMA synchronous = 0");
424     cur.exec("drop table dict");
425     QCoreApplication::processEvents();
426     cur.exec("create table dict(word text ,translation text)");
427     int counter = 0;
428     cur.exec("BEGIN;");
429
430     QString a;
431     bool match = false;
432     QTime timer;
433     timer.start();
434     countWords();
435
436     int lastProg = -1;
437
438
439     counter=0;
440     while (!reader.atEnd() && !stopped) {
441
442         QCoreApplication::processEvents();
443         reader.readNext();
444
445         if(reader.tokenType() == QXmlStreamReader::StartElement) {
446             if(reader.name()=="k"){
447                 a = reader.readElementText();
448                 match = true;
449             }
450         }
451         if(match) {
452             QString temp("");
453             while(reader.name()!="ar" && !reader.atEnd()) {
454                 if(reader.name()!="" && reader.name()!="k") {
455                     if(reader.tokenType()==QXmlStreamReader::EndElement)
456                         temp+=tr("</");
457                     if(reader.tokenType()==QXmlStreamReader::StartElement)
458                         temp+=tr("<");
459                     temp+=reader.name().toString();
460                     if(reader.name().toString()=="c" && reader.tokenType()==QXmlStreamReader::StartElement)
461                        temp= temp + tr(" c=\"") + reader.attributes().value(tr("c")).toString() + tr("\"");
462                     temp+=tr(">");
463                 }
464                 temp+= reader.text().toString();
465                 reader.readNext();
466             }
467             temp += tr("<t>") + temp.replace("\n","") + tr("</t>");
468             match=false;
469             cur.prepare("insert into dict values(?,?)");
470             cur.addBindValue(a);
471             cur.addBindValue(temp);
472             cur.exec();
473             counter++;
474             int prog = counter*100/_wordsCount;
475             if(prog % 5 == 0 && lastProg != prog) {
476                 Q_EMIT updateCachingProgress(prog,
477                                              timer.restart());
478                 lastProg = prog;
479             }
480         }
481     }
482
483     cur.exec("END;");
484     cur.exec("select count(*) from dict");
485
486     countWords();
487     cachingDialog->setVisible(false);
488
489     if(!cur.next() || countWords() != cur.value(0).toInt())
490     {
491         db.close();
492         return false;
493     }
494     _settings->setValue("cache_path", cachePathN);
495     _settings->setValue("cached", "true");
496
497     db.close();
498     return true;
499 }
500
501
502 Q_EXPORT_PLUGIN2(xdxf, XdxfPlugin)