blob: ed6e9097d669ce3ce9b8cfd2395bac89e21cef5d [file] [log] [blame]
/*
* Copyright (C) 2017 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.text;
/**
* Java wrapper for LangId native library interface.
* This class is used to detect languages in text.
* @hide
*/
public final class LangId {
// TODO: Move this to android.view.textclassifier and make it package-private.
// We'll have to update the native library code to do this.
static {
System.loadLibrary("smart-selection_jni");
}
private final long mModelPtr;
/**
* Creates a new instance of LangId predictor, using the provided model image.
*/
public LangId(int fd) {
mModelPtr = nativeNew(fd);
}
/**
* Detects the language for given text.
*/
public String findLanguage(String text) {
return nativeFindLanguage(mModelPtr, text);
}
/**
* Frees up the allocated memory.
*/
public void close() {
nativeClose(mModelPtr);
}
private static native long nativeNew(int fd);
private static native String nativeFindLanguage(long context, String text);
private static native void nativeClose(long context);
}