]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/DictionaryInfo.java
Added help activity, num bytes in download, index info (but screwed up),
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryInfo.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;
16
17 import java.io.Serializable;
18 import java.util.ArrayList;
19 import java.util.List;
20
21 public class DictionaryInfo implements Serializable {
22   
23   private static final long serialVersionUID = -6850863377577700388L;
24   
25   public static final class IndexInfo implements Serializable {
26     private static final long serialVersionUID = 6524751236198309438L;
27
28     public IndexInfo(String shortName, int allTokenCount, int mainTokenCount) {
29       this.shortName = shortName;
30       this.allTokenCount = allTokenCount;
31       this.mainTokenCount = mainTokenCount;
32     }
33     public final String shortName;  // Often LangISO.
34     public final int allTokenCount;
35     public final int mainTokenCount;
36     
37     public static final int SIZE = 3;
38     
39     public StringBuilder append(StringBuilder result) {
40       result.append(shortName);
41       result.append("\t").append(allTokenCount);
42       result.append("\t").append(mainTokenCount);
43       return result;
44     }
45
46     public IndexInfo(final String[] fields, int i) {
47       shortName = fields[i++];
48       allTokenCount = Integer.parseInt(fields[i++]);
49       mainTokenCount = Integer.parseInt(fields[i++]);
50     }
51
52   }
53   
54   // Stuff populated from the text file.
55   public String uncompressedFilename;  // used as a key throughout the program.
56   public String downloadUrl;
57   public long uncompressedBytes;
58   public long zipBytes;
59   public long creationMillis;
60   public final List<IndexInfo> indexInfos = new ArrayList<DictionaryInfo.IndexInfo>();
61   public String dictInfo;
62
63   public DictionaryInfo() {
64     // Blank object.
65   }
66
67   public StringBuilder append(final StringBuilder result) {
68     result.append(uncompressedFilename);
69     result.append("\t").append(downloadUrl);
70     result.append("\t").append(creationMillis);
71     result.append("\t").append(uncompressedBytes);
72     result.append("\t").append(zipBytes);
73     result.append("\t").append(indexInfos.size());
74     for (final IndexInfo indexInfo : indexInfos) {
75       indexInfo.append(result.append("\t"));
76     }
77     result.append("\t").append(dictInfo.replaceAll("\n", "\\\\n"));
78     return result;
79   }
80
81   public DictionaryInfo(final String line) {
82     final String[] fields = line.split("\t");
83     int i = 0;
84     uncompressedFilename = fields[i++];
85     downloadUrl = fields[i++];
86     creationMillis = Long.parseLong(fields[i++]);
87     uncompressedBytes = Long.parseLong(fields[i++]);
88     zipBytes = Long.parseLong(fields[i++]);
89     final int size = Integer.parseInt(fields[i++]);
90     for (int j = 0; j < size; ++j) {
91       indexInfos.add(new IndexInfo(fields, i));
92       i += IndexInfo.SIZE;
93     }
94     dictInfo = fields[i++].replaceAll("\\\\n", "\n");
95   }
96
97   @Override
98   public String toString() {
99     return uncompressedFilename;
100   }
101
102
103 }