change in interpreter
[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     else if(mode == 't'){
177         result += "<key>" + key + "</key>";
178         result += QString::fromUtf8(read(it++, end));
179     }
180     else if(mode == 'x'){
181         result += QString::fromUtf8(read(it++, end));
182         result.replace("</k>","</key><t>");
183         result.replace("<k>","</t><key>");
184         int pos=result.indexOf("</t>");
185         if(pos!=-1)
186             result.remove(pos,4);
187         result+="</t>";
188     }
189     else if(mode == 'y') {
190         result += "<key>" + key + "</key>";
191         result += QString::fromUtf8(read(it++, end));
192     }
193     else if(mode == 'k'){
194         result += "<key>" + key + "</key>";
195         result += QString::fromUtf8(read(it++, end));
196     }
197     else if(mode == 'w'){
198         result += "<key>" + key + "</key>";
199         result += QString::fromUtf8(read(it++, end));
200     }
201     else if(mode == 'h'){
202         result += "<key>" + key + "</key>";
203         result += QString::fromUtf8(read(it++, end));
204     }
205     else if(mode == 'r'){
206         result += "<key>" + key + "</key>";
207         result += QString::fromUtf8(read(it++, end));
208     }
209     else if(mode == 'W') {
210         result += "<key>" + key + "</key>";
211         if(!last) {
212             QByteArray tmp ;
213             tmp.append(*(it++));
214             tmp.append(*(it++));
215             tmp.append(*(it++));
216             tmp.append(*(it));
217             result += read(it++, end, (qint32)qFromBigEndian(tmp.data()));
218         } else
219             result += read(it++, end);
220     } else if(mode == 'P') {
221         result += "<key>" + key + "</key>";
222         if(!last) {
223             QByteArray tmp ;
224             tmp.append(*(it++));
225             tmp.append(*(it++));
226             tmp.append(*(it++));
227             tmp.append(*(it));
228             result += read(it++, end, (qint32)qFromBigEndian(tmp.data()));
229         } else
230             result += read(it++, end);
231     }
232     return result;
233 }
234
235 QString StarDictPlugin::format(QByteArray raw, QString mode,QString key) {
236     QString result;
237     if(mode == "") {
238         for(QByteArray::iterator it = raw.begin(); it != raw.end(); it++) {
239             char tmp = *(++it);
240             result += interpret(--it, raw.end(), tmp, key);
241         }
242     } else {
243         QByteArray::iterator it = raw.begin();
244         foreach(QChar tmp, mode) {
245             result += interpret(it, raw.end(), tmp, key);
246         }
247     }
248     return result;
249 }
250
251
252
253 QString StarDictPlugin::search(QString key, qint64 offset, qint32 len) {
254     QString dictPath = settings()->value("dictFileName");
255     StarDictReader *reader = StarDictReaderFactory::createReader(dictPath);
256
257     QByteArray raw = reader->readString(offset, len);
258     qDebug()<<"mod"<<settings()->value("sametypesequence");
259     QString result= format(raw, settings()->value("sametypesequence"),key);
260     delete reader;
261     return result;
262 }
263
264
265
266 void StarDictPlugin::stop() {
267     stopped=true;
268 }
269
270
271 DictDialog* StarDictPlugin::dictDialog() {
272      return _dictDialog;
273 }
274
275
276 CommonDictInterface* StarDictPlugin::getNew(const Settings *settings) const {
277     StarDictPlugin *plugin = new StarDictPlugin();
278
279     connect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
280             this, SIGNAL(notify(Notify::NotifyType,QString)));
281
282     ((StarDictDialog*)plugin->dictDialog())->
283             setLastDialogParent(_dictDialog->lastDialogParent());
284
285
286
287     if(settings && plugin->setSettings(settings)) {
288
289         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
290                 this, SIGNAL(notify(Notify::NotifyType,QString)));
291         plugin->getDictionaryInfo();
292         return plugin;
293     }
294     else {
295         disconnect(plugin, SIGNAL(notify(Notify::NotifyType,QString)),
296                 this, SIGNAL(notify(Notify::NotifyType,QString)));
297         delete plugin;
298         return 0;
299     }
300 }
301
302
303 bool StarDictPlugin::isAvailable() const {
304     return true;
305 }
306
307
308 Settings* StarDictPlugin::settings() {
309     return _settings;
310 }
311
312
313 bool StarDictPlugin::isCached() {
314     return false;
315 }
316
317
318 bool StarDictPlugin::setSettings(const Settings *sett) {
319     if(sett) {
320         foreach(QString key, sett->keys())
321             _settings->setValue(key, sett->value(key));
322
323     } else
324         return false;
325     Q_EMIT settingsChanged();
326     return true;
327 }
328
329
330 bool StarDictPlugin::getDictionaryInfo() {
331     QFile file(settings()->value("ifoFileName"));
332     if(!QFile::exists(_settings->value("ifoFileName"))
333                 || !file.open(QFile::ReadOnly | QFile::Text)) {
334        Q_EMIT notify(Notify::Warning,
335                QString(tr("StarDict dictionary cannot be read from file")));
336         qDebug()<<"Error: could not open the file";
337         return false;
338     }
339
340     QTextStream in(&file);
341     while (!in.atEnd()) {
342         QString line = in.readLine();
343         QStringList list = line.split("=");
344         if(list.size() == 2) {
345             settings()->setValue(list.at(0),list.at(1));
346         }
347     }
348
349     _name = settings()->value("bookname");
350     return true;
351 }
352
353
354 QIcon* StarDictPlugin::icon() {
355     return &_icon;
356 }
357
358
359 int StarDictPlugin::countWords() {
360     return 0;
361 }
362
363
364
365 void StarDictPlugin::clean() {
366
367 }
368
369
370 Q_EXPORT_PLUGIN2(stardict, StarDictPlugin)