04fa1c29c2798a44c9f91d20e6549394fbdee1ad
[mdictionary] / src / plugins / xdxf / 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 /*! \file xdxfplugin.cpp
23 \author Jakub Jaszczynski <j.j.jaszczynski@gmail.com>
24 */
25
26 #include "xdxfplugin.h"
27 #include <QDebug>
28 #include "../../include/Notify.h"
29
30 XdxfPlugin::XdxfPlugin(QObject *parent) : CommonDictInterface(parent),
31                     _langFrom(""), _langTo(""),_name(""), _infoNote("") {
32     _settings = new Settings();
33     _dictDialog = new XdxfDictDialog(this, this);
34
35     connect(_dictDialog, SIGNAL(notify(Notify::NotifyType,QString)),
36             this, SIGNAL(notify(Notify::NotifyType,QString)));
37
38     cachingDialog = new XdxfCachingDialog(this);
39
40
41
42     _settings->setValue("type","xdxf");
43     _icon = QIcon("/usr/share/mdictionary/xdxf.png");
44     _wordsCount = -1;
45     stopped = false;
46
47     connect(cachingDialog, SIGNAL(cancelCaching()),
48             this, SLOT(stop()));
49     connect(this, SIGNAL(updateCachingProgress(int,int)),
50             cachingDialog, SLOT(updateCachingProgress(int,int)));
51     initAccents();
52 }
53
54 void XdxfPlugin::retranslate() {
55     QString locale = QLocale::system().name();
56
57     QTranslator *translator = new QTranslator(this);
58
59     if(locale == "pl_PL")
60         translator->load(":/translations/dict_xdxf_pl");
61     else
62         translator->load(":/translations/dict_xdxf_en");
63
64     QCoreApplication::installTranslator(translator);
65 }
66
67
68 XdxfPlugin::~XdxfPlugin() {
69     delete _settings;
70     delete cachingDialog;
71     delete _dictDialog;
72 }
73
74
75 QString XdxfPlugin::langFrom() const {   
76     return _langFrom;
77 }
78
79
80 QString XdxfPlugin::langTo() const {
81     return  _langTo;
82 }
83
84
85 QString XdxfPlugin::name() const {
86     return  _name;
87 }
88
89
90 QString XdxfPlugin::type() const {
91     return QString("xdxf");
92 }
93
94
95 QString XdxfPlugin::infoNote() const {
96     return _infoNote;
97 }
98
99
100 QList<Translation*> XdxfPlugin::searchWordList(QString word, int limit) {
101     if( word.indexOf("*")==-1 && word.indexOf("?")==-1 &&
102         word.indexOf("_")==-1 && word.indexOf("%")==-1)
103         word+="*";
104
105     if(isCached())
106         return searchWordListCache(word,limit);
107     return searchWordListFile(word, limit);
108 }
109
110
111 QList<Translation*> XdxfPlugin::searchWordListCache(QString word, int limit) {
112     int i=0;
113     QSet<Translation*> translations;
114     QString cacheFilePath = _settings->value("cache_path");
115
116     db.setDatabaseName(cacheFilePath);
117     if(!QFile::exists(cacheFilePath) || !db.open()) {
118         qDebug() << "Database error" << db.lastError().text() << endl;
119         Q_EMIT notify(Notify::Warning, QString(tr("Cache database cannot be "
120                 "opened for %1 dictionary. Searching in XDXF file. "
121                 "You may want to recache.").arg(name())));
122         _settings->setValue("cached","false");
123         return searchWordListFile(word, limit);
124     }
125     stopped = false;
126     word = word.toLower();
127     word = word.replace("*", "%");
128     word = word.replace("?", "_");
129
130     QSqlQuery cur(db);
131     if(limit !=0)
132         cur.prepare("select word from dict where word like ? or normalized "
133                     "like ? limit ?");
134     else
135         cur.prepare("select word from dict where word like ? or normalized "
136                     "like ?");
137     cur.addBindValue(word);
138     cur.addBindValue(word);
139     if(limit !=0)
140         cur.addBindValue(limit);
141     cur.exec();
142
143     bool in = false;
144     while(cur.next() && (i<limit || limit==0 ) ) {
145         in = true;
146         bool ok=true;
147         Translation *tran;
148         foreach(tran,translations) {
149             if(tran->key().toLower()==cur.value(0).toString().toLower())
150                     ok=false;
151         }
152         if(ok) {  /*add key word to list*/
153             translations.insert(new TranslationXdxf(
154                     cur.value(0).toString().toLower(),
155                     _dictionaryInfo, this));
156             i++;
157         }
158     }
159     db.close();
160     return translations.toList();
161 }
162
163
164 QList<Translation*> XdxfPlugin::searchWordListFile(QString word, int limit) {
165     QSet<Translation*> translations;
166     QFile dictionaryFile(_settings->value("path"));
167     word = word.toLower();
168     stopped = false;
169
170     QRegExp regWord(word);
171     regWord.setCaseSensitivity(Qt::CaseInsensitive);
172     regWord.setPatternSyntax(QRegExp::Wildcard);
173
174     /*check xdxf file exist*/
175     if(!QFile::exists(_settings->value("path"))
176                 || !dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
177         qDebug()<<"Error: could not open file";
178         Q_EMIT notify(Notify::Warning,
179                 QString(tr("XDXF file cannot be read for %1").arg(name())));
180         return translations.toList();
181     }
182
183     QXmlStreamReader reader(&dictionaryFile);
184     QString readKey;
185     int i=0;
186
187     /*search words list*/
188     while(!reader.atEnd() && !stopped){
189         reader.readNextStartElement();
190         if(reader.name()=="ar") {
191             while(reader.name()!="k" && !reader.atEnd())
192                 reader.readNextStartElement();
193             if(!reader.atEnd())
194                 readKey = reader.readElementText();
195             if((regWord.exactMatch(readKey)
196                     || regWord.exactMatch(removeAccents(readKey)))
197                     && (i<limit || limit==0)) {
198                 bool ok=true;
199                 Translation *tran;
200                 foreach(tran,translations) {
201                     if(tran->key().toLower()==readKey.toLower())
202                         ok=false; /*if key is in the dictionary more that one */
203                 }
204                 if(ok) {  /*add key word to list*/
205                     translations<<(new TranslationXdxf(readKey.toLower(),
206                                     _dictionaryInfo,this));
207                     i++;
208                 }
209                 if(i>=limit && limit!=0)
210                     break;
211             }
212         }
213         this->thread()->yieldCurrentThread();
214     }
215     stopped=false;
216     dictionaryFile.close();
217     return translations.toList();
218 }
219
220
221 QString XdxfPlugin::search(QString key) {
222     if(isCached())
223         return searchCache(key);
224     return searchFile(key);
225 }
226
227
228 QString XdxfPlugin::searchCache(QString key) {
229     QString result("");
230     QString cacheFilePath = _settings->value("cache_path");
231     db.setDatabaseName(cacheFilePath);
232     key = key.toLower();
233
234     if(!QFile::exists(cacheFilePath) || !db.open()) {
235         qDebug() << "Database error" << db.lastError().text() << endl;
236         Q_EMIT notify(Notify::Warning, QString(tr("Cache database cannot be "
237                 "opened for %1 dictionary. Searching in XDXF file. "
238                 "You may want to recache.").arg(name())));
239         _settings->setValue("cached","false");
240         return searchFile(key);
241     }
242
243     QSqlQuery cur(db);
244
245     cur.prepare("select translation from dict where word like ?");
246     cur.addBindValue(key);
247     cur.exec();
248     while(cur.next())
249         result += cur.value(0).toString();
250
251     db.close();
252
253     return result;
254
255 }
256
257
258 QString XdxfPlugin::searchFile(QString key) {
259     QFile dictionaryFile(_settings->value("path"));
260     QString resultString("");
261     key = key.toLower();
262
263     /*check xdxf file exist*/
264     if(!QFile::exists(_settings->value("path"))
265                 || !dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
266         Q_EMIT notify(Notify::Warning,
267                 QString(tr("XDXF file cannot be read for %1").arg(name())));
268         qDebug()<<"Error: could not open file";
269         return "";
270     }
271
272     QXmlStreamReader reader(&dictionaryFile);
273     QString readKey;
274     bool match =false;
275     stopped = false;
276
277     /*search translations for word*/
278     while (!reader.atEnd()&& !stopped) {
279         reader.readNext();
280         if(reader.tokenType() == QXmlStreamReader::StartElement) {
281             if(reader.name()=="k") {
282                 readKey = reader.readElementText();
283                 if(readKey.toLower()==key.toLower())
284                     match = true;
285             }
286         }
287         if(match) {
288             QString temp("");
289             while(reader.name()!="ar" && !reader.atEnd()) {
290                 if(reader.name()!="" && reader.name()!="k") {
291                     if(reader.tokenType()==QXmlStreamReader::EndElement)
292                         temp+="</";
293                     if(reader.tokenType()==QXmlStreamReader::StartElement)
294                         temp+="<";
295                     temp+=reader.name().toString();
296                     if(reader.name().toString()=="c" &&
297                             reader.tokenType()==QXmlStreamReader::StartElement)
298                        temp= temp + " c=\"" + reader.attributes().
299                                value("c").toString() + "\"";
300                     temp+=">";
301                 }
302                 temp+= reader.text().toString().replace("<","&lt;").
303                         replace(">","&gt;");
304                 reader.readNext();
305             }
306             if(temp.at(0)==QChar('\n'))
307                 temp.remove(0,1);
308             resultString+="<key>" + readKey +"</key>";
309             resultString+="<t>" + temp + "</t>";
310             match=false;
311         }
312         this->thread()->yieldCurrentThread();
313     }
314     stopped=false;
315     dictionaryFile.close();
316     return resultString;
317 }
318
319
320 void XdxfPlugin::stop() {
321     stopped=true;
322 }
323
324
325 DictDialog* XdxfPlugin::dictDialog() {
326      return _dictDialog;
327 }
328
329
330 CommonDictInterface* XdxfPlugin::getNew(const Settings *settings) const {
331     XdxfPlugin *plugin = new XdxfPlugin();
332     connect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
333             this, SIGNAL(notify(Notify::NotifyType,QString)));
334     if(settings && plugin->setSettings(settings)) {
335         return plugin;
336     }
337     else {
338         delete plugin;
339         return 0;
340     }
341 }
342
343
344 bool XdxfPlugin::isAvailable() const {
345     return true;
346 }
347
348
349 Settings* XdxfPlugin::settings() {
350     return _settings;
351 }
352
353
354 bool XdxfPlugin::isCached() {
355     if(_settings->value("cached") == "true")
356         return true;
357     return false;
358 }
359
360
361 bool XdxfPlugin::setSettings(const Settings *settings) {
362     if(settings) {
363         bool isPathChange=false;
364         QString oldPath = _settings->value("path");
365         Settings *oldSettings =  new Settings ;
366
367         if(oldPath != settings->value("path")) {
368             if(oldPath!="" && _settings->value("cache_path")!="")
369                 clean();
370             isPathChange=true;
371         }
372
373         foreach(QString key, _settings->keys())
374             oldSettings->setValue(key, _settings->value(key));
375
376         foreach(QString key, settings->keys()) {
377            if(key != "generateCache")
378                _settings->setValue(key, settings->value(key));
379         }
380
381         if(!getDictionaryInfo()) {
382             Q_EMIT notify(Notify::Warning,
383                 QString(tr("XDXF file is in wrong format")));
384             qDebug()<<"Error: xdxf file is in wrong format";
385             delete _settings;
386             _settings=oldSettings;
387             return false;
388         }
389
390         if(isPathChange) {
391             _wordsCount=0;
392             if(oldPath!="")
393                 _settings->setValue("cached","false");
394             if(_settings->value("cached")=="true"
395                     && _settings->value("cache_path")!="") {
396                 db_name = _settings->value("type")
397                         + _settings->value("cache_path");
398                 db = QSqlDatabase::addDatabase("QSQLITE",db_name);
399             }
400         }
401
402         if((_settings->value("cached") == "false" ||
403             _settings->value("cached").isEmpty()) &&
404             settings->value("generateCache") == "true") {
405             clean();
406             makeCache("");
407         }
408
409         else if (settings->value("generateCache") == "false") {
410             _settings->setValue("cached", "false");
411         }
412     }
413     else
414         return false;
415     Q_EMIT settingsChanged();
416     return true;
417 }
418
419
420 bool XdxfPlugin::getDictionaryInfo() {
421     QFile dictionaryFile(_settings->value("path"));
422     if(!QFile::exists(_settings->value("path"))
423                 || !dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
424        Q_EMIT notify(Notify::Warning,
425                QString(tr("XDXF dictionary cannot be read from file")));
426         qDebug()<<"Error: could not open file";
427         return false;
428     }
429
430     bool okFormat=false;
431     QXmlStreamReader reader(&dictionaryFile);
432     reader.readNextStartElement();
433     if(reader.name()=="xdxf") {
434         okFormat=true;
435         if(reader.attributes().hasAttribute("lang_from"))
436             _langFrom = reader.attributes().value("lang_from").toString();
437         if(reader.attributes().hasAttribute("lang_to"))
438             _langTo = reader.attributes().value("lang_to").toString();
439     }
440     reader.readNextStartElement();
441     if(reader.name()=="full_name")
442         _name=reader.readElementText();
443     reader.readNextStartElement();
444     if(reader.name()=="description")
445         _infoNote=reader.readElementText();
446
447     _dictionaryInfo= _name + " [" + _langFrom + "-"
448                 + _langTo + "]";
449
450     dictionaryFile.close();
451     if(okFormat)
452         return true;
453     return false;
454 }
455
456
457 QIcon* XdxfPlugin::icon() {
458     return &_icon;
459 }
460
461
462 int XdxfPlugin::countWords() {
463     if(_wordsCount>0)
464         return _wordsCount;
465     QFile dictionaryFile(_settings->value("path"));
466     if(!QFile::exists(_settings->value("path"))
467                 || !dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
468         Q_EMIT notify(Notify::Warning,
469                 QString(tr("XDXF file cannot be read for %1 dictionary")
470                 .arg(name())));
471         qDebug()<<"Error: could not open file";
472         return -1;
473     }
474
475     dictionaryFile.seek(0);
476
477     long wordsCount = 0;
478
479     QString line;
480     while(!dictionaryFile.atEnd()) {
481         line = dictionaryFile.readLine();
482         if(line.contains("<k>")) {
483             wordsCount++;
484         }
485     }
486     _wordsCount = wordsCount;
487     dictionaryFile.close();
488     return wordsCount;
489 }
490
491
492 bool XdxfPlugin::makeCache(QString) {
493     cachingDialog->setVisible(true);
494     QCoreApplication::processEvents();
495     QFileInfo dictFileN(_settings->value("path"));
496     QString cachePathN;
497     stopped = false;
498
499     /*create cache file name*/
500     int i=0;
501     do {
502         cachePathN = QDir::homePath() + "/.mdictionary/"
503                                       + dictFileN.completeBaseName()+"."
504                                       +QString::number(i) + ".cache";
505         i++;
506     } while(QFile::exists(cachePathN));
507
508     db_name = _settings->value("type") + cachePathN;
509     db = QSqlDatabase::addDatabase("QSQLITE",db_name);
510
511     /*checke errors (File open and db open)*/
512     QFile dictionaryFile(dictFileN.filePath());
513     if (!QFile::exists(_settings->value("path"))
514                 || !dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
515         Q_EMIT updateCachingProgress(100, 0);
516         Q_EMIT notify(Notify::Warning,
517                 QString(tr("XDXF file cannot be read for %1 dictionary")
518                 .arg(name())));
519         return 0;
520     }
521     QXmlStreamReader reader(&dictionaryFile);
522     db.setDatabaseName(cachePathN);
523     if(!db.open()) {
524         qDebug() << "Database error" << db.lastError().text() << endl;
525         Q_EMIT updateCachingProgress(100, 0);
526         Q_EMIT notify(Notify::Warning, QString(tr("Cache database cannot be "
527                 "opened for %1 dictionary. Searching in XDXF file. "
528                 "You may want to recache.").arg(name())));
529         return false;
530     }
531
532     /*inicial sqlQuery*/
533     QCoreApplication::processEvents();
534     QSqlQuery cur(db);
535     cur.exec("PRAGMA synchronous = 0");
536     cur.exec("drop table dict");
537     QCoreApplication::processEvents();
538     cur.exec("create table dict(word text, normalized text ,translation text)");
539     int counter = 0;
540     cur.exec("BEGIN;");
541
542     QString readKey;
543     bool match = false;
544     QTime timer;
545     timer.start();
546     countWords();
547     int lastProg = -1;
548     _settings->setValue("strip_accents", "true");
549     counter=0;
550
551     /*add all words to db*/
552     while (!reader.atEnd() && !stopped) {
553         QCoreApplication::processEvents();
554         reader.readNext();
555         if(reader.tokenType() == QXmlStreamReader::StartElement) {
556             if(reader.name()=="k"){
557                 readKey = reader.readElementText();
558                 match = true;
559             }
560         }
561         if(match) {
562             QString temp("");
563             while(reader.name()!="ar" && !reader.atEnd()) {
564                 if(reader.name()!="" && reader.name()!="k") {
565                     if(reader.tokenType()==QXmlStreamReader::EndElement)
566                         temp+="</";
567                     if(reader.tokenType()==QXmlStreamReader::StartElement)
568                         temp+="<";
569                     temp+=reader.name().toString();
570                     if(reader.name().toString()=="c"
571                         && reader.tokenType()==QXmlStreamReader::StartElement) {
572                         temp= temp + " c=\""
573                                    + reader.attributes().value("c").toString()
574                                    + "\"";
575                     }
576                     temp+=">";
577                 }
578                 temp+= reader.text().toString().replace("<","&lt;").replace(">"
579                               ,"&gt;");
580                 reader.readNext();
581             }
582             if(temp.at(0)==QChar('\n'))
583                 temp.remove(0,1);
584             temp="<key>" + readKey + "</key>" + "<t>" + temp+ "</t>";
585             match=false;
586             cur.prepare("insert into dict values(?,?,?)");
587             cur.addBindValue(readKey);
588             cur.addBindValue(removeAccents(readKey));
589             cur.addBindValue(temp);
590             cur.exec();
591             counter++;
592             int prog = counter*100/_wordsCount;
593             if(prog % 5 == 0 && lastProg != prog) {
594                 Q_EMIT updateCachingProgress(prog,timer.restart());
595                 lastProg = prog;
596             }
597         }
598     }
599     cur.exec("END;");
600     cur.exec("select count(*) from dict");
601     cachingDialog->setVisible(false);
602
603     /*checke errors (wrong number of added words)*/
604     countWords();
605     if(!cur.next() || countWords() != cur.value(0).toInt()) {
606         Q_EMIT updateCachingProgress(100, timer.restart());
607         Q_EMIT notify(Notify::Warning,
608                 QString(tr("Database caching error, please try again.")));
609         db.close();
610         return false;
611     }
612
613     _settings->setValue("cache_path", cachePathN);
614     _settings->setValue("cached", "true");
615
616     db.close();
617     return true;
618 }
619
620
621 void XdxfPlugin::clean() {
622     if(QFile::exists(_settings->value("cache_path"))) {
623         QFile(_settings->value("cache_path")).remove();
624         QSqlDatabase::removeDatabase(db_name);
625     }
626 }
627
628
629 Q_EXPORT_PLUGIN2(xdxf, XdxfPlugin)