1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
/*
* Copyright (C) 2018 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 android.view.textclassifier;
import static android.view.textclassifier.TextClassifier.DEFAULT_LOG_TAG;
import android.annotation.Nullable;
import android.os.LocaleList;
import android.os.ParcelFileDescriptor;
import android.text.TextUtils;
import com.android.internal.annotations.VisibleForTesting;
import com.android.internal.util.Preconditions;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Objects;
import java.util.StringJoiner;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Manages model files that are listed by the model files supplier.
* @hide
*/
@VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
public final class ModelFileManager {
private final Object mLock = new Object();
private final Supplier<List<ModelFile>> mModelFileSupplier;
private List<ModelFile> mModelFiles;
public ModelFileManager(Supplier<List<ModelFile>> modelFileSupplier) {
mModelFileSupplier = Preconditions.checkNotNull(modelFileSupplier);
}
/**
* Returns an unmodifiable list of model files listed by the given model files supplier.
* <p>
* The result is cached.
*/
public List<ModelFile> listModelFiles() {
synchronized (mLock) {
if (mModelFiles == null) {
mModelFiles = Collections.unmodifiableList(mModelFileSupplier.get());
}
return mModelFiles;
}
}
/**
* Returns the best model file for the given localelist, {@code null} if nothing is found.
*
* @param localeList the required locales, use {@code null} if there is no preference.
*/
public ModelFile findBestModelFile(@Nullable LocaleList localeList) {
final String languages = localeList == null || localeList.isEmpty()
? LocaleList.getDefault().toLanguageTags()
: localeList.toLanguageTags();
final List<Locale.LanguageRange> languageRangeList = Locale.LanguageRange.parse(languages);
ModelFile bestModel = null;
for (ModelFile model : listModelFiles()) {
if (model.isAnyLanguageSupported(languageRangeList)) {
if (model.isPreferredTo(bestModel)) {
bestModel = model;
}
}
}
return bestModel;
}
/**
* Default implementation of the model file supplier.
*/
public static final class ModelFileSupplierImpl implements Supplier<List<ModelFile>> {
private final File mUpdatedModelFile;
private final File mFactoryModelDir;
private final Pattern mModelFilenamePattern;
private final Function<Integer, Integer> mVersionSupplier;
private final Function<Integer, String> mSupportedLocalesSupplier;
public ModelFileSupplierImpl(
File factoryModelDir,
String factoryModelFileNameRegex,
File updatedModelFile,
Function<Integer, Integer> versionSupplier,
Function<Integer, String> supportedLocalesSupplier) {
mUpdatedModelFile = Preconditions.checkNotNull(updatedModelFile);
mFactoryModelDir = Preconditions.checkNotNull(factoryModelDir);
mModelFilenamePattern = Pattern.compile(
Preconditions.checkNotNull(factoryModelFileNameRegex));
mVersionSupplier = Preconditions.checkNotNull(versionSupplier);
mSupportedLocalesSupplier = Preconditions.checkNotNull(supportedLocalesSupplier);
}
@Override
public List<ModelFile> get() {
final List<ModelFile> modelFiles = new ArrayList<>();
// The update model has the highest precedence.
if (mUpdatedModelFile.exists()) {
final ModelFile updatedModel = createModelFile(mUpdatedModelFile);
if (updatedModel != null) {
modelFiles.add(updatedModel);
}
}
// Factory models should never have overlapping locales, so the order doesn't matter.
if (mFactoryModelDir.exists() && mFactoryModelDir.isDirectory()) {
final File[] files = mFactoryModelDir.listFiles();
for (File file : files) {
final Matcher matcher = mModelFilenamePattern.matcher(file.getName());
if (matcher.matches() && file.isFile()) {
final ModelFile model = createModelFile(file);
if (model != null) {
modelFiles.add(model);
}
}
}
}
return modelFiles;
}
/** Returns null if the path did not point to a compatible model. */
@Nullable
private ModelFile createModelFile(File file) {
if (!file.exists()) {
return null;
}
ParcelFileDescriptor modelFd = null;
try {
modelFd = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY);
if (modelFd == null) {
return null;
}
final int modelFdInt = modelFd.getFd();
final int version = mVersionSupplier.apply(modelFdInt);
final String supportedLocalesStr = mSupportedLocalesSupplier.apply(modelFdInt);
if (supportedLocalesStr.isEmpty()) {
Log.d(DEFAULT_LOG_TAG, "Ignoring " + file.getAbsolutePath());
return null;
}
final List<Locale> supportedLocales = new ArrayList<>();
for (String langTag : supportedLocalesStr.split(",")) {
supportedLocales.add(Locale.forLanguageTag(langTag));
}
return new ModelFile(
file,
version,
supportedLocales,
supportedLocalesStr,
ModelFile.LANGUAGE_INDEPENDENT.equals(supportedLocalesStr));
} catch (FileNotFoundException e) {
Log.e(DEFAULT_LOG_TAG, "Failed to find " + file.getAbsolutePath(), e);
return null;
} finally {
maybeCloseAndLogError(modelFd);
}
}
/**
* Closes the ParcelFileDescriptor, if non-null, and logs any errors that occur.
*/
private static void maybeCloseAndLogError(@Nullable ParcelFileDescriptor fd) {
if (fd == null) {
return;
}
try {
fd.close();
} catch (IOException e) {
Log.e(DEFAULT_LOG_TAG, "Error closing file.", e);
}
}
}
/**
* Describes TextClassifier model files on disk.
*/
public static final class ModelFile {
public static final String LANGUAGE_INDEPENDENT = "*";
private final File mFile;
private final int mVersion;
private final List<Locale> mSupportedLocales;
private final String mSupportedLocalesStr;
private final boolean mLanguageIndependent;
public ModelFile(File file, int version, List<Locale> supportedLocales,
String supportedLocalesStr,
boolean languageIndependent) {
mFile = Preconditions.checkNotNull(file);
mVersion = version;
mSupportedLocales = Preconditions.checkNotNull(supportedLocales);
mSupportedLocalesStr = Preconditions.checkNotNull(supportedLocalesStr);
mLanguageIndependent = languageIndependent;
}
/** Returns the absolute path to the model file. */
public String getPath() {
return mFile.getAbsolutePath();
}
/** Returns a name to use for id generation, effectively the name of the model file. */
public String getName() {
return mFile.getName();
}
/** Returns the version tag in the model's metadata. */
public int getVersion() {
return mVersion;
}
/** Returns whether the language supports any language in the given ranges. */
public boolean isAnyLanguageSupported(List<Locale.LanguageRange> languageRanges) {
Preconditions.checkNotNull(languageRanges);
return mLanguageIndependent || Locale.lookup(languageRanges, mSupportedLocales) != null;
}
/** Returns an immutable lists of supported locales. */
public List<Locale> getSupportedLocales() {
return Collections.unmodifiableList(mSupportedLocales);
}
/** Returns the original supported locals string read from the model file. */
public String getSupportedLocalesStr() {
return mSupportedLocalesStr;
}
/**
* Returns if this model file is preferred to the given one.
*/
public boolean isPreferredTo(@Nullable ModelFile model) {
// A model is preferred to no model.
if (model == null) {
return true;
}
// A language-specific model is preferred to a language independent
// model.
if (!mLanguageIndependent && model.mLanguageIndependent) {
return true;
}
if (mLanguageIndependent && !model.mLanguageIndependent) {
return false;
}
// A higher-version model is preferred.
if (mVersion > model.getVersion()) {
return true;
}
return false;
}
@Override
public int hashCode() {
return Objects.hash(getPath());
}
@Override
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (other instanceof ModelFile) {
final ModelFile otherModel = (ModelFile) other;
return TextUtils.equals(getPath(), otherModel.getPath());
}
return false;
}
@Override
public String toString() {
final StringJoiner localesJoiner = new StringJoiner(",");
for (Locale locale : mSupportedLocales) {
localesJoiner.add(locale.toLanguageTag());
}
return String.format(Locale.US,
"ModelFile { path=%s name=%s version=%d locales=%s }",
getPath(), getName(), mVersion, localesJoiner.toString());
}
}
}
|