1 /*
2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3  *
4  * This code is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 2 only, as
6  * published by the Free Software Foundation.  Oracle designates this
7  * particular file as subject to the "Classpath" exception as provided
8  * by Oracle in the LICENSE file that accompanied this code.
9  *
10  * This code is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13  * version 2 for more details (a copy is included in the LICENSE file that
14  * accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License version
17  * 2 along with this work; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21  * or visit www.oracle.com if you need additional information or have any
22  * questions.
23  *
24  */
25 
26 /*
27  *
28  * (C) Copyright IBM Corp.  and others 1998-2013 - All Rights Reserved
29  *
30  */
31 
32 #include "LETypes.h"
33 #include "MorphTables.h"
34 #include "SubtableProcessor2.h"
35 #include "NonContextualGlyphSubst.h"
36 #include "NonContextualGlyphSubstProc2.h"
37 #include "SimpleArrayProcessor2.h"
38 #include "SegmentSingleProcessor2.h"
39 #include "SegmentArrayProcessor2.h"
40 #include "SingleTableProcessor2.h"
41 #include "TrimmedArrayProcessor2.h"
42 #include "LESwaps.h"
43 
44 U_NAMESPACE_BEGIN
45 
NonContextualGlyphSubstitutionProcessor2()46 NonContextualGlyphSubstitutionProcessor2::NonContextualGlyphSubstitutionProcessor2()
47 {
48 }
49 
NonContextualGlyphSubstitutionProcessor2(const LEReferenceTo<MorphSubtableHeader2> & morphSubtableHeader,LEErrorCode & success)50 NonContextualGlyphSubstitutionProcessor2::NonContextualGlyphSubstitutionProcessor2(
51      const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success)
52   : SubtableProcessor2(morphSubtableHeader, success)
53 {
54 }
55 
~NonContextualGlyphSubstitutionProcessor2()56 NonContextualGlyphSubstitutionProcessor2::~NonContextualGlyphSubstitutionProcessor2()
57 {
58 }
59 
createInstance(const LEReferenceTo<MorphSubtableHeader2> & morphSubtableHeader,LEErrorCode & success)60 SubtableProcessor2 *NonContextualGlyphSubstitutionProcessor2::createInstance(
61       const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success)
62 {
63     const LEReferenceTo<NonContextualGlyphSubstitutionHeader2> header(morphSubtableHeader, success);
64     if(LE_FAILURE(success)) return NULL;
65 
66     switch (SWAPW(header->table.format))
67     {
68     case ltfSimpleArray:
69       return new SimpleArrayProcessor2(morphSubtableHeader, success);
70 
71     case ltfSegmentSingle:
72       return new SegmentSingleProcessor2(morphSubtableHeader, success);
73 
74     case ltfSegmentArray:
75       return new SegmentArrayProcessor2(morphSubtableHeader, success);
76 
77     case ltfSingleTable:
78       return new SingleTableProcessor2(morphSubtableHeader, success);
79 
80     case ltfTrimmedArray:
81       return new TrimmedArrayProcessor2(morphSubtableHeader, success);
82 
83     default:
84         return NULL;
85     }
86 }
87 
88 U_NAMESPACE_END
89