]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/engine/RowBase.java
64500585e4b9716c78a300346bbac4b5a1ba849e
[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   // RowBase must manage "disk-based" polymorphism.  All other polymorphism is
69   // dealt with in the normal manner.
70   static class Serializer implements RAFListSerializer<RowBase> {
71     
72     final Index index;
73     
74     Serializer(final Index index) {
75       this.index = index;
76     }
77
78     @Override
79     public RowBase read(RandomAccessFile raf, final int listIndex) throws IOException {
80       final byte rowType = raf.readByte();
81       if (rowType == 0) {
82         return new PairEntry.Row(raf, listIndex, index);
83       } else if (rowType == 1) {
84         return new TokenRow(raf, listIndex, index);
85       }
86       throw new RuntimeException("Invalid rowType:" + rowType);
87     }
88
89     @Override
90     public void write(RandomAccessFile raf, RowBase t) throws IOException {
91       if (t instanceof PairEntry.Row) {
92         raf.writeByte(0);
93       } else if (t instanceof TokenRow) {
94         raf.writeByte(1);
95       }
96       raf.writeInt(t.referenceIndex);
97     }
98   }
99
100 }