Merge "DictionaryWriter to abstract binary dictionary writing."
commit
db296305d6
|
@ -0,0 +1,78 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2013 The Android Open Source Project
|
||||||
|
*
|
||||||
|
* 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.android.inputmethod.latin;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
|
import com.android.inputmethod.latin.makedict.UnsupportedFormatException;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
// TODO: Quit extending Dictionary after implementing dynamic binary dictionary.
|
||||||
|
abstract public class AbstractDictionaryWriter extends Dictionary {
|
||||||
|
/** Used for Log actions from this class */
|
||||||
|
private static final String TAG = AbstractDictionaryWriter.class.getSimpleName();
|
||||||
|
|
||||||
|
private final Context mContext;
|
||||||
|
|
||||||
|
public AbstractDictionaryWriter(final Context context, final String dictType) {
|
||||||
|
super(dictType);
|
||||||
|
mContext = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract public void clear();
|
||||||
|
|
||||||
|
abstract public void addUnigramWord(final String word, final String shortcutTarget,
|
||||||
|
final int frequency, final boolean isNotAWord);
|
||||||
|
|
||||||
|
abstract public void addBigramWords(final String word0, final String word1,
|
||||||
|
final int frequency, final boolean isValid);
|
||||||
|
|
||||||
|
abstract public void removeBigramWords(final String word0, final String word1);
|
||||||
|
|
||||||
|
abstract protected void writeBinaryDictionary(final FileOutputStream out)
|
||||||
|
throws IOException, UnsupportedFormatException;
|
||||||
|
|
||||||
|
public void write(final String fileName) {
|
||||||
|
final String tempFileName = fileName + ".temp";
|
||||||
|
final File file = new File(mContext.getFilesDir(), fileName);
|
||||||
|
final File tempFile = new File(mContext.getFilesDir(), tempFileName);
|
||||||
|
FileOutputStream out = null;
|
||||||
|
try {
|
||||||
|
out = new FileOutputStream(tempFile);
|
||||||
|
writeBinaryDictionary(out);
|
||||||
|
out.flush();
|
||||||
|
out.close();
|
||||||
|
tempFile.renameTo(file);
|
||||||
|
} catch (IOException e) {
|
||||||
|
Log.e(TAG, "IO exception while writing file", e);
|
||||||
|
} catch (UnsupportedFormatException e) {
|
||||||
|
Log.e(TAG, "Unsupported format", e);
|
||||||
|
} finally {
|
||||||
|
if (out != null) {
|
||||||
|
try {
|
||||||
|
out.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -109,7 +109,6 @@ public class ContactsBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void loadDictionaryAsync() {
|
public void loadDictionaryAsync() {
|
||||||
clearFusionDictionary();
|
|
||||||
loadDeviceAccountsEmailAddresses();
|
loadDeviceAccountsEmailAddresses();
|
||||||
loadDictionaryAsyncForUri(ContactsContract.Profile.CONTENT_URI);
|
loadDictionaryAsyncForUri(ContactsContract.Profile.CONTENT_URI);
|
||||||
// TODO: Switch this URL to the newer ContactsContract too
|
// TODO: Switch this URL to the newer ContactsContract too
|
||||||
|
@ -235,6 +234,11 @@ public class ContactsBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
return end;
|
return end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean needsToReloadBeforeWriting() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected boolean hasContentChanged() {
|
protected boolean hasContentChanged() {
|
||||||
final long startTime = SystemClock.uptimeMillis();
|
final long startTime = SystemClock.uptimeMillis();
|
||||||
|
|
|
@ -0,0 +1,107 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2013 The Android Open Source Project
|
||||||
|
*
|
||||||
|
* 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.android.inputmethod.latin;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
|
||||||
|
import com.android.inputmethod.keyboard.ProximityInfo;
|
||||||
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
||||||
|
import com.android.inputmethod.latin.makedict.BinaryDictInputOutput;
|
||||||
|
import com.android.inputmethod.latin.makedict.FormatSpec;
|
||||||
|
import com.android.inputmethod.latin.makedict.FusionDictionary;
|
||||||
|
import com.android.inputmethod.latin.makedict.FusionDictionary.Node;
|
||||||
|
import com.android.inputmethod.latin.makedict.FusionDictionary.WeightedString;
|
||||||
|
import com.android.inputmethod.latin.makedict.UnsupportedFormatException;
|
||||||
|
import com.android.inputmethod.latin.utils.CollectionUtils;
|
||||||
|
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An in memory dictionary for memorizing entries and writing a binary dictionary.
|
||||||
|
*/
|
||||||
|
public class DictionaryWriter extends AbstractDictionaryWriter {
|
||||||
|
// TODO: Regenerate version 3 binary dictionary.
|
||||||
|
private static final int BINARY_DICT_VERSION = 2;
|
||||||
|
private static final FormatSpec.FormatOptions FORMAT_OPTIONS =
|
||||||
|
new FormatSpec.FormatOptions(BINARY_DICT_VERSION);
|
||||||
|
|
||||||
|
private FusionDictionary mFusionDictionary;
|
||||||
|
|
||||||
|
public DictionaryWriter(final Context context, final String dictType) {
|
||||||
|
super(context, dictType);
|
||||||
|
clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void clear() {
|
||||||
|
final HashMap<String, String> attributes = CollectionUtils.newHashMap();
|
||||||
|
mFusionDictionary = new FusionDictionary(new Node(),
|
||||||
|
new FusionDictionary.DictionaryOptions(attributes, false, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds a word unigram to the fusion dictionary.
|
||||||
|
*/
|
||||||
|
// TODO: Create "cache dictionary" to cache fresh words for frequently updated dictionaries,
|
||||||
|
// considering performance regression.
|
||||||
|
@Override
|
||||||
|
public void addUnigramWord(final String word, final String shortcutTarget, final int frequency,
|
||||||
|
final boolean isNotAWord) {
|
||||||
|
if (shortcutTarget == null) {
|
||||||
|
mFusionDictionary.add(word, frequency, null, isNotAWord);
|
||||||
|
} else {
|
||||||
|
// TODO: Do this in the subclass, with this class taking an arraylist.
|
||||||
|
final ArrayList<WeightedString> shortcutTargets = CollectionUtils.newArrayList();
|
||||||
|
shortcutTargets.add(new WeightedString(shortcutTarget, frequency));
|
||||||
|
mFusionDictionary.add(word, frequency, shortcutTargets, isNotAWord);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void addBigramWords(final String word0, final String word1, final int frequency,
|
||||||
|
final boolean isValid) {
|
||||||
|
mFusionDictionary.setBigram(word0, word1, frequency);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void removeBigramWords(final String word0, final String word1) {
|
||||||
|
// This class don't support removing bigram words.
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void writeBinaryDictionary(final FileOutputStream out)
|
||||||
|
throws IOException, UnsupportedFormatException {
|
||||||
|
BinaryDictInputOutput.writeDictionaryBinary(out, mFusionDictionary, FORMAT_OPTIONS);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ArrayList<SuggestedWordInfo> getSuggestions(final WordComposer composer,
|
||||||
|
final String prevWord, final ProximityInfo proximityInfo,
|
||||||
|
boolean blockOffensiveWords) {
|
||||||
|
// This class doesn't support suggestion.
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isValidWord(String word) {
|
||||||
|
// This class doesn't support dictionary retrieval.
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
|
@ -22,17 +22,9 @@ import android.util.Log;
|
||||||
|
|
||||||
import com.android.inputmethod.keyboard.ProximityInfo;
|
import com.android.inputmethod.keyboard.ProximityInfo;
|
||||||
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
||||||
import com.android.inputmethod.latin.makedict.BinaryDictInputOutput;
|
|
||||||
import com.android.inputmethod.latin.makedict.FormatSpec;
|
|
||||||
import com.android.inputmethod.latin.makedict.FusionDictionary;
|
|
||||||
import com.android.inputmethod.latin.makedict.FusionDictionary.Node;
|
|
||||||
import com.android.inputmethod.latin.makedict.FusionDictionary.WeightedString;
|
|
||||||
import com.android.inputmethod.latin.makedict.UnsupportedFormatException;
|
|
||||||
import com.android.inputmethod.latin.utils.CollectionUtils;
|
import com.android.inputmethod.latin.utils.CollectionUtils;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||||
|
@ -76,8 +68,8 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
*/
|
*/
|
||||||
private BinaryDictionary mBinaryDictionary;
|
private BinaryDictionary mBinaryDictionary;
|
||||||
|
|
||||||
/** The expandable fusion dictionary used to generate the binary dictionary. */
|
/** The in-memory dictionary used to generate the binary dictionary. */
|
||||||
private FusionDictionary mFusionDictionary;
|
private AbstractDictionaryWriter mDictionaryWriter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of this dictionary, used as the filename for storing the binary dictionary. Multiple
|
* The name of this dictionary, used as the filename for storing the binary dictionary. Multiple
|
||||||
|
@ -92,11 +84,6 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
/** Controls access to the local binary dictionary for this instance. */
|
/** Controls access to the local binary dictionary for this instance. */
|
||||||
private final DictionaryController mLocalDictionaryController = new DictionaryController();
|
private final DictionaryController mLocalDictionaryController = new DictionaryController();
|
||||||
|
|
||||||
// TODO: Regenerate version 3 binary dictionary.
|
|
||||||
private static final int BINARY_DICT_VERSION = 2;
|
|
||||||
private static final FormatSpec.FormatOptions FORMAT_OPTIONS =
|
|
||||||
new FormatSpec.FormatOptions(BINARY_DICT_VERSION);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstract method for loading the unigrams and bigrams of a given dictionary in a background
|
* Abstract method for loading the unigrams and bigrams of a given dictionary in a background
|
||||||
* thread.
|
* thread.
|
||||||
|
@ -138,7 +125,7 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
mContext = context;
|
mContext = context;
|
||||||
mBinaryDictionary = null;
|
mBinaryDictionary = null;
|
||||||
mSharedDictionaryController = getSharedDictionaryController(filename);
|
mSharedDictionaryController = getSharedDictionaryController(filename);
|
||||||
clearFusionDictionary();
|
mDictionaryWriter = new DictionaryWriter(context, dictType);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static String getFilenameWithLocale(final String name, final String localeStr) {
|
protected static String getFilenameWithLocale(final String name, final String localeStr) {
|
||||||
|
@ -157,47 +144,51 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
mBinaryDictionary.close();
|
mBinaryDictionary.close();
|
||||||
mBinaryDictionary = null;
|
mBinaryDictionary = null;
|
||||||
}
|
}
|
||||||
|
mDictionaryWriter.close();
|
||||||
} finally {
|
} finally {
|
||||||
mLocalDictionaryController.writeLock().unlock();
|
mLocalDictionaryController.writeLock().unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clears the fusion dictionary on the Java side. Note: Does not modify the binary dictionary on
|
* Adds a word unigram to the dictionary. Used for loading a dictionary.
|
||||||
* the native side.
|
|
||||||
*/
|
*/
|
||||||
public void clearFusionDictionary() {
|
protected void addWord(final String word, final String shortcutTarget,
|
||||||
final HashMap<String, String> attributes = CollectionUtils.newHashMap();
|
final int frequency, final boolean isNotAWord) {
|
||||||
mFusionDictionary = new FusionDictionary(new Node(),
|
mDictionaryWriter.addUnigramWord(word, shortcutTarget, frequency, isNotAWord);
|
||||||
new FusionDictionary.DictionaryOptions(attributes, false, false));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a word unigram to the fusion dictionary. Call updateBinaryDictionary when all changes
|
* Sets a word bigram in the dictionary. Used for loading a dictionary.
|
||||||
* are done to update the binary dictionary.
|
|
||||||
*/
|
*/
|
||||||
// TODO: Create "cache dictionary" to cache fresh words for frequently updated dictionaries,
|
protected void setBigram(final String prevWord, final String word, final int frequency) {
|
||||||
// considering performance regression.
|
mDictionaryWriter.addBigramWords(prevWord, word, frequency, true /* isValid */);
|
||||||
protected void addWord(final String word, final String shortcutTarget, final int frequency,
|
}
|
||||||
final boolean isNotAWord) {
|
|
||||||
if (shortcutTarget == null) {
|
/**
|
||||||
mFusionDictionary.add(word, frequency, null, isNotAWord);
|
* Dynamically adds a word unigram to the dictionary.
|
||||||
} else {
|
*/
|
||||||
// TODO: Do this in the subclass, with this class taking an arraylist.
|
protected void addWordDynamically(final String word, final String shortcutTarget,
|
||||||
final ArrayList<WeightedString> shortcutTargets = CollectionUtils.newArrayList();
|
final int frequency, final boolean isNotAWord) {
|
||||||
shortcutTargets.add(new WeightedString(shortcutTarget, frequency));
|
mLocalDictionaryController.writeLock().lock();
|
||||||
mFusionDictionary.add(word, frequency, shortcutTargets, isNotAWord);
|
try {
|
||||||
|
mDictionaryWriter.addUnigramWord(word, shortcutTarget, frequency, isNotAWord);
|
||||||
|
} finally {
|
||||||
|
mLocalDictionaryController.writeLock().unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets a word bigram in the fusion dictionary. Call updateBinaryDictionary when all changes are
|
* Dynamically sets a word bigram in the dictionary.
|
||||||
* done to update the binary dictionary.
|
|
||||||
*/
|
*/
|
||||||
// TODO: Create "cache dictionary" to cache fresh bigrams for frequently updated dictionaries,
|
protected void setBigramDynamically(final String prevWord, final String word,
|
||||||
// considering performance regression.
|
final int frequency) {
|
||||||
protected void setBigram(final String prevWord, final String word, final int frequency) {
|
mLocalDictionaryController.writeLock().lock();
|
||||||
mFusionDictionary.setBigram(prevWord, word, frequency);
|
try {
|
||||||
|
mDictionaryWriter.addBigramWords(prevWord, word, frequency, true /* isValid */);
|
||||||
|
} finally {
|
||||||
|
mLocalDictionaryController.writeLock().unlock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -207,9 +198,23 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
asyncReloadDictionaryIfRequired();
|
asyncReloadDictionaryIfRequired();
|
||||||
if (mLocalDictionaryController.readLock().tryLock()) {
|
if (mLocalDictionaryController.readLock().tryLock()) {
|
||||||
try {
|
try {
|
||||||
|
final ArrayList<SuggestedWordInfo> inMemDictSuggestion =
|
||||||
|
mDictionaryWriter.getSuggestions(composer, prevWord, proximityInfo,
|
||||||
|
blockOffensiveWords);
|
||||||
if (mBinaryDictionary != null) {
|
if (mBinaryDictionary != null) {
|
||||||
return mBinaryDictionary.getSuggestions(composer, prevWord, proximityInfo,
|
final ArrayList<SuggestedWordInfo> binarySuggestion =
|
||||||
blockOffensiveWords);
|
mBinaryDictionary.getSuggestions(composer, prevWord, proximityInfo,
|
||||||
|
blockOffensiveWords);
|
||||||
|
if (inMemDictSuggestion == null) {
|
||||||
|
return binarySuggestion;
|
||||||
|
} else if (binarySuggestion == null) {
|
||||||
|
return inMemDictSuggestion;
|
||||||
|
} else {
|
||||||
|
binarySuggestion.addAll(binarySuggestion);
|
||||||
|
return binarySuggestion;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return inMemDictSuggestion;
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
mLocalDictionaryController.readLock().unlock();
|
mLocalDictionaryController.readLock().unlock();
|
||||||
|
@ -240,22 +245,6 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
return mBinaryDictionary.isValidWord(word);
|
return mBinaryDictionary.isValidWord(word);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected boolean isValidBigram(final String word1, final String word2) {
|
|
||||||
if (mBinaryDictionary == null) return false;
|
|
||||||
return mBinaryDictionary.isValidBigram(word1, word2);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected boolean isValidBigramInner(final String word1, final String word2) {
|
|
||||||
if (mLocalDictionaryController.readLock().tryLock()) {
|
|
||||||
try {
|
|
||||||
return isValidBigramLocked(word1, word2);
|
|
||||||
} finally {
|
|
||||||
mLocalDictionaryController.readLock().unlock();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected boolean isValidBigramLocked(final String word1, final String word2) {
|
protected boolean isValidBigramLocked(final String word1, final String word2) {
|
||||||
if (mBinaryDictionary == null) return false;
|
if (mBinaryDictionary == null) return false;
|
||||||
return mBinaryDictionary.isValidBigram(word1, word2);
|
return mBinaryDictionary.isValidBigram(word1, word2);
|
||||||
|
@ -274,7 +263,7 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
* Loads the current binary dictionary from internal storage. Assumes the dictionary file
|
* Loads the current binary dictionary from internal storage. Assumes the dictionary file
|
||||||
* exists.
|
* exists.
|
||||||
*/
|
*/
|
||||||
protected void loadBinaryDictionary() {
|
private void loadBinaryDictionary() {
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
Log.d(TAG, "Loading binary dictionary: " + mFilename + " request="
|
Log.d(TAG, "Loading binary dictionary: " + mFilename + " request="
|
||||||
+ mSharedDictionaryController.mLastUpdateRequestTime + " update="
|
+ mSharedDictionaryController.mLastUpdateRequestTime + " update="
|
||||||
|
@ -305,6 +294,12 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract method for checking if it is required to reload the dictionary before writing
|
||||||
|
* a binary dictionary.
|
||||||
|
*/
|
||||||
|
abstract protected boolean needsToReloadBeforeWriting();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates and writes a new binary dictionary based on the contents of the fusion dictionary.
|
* Generates and writes a new binary dictionary based on the contents of the fusion dictionary.
|
||||||
*/
|
*/
|
||||||
|
@ -314,33 +309,11 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||||
+ mSharedDictionaryController.mLastUpdateRequestTime + " update="
|
+ mSharedDictionaryController.mLastUpdateRequestTime + " update="
|
||||||
+ mSharedDictionaryController.mLastUpdateTime);
|
+ mSharedDictionaryController.mLastUpdateTime);
|
||||||
}
|
}
|
||||||
|
if (needsToReloadBeforeWriting()) {
|
||||||
loadDictionaryAsync();
|
mDictionaryWriter.clear();
|
||||||
|
loadDictionaryAsync();
|
||||||
final String tempFileName = mFilename + ".temp";
|
|
||||||
final File file = new File(mContext.getFilesDir(), mFilename);
|
|
||||||
final File tempFile = new File(mContext.getFilesDir(), tempFileName);
|
|
||||||
FileOutputStream out = null;
|
|
||||||
try {
|
|
||||||
out = new FileOutputStream(tempFile);
|
|
||||||
BinaryDictInputOutput.writeDictionaryBinary(out, mFusionDictionary, FORMAT_OPTIONS);
|
|
||||||
out.flush();
|
|
||||||
out.close();
|
|
||||||
tempFile.renameTo(file);
|
|
||||||
clearFusionDictionary();
|
|
||||||
} catch (IOException e) {
|
|
||||||
Log.e(TAG, "IO exception while writing file", e);
|
|
||||||
} catch (UnsupportedFormatException e) {
|
|
||||||
Log.e(TAG, "Unsupported format", e);
|
|
||||||
} finally {
|
|
||||||
if (out != null) {
|
|
||||||
try {
|
|
||||||
out.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
// ignore
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
mDictionaryWriter.write(mFilename);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -240,7 +240,6 @@ public class UserBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
|
|
||||||
private void addWords(final Cursor cursor) {
|
private void addWords(final Cursor cursor) {
|
||||||
final boolean hasShortcutColumn = Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
|
final boolean hasShortcutColumn = Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
|
||||||
clearFusionDictionary();
|
|
||||||
if (cursor == null) return;
|
if (cursor == null) return;
|
||||||
if (cursor.moveToFirst()) {
|
if (cursor.moveToFirst()) {
|
||||||
final int indexWord = cursor.getColumnIndex(Words.WORD);
|
final int indexWord = cursor.getColumnIndex(Words.WORD);
|
||||||
|
@ -267,4 +266,9 @@ public class UserBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
protected boolean hasContentChanged() {
|
protected boolean hasContentChanged() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean needsToReloadBeforeWriting() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue