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