Added readers for compressed and uncompressed files
[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
27 CompressedReader::CompressedReader(QObject *parent) :
28     StarDictReader(parent) {
29 }
30
31 CompressedReader::CompressedReader(QString filename, QObject *parent) :
32     StarDictReader(parent) {
33     open(filename);
34 }
35
36 CompressedReader::~CompressedReader() {
37     if(_file != NULL)
38         gzclose(_file);
39 }
40
41 bool CompressedReader::open(QString file) {
42     _file = gzopen(file.toStdString().c_str(), "rb");
43     if(_file == NULL)
44         return false;
45     return true;
46 }
47
48 void CompressedReader::close() {
49     gzclose(_file);
50     _file = NULL;
51 }
52
53
54 QChar CompressedReader::readChar() {
55     char c[1];
56     gzread(_file, c, 1);
57     return QChar(c[0]);
58 }
59
60 qint32 CompressedReader::readInt32BigEndian() {
61     qint32 value;
62     gzread(_file, (void*)(&value), 4);
63
64     return qFromBigEndian(value);
65 }
66
67 qint64 CompressedReader::readInt64BigEndian() {
68     qint64 value;
69     gzread(_file, (void*)(&value), 8);
70
71     return value;
72 }
73
74 QString CompressedReader::readKeyword() {
75     QString result;
76     QChar c;
77     c = readChar();
78
79     while(c != '\0') {
80         result += c;
81         c = readChar();
82     }
83
84     return result;
85 }
86
87 QString CompressedReader::readString(qint32 offset, qint32 len) {
88     char* buf;
89     buf = new char[len];
90
91     gzseek(_file, offset, SEEK_SET);
92     gzread(_file, buf, len);
93
94     QString result(buf);
95     delete [] buf;
96     return result;
97 }
98
99 QString CompressedReader::readString(qint64 offset, qint32 len) {
100     char* buf;
101     buf = new char[len];
102
103     gzseek(_file, offset, SEEK_SET);
104     gzread(_file, buf, len);
105
106     QString result(buf);
107     delete [] buf;
108     return result;
109 }
110