jdk/src/share/native/sun/font/layout/ScriptAndLanguage.cpp
author srl
Mon, 06 Dec 2010 16:10:01 -0800
changeset 7486 6a36b1ebc620
parent 5506 202f599c92aa
child 16891 91e99bed64ae
permissions -rw-r--r--
6886358: layout code update Reviewed-by: igor, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3935
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3935
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3935
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3935
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3935
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *
3935
afcdb712a9c5 6501644: sync LayoutEngine *code* structure to match ICU
srl
parents: 2
diff changeset
    28
 *
7486
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    29
 * (C) Copyright IBM Corp. 1998-2010 - All Rights Reserved
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "LETypes.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "OpenTypeTables.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include "OpenTypeUtilities.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#include "ScriptAndLanguage.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#include "LESwaps.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
3935
afcdb712a9c5 6501644: sync LayoutEngine *code* structure to match ICU
srl
parents: 2
diff changeset
    39
U_NAMESPACE_BEGIN
afcdb712a9c5 6501644: sync LayoutEngine *code* structure to match ICU
srl
parents: 2
diff changeset
    40
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
const LangSysTable *ScriptTable::findLanguage(LETag languageTag, le_bool exactMatch) const
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    le_uint16 count = SWAPW(langSysCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    Offset langSysTableOffset = exactMatch? 0 : SWAPW(defaultLangSysTableOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    if (count > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        Offset foundOffset =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            OpenTypeUtilities::getTagOffset(languageTag, langSysRecordArray, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        if (foundOffset != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
            langSysTableOffset = foundOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    if (langSysTableOffset != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        return (const LangSysTable *) ((char *)this + langSysTableOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
7486
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    59
    return NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
const ScriptTable *ScriptListTable::findScript(LETag scriptTag) const
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
{
7486
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    64
    /*
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    65
     * There are some fonts that have a large, bogus value for scriptCount. To try
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    66
     * and protect against this, we use the offset in the first scriptRecord,
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    67
     * which we know has to be past the end of the scriptRecordArray, to compute
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    68
     * a value which is greater than or equal to the actual script count.
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    69
     *
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    70
     * Note: normally, the first offset will point to just after the scriptRecordArray,
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    71
     * but there's no guarantee of this, only that it's *after* the scriptRecordArray.
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    72
     * Because of this, a binary serach isn't safe, because the new count may include
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    73
     * data that's not actually in the scriptRecordArray and hence the array will appear
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    74
     * to be unsorted.
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    75
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    le_uint16 count = SWAPW(scriptCount);
7486
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    77
    le_uint16 limit = ((SWAPW(scriptRecordArray[0].offset) - sizeof(ScriptListTable)) / sizeof(scriptRecordArray)) + ANY_NUMBER;
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    78
    Offset scriptTableOffset = 0;
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    79
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    80
    if (count > limit) {
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    81
        // the scriptCount value is bogus; do a linear search
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    82
        // because limit may still be too large.
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    83
        for(le_int32 s = 0; s < limit; s += 1) {
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    84
            if (SWAPT(scriptRecordArray[s].tag) == scriptTag) {
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    85
                scriptTableOffset = SWAPW(scriptRecordArray[s].offset);
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    86
                break;
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    87
            }
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    88
        }
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    89
    } else {
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    90
        scriptTableOffset = OpenTypeUtilities::getTagOffset(scriptTag, scriptRecordArray, count);
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    91
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    if (scriptTableOffset != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        return (const ScriptTable *) ((char *)this + scriptTableOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
7486
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
    97
    return NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
const LangSysTable *ScriptListTable::findLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch) const
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    const ScriptTable *scriptTable = findScript(scriptTag);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    if (scriptTable == 0) {
7486
6a36b1ebc620 6886358: layout code update
srl
parents: 5506
diff changeset
   105
        return NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    return scriptTable->findLanguage(languageTag, exactMatch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
}
3935
afcdb712a9c5 6501644: sync LayoutEngine *code* structure to match ICU
srl
parents: 2
diff changeset
   110
afcdb712a9c5 6501644: sync LayoutEngine *code* structure to match ICU
srl
parents: 2
diff changeset
   111
U_NAMESPACE_END