Various changes to preferences object, file loading, and error logging.
[jben.git] / wdict.h
blob3c0ff8458333c34903044fe1a264f68d48a5c819
1 /*
2 Project: J-Ben
3 Author: Paul Goins
4 Website: http://www.vultaire.net/software/jben/
5 License: GNU General Public License (GPL) version 2
6 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
8 File: wdict.h
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>
24 #ifndef wdict_h
25 #define wdict_h
27 /* #define USING_INDICES */
29 #include "boosthm.h"
30 #include <list>
31 #include <vector>
32 #include <utility>
33 using namespace std;
35 #define ED_SUCCESS 0x0
36 #define ED_FAILURE 0x80000000
38 #define EDS_EXACT 0x1u
39 #define EDS_BEGIN 0x2u
40 #define EDS_END 0x4u
41 #define EDS_ANY 0x8u
43 class WDict {
44 public:
45 static const WDict *Get();
46 static void Destroy();
47 ~WDict();
49 /* General public EDICT functions
50 NOTE: Investigate why this was set as public. Public functions should
51 not be tied to a specific dictionary file type. */
52 string GetEdictString(int i) const;
54 /* Dictionary search functions */
55 bool Search(const wstring& query,
56 list<int>& results,
57 unsigned int searchType =
58 EDS_EXACT | (EDS_BEGIN << 8) |
59 (EDS_END << 16) | (EDS_ANY << 24)) const;
60 static wstring ResultToHTML(const wstring& rawResult);
62 /* Other functions */
63 bool MainDataLoaded() const;
64 private:
65 /* Hidden constructor */
66 WDict();
68 /* Dictionary file loaders */
69 int LoadEdict2(const char *filename);
71 /* EDICT2-specific stuff */
72 void Edict2Parser(char *edict2RawData);
74 /* General EDICT-compatible functions */
75 static void GetEnglish(const string& edictStr, vector<string>& dest);
76 static void GetJapanese(const string& edictStr, vector<string>& dest);
78 /* Data */
79 static WDict *wdictSingleton;
80 vector<string> edictData;
83 #endif