]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/engine/TextEntry.java
First decent implementation of HtmlEntry attached to TokenRow.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / TextEntry.java
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package com.hughes.android.dictionary.engine;
16
17 import com.hughes.util.raf.RAFListSerializer;
18 import com.hughes.util.raf.RAFSerializable;
19 import com.ibm.icu.text.Transliterator;
20
21 import java.io.IOException;
22 import java.io.PrintStream;
23 import java.io.RandomAccessFile;
24 import java.util.List;
25 import java.util.regex.Pattern;
26
27 public class TextEntry extends AbstractEntry implements RAFSerializable<TextEntry> {
28   
29   final String text;
30   
31   public TextEntry(final Dictionary dictionary, final RandomAccessFile raf, final int index) throws IOException {
32     super(dictionary, raf, index);
33     text = raf.readUTF();
34     throw new RuntimeException();
35   }
36   @Override
37   public void write(RandomAccessFile raf) throws IOException {
38     super.write(raf);
39     raf.writeUTF(text);
40   }
41   
42   static final class Serializer implements RAFListSerializer<TextEntry> {
43     
44     final Dictionary dictionary;
45     
46     Serializer(Dictionary dictionary) {
47       this.dictionary = dictionary;
48     }
49
50     @Override
51     public TextEntry read(RandomAccessFile raf, final int index) throws IOException {
52       return new TextEntry(dictionary, raf, index);
53     }
54
55     @Override
56     public void write(RandomAccessFile raf, TextEntry t) throws IOException {
57       t.write(raf);
58     }
59   };
60
61   
62   @Override
63   public void addToDictionary(final Dictionary dictionary) {
64     assert index == -1;
65     dictionary.textEntries.add(this);
66     index = dictionary.textEntries.size() - 1;
67   }
68   
69   @Override
70   public RowBase CreateRow(int rowIndex, Index dictionaryIndex) {
71     throw new UnsupportedOperationException("TextEntry's don't really exist.");
72   }
73
74   public static class Row extends RowBase {
75     
76     Row(final RandomAccessFile raf, final int thisRowIndex,
77         final Index index) throws IOException {
78       super(raf, thisRowIndex, index);
79     }
80     
81     public TextEntry getEntry() {
82       return index.dict.textEntries.get(referenceIndex);
83     }
84     
85     @Override
86     public void print(PrintStream out) {
87       out.println("  " + getEntry().text);
88     }
89
90     @Override
91     public String getRawText(boolean compact) {
92       return getEntry().text;
93     }
94     
95     @Override
96     public RowMatchType matches(final List<String> searchTokens, final Pattern orderedMatchPattern, Transliterator normalizer, boolean swapPairEntries) {
97       return null;
98     }
99   }
100
101
102
103 }