]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/EntrySource.java
Major refactor of down dictionary list is stored by app.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / EntrySource.java
index 391e8cec218b89a29900eb29ba39ea6b351be307..091138088ebfe27db0fc4b2c338597236da4d20b 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.IOException;
@@ -12,10 +26,12 @@ public class EntrySource extends IndexedObject implements Serializable {
   private static final long serialVersionUID = -1323165134846120269L;
   
   final String name;
+  int numEntries;
   
-  public EntrySource(final int index, final String name) {
+  public EntrySource(final int index, final String name, int numEntries) {
     super(index);
     this.name = name;
+    this.numEntries = numEntries;
   }
   
   @Override
@@ -24,18 +40,26 @@ public class EntrySource extends IndexedObject implements Serializable {
   }
 
 
-  public static RAFListSerializer<EntrySource> SERIALIZER = new RAFListSerializer<EntrySource>() {
+  public static final class Serializer implements RAFListSerializer<EntrySource> {
+    
+    final Dictionary dictionary;
+    
+    Serializer(Dictionary dictionary) {
+      this.dictionary = dictionary;
+    }
 
     @Override
     public EntrySource read(RandomAccessFile raf, int readIndex)
         throws IOException {
       final String name = raf.readUTF();
-      return new EntrySource(readIndex, name);
+      final int numEntries = dictionary.dictFileVersion >= 3 ? raf.readInt() : 0;
+      return new EntrySource(readIndex, name, numEntries);
     }
 
     @Override
     public void write(RandomAccessFile raf, EntrySource t) throws IOException {
       raf.writeUTF(t.name);
+      raf.writeInt(t.numEntries);
     }    
   };