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