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
ae563e9e
Commit
ae563e9e
authored
11 years ago
by
Jean Chalard
Committed by
Android Git Automerger
11 years ago
Browse files
Options
Downloads
Plain Diff
am
926ee64b
: Merge "Add a new option for version 4 to dicttool."
* commit '
926ee64b
': Add a new option for version 4 to dicttool.
parents
6e514afa
926ee64b
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
tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
+12
-7
12 additions, 7 deletions
...m/android/inputmethod/latin/dicttool/DictionaryMaker.java
with
12 additions
and
7 deletions
tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
+
12
−
7
View file @
ae563e9e
...
...
@@ -23,8 +23,8 @@ import com.android.inputmethod.latin.makedict.FormatSpec;
import
com.android.inputmethod.latin.makedict.FusionDictionary
;
import
com.android.inputmethod.latin.makedict.MakedictLog
;
import
com.android.inputmethod.latin.makedict.UnsupportedFormatException
;
import
com.android.inputmethod.latin.makedict.Ver3DictDecoder
;
import
com.android.inputmethod.latin.makedict.Ver3DictEncoder
;
import
com.android.inputmethod.latin.makedict.Ver4DictEncoder
;
import
java.io.BufferedWriter
;
import
java.io.File
;
...
...
@@ -45,9 +45,9 @@ import org.xml.sax.SAXException;
public
class
DictionaryMaker
{
static
class
Arguments
{
private
static
final
String
OPTION_VERSION_1
=
"-1"
;
private
static
final
String
OPTION_VERSION_2
=
"-2"
;
private
static
final
String
OPTION_VERSION_3
=
"-3"
;
private
static
final
String
OPTION_VERSION_4
=
"-4"
;
private
static
final
String
OPTION_INPUT_SOURCE
=
"-s"
;
private
static
final
String
OPTION_INPUT_BIGRAM_XML
=
"-b"
;
private
static
final
String
OPTION_INPUT_SHORTCUT_XML
=
"-c"
;
...
...
@@ -128,12 +128,12 @@ public class DictionaryMaker {
+
"| [-s <combined format input]"
+
"| [-s <binary input>] [-d <binary output>] [-x <xml output>] "
+
" [-o <combined output>]"
+
"
[-1]
[-2] [-3]\n"
+
"[-2] [-3]
[-4]
\n"
+
"\n"
+
" Converts a source dictionary file to one or several outputs.\n"
+
" Source can be an XML file, with an optional XML bigrams file, or a\n"
+
" binary dictionary file.\n"
+
" Binary version
1 (Ice Cream Sandwich),
2 (Jelly Bean), 3, XML and\n"
+
" Binary version 2 (Jelly Bean), 3,
4,
XML and\n"
+
" combined format outputs are supported."
;
}
...
...
@@ -160,8 +160,8 @@ public class DictionaryMaker {
// Do nothing, this is the default
}
else
if
(
OPTION_VERSION_3
.
equals
(
arg
))
{
outputBinaryFormatVersion
=
3
;
}
else
if
(
OPTION_VERSION_
1
.
equals
(
arg
))
{
outputBinaryFormatVersion
=
1
;
}
else
if
(
OPTION_VERSION_
4
.
equals
(
arg
))
{
outputBinaryFormatVersion
=
4
;
}
else
if
(
OPTION_HELP
.
equals
(
arg
))
{
displayHelp
();
}
else
{
...
...
@@ -357,7 +357,12 @@ public class DictionaryMaker {
throws
FileNotFoundException
,
IOException
,
UnsupportedFormatException
{
final
File
outputFile
=
new
File
(
outputFilename
);
final
FormatSpec
.
FormatOptions
formatOptions
=
new
FormatSpec
.
FormatOptions
(
version
);
final
DictEncoder
dictEncoder
=
new
Ver3DictEncoder
(
outputFile
);
final
DictEncoder
dictEncoder
;
if
(
version
==
4
)
{
dictEncoder
=
new
Ver4DictEncoder
(
outputFile
);
}
else
{
dictEncoder
=
new
Ver3DictEncoder
(
outputFile
);
}
dictEncoder
.
writeDictionary
(
dict
,
formatOptions
);
}
...
...
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