X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=src%2Fcom%2Fhughes%2Fandroid%2Fdictionary%2Fengine%2FEntrySource.java;h=42873c706260dc2190723bf019da0055ca8d0fff;hb=83d9dc7cd871082a82c2dd0dbb7a0ceabd7c83a0;hp=914cf8f5f7578c34678d27a0c83eb6a673f03112;hpb=63dc6ebb11356f45e95fe59069dc39649b592cfa;p=Dictionary.git diff --git a/src/com/hughes/android/dictionary/engine/EntrySource.java b/src/com/hughes/android/dictionary/engine/EntrySource.java index 914cf8f..42873c7 100644 --- a/src/com/hughes/android/dictionary/engine/EntrySource.java +++ b/src/com/hughes/android/dictionary/engine/EntrySource.java @@ -1,37 +1,73 @@ -package com.hughes.android.dictionary.engine; +// 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. -import java.io.IOException; -import java.io.RandomAccessFile; -import java.io.Serializable; +package com.hughes.android.dictionary.engine; import com.hughes.util.IndexedObject; import com.hughes.util.raf.RAFListSerializer; -public class EntrySource extends IndexedObject implements Serializable { - - private static final long serialVersionUID = -1323165134846120269L; - - final String name; - - public EntrySource(final int index, final String name) { - super(index); - this.name = name; - } - - public static RAFListSerializer SERIALIZER = new RAFListSerializer() { +import java.io.DataInput; +import java.io.DataOutput; +import java.io.IOException; - @Override - public EntrySource read(RandomAccessFile raf, int readIndex) - throws IOException { - final String name = raf.readUTF(); - return new EntrySource(readIndex, name); +public class EntrySource extends IndexedObject { + + final String name; + @SuppressWarnings("CanBeFinal") + int numEntries; + + @SuppressWarnings("WeakerAccess") + public EntrySource(final int index, final String name, int numEntries) { + super(index); + this.name = name; + this.numEntries = numEntries; } @Override - public void write(RandomAccessFile raf, EntrySource t) throws IOException { - raf.writeUTF(t.name); + public String toString() { + return name; + } + + public int getNumEntries() { + return numEntries; } - - }; - + + public String getName() { + return name; + } + + public static final class Serializer implements RAFListSerializer { + + final Dictionary dictionary; + + Serializer(Dictionary dictionary) { + this.dictionary = dictionary; + } + + @Override + public EntrySource read(DataInput raf, int readIndex) + throws IOException { + final String name = raf.readUTF(); + final int numEntries = dictionary.dictFileVersion >= 3 ? raf.readInt() : 0; + return new EntrySource(readIndex, name, numEntries); + } + + @Override + public void write(DataOutput raf, EntrySource t) throws IOException { + raf.writeUTF(t.name); + raf.writeInt(t.numEntries); + } + } + }