forked from goldendict/goldendict
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchinese.cc
More file actions
114 lines (94 loc) · 3.91 KB
/
chinese.cc
File metadata and controls
114 lines (94 loc) · 3.91 KB
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
/* This file is (c) 2015 Zhe Wang <0x1997@gmail.com>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "chinese.hh"
#include <stdexcept>
#include <QCoreApplication>
#include <opencc/Export.hpp>
#include <opencc/SimpleConverter.hpp>
#include "folding.hh"
#include "gddebug.hh"
#include "transliteration.hh"
#include "utf8.hh"
namespace Chinese {
class CharacterConversionDictionary: public Transliteration::BaseTransliterationDictionary
{
opencc::SimpleConverter* converter;
public:
CharacterConversionDictionary( std::string const & id, std::string const & name,
QIcon icon, QString const & openccConfig);
~CharacterConversionDictionary();
std::vector< gd::wstring > getAlternateWritings( gd::wstring const & )
throw();
};
CharacterConversionDictionary::CharacterConversionDictionary( std::string const & id,
std::string const & name_,
QIcon icon_,
QString const & openccConfig):
Transliteration::BaseTransliterationDictionary( id, name_, icon_, false ),
converter( NULL )
{
try {
converter = new opencc::SimpleConverter( openccConfig.toLocal8Bit().constData() );
} catch ( std::runtime_error& e ) {
gdWarning( "CharacterConversionDictionary: failed to initialize OpenCC from config %s: %s\n",
openccConfig.toLocal8Bit().constData(), e.what() );
}
}
CharacterConversionDictionary::~CharacterConversionDictionary()
{
if ( converter != NULL )
delete converter;
}
std::vector< gd::wstring > CharacterConversionDictionary::getAlternateWritings( gd::wstring const & str )
throw()
{
std::vector< gd::wstring > results;
if ( converter != NULL ) {
gd::wstring folded = Folding::applySimpleCaseOnly( str );
std::string input = Utf8::encode( folded );
std::string output;
gd::wstring result;
try {
output = converter->Convert( input );
result = Utf8::decode( output );
} catch ( std::exception& ex ) {
gdWarning( "OpenCC: convertion failed %s\n", ex.what() );
}
if ( !result.empty() && result != folded )
results.push_back( result );
}
return results;
}
std::vector< sptr< Dictionary::Class > > makeDictionaries( Config::Chinese const & cfg )
throw( std::exception )
{
std::vector< sptr< Dictionary::Class > > result;
#ifdef Q_OS_LINUX
QString configDir = "";
#else
QString configDir = Config::getOpenCCDir() + "/";
#endif
if ( cfg.enable )
{
if ( cfg.enableSCToTWConversion )
{
result.push_back( new CharacterConversionDictionary( "bf1c33a59cbacea8f39b5b5475787cfd",
QCoreApplication::translate( "ChineseConversion", "Simplified to traditional Chinese (Taiwan variant) conversion" ).toUtf8().data(),
QIcon( ":/flags/tw.png" ), configDir + "s2tw.json" ) );
}
if ( cfg.enableSCToHKConversion )
{
result.push_back( new CharacterConversionDictionary( "9e0681fb9e1c0b6c90e6fb46111d96b5",
QCoreApplication::translate( "ChineseConversion", "Simplified to traditional Chinese (Hong Kong variant) conversion" ).toUtf8().data(),
QIcon( ":/flags/hk.png" ), configDir + "s2hk.json" ) );
}
if ( cfg.enableTCToSCConversion )
{
result.push_back( new CharacterConversionDictionary( "0db536ce0bdc52ea30d11a82c5db4a27",
QCoreApplication::translate( "ChineseConversion", "Traditional to simplified Chinese conversion" ).toUtf8().data(),
QIcon( ":/flags/cn.png" ), configDir + "t2s.json" ) );
}
}
return result;
}
}