]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/engine/RowBase.java
5491b4e0f9a99026446d8bac53e2db233c74a55d
[Dictionary.git] / src / com / hughes / android / dictionary / engine / RowBase.java
1 package com.hughes.android.dictionary.engine;
2
3 import java.io.IOException;
4 import java.io.PrintStream;
5 import java.io.RandomAccessFile;
6
7 import com.hughes.util.IndexedObject;
8 import com.hughes.util.raf.RAFListSerializer;
9
10 public abstract class RowBase extends IndexedObject {
11   /**
12    * the Index owning this RowBase.
13    */
14   public final Index index;
15   
16   /**
17    * Where this RowBase points to.
18    */
19   public final int referenceIndex;
20
21   /**
22    * the TokenRow above this RowBase, populated on demand.
23    */
24   private TokenRow tokenRow = null;
25   
26   RowBase(final RandomAccessFile raf, final int thisRowIndex, final Index index) throws IOException {
27     super(thisRowIndex);
28     this.index = index;
29     this.referenceIndex = raf.readInt();  // what this points to.
30   }
31
32   public RowBase(final int referenceIndex, final int thisRowIndex, final Index index) {
33     super(thisRowIndex);
34     this.index = index;
35     this.referenceIndex = referenceIndex;
36   }
37
38   /**
39    * @return the TokenRow that this row is "filed under".
40    */
41   public TokenRow getTokenRow(final boolean search) {
42     if (tokenRow == null && search) {
43       int r = index() - 1;
44       while (r >= 0) {
45         final RowBase row = index.rows.get(r);
46         final TokenRow candidate = row.getTokenRow(false);
47         if (candidate != null) {
48           for (++r; r <= index(); ++r) {
49             index.rows.get(r).setTokenRow(candidate);
50           }
51           break;
52         }
53         --r;
54       }
55       assert tokenRow != null;
56     }
57     return tokenRow;
58   }
59   
60   public void setTokenRow(TokenRow tokenRow) {
61     assert this.tokenRow == null;
62     assert tokenRow != null;
63     this.tokenRow = tokenRow;
64   }
65
66   public abstract void print(PrintStream out);
67
68   public abstract String getRawText(final boolean compact);
69
70   // RowBase must manage "disk-based" polymorphism.  All other polymorphism is
71   // dealt with in the normal manner.
72   static class Serializer implements RAFListSerializer<RowBase> {
73     
74     final Index index;
75     
76     Serializer(final Index index) {
77       this.index = index;
78     }
79
80     @Override
81     public RowBase read(RandomAccessFile raf, final int listIndex) throws IOException {
82       final byte rowType = raf.readByte();
83       if (rowType == 0) {
84         return new PairEntry.Row(raf, listIndex, index);
85       } else if (rowType == 1) {
86         return new TokenRow(raf, listIndex, index);
87       }
88       throw new RuntimeException("Invalid rowType:" + rowType);
89     }
90
91     @Override
92     public void write(RandomAccessFile raf, RowBase t) throws IOException {
93       if (t instanceof PairEntry.Row) {
94         raf.writeByte(0);
95       } else if (t instanceof TokenRow) {
96         raf.writeByte(1);
97       }
98       raf.writeInt(t.referenceIndex);
99     }
100   }
101
102 }