]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java
Fixing.
[DictionaryPC.git] / src / com / hughes / android / dictionary / engine / DictionaryBuilderMain.java
index 9a60d377f2f8f119f7ed34894c505b67315dbbc0..2369915ed4f227ced1f2868f13122587d5a40867 100644 (file)
@@ -1,3 +1,17 @@
+// Copyright 2011 Google Inc. All Rights Reserved.
+//
+// Licensed 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.
+
 package com.hughes.android.dictionary.engine;
 
 import java.io.File;
@@ -11,24 +25,31 @@ import junit.framework.TestCase;
 
 public class DictionaryBuilderMain extends TestCase {
   
+  static final String INPUTS = "../DictionaryData/inputs/";
+  static final String OUTPUTS = "../DictionaryData/outputs/";
+  
   static class Lang {
     final String nameRegex;
-    final String code;
-    public Lang(String nameRegex, String code) {
+    final String isoCode;
+    final String wikiSplit;
+    public Lang(String nameRegex, String code, final String wikiSplit) {
       this.nameRegex = nameRegex;
-      this.code = code;
+      this.isoCode = code;
+      this.wikiSplit = wikiSplit;
     }
   }
   
   
   public static void main(final String[] args) throws Exception {
-    
+
     Lang[] langs1 = new Lang[] { 
-        new Lang("^English$", "EN"),
-        new Lang("^German$", "DE"),
+        new Lang("^English$", "EN", null),
     };
     Lang[] langs2 = new Lang[] { 
-        new Lang("^Italian$", "IT"),
+        new Lang("^.*Italian.*$", "IT", "italian.data"),
+        new Lang("^.*Greek.*$", "EL", "greek.data"),
+        new Lang("^.*Spanish.*$", "ES", "spanish.data"),
+        /*
         new Lang("^German$", "DE"),
         new Lang("^Afrikaans$", "AF"),
         new Lang("^Armenian$", "HY"),
@@ -40,7 +61,6 @@ public class DictionaryBuilderMain extends TestCase {
         new Lang("^English$", "EN"),
         new Lang("^Finnish$", "FI"),
         new Lang("^French$", "FR"),
-        new Lang("^Greek$", "EL"),
         new Lang("^Hebrew$", "HE"),
         new Lang("^Hindi$", "HI"),
         new Lang("^Icelandic$", "IS"),
@@ -60,7 +80,6 @@ public class DictionaryBuilderMain extends TestCase {
         new Lang("^Sanskrit$", "SA"),
         new Lang("^Serbian$", "SR"),
         new Lang("^Somali$", "SO"),
-        new Lang("^Spanish$", "ES"),
         new Lang("^Sudanese$", "SU"),
         new Lang("^Swedish$", "SV"),
         new Lang("^Tajik$", "TG"),
@@ -71,7 +90,7 @@ public class DictionaryBuilderMain extends TestCase {
         new Lang("^Vietnamese$", "VI"),
         new Lang("^Welsh$", "CY"),
         new Lang("^Yiddish$", "YI"),
-        new Lang("^Zulu$", "ZU"),
+        new Lang("^Zulu$", "ZU"),*/
     };
     
     for (final Lang lang1 : langs1) {
@@ -81,33 +100,45 @@ public class DictionaryBuilderMain extends TestCase {
         }
         
         int enIndex = -1;
-        if (lang2.code.equals("EN")) {
+        Lang nonEnglish = null;
+        if (lang2.isoCode.equals("EN")) {
           enIndex = 2;
+          nonEnglish = lang1;
         }
-        if (lang1.code.equals("EN")) {
+        if (lang1.isoCode.equals("EN")) {
           enIndex = 1;
+          nonEnglish = lang2;
         }
+        assert nonEnglish != null;
 
-        final String dictFile = String.format("dictOutputs/%s-%s_enwiktionary.quickdic", lang1.code, lang2.code);
+        final String dictFile = String.format(OUTPUTS + "/%s-%s_enwiktionary.quickdic", lang1.isoCode, lang2.isoCode);
         System.out.println("building dictFile: " + dictFile);
         DictionaryBuilder.main(new String[] {
             String.format("--dictOut=%s", dictFile),
-            String.format("--lang1=%s", lang1.code),
-            String.format("--lang2=%s", lang2.code),
-            String.format("--dictInfo=(EN)Wikitionary-based %s-%s dictionary", lang1.code, lang2.code),
-
-            "--input1=dictInputs/enwiktionary-20101015-pages-articles",
-            "--input1Name=enwiktionary",
-            "--input1Format=enwiktionary",
-            String.format("--input1TranslationPattern1=%s", lang1.nameRegex),
-            String.format("--input1TranslationPattern2=%s", lang2.nameRegex),
-            String.format("--input1EnIndex=%d", enIndex),
+            String.format("--lang1=%s", lang1.isoCode),
+            String.format("--lang2=%s", lang2.isoCode),
+            String.format("--dictInfo=(EN)Wikitionary-based %s-%s dictionary", lang1.isoCode, lang2.isoCode),
+
+            "--input2=" + INPUTS + "wikiSplit/" + nonEnglish.wikiSplit,
+            "--input2Name=enwiktionary." + nonEnglish.wikiSplit,
+            "--input2Format=enwiktionary",
+            "--input2LangPattern=" + nonEnglish.nameRegex,
+            "--input2LangCodePattern=" + nonEnglish.isoCode.toLowerCase(),
+            "--input2EnIndex=" + enIndex,
+
+            "--input3=" + INPUTS + "wikiSplit/english.data",
+            "--input3Name=enwiktionary.english",
+            "--input3Format=enwiktionary",
+            "--input3LangPattern=" + nonEnglish.nameRegex,
+            "--input3LangCodePattern=" + (enIndex == 1 ? lang2.isoCode : lang1.isoCode).toLowerCase(),
+            "--input3EnIndex=" + enIndex,
+
         });
         
         // Print the entries for diffing.
         final RandomAccessFile raf = new RandomAccessFile(new File(dictFile), "r");
         final Dictionary dict = new Dictionary(raf);
-        final PrintWriter textOut = new PrintWriter(new File(dictFile + ".txt"));
+        final PrintWriter textOut = new PrintWriter(new File(dictFile + ".text"));
         final List<PairEntry> sorted = new ArrayList<PairEntry>(dict.pairEntries);
         Collections.sort(sorted);
         for (final PairEntry pairEntry : sorted) {
@@ -118,42 +149,36 @@ public class DictionaryBuilderMain extends TestCase {
 
       }  // langs2
     }  // langs1
-    
+
+    DictionaryBuilder.main(new String[] {
+        "--dictOut=" + OUTPUTS + "DE-EN_chemnitz.quickdic",
+        "--lang1=DE",
+        "--lang2=EN",
+        "--dictInfo=@" + INPUTS + "de-en_chemnitz.info",
+
+        "--input1=" + INPUTS + "de-en_chemnitz.txt",
+        "--input1Name=chemnitz",
+        "--input1Charset=UTF8",
+        "--input1Format=chemnitz",
+    });
+
     DictionaryBuilder.main(new String[] {
-        "--dictOut=dictOutputs/de-en_all.quickdic",
+        "--dictOut=" + OUTPUTS + "de-en_all.quickdic",
         "--lang1=DE",
         "--lang2=EN",
-        "--dictInfo=@dictInputs/de-en_all.info",
+        "--dictInfo=@" + INPUTS + "de-en_all.info",
 
-        "--input2=dictInputs/de-en_chemnitz.txt",
+        "--input2=" + INPUTS + "de-en_chemnitz.txt",
         "--input2Name=dictcc",
         "--input2Charset=UTF8",
         "--input2Format=chemnitz",
 
-        "--input3=dictInputs/de-en_dictcc.txt",
+        "--input3=" + INPUTS + "/copyrighted/de-en_dictcc.txt",
         "--input3Name=dictcc",
         "--input3Charset=UTF8",
         "--input3Format=dictcc",
         
-        "--input1=dictInputs/enwiktionary-20101015-pages-articles",
-        "--input1Name=enwiktionary",
-        "--input1Format=enwiktionary",
-        "--input1TranslationPattern1=^German$",
-        "--input1TranslationPattern2=^English$",
-        "--input1EnIndex=2",
-
-    });
-
-    DictionaryBuilder.main(new String[] {
-        "--dictOut=dictOutputs/de-en_chemnitz.quickdic",
-        "--lang1=DE",
-        "--lang2=EN",
-        "--dictInfo=@dictInputs/de-en_chemnitz.info",
-
-        "--input1=dictInputs/de-en_chemnitz.txt",
-        "--input1Name=dictcc",
-        "--input1Charset=UTF8",
-        "--input1Format=chemnitz",
+        // TODO: wiktionary
     });
 
   }