Apply -fvisibility to decrease binary size
[platform/core/uifw/ise-engine-sunpinyin.git] / src / pinyin / shuangpin_seg.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 SUNPY_SHUANGPIN_SEG_H
40 #define SUNPY_SHUANGPIN_SEG_H
41
42 #include "portability.h"
43 #include "shuangpin_data.h"
44 #include "segmentor.h"
45 #include "pinyin_data.h"
46 #include <vector>
47
48 class EXPORTED CShuangpinSegmentor : public IPySegmentor
49 {
50 public:
51     CShuangpinSegmentor (EShuangpinType shpType);
52
53     virtual TSegmentVec& getSegments(bool) { return m_segs; }
54     virtual const wstring& getInputBuffer() { return m_inputBuf; }
55     virtual const char* getSylSeps() { return "'"; }
56
57     virtual unsigned push(unsigned ch);
58     virtual unsigned pop();
59     virtual unsigned insertAt(unsigned idx, unsigned ch);
60     virtual unsigned deleteAt(unsigned idx, bool backward = true);
61     virtual unsigned clear(unsigned from = 0);
62
63     virtual unsigned updatedFrom() { return m_updatedFrom; }
64
65     void setGetFuzzySyllablesOp(CGetFuzzySyllablesOp<CPinyinData> *op) {
66         m_pGetFuzzySyllablesOp = op; }
67
68 private:
69     unsigned _push(unsigned ch);
70     unsigned _clear(unsigned from);
71     int _getNumberOfNonAlpha() const;
72     int _encode(const char* buf, char ch, bool isComplete);
73     void _locateSegment(unsigned idx, unsigned &strIdx, unsigned &segIdx);
74
75     inline void _addFuzzySyllables(TSegment &seg);
76
77     static CShuangpinData s_shpData;
78     std::string m_pystr;
79     wstring m_inputBuf;
80     TSegmentVec m_segs;
81     unsigned m_updatedFrom;
82     int m_nAlpha;                                     /* number of non-py chars in m_pystr*/
83     bool m_hasInvalid;                                /* true if there is invalid py in m_pystr */
84     unsigned m_nLastValidPos;
85
86     CGetFuzzySyllablesOp<CPinyinData>  *m_pGetFuzzySyllablesOp;
87 };
88
89 #endif /* SUNPY_SHUANGPIN_SEG_H */