mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Dicttool to handle unpackaging non-latest version dicts
Change-Id: I738735186213b3a40eff997ae2fd83069c6445f1
This commit is contained in:
parent
da99cfc29d
commit
1e72f9da12
@ -16,6 +16,8 @@
|
|||||||
|
|
||||||
package com.android.inputmethod.latin.dicttool;
|
package com.android.inputmethod.latin.dicttool;
|
||||||
|
|
||||||
|
import com.android.inputmethod.latin.makedict.DictionaryHeader;
|
||||||
|
|
||||||
import java.io.BufferedOutputStream;
|
import java.io.BufferedOutputStream;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
@ -77,16 +79,16 @@ public class Package {
|
|||||||
if (mArgs.length != 2) {
|
if (mArgs.length != 2) {
|
||||||
throw new RuntimeException("Too many/too few arguments for command " + COMMAND);
|
throw new RuntimeException("Too many/too few arguments for command " + COMMAND);
|
||||||
}
|
}
|
||||||
final BinaryDictOffdeviceUtils.DecoderChainSpec<File> decodedSpec =
|
final BinaryDictOffdeviceUtils.DecoderChainSpec<DictionaryHeader> decodedSpec =
|
||||||
BinaryDictOffdeviceUtils.getRawDictionaryOrNull(new File(mArgs[0]));
|
BinaryDictOffdeviceUtils.decodeDictionaryForProcess(new File(mArgs[0]),
|
||||||
|
new BinaryDictOffdeviceUtils.HeaderReaderProcessor());
|
||||||
if (null == decodedSpec) {
|
if (null == decodedSpec) {
|
||||||
System.out.println(mArgs[0] + " does not seem to be a dictionary");
|
System.out.println(mArgs[0] + " does not seem to be a dictionary");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
System.out.println("Packaging : " + decodedSpec.describeChain());
|
System.out.println("Packaging : " + decodedSpec.describeChain());
|
||||||
System.out.println("Uncompressed size : " + decodedSpec.mResult.length());
|
|
||||||
try (
|
try (
|
||||||
final InputStream input = getFileInputStream(decodedSpec.mResult);
|
final InputStream input = decodedSpec.getStream(new File(mArgs[0]));
|
||||||
final OutputStream output = new BufferedOutputStream(
|
final OutputStream output = new BufferedOutputStream(
|
||||||
getFileOutputStreamOrStdOut(mArgs[1]))
|
getFileOutputStreamOrStdOut(mArgs[1]))
|
||||||
) {
|
) {
|
||||||
|
Loading…
Reference in New Issue
Block a user