jdk/src/share/native/sun/font/layout/NonContextualGlyphSubstProc2.cpp
changeset 16889 3df90f344221
child 16891 91e99bed64ae
equal deleted inserted replaced
16888:4a32a7e572d1 16889:3df90f344221
       
     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 
       
    46 NonContextualGlyphSubstitutionProcessor2::NonContextualGlyphSubstitutionProcessor2()
       
    47 {
       
    48 }
       
    49 
       
    50 NonContextualGlyphSubstitutionProcessor2::NonContextualGlyphSubstitutionProcessor2(const MorphSubtableHeader2 *morphSubtableHeader)
       
    51     : SubtableProcessor2(morphSubtableHeader)
       
    52 {
       
    53 }
       
    54 
       
    55 NonContextualGlyphSubstitutionProcessor2::~NonContextualGlyphSubstitutionProcessor2()
       
    56 {
       
    57 }
       
    58 
       
    59 SubtableProcessor2 *NonContextualGlyphSubstitutionProcessor2::createInstance(const MorphSubtableHeader2 *morphSubtableHeader)
       
    60 {
       
    61     const NonContextualGlyphSubstitutionHeader2 *header = (const NonContextualGlyphSubstitutionHeader2 *) morphSubtableHeader;
       
    62 
       
    63     switch (SWAPW(header->table.format))
       
    64     {
       
    65     case ltfSimpleArray:
       
    66         return new SimpleArrayProcessor2(morphSubtableHeader);
       
    67 
       
    68     case ltfSegmentSingle:
       
    69         return new SegmentSingleProcessor2(morphSubtableHeader);
       
    70 
       
    71     case ltfSegmentArray:
       
    72         return new SegmentArrayProcessor2(morphSubtableHeader);
       
    73 
       
    74     case ltfSingleTable:
       
    75         return new SingleTableProcessor2(morphSubtableHeader);
       
    76 
       
    77     case ltfTrimmedArray:
       
    78         return new TrimmedArrayProcessor2(morphSubtableHeader);
       
    79 
       
    80     default:
       
    81         return NULL;
       
    82     }
       
    83 }
       
    84 
       
    85 U_NAMESPACE_END