33a9744d5632b1b7e670490ace1f1900c682ead7
[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[4]={0};
57     QString cha;
58
59     gzread(_file, c, 1);
60     if(((unsigned char)c[0])>127){
61         gzread(_file, c+1, 1);
62         if(((unsigned char)c[1])>127 && ((unsigned char)c[1])<192){
63             gzread(_file, c+2, 1);
64             if(((unsigned char)c[2])>127 && ((unsigned char)c[2])<192)
65                 gzread(_file, c+3, 1);
66         }
67     }
68
69     cha=QString::fromUtf8(c);
70     return cha.at(0);
71 }
72
73 qint32 CompressedReader::readInt32BigEndian() {
74     qint32 value;
75     gzread(_file, (void*)(&value), 4);
76     return qFromBigEndian(value);
77 }
78
79 qint64 CompressedReader::readInt64BigEndian() {
80     qint64 value;
81     gzread(_file, (void*)(&value), 8);
82     return value;
83 }
84
85 QString CompressedReader::readKeyword() {
86     QString result;
87     QChar c;
88
89     c = readChar();
90     while(c != '\0') {
91         result += c;
92         c = readChar();
93     }
94     return result;
95 }
96
97 QByteArray CompressedReader::readString(qint64 offset, qint32 len) {
98     char* buf;
99     buf = new char[len];
100
101     gzseek(_file, offset, SEEK_SET);
102     gzread(_file, buf, len);
103
104     QByteArray res(buf, len);
105     delete [] buf;
106     return res;
107 }
108