fix bugs -'stop stardict when user click stop' and 'nacional char in words list'
[mdictionary] / src / plugins / stardict / CompressedReader.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 //Created by Mateusz Półrola
23
24 #include "CompressedReader.h"
25 #include <QtEndian>
26 #include <QDebug>
27
28 CompressedReader::CompressedReader(QObject *parent) :
29     StarDictReader(parent) {
30 }
31
32 CompressedReader::CompressedReader(QString filename, QObject *parent) :
33     StarDictReader(parent) {
34     open(filename);
35 }
36
37 CompressedReader::~CompressedReader() {
38     if(_file != NULL)
39         gzclose(_file);
40 }
41
42 bool CompressedReader::open(QString file) {
43     _file = gzopen(file.toStdString().c_str(), "rb");
44     if(_file == NULL)
45         return false;
46     return true;
47 }
48
49 void CompressedReader::close() {
50     gzclose(_file);
51     _file = NULL;
52 }
53
54
55 QChar CompressedReader::readChar() {
56     char c[2]={0};
57     gzread(_file, c, 1);
58     QString cha(QString::fromUtf8(c));
59     if(!cha.at(0).isLetter() && c[0]!=0){
60         gzread(_file, c, 1);
61         cha=QString::fromUtf8(c);
62     }
63     return cha.at(0);
64 }
65
66 qint32 CompressedReader::readInt32BigEndian() {
67     qint32 value;
68     gzread(_file, (void*)(&value), 4);
69
70     return qFromBigEndian(value);
71 }
72
73 qint64 CompressedReader::readInt64BigEndian() {
74     qint64 value;
75     gzread(_file, (void*)(&value), 8);
76
77     return value;
78 }
79
80 QString CompressedReader::readKeyword() {
81     QString result;
82     QChar c;
83     c = readChar();
84
85     while(c != '\0') {
86         result += c;
87         c = readChar();
88     }
89
90     return result;
91 }
92
93 QByteArray CompressedReader::readString(qint64 offset, qint32 len) {
94     char* buf;
95     buf = new char[len];
96
97     gzseek(_file, offset, SEEK_SET);
98     gzread(_file, buf, len);
99
100     QByteArray res(buf, len);
101     delete [] buf;
102     return res;
103 }
104