remove from stardict translation's tag "small" when interpret='g'
[mdictionary] / src / plugins / stardict / StarDictPlugin.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 stardictplugin.cpp
23 */
24
25 #include "StarDictPlugin.h"
26
27 uint qHash(const TranslationStarDict &key) {
28    return qHash(key.key());
29 }
30
31 StarDictPlugin::StarDictPlugin(QObject *parent) : CommonDictInterface(parent),
32                     _langFrom(""), _langTo(""),_name(""), _infoNote("") {
33     _settings = new Settings();
34     _dictDialog = new StarDictDialog(this, this);
35
36     connect(_dictDialog, SIGNAL(notify(Notify::NotifyType,QString)),
37             this, SIGNAL(notify(Notify::NotifyType,QString)));
38
39
40     _settings->setValue("type","stardict");
41     _icon = QIcon("/usr/share/mdictionary/stardict.png");
42     _wordsCount = -1;
43     stopped = false;
44
45     initAccents();
46 }
47
48 void StarDictPlugin::retranslate() {
49     QString locale = QLocale::system().name();
50
51     QTranslator *translator = new QTranslator(this);
52
53     if(!translator->load(":/xdxf/translations/" + locale)) {
54         translator->load(":/xdxf/translations/en_US");
55     }
56     QCoreApplication::installTranslator(translator);
57 }
58
59
60 StarDictPlugin::~StarDictPlugin() {
61     delete _settings;
62     delete _dictDialog;
63 }
64
65
66 QString StarDictPlugin::langFrom() const {
67     return _langFrom;
68 }
69
70
71 QString StarDictPlugin::langTo() const {
72     return  _langTo;
73 }
74
75
76 QString StarDictPlugin::name() const {
77     return  _name;
78 }
79
80
81 QString StarDictPlugin::type() const {
82     return QString("stardict");
83 }
84
85
86 QString StarDictPlugin::infoNote() const {
87     return _name;
88 }
89
90
91 QList<Translation*> StarDictPlugin::searchWordList(QString word, int limit) {
92     qDebug() << "StarDict searachWordList" << word;
93     QList<TranslationStarDict> translations;
94     bool is32b = false;
95     if(settings()->value("idxoffsetbits") == "32" ||
96             settings()->value("idxoffsetbits") == "")
97        is32b = true;
98
99     bool err = 0;
100     int wordcount = settings()->value("wordcount").toInt(&err);
101     if(!err)
102         return QList<Translation*>();
103
104     QString idxPath = settings()->value("idxFileName");
105     StarDictReader * reader = StarDictReaderFactory::createReader(idxPath);
106     QString fkey;
107     qint64 offset = 0, len = 0;
108     QRegExp keyword(word, Qt::CaseInsensitive, QRegExp::Wildcard);
109
110     int counter = 0;
111     int counterLimit = 0;
112     while(counter < wordcount && (counterLimit<limit || limit==0)) {
113         counter++;
114         fkey = reader->readKeyword();
115         if(is32b)
116             offset = reader->readInt32BigEndian();
117         else
118             offset = reader->readInt64BigEndian();
119         len = reader->readInt32BigEndian();
120
121         if(keyword.exactMatch(fkey)) {
122             qDebug()<<"InfoNote"<<infoNote();
123             TranslationStarDict tran(fkey, infoNote(), this);
124             qDebug() << "off/len" << offset << len;
125             int id = translations.indexOf(tran);
126             if(id == -1) {
127                 tran.add(offset, len);
128                 translations.push_front(tran);
129             } else
130                 translations[id].add(offset, len);
131             counterLimit++;
132         }
133     }
134     QList<Translation*> ret;
135     QListIterator<TranslationStarDict> it(translations);
136     while(it.hasNext())
137         ret.push_back(new TranslationStarDict(it.next()));
138
139
140     return ret;
141 }
142
143
144 QByteArray StarDictPlugin::read(QByteArray::iterator it,
145         QByteArray::iterator end, int bytes) {
146     QByteArray ret;
147
148     if(bytes == 0 && it != end){
149         while(*it != '\0' && it != end)
150             ret.append(*it++);
151         if(it == end) qDebug()<<"end";
152         else  qDebug()<<"000";
153     }
154     else
155         for(int i = 0; i < bytes && it != end; i++)
156             ret.append(*it++);
157     return ret;
158 }
159
160
161 QString StarDictPlugin::interpret(QByteArray::iterator it,
162         QByteArray::iterator end, QChar mode,QString key, bool last) {
163     QString result;
164     if(mode == 'm'){
165         result += "<key>" + key + "</key>";
166         result += QString::fromUtf8(read(it++, end));
167     }
168     else if(mode == 'l'){
169         result += "<key>" + key + "</key>";
170         result += QString::fromUtf8(read(it++, end));
171     }
172     else if(mode ==  'g'){
173         result += "<key>" + key + "</key>";
174         result += QString::fromUtf8(read(it++, end));
175
176         /* delete "small" tag  from translation*/
177         int indexOfSmall=result.indexOf("<small>");
178         while(indexOfSmall!=-1){
179             qDebug()<<"przed"<<result;
180             int indexOfEndSmall= result.indexOf("</small>");
181             if(indexOfEndSmall!=-1)
182                 result.remove(indexOfSmall,indexOfEndSmall-indexOfSmall+8);
183             indexOfSmall=result.indexOf("<small>");
184             qDebug()<<"po"<<result;
185         }
186     }
187     else if(mode == 't'){
188         result += "<key>" + key + "</key>";
189         result += QString::fromUtf8(read(it++, end));
190     }
191     else if(mode == 'x'){
192         result += QString::fromUtf8(read(it++, end));
193         result.replace("</k>","</key><t>");
194         result.replace("<k>","</t><key>");
195         int pos=result.indexOf("</t>");
196         if(pos!=-1)
197             result.remove(pos,4);
198         if(result.contains("<t>"))
199             result+="</t>";
200     }
201     else if(mode == 'y') {
202         result += "<key>" + key + "</key>";
203         result += QString::fromUtf8(read(it++, end));
204     }
205     else if(mode == 'k'){
206         result += "<key>" + key + "</key>";
207         result += QString::fromUtf8(read(it++, end));
208     }
209     else if(mode == 'w'){
210         result += "<key>" + key + "</key>";
211         result += QString::fromUtf8(read(it++, end));
212     }
213     else if(mode == 'h'){
214         result += "<key>" + key + "</key>";
215         result += QString::fromUtf8(read(it++, end));
216     }
217     else if(mode == 'r'){
218         result += "<key>" + key + "</key>";
219         result += QString::fromUtf8(read(it++, end));
220     }
221
222 // Dont know whether mDictionary would ever handle binary stardict format
223 //     to be honest dont see any kind of adventages (can't find any binary dict)
224  /*
225     }
226     else if(mode == 'W') {
227         result += "<key>" + key + "</key>";
228         if(!last) {
229             QByteArray tmp ;
230             tmp.append(*(it++));
231             tmp.append(*(it++));
232             tmp.append(*(it++));
233             tmp.append(*(it));
234             result += read(it++, end, (qint32)qFromBigEndian(*(qint32*)tmp.data()));
235         } else
236             result += read(it++, end);
237     } else if(mode == 'P') {
238         result += "<key>" + key + "</key>";
239         if(!last) {
240             QByteArray tmp ;
241             tmp.append(*(it++));
242             tmp.append(*(it++));
243             tmp.append(*(it++));
244             tmp.append(*(it));
245             result += read(it++, end, (qint32)qFromBigEndian(*(qint32*)tmp.data()));
246         } else
247             result += read(it++, end);
248     } */
249
250     qDebug()<<"wynik  "<<result;
251     return result;
252 }
253
254 QString StarDictPlugin::format(QByteArray raw, QString mode,QString key) {
255     QString result;
256     if(mode == "") {
257         for(QByteArray::iterator it = raw.begin(); it != raw.end(); it++) {
258             char tmp = *(++it);
259             result += interpret(--it, raw.end(), tmp, key);
260         }
261     } else {
262         QByteArray::iterator it = raw.begin();
263         foreach(QChar tmp, mode) {
264             result += interpret(it, raw.end(), tmp, key);
265         }
266     }
267     return result;
268 }
269
270
271
272 QString StarDictPlugin::search(QString key, qint64 offset, qint32 len) {
273     QString dictPath = settings()->value("dictFileName");
274     StarDictReader *reader = StarDictReaderFactory::createReader(dictPath);
275
276     QByteArray raw = reader->readString(offset, len);
277     qDebug()<<"mod"<<settings()->value("sametypesequence");
278     QString result= format(raw, settings()->value("sametypesequence"),key);
279     delete reader;
280     return result;
281 }
282
283
284
285 void StarDictPlugin::stop() {
286     stopped=true;
287 }
288
289
290 DictDialog* StarDictPlugin::dictDialog() {
291      return _dictDialog;
292 }
293
294
295 CommonDictInterface* StarDictPlugin::getNew(const Settings *settings) const {
296     StarDictPlugin *plugin = new StarDictPlugin();
297
298     connect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
299             this, SIGNAL(notify(Notify::NotifyType,QString)));
300
301     ((StarDictDialog*)plugin->dictDialog())->
302             setLastDialogParent(_dictDialog->lastDialogParent());
303
304     if(settings && plugin->setSettings(settings)) {
305         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
306                 this, SIGNAL(notify(Notify::NotifyType,QString)));
307         plugin->getDictionaryInfo();
308         return plugin;
309     }
310     else {
311         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
312                 this, SIGNAL(notify(Notify::NotifyType,QString)));
313         delete plugin;
314         return 0;
315     }
316 }
317
318
319 bool StarDictPlugin::isAvailable() const {
320     return true;
321 }
322
323
324 Settings* StarDictPlugin::settings() {
325     return _settings;
326 }
327
328
329 bool StarDictPlugin::isCached() {
330     return false;
331 }
332
333
334 bool StarDictPlugin::setSettings(const Settings *sett) {
335     if(sett) {
336         foreach(QString key, sett->keys())
337             _settings->setValue(key, sett->value(key));
338
339     } else
340         return false;
341     Q_EMIT settingsChanged();
342     return true;
343 }
344
345
346 bool StarDictPlugin::getDictionaryInfo() {
347     QFile file(settings()->value("ifoFileName"));
348     if(!QFile::exists(_settings->value("ifoFileName"))
349                 || !file.open(QFile::ReadOnly | QFile::Text)) {
350        Q_EMIT notify(Notify::Warning,
351                QString(tr("StarDict dictionary cannot be read from file")));
352         qDebug()<<"Error: could not open the file";
353         return false;
354     }
355
356     QTextStream in(&file);
357     while (!in.atEnd()) {
358         QString line = in.readLine();
359         QStringList list = line.split("=");
360         if(list.size() == 2) {
361             settings()->setValue(list.at(0),list.at(1));
362         }
363     }
364
365     _name = settings()->value("bookname");
366     return true;
367 }
368
369
370 QIcon* StarDictPlugin::icon() {
371     return &_icon;
372 }
373
374
375 int StarDictPlugin::countWords() {
376     return 0;
377 }
378
379
380
381 void StarDictPlugin::clean() {
382
383 }
384
385
386 Q_EXPORT_PLUGIN2(stardict, StarDictPlugin)