Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
3a73a30f
Commit
3a73a30f
authored
13 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
13 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Use the dictionaries cached LatinIME-side"
parents
c122cfc8
08868624
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/latin/BinaryDictionaryGetter.java
+32
-5
32 additions, 5 deletions
...com/android/inputmethod/latin/BinaryDictionaryGetter.java
with
32 additions
and
5 deletions
java/src/com/android/inputmethod/latin/BinaryDictionaryGetter.java
+
32
−
5
View file @
3a73a30f
...
@@ -25,6 +25,7 @@ import java.io.File;
...
@@ -25,6 +25,7 @@ import java.io.File;
import
java.io.FileNotFoundException
;
import
java.io.FileNotFoundException
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Locale
;
import
java.util.Locale
;
...
@@ -120,6 +121,30 @@ class BinaryDictionaryGetter {
...
@@ -120,6 +121,30 @@ class BinaryDictionaryGetter {
context
.
getApplicationInfo
().
sourceDir
,
afd
.
getStartOffset
(),
afd
.
getLength
());
context
.
getApplicationInfo
().
sourceDir
,
afd
.
getStartOffset
(),
afd
.
getLength
());
}
}
/**
* Returns the list of cached files for a specific locale.
*
* @param locale the locale to find the dictionary files for.
* @param context the context on which to open the files upon.
* @return a list of binary dictionary files, which may be null but may not be empty.
*/
private
static
List
<
AssetFileAddress
>
getCachedDictionaryList
(
final
Locale
locale
,
final
Context
context
)
{
final
String
directoryName
=
getCacheDirectoryForLocale
(
locale
,
context
);
final
File
[]
cacheFiles
=
new
File
(
directoryName
).
listFiles
();
if
(
null
==
cacheFiles
)
return
null
;
final
ArrayList
<
AssetFileAddress
>
fileList
=
new
ArrayList
<
AssetFileAddress
>();
for
(
File
f
:
cacheFiles
)
{
if
(
f
.
canRead
())
{
fileList
.
add
(
AssetFileAddress
.
makeFromFileName
(
f
.
getPath
()));
}
else
{
Log
.
e
(
TAG
,
"Found a cached dictionary file but cannot read it"
);
}
}
return
fileList
.
size
()
>
0
?
fileList
:
null
;
}
/**
/**
* Returns a list of file addresses for a given locale, trying relevant methods in order.
* Returns a list of file addresses for a given locale, trying relevant methods in order.
*
*
...
@@ -132,12 +157,14 @@ class BinaryDictionaryGetter {
...
@@ -132,12 +157,14 @@ class BinaryDictionaryGetter {
* - Returns null.
* - Returns null.
* @return The address of a valid file, or null.
* @return The address of a valid file, or null.
*/
*/
public
static
List
<
AssetFileAddress
>
getDictionaryFiles
(
Locale
locale
,
Context
context
,
public
static
List
<
AssetFileAddress
>
getDictionaryFiles
(
final
Locale
locale
,
int
fallbackResId
)
{
final
Context
context
,
final
int
fallbackResId
)
{
try
{
try
{
List
<
AssetFileAddress
>
cachedDictionaryList
=
// cacheDictionariesFromContentProvider returns the list of files it copied to local
BinaryDictionaryFileDumper
.
cacheDictionariesFromContentProvider
(
locale
,
// storage, but we don't really care about what was copied NOW: what we want is the
context
);
// list of everything we ever cached, so we ignore the return value.
BinaryDictionaryFileDumper
.
cacheDictionariesFromContentProvider
(
locale
,
context
);
List
<
AssetFileAddress
>
cachedDictionaryList
=
getCachedDictionaryList
(
locale
,
context
);
if
(
null
!=
cachedDictionaryList
)
{
if
(
null
!=
cachedDictionaryList
)
{
return
cachedDictionaryList
;
return
cachedDictionaryList
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment