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