add xslt transformation
[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
238     return resultString;
239 }
240
241 void XdxfPlugin::stop() {
242     stopped=true;
243 }
244
245 DictDialog* XdxfPlugin::dictDialog() {
246      return _dictDialog;
247 }
248
249 void XdxfPlugin::setPath(QString path){
250     this->path=path;
251     _settings->setValue("path",path);
252     //getDictionaryInfo();
253 }
254
255
256 CommonDictInterface* XdxfPlugin::getNew(const Settings *settings) const {
257     XdxfPlugin *plugin = new XdxfPlugin();
258     if(settings){
259         plugin->setPath(settings->value("path"));
260
261         QStringList list = settings->keys();
262         foreach(QString key, list)
263             plugin->settings()->setValue(key, settings->value(key));
264
265
266         plugin->db_name = plugin->_settings->value("type")
267                + plugin->_settings->value("path");
268         if(!plugin->db.connectionName().isEmpty())
269         plugin->db = QSqlDatabase::addDatabase("QSQLITE", plugin->db_name);
270
271         if(settings->value("cached").isEmpty() &&
272            settings->value("generateCache") == "true") {
273             plugin->makeCache("");
274         }
275     }
276
277     plugin->getDictionaryInfo();
278     return  plugin;
279 }
280
281 bool XdxfPlugin::isAvailable() const {
282     return true;
283 }
284
285 void XdxfPlugin::setHash(uint _hash) {
286     this->_hash=_hash;
287 }
288
289 uint XdxfPlugin::hash() const {
290    return _hash;
291 }
292
293 Settings* XdxfPlugin::settings() {
294     return _settings;
295 }
296
297 bool XdxfPlugin::isCached() {
298     if(_settings->value("cached") == "true")
299         return true;
300     return false;
301 }
302
303 void XdxfPlugin::setSettings(Settings *settings) {
304
305     QString oldPath = _settings->value("path");
306     if(oldPath != settings->value("path")) {
307         setPath(settings->value("path"));
308     }
309
310     if((_settings->value("cached") == "false" ||
311         _settings->value("cached").isEmpty()) &&
312        settings->value("generateCache") == "true") {
313         makeCache("");
314     }
315     else {
316        _settings->setValue("cached", "false");
317     }
318
319     emit settingsChanged();
320 }
321
322
323 void XdxfPlugin::getDictionaryInfo() {
324     QFile dictionaryFile(path);
325     if(!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
326         qDebug()<<"Error: could not open file";
327         return;
328     }
329
330     QXmlStreamReader reader(&dictionaryFile);
331     reader.readNextStartElement();
332     if(reader.name()=="xdxf") {
333       if(reader.attributes().hasAttribute("lang_from"))
334         _langFrom = reader.attributes().value("lang_from").toString();
335       if(reader.attributes().hasAttribute("lang_to"))
336         _langTo = reader.attributes().value("lang_to").toString();
337     }
338     reader.readNextStartElement();
339     if(reader.name()=="full_name")
340         _name=reader.readElementText();
341     reader.readNextStartElement();
342     if(reader.name()=="description")
343         _infoNote=reader.readElementText();
344
345     _infoNote="<info path=\""+path+"\">"+"\n" + _name + "(" + _type + ")"  + "</info>";
346
347     dictionaryFile.close();
348 }
349
350 QString XdxfPlugin::removeAccents(QString string) {
351
352     string = string.replace(QString::fromUtf8("ł"), "l", Qt::CaseInsensitive);
353     QString normalized = string.normalized(QString::NormalizationForm_D);
354     normalized = normalized;
355     for(int i=0; i<normalized.size(); i++) {
356         if( !normalized[i].isLetterOrNumber() &&
357             !normalized[i].isSpace() &&
358             !normalized[i].isDigit() &&
359             normalized[i] != '*' &&
360             normalized[i] != '%' &&
361             normalized[i] != '_' &&
362             normalized[i] != '?' ) {
363             normalized.remove(i,1);
364         }
365     }
366     return normalized;
367 }
368
369 QIcon* XdxfPlugin::icon() {
370     return &_icon;
371 }
372
373 int XdxfPlugin::countWords() {
374     if(_wordsCount > 0)
375         return _wordsCount;
376
377     QFile dictionaryFile(path);
378     if(!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
379         qDebug()<<"Error: could not open file";
380         return -1;
381     }
382
383     dictionaryFile.seek(0);
384
385     long wordsCount = 0;
386
387     QString line;
388     while(!dictionaryFile.atEnd()) {
389         line = dictionaryFile.readLine();
390         if(line.contains("<k>")) {
391             wordsCount++;
392         }
393     }
394     _wordsCount = wordsCount;
395     dictionaryFile.close();
396     return wordsCount;
397 }
398
399
400
401 bool XdxfPlugin::makeCache(QString dir) {
402     cachingDialog->setVisible(true);
403     QCoreApplication::processEvents();
404     stopped = false;
405     QFileInfo dictFileN(_settings->value("path"));
406     QString cachePathN;
407     cachePathN = QDir::homePath() + "/.mdictionary/"
408                  + dictFileN.completeBaseName() + ".cache";
409
410     QFile dictionaryFile(dictFileN.filePath());
411
412
413     if (!dictionaryFile.open(QFile::ReadOnly | QFile::Text)) {
414         return 0;
415     }
416
417     QXmlStreamReader reader(&dictionaryFile);
418
419     db.setDatabaseName(cachePathN);
420     if(!db.open()) {
421         qDebug() << "Database error" << db.lastError().text() << endl;
422         return false;
423     }
424     QCoreApplication::processEvents();
425     QSqlQuery cur(db);
426     cur.exec("PRAGMA synchronous = 0");
427     cur.exec("drop table dict");
428     QCoreApplication::processEvents();
429     cur.exec("create table dict(word text ,translation text)");
430     int counter = 0;
431     cur.exec("BEGIN;");
432
433     QString a;
434     bool match = false;
435     QTime timer;
436     timer.start();
437     countWords();
438
439     int lastProg = -1;
440
441
442     counter=0;
443     while (!reader.atEnd() && !stopped) {
444
445         QCoreApplication::processEvents();
446         reader.readNext();
447
448         if(reader.tokenType() == QXmlStreamReader::StartElement) {
449             if(reader.name()=="k"){
450                 a = reader.readElementText();
451                 match = true;
452             }
453         }
454         if(match) {
455             QString temp("");
456             while(reader.name()!="ar" && !reader.atEnd()) {
457                 if(reader.name()!="" && reader.name()!="k") {
458                     if(reader.tokenType()==QXmlStreamReader::EndElement)
459                         temp+=tr("</");
460                     if(reader.tokenType()==QXmlStreamReader::StartElement)
461                         temp+=tr("<");
462                     temp+=reader.name().toString();
463                     if(reader.name().toString()=="c" && reader.tokenType()==QXmlStreamReader::StartElement)
464                        temp= temp + tr(" c=\"") + reader.attributes().value(tr("c")).toString() + tr("\"");
465                     temp+=tr(">");
466                 }
467                 temp+= reader.text().toString();
468                 reader.readNext();
469             }
470             temp += tr("<t>") + temp.replace("\n","") + tr("</t>");
471             match=false;
472             cur.prepare("insert into dict values(?,?)");
473             cur.addBindValue(a);
474             cur.addBindValue(temp);
475             cur.exec();
476             counter++;
477             int prog = counter*100/_wordsCount;
478             if(prog % 5 == 0 && lastProg != prog) {
479                 Q_EMIT updateCachingProgress(prog,
480                                              timer.restart());
481                 lastProg = prog;
482             }
483         }
484     }
485
486     cur.exec("END;");
487     cur.exec("select count(*) from dict");
488
489     countWords();
490     cachingDialog->setVisible(false);
491
492     if(!cur.next() || countWords() != cur.value(0).toInt())
493     {
494         db.close();
495         return false;
496     }
497     _settings->setValue("cache_path", cachePathN);
498     _settings->setValue("cached", "true");
499
500     db.close();
501     return true;
502 }
503
504
505 Q_EXPORT_PLUGIN2(xdxf, XdxfPlugin)