Tizen 2.1 base
[platform/core/uifw/ise-engine-sunpinyin.git] / src / pinyin / shuangpin_data.h
1 // -*- mode: c++ -*-
2 /*
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4  *
5  * Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.
6  *
7  * The contents of this file are subject to the terms of either the GNU Lesser
8  * General Public License Version 2.1 only ("LGPL") or the Common Development and
9  * Distribution License ("CDDL")(collectively, the "License"). You may not use this
10  * file except in compliance with the License. You can obtain a copy of the CDDL at
11  * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
12  * http://www.opensource.org/licenses/lgpl-license.php. See the License for the
13  * specific language governing permissions and limitations under the License. When
14  * distributing the software, include this License Header Notice in each file and
15  * include the full text of the License in the License file as well as the
16  * following notice:
17  *
18  * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
19  * (CDDL)
20  * For Covered Software in this distribution, this License shall be governed by the
21  * laws of the State of California (excluding conflict-of-law provisions).
22  * Any litigation relating to this License shall be subject to the jurisdiction of
23  * the Federal Courts of the Northern District of California and the state courts
24  * of the State of California, with venue lying in Santa Clara County, California.
25  *
26  * Contributor(s):
27  *
28  * If you wish your version of this file to be governed by only the CDDL or only
29  * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
30  * include this software in this distribution under the [CDDL or LGPL Version 2.1]
31  * license." If you don't indicate a single choice of license, a recipient has the
32  * option to distribute your version of this file under either the CDDL or the LGPL
33  * Version 2.1, or to extend the choice of license to its licensees as provided
34  * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
35  * Version 2 license, then the option applies only if the new code is made subject
36  * to such option by the copyright holder.
37  */
38
39 #ifndef _SHUANGPIN_DATA_H_
40 #define _SHUANGPIN_DATA_H_
41
42 #include <string>
43 #include <map>
44
45 #include "ime-core/utils.h"
46 #include "syllable.h"
47
48 enum EShuangpinType {
49     MS2003,
50     ABC,
51     ZIRANMA,
52     PINYINJIAJIA,
53     ZIGUANG,
54     XIAOHE,
55     USERDEFINE,
56 };
57
58 typedef struct _TZeroinitial {
59     const char  *syl;
60     const char  *mapshp;
61 } TZeroInitial;
62
63 typedef struct _TShungpinPlan {
64     EShuangpinType type;
65     char *mapinitials;
66     char *mapfinals;
67     TZeroInitial *zeroinitals;
68 } TShuangpinPlan;
69
70
71 typedef std::vector<std::string>         CMappedYin;
72 typedef std::map<std::string, TSyllable> CEncodingMap;
73 typedef std::map <char, CMappedYin*>     CKeyMap;
74
75 class CShuangpinData : private CNonCopyable
76 {
77 public:
78     CShuangpinData (EShuangpinType shpPlan = MS2003);
79     ~CShuangpinData ();
80
81
82
83     TSyllable encodeSyllable(const char *);
84     const char *decodeSyllable(TSyllable,
85                                const char **i = NULL,
86                                const char **f = NULL);
87
88     int getMapString(const char *ch, CMappedYin & syls);
89     EShuangpinType getShuangpinType() const { return m_shuangpinPlan->type; }
90     void setShuangpinType(EShuangpinType shpPlan);
91
92 protected:
93     void  _genCodingMap();
94     void  _genKeyboardMap(EShuangpinType shyType);
95
96     CEncodingMap m_codingmap;
97     TShuangpinPlan *m_shuangpinPlan;
98     CKeyMap m_keymap;
99 };
100
101 #endif /* _PINYIN_DATA_H_ */