]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/HtmlEntry.java
Mostly work on Link spans, and upgrade the manfiest to 4.0.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / HtmlEntry.java
index d158ddf0643a7035b8578f0f73677f0c8fceb0a5..4143fd34477221bd543f5438d6951492f3f0d62c 100644 (file)
@@ -1,40 +1,71 @@
 package com.hughes.android.dictionary.engine;
 
+import android.content.Intent;
+import android.net.Uri;
+
+import com.hughes.android.dictionary.C;
+import com.hughes.util.StringUtil;
+import com.hughes.util.raf.RAFListSerializer;
+import com.hughes.util.raf.RAFSerializable;
+import com.ibm.icu.text.Transliterator;
+
 import java.io.IOException;
 import java.io.PrintStream;
 import java.io.RandomAccessFile;
+import java.io.UnsupportedEncodingException;
+import java.net.URI;
+import java.net.URLDecoder;
+import java.net.URLEncoder;
 import java.util.List;
 import java.util.regex.Pattern;
 
-import com.hughes.android.dictionary.engine.PairEntry.Pair;
-import com.hughes.util.raf.RAFSerializable;
-import com.hughes.util.raf.RAFSerializer;
-import com.ibm.icu.text.Transliterator;
-
 public class HtmlEntry extends AbstractEntry implements RAFSerializable<HtmlEntry>, Comparable<HtmlEntry> {
   
-  final String title;
-  final String html;
-
-  public HtmlEntry(Dictionary dictionary, RandomAccessFile raf) throws IOException {
-    super(dictionary, raf);
+  // Title is not HTML escaped.
+  public final String title;
+  public String html;
+  
+  public HtmlEntry(final EntrySource entrySource, String title) {
+    super(entrySource);
+    this.title = title;
+  }
+  
+  public HtmlEntry(Dictionary dictionary, RandomAccessFile raf, final int index) throws IOException {
+    super(dictionary, raf, index);
     title = raf.readUTF();
-    html = raf.readUTF();
+
+    final byte[] bytes = new byte[raf.readInt()];
+    final byte[] zipBytes = new byte[raf.readInt()];
+    raf.read(zipBytes);
+    StringUtil.unzipFully(zipBytes, bytes);
+    html = new String(bytes, "UTF-8");
   }
   @Override
   public void write(RandomAccessFile raf) throws IOException {
     super.write(raf);
     raf.writeUTF(title);
-    raf.writeUTF(html);
+
+    final byte[] bytes = html.getBytes("UTF-8");
+    final byte[] zipBytes = StringUtil.zipBytes(bytes);
+    raf.writeInt(bytes.length);
+    raf.writeInt(zipBytes.length);
+    raf.write(zipBytes);
   }
 
   @Override
-  public int addToDictionary(Dictionary dictionary) {
+  public void addToDictionary(Dictionary dictionary) {
+    assert index == -1;
     dictionary.htmlEntries.add(this);
-    return dictionary.htmlEntries.size() - 1;
+    index = dictionary.htmlEntries.size() - 1;
   }
   
-  static final class Serializer implements RAFSerializer<HtmlEntry> {
+  @Override
+  public RowBase CreateRow(int rowIndex, Index dictionaryIndex) {
+    return new Row(this.index, rowIndex, dictionaryIndex);
+  }
+
+  
+  static final class Serializer implements RAFListSerializer<HtmlEntry> {
     
     final Dictionary dictionary;
     
@@ -43,8 +74,8 @@ public class HtmlEntry extends AbstractEntry implements RAFSerializable<HtmlEntr
     }
 
     @Override
-    public HtmlEntry read(RandomAccessFile raf) throws IOException {
-      return new HtmlEntry(dictionary, raf);
+    public HtmlEntry read(RandomAccessFile raf, final int index) throws IOException {
+      return new HtmlEntry(dictionary, raf, index);
     }
 
     @Override
@@ -54,7 +85,7 @@ public class HtmlEntry extends AbstractEntry implements RAFSerializable<HtmlEntr
   };
 
   public String getRawText(final boolean compact) {
-    return title + ": " + html;
+    return title + ":\n" + html;
   }
 
   
@@ -76,6 +107,8 @@ public class HtmlEntry extends AbstractEntry implements RAFSerializable<HtmlEntr
 
   public static class Row extends RowBase {
     
+    boolean isExpanded = false;
+    
     Row(final RandomAccessFile raf, final int thisRowIndex,
         final Index index) throws IOException {
       super(raf, thisRowIndex, index);
@@ -98,7 +131,7 @@ public class HtmlEntry extends AbstractEntry implements RAFSerializable<HtmlEntr
     @Override
     public void print(PrintStream out) {
       final HtmlEntry entry = getEntry();
-      out.println(entry);
+      out.println("See also HtmlEntry:" + entry.title);
     }
 
     @Override
@@ -121,7 +154,39 @@ public class HtmlEntry extends AbstractEntry implements RAFSerializable<HtmlEntr
       }
       return RowMatchType.BAG_OF_WORDS_MATCH;
     }
-    
   }
 
+    public static String htmlBody(final List<HtmlEntry> htmlEntries, final String indexShortName) {
+        final StringBuilder result = new StringBuilder();
+        for (final HtmlEntry htmlEntry : htmlEntries) {
+            final String titleEscaped = StringUtil.escapeToPureHtmlUnicode(htmlEntry.title);
+            result.append(String.format("<h1><a href=\"%s\">%s</a></h1>\n(%s)\n<p>%s\n", 
+                    formatQuickdicUrl(indexShortName, titleEscaped), titleEscaped, htmlEntry.entrySource.name,
+                    htmlEntry.html));
+        }
+        return result.toString();
+    }
+    
+    public static String formatQuickdicUrl(final String indexShortName, final String text) {
+        assert !indexShortName.contains(":");
+        assert text.length() > 0;
+        try {
+            return String.format("qd:%s:%s", indexShortName, URLEncoder.encode(text, "UTF-8"));
+        } catch (UnsupportedEncodingException e) {
+            throw new RuntimeException(e);
+        }
+    }
+
+    public static boolean isQuickdicUrl(String url) {
+        return url.startsWith("qd:");
+    }
+    
+    public static void quickdicUrlToIntent(final String url, final Intent intent) {
+        int firstColon = url.indexOf(":");
+        if (firstColon == -1) return;
+        int secondColon = url.indexOf(":", firstColon + 1);
+        if (secondColon == -1) return;
+        intent.putExtra(C.SEARCH_TOKEN, Uri.decode(url.substring(secondColon + 1)));
+    }
+
 }