]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FOP-2969: Reorder glyphs with no width
authorSimon Steiner <ssteiner@apache.org>
Tue, 31 May 2022 14:01:24 +0000 (14:01 +0000)
committerSimon Steiner <ssteiner@apache.org>
Tue, 31 May 2022 14:01:24 +0000 (14:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1901453 13f79535-47bb-0310-9956-ffa450edef68

fop-core/src/main/java/org/apache/fop/complexscripts/scripts/DefaultScriptProcessor.java
fop-core/src/main/java/org/apache/fop/complexscripts/scripts/HebrewScriptProcessor.java [new file with mode: 0644]
fop-core/src/main/java/org/apache/fop/complexscripts/scripts/ScriptProcessor.java
fop-core/src/test/java/org/apache/fop/complexscripts/scripts/DefaultScriptTestCase.java [new file with mode: 0644]

index 275fb20dc1acbacf2099fc8bbe2bb3fd1a35c376..16c130a3e49e4efab1dff086cbec92d5efbf39e3 100644 (file)
@@ -151,7 +151,7 @@ public class DefaultScriptProcessor extends ScriptProcessor {
     }
 
     protected boolean isReorderedMark(GlyphDefinitionTable gdef, int[] glyphs, int[] unscaledWidths, int index) {
-        return gdef.isGlyphClass(glyphs[index], GlyphDefinitionTable.GLYPH_CLASS_MARK) && (unscaledWidths[index] != 0);
+        return gdef.isGlyphClass(glyphs[index], GlyphDefinitionTable.GLYPH_CLASS_MARK);
     }
 
 }
diff --git a/fop-core/src/main/java/org/apache/fop/complexscripts/scripts/HebrewScriptProcessor.java b/fop-core/src/main/java/org/apache/fop/complexscripts/scripts/HebrewScriptProcessor.java
new file mode 100644 (file)
index 0000000..d772fe3
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* $Id$ */
+package org.apache.fop.complexscripts.scripts;
+
+import org.apache.fop.complexscripts.fonts.GlyphDefinitionTable;
+
+public class HebrewScriptProcessor extends DefaultScriptProcessor {
+    HebrewScriptProcessor(String script) {
+        super(script);
+    }
+
+    protected boolean isReorderedMark(GlyphDefinitionTable gdef, int[] glyphs, int[] unscaledWidths, int index) {
+        return gdef.isGlyphClass(glyphs[index], GlyphDefinitionTable.GLYPH_CLASS_MARK) && (unscaledWidths[index] != 0);
+    }
+}
index 389cb9d12c5b4b77f7fa30066262a132acc68134..4973202913234739b6b363d9032936a3939d72be 100644 (file)
@@ -247,6 +247,8 @@ public abstract class ScriptProcessor {
             sp = IndicScriptProcessor.makeProcessor(script);
         } else if (sc == CharScript.SCRIPT_THAI) {
             sp = new ThaiScriptProcessor(script);
+        } else if (sc == CharScript.SCRIPT_HEBREW) {
+            sp = new HebrewScriptProcessor(script);
         } else {
             sp = new DefaultScriptProcessor(script);
         }
diff --git a/fop-core/src/test/java/org/apache/fop/complexscripts/scripts/DefaultScriptTestCase.java b/fop-core/src/test/java/org/apache/fop/complexscripts/scripts/DefaultScriptTestCase.java
new file mode 100644 (file)
index 0000000..96d3ba0
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* $Id$ */
+package org.apache.fop.complexscripts.scripts;
+
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+import org.apache.fop.complexscripts.fonts.GlyphClassTable;
+import org.apache.fop.complexscripts.fonts.GlyphDefinitionTable;
+import org.apache.fop.complexscripts.fonts.GlyphSubtable;
+import org.apache.fop.complexscripts.fonts.OTFScript;
+import org.apache.fop.fonts.CMapSegment;
+import org.apache.fop.fonts.MultiByteFont;
+
+public class DefaultScriptTestCase {
+    @Test
+    public void testProcessor() {
+        String in = "\u00F6\u0323";
+        MultiByteFont font = new MultiByteFont(null, null);
+        font.setWidthArray(new int[0]);
+        font.setCMap(new CMapSegment[]{new CMapSegment('\u0323', '\u0323', 1)});
+        List<Integer> entries = Arrays.asList(0, GlyphDefinitionTable.GLYPH_CLASS_BASE,
+                GlyphDefinitionTable.GLYPH_CLASS_MARK);
+        GlyphSubtable table = GlyphDefinitionTable.createSubtable(1, "lu0d", 0, 0, 1,
+                GlyphClassTable.createClassTable(entries), null);
+        font.setGDEF(
+                new GlyphDefinitionTable(Collections.singletonList(table), new HashMap<String, ScriptProcessor>()));
+        String actual = font.reorderCombiningMarks(in, null, OTFScript.DEFAULT, null, null).toString();
+        Assert.assertEquals(actual.charAt(0), 803);
+    }
+}