forked from goldendict/goldendict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepwing_book.hh
239 lines (170 loc) · 5.5 KB
/
epwing_book.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#ifndef __EPWING_BOOK_HH_INCLUDED__
#define __EPWING_BOOK_HH_INCLUDED__
#include <qglobal.h>
#if defined( Q_OS_WIN32 ) || defined( Q_OS_MAC )
#define _FILE_OFFSET_BITS 64
#endif
#include "dictionary.hh"
#include "ex.hh"
#include "mutex.hh"
#include <QString>
#include <QTextCodec>
#include <QMap>
#include <QVector>
#include <vector>
#include <string>
#include <eb/eb.h>
namespace Epwing {
DEF_EX_STR( exEbLibrary, "EB library report error", Dictionary::Ex )
DEF_EX_STR( exEpwing, "Epwing parsing error:", Dictionary::Ex )
void initialize();
void finalize();
namespace Book {
using std::vector;
using std::string;
enum {
TextBufferSize = 4095,
BinaryBufferSize = 50000,
TextSizeLimit = 2800000
};
struct EpwingHeadword
{
QString headword;
quint32 page;
quint32 offset;
};
class EpwingBook
{
typedef QPair< int, int > EWPos;
void setErrorString( QString const & func, EB_Error_Code code );
EB_Book book;
EB_Appendix appendix;
EB_Hookset hookSet, refHookSet;
EB_Subbook_Code subBookList[ EB_MAX_SUBBOOKS ];
EB_Subbook_Code subAppendixList[ EB_MAX_SUBBOOKS ];
EB_Position currentPosition, indexHeadwordsPosition;
int subBookCount, subAppendixCount;
int currentSubBook;
QString error_string;
QString mainCacheDir, rootDir;
QString cacheImagesDir, cacheSoundsDir, cacheMoviesDir, cacheFontsDir;
QString dictID;
QTextCodec * codec_ISO, * codec_GB, * codec_Euc;
QStack< unsigned int > decorationStack;
int monoWidth, monoHeight;
QStringList imageCacheList, soundsCacheList, moviesCacheList, fontsCacheList;
QMap< QString, QString > baseFontsMap, customFontsMap;
QVector< int > refPages, refOffsets;
QMap< QString, EWPos > allHeadwordPositions;
QVector< EWPos > LinksQueue;
int refOpenCount, refCloseCount;
static Mutex libMutex;
QString createCacheDir( QString const & dir);
// Close unslosed tags
void finalizeText( QString & text );
// Reset internal variables
void prepareToRead();
// Retrieve references from article
void getReferencesFromText( int page, int offset );
// Move to next article
EB_Error_Code forwardText( EB_Position & startPos );
// Retrieve article text from dictionary
QString getText( int page, int offset, bool text_only );
unsigned int normalizeDecorationCode( unsigned int code );
QByteArray codeToUnicode( QString const & code );
public:
enum DecorationCodes {
UNKNOWN = 0,
ITALIC = 1,
BOLD = 3,
EMPHASIS = 4,
SUBSCRIPT = 5,
SUPERSCRIPT = 6
};
EpwingBook();
~EpwingBook();
Mutex & getLibMutex()
{ return libMutex; }
QString const &errorString() const
{ return error_string; }
QTextCodec * codecISO()
{ return codec_ISO; }
QTextCodec * codecGB()
{ return codec_GB; }
QTextCodec *codecEuc()
{ return codec_Euc; }
int getSubBookCount()
{ return subBookCount; }
void setDictID( const string & id )
{ dictID = QString::fromUtf8( id.c_str() ); }
QString const & getImagesCacheDir()
{ return cacheImagesDir; }
QString const & getSoundsCacheDir()
{ return cacheSoundsDir; }
QString const & getMoviesCacheDir()
{ return cacheMoviesDir; }
void clearBuffers()
{
allHeadwordPositions.clear();
LinksQueue.clear();
}
// Make name for resource
QString makeFName( QString const & ext, int page, int offset ) const;
// Store all files in Epwing folder
static void collectFilenames( QString const & directory,
vector< string > & files );
// Initialize dictionary book
int setBook( string const & directory );
// Set subbook inside dictionary
bool setSubBook( int book_nom );
void setCacheDirectory( QString const & cacheDir );
QString getCurrentSubBookDirectory();
QString copyright();
QString title();
// Seek to first article
void getFirstHeadword( EpwingHeadword & head );
// Find next headword and article position
bool getNextHeadword( EpwingHeadword & head );
bool readHeadword( EB_Position const & pos,
QString & headword,
bool text_only );
bool isHeadwordCorrect( QString const & headword );
void fixHeadword( QString & headword );
// Retrieve article from dictionary
void getArticle( QString & headword, QString & articleText,
int page, int offset, bool text_only );
const char * beginDecoration( unsigned int code );
const char * endDecoration( unsigned int code );
QByteArray handleColorImage( EB_Hook_Code code,
const unsigned int * argv );
QByteArray handleMonoImage( EB_Hook_Code code,
const unsigned int * argv );
QByteArray handleWave( EB_Hook_Code code,
const unsigned int * argv );
QByteArray handleMpeg( EB_Hook_Code code,
const unsigned int * argv );
QByteArray handleNarrowFont( const unsigned int * argv,
bool text_only );
QByteArray handleWideFont( const unsigned int * argv,
bool text_only );
QByteArray handleReference( EB_Hook_Code code,
const unsigned int * argv );
bool getMatches( QString word, QVector< QString > & matches );
bool getArticlePos( QString word, QVector< int > & pages, QVector< int > & offsets );
};
struct EContainer
{
EpwingBook * book;
bool textOnly;
EContainer( EpwingBook * book_ ) :
book( book_ ),
textOnly( false )
{}
EContainer( EpwingBook * book_, bool text_only ) :
book( book_ ),
textOnly( text_only )
{}
};
}
}
#endif // __EPWING_BOOK_HH_INCLUDED__