dae4b2ed2fc81df8214c4c4f60c83e9ce121e543
[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
33 CompressedReader::CompressedReader(QString filename, QObject *parent) :
34     StarDictReader(parent) {
35     open(filename);
36 }
37
38
39 CompressedReader::~CompressedReader() {
40     if(_file != NULL)
41         gzclose(_file);
42 }
43
44
45 bool CompressedReader::open(QString file) {
46     _file = gzopen(file.toStdString().c_str(), "rb");
47     if(_file == NULL)
48         return false;
49     return true;
50 }
51
52
53 void CompressedReader::close() {
54     gzclose(_file);
55     _file = NULL;
56 }
57
58
59 QChar CompressedReader::readChar() {
60     char c[4]={0};
61     QString cha;
62
63     gzread(_file, c, 1);
64     if(((unsigned char)c[0])>240)
65         gzread(_file, c+1, 3);
66     else if(((unsigned char)c[0])>224)
67         gzread(_file, c+1, 2);
68     else if(((unsigned char)c[0])>192)
69         gzread(_file, c+1, 1);
70     else if(((unsigned char)c[0])>127){
71         qDebug()<<"error - starDict - read wordList from UTF-8";
72         c[0]=0;
73     }
74
75
76  /*   gzread(_file, c, 1);
77     if(((unsigned char)c[0])>127){
78         gzread(_file, c+1, 1);
79         if(((unsigned char)c[1])>127 && ((unsigned char)c[1])<192){
80             gzread(_file, c+2, 1);
81             if(((unsigned char)c[2])>127 && ((unsigned char)c[2])<192)
82                 gzread(_file, c+3, 1);
83         }
84     }
85 */
86
87     cha=QString::fromUtf8(c);
88     return cha.at(0);
89 }
90
91
92 qint32 CompressedReader::readInt32BigEndian() {
93     qint32 value;
94     gzread(_file, (void*)(&value), 4);
95     return qFromBigEndian(value);
96 }
97
98
99 qint64 CompressedReader::readInt64BigEndian() {
100     qint64 value;
101     gzread(_file, (void*)(&value), 8);
102     return value;
103 }
104
105
106 QString CompressedReader::readKeyword() {
107     QString result;
108     QChar c;
109
110     c = readChar();
111     while(c != '\0') {
112         result += c;
113         c = readChar();
114     }
115     return result;
116 }
117
118
119 QByteArray CompressedReader::readString(qint64 offset, qint32 len) {
120     char* buf;
121     buf = new char[len];
122
123     gzseek(_file, offset, SEEK_SET);
124     gzread(_file, buf, len);
125
126     QByteArray res(buf, len);
127     delete [] buf;
128     return res;
129 }
130