Class LexiconImpl

java.lang.Object
com.sun.speech.freetts.lexicon.LexiconImpl
All Implemented Interfaces:
Lexicon
Direct Known Subclasses:
CMULexicon

public abstract class LexiconImpl extends Object implements Lexicon
Provides an implementation of a Lexicon.

This implementation will either read from a straight ASCII file or a binary file. When reading from an ASCII file, you can specify when the input line is tokenized: load, lookup, or never. If you specify 'load', the entire file will be parsed when it is loaded. If you specify 'lookup', the file will be loaded, but the parsing for each line will be delayed until it is referenced and the parsed form will be saved away. If you specify 'never', the lines will parsed each time they are referenced. The default is 'never'. To specify the load type, set the system property as follows:

   -Dcom.sun.speech.freetts.lexicon.LexTokenize=load
 

If a binary file is used, you can also specify whether the new IO package is used. The new IO package is new for JDK1.4, and can greatly improve the speed of loading files. To enable new IO, use the following system property (it is enabled by default):

   -Dcom.sun.speech.freetts.useNewIO=true
 

The implementation also allows users to define their own addenda that will be used in addition to the system addenda. If the user defines their own addenda, it values will be added to the system addenda, overriding any existing elements in the system addenda. To define a user addenda, the user needs to set the following property:

   -Dcom.sun.speeech.freetts.lexicon.userAddenda=<URLToUserAddenda>
 
Where <URLToUserAddenda> is a URL pointing to an ASCII file containing addenda entries.

[[[TODO: support multiple homographs with the same part of speech.]]]

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected boolean
    If true, the phone string is replaced with the phone array in the hashmap when the phone array is loaded.
    protected boolean
    If true, the phone string is replaced with the phone array in the hashmap when the phone array is first looked up.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Class constructor for an empty Lexicon.
    LexiconImpl(URL compiledURL, URL addendaURL, URL letterToSoundURL, boolean binary)
    Create a new LexiconImpl by reading from the given URLS.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addAddendum(String word, String partOfSpeech, String[] phones)
    Adds a word to the addenda.
    boolean
    Tests to see if this lexicon is identical to the other for debugging purposes.
    protected Map
    createLexicon(InputStream is, boolean binary, int estimatedSize)
    Reads the given input stream as lexicon data and returns the results in a Map.
    void
    Dumps this lexicon (just the compiled form).
    protected static String
    fixPartOfSpeech(String partOfSpeech)
    Fixes the part of speech if it is null.
    protected String[]
    getPhones(String phones)
    Turns the phone String into a String[], using " " as the delimiter.
    getPhones(String word, String partOfSpeech)
    Gets the phone list for a given word.
    getPhones(String word, String partOfSpeech, boolean useLTS)
    Gets the phone list for a given word.
    protected String[]
    getPhones(Map lexicon, String wordAndPartOfSpeech)
    Gets a phone list for a word from a given lexicon.
    protected String[]
    getPhones(Map lexicon, String word, String partOfSpeech)
    Gets a phone list for a word from a given lexicon.
    boolean
    Determines if this lexicon is loaded.
    void
    Loads the data for this lexicon.
    protected Map
    loadTextLexicon(InputStream is, int estimatedSize)
    Reads the given input stream as text lexicon data and returns the results in a Map.
    protected void
    parseAndAdd(Map lexicon, String line)
    Creates a word from the given input line and add it to the lexicon.
    void
    removeAddendum(String word, String partOfSpeech)
    Removes a word from the addenda.
    protected void
    setLexiconParameters(URL compiledURL, URL addendaURL, URL letterToSoundURL, boolean binary)
    Sets the lexicon parameters

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.sun.speech.freetts.lexicon.Lexicon

    isSyllableBoundary
  • Field Details

    • tokenizeOnLoad

      protected boolean tokenizeOnLoad
      If true, the phone string is replaced with the phone array in the hashmap when the phone array is loaded. The side effects of this are quicker lookups, but more memory usage and a longer startup time.
    • tokenizeOnLookup

      protected boolean tokenizeOnLookup
      If true, the phone string is replaced with the phone array in the hashmap when the phone array is first looked up. The side effects Set by cmufilelex.tokenize=lookup.
  • Constructor Details

    • LexiconImpl

      public LexiconImpl(URL compiledURL, URL addendaURL, URL letterToSoundURL, boolean binary)
      Create a new LexiconImpl by reading from the given URLS.
      Parameters:
      compiledURL - a URL pointing to the compiled lexicon
      addendaURL - a URL pointing to lexicon addenda
      letterToSoundURL - a LetterToSound to use if a word cannot be found in the compiled form or the addenda
      binary - if true, the input streams are binary; otherwise, they are text.
    • LexiconImpl

      public LexiconImpl()
      Class constructor for an empty Lexicon.
  • Method Details

    • setLexiconParameters

      protected void setLexiconParameters(URL compiledURL, URL addendaURL, URL letterToSoundURL, boolean binary)
      Sets the lexicon parameters
      Parameters:
      compiledURL - a URL pointing to the compiled lexicon
      addendaURL - a URL pointing to lexicon addenda
      letterToSoundURL - a URL pointing to the LetterToSound to use
      binary - if true, the input streams are binary; otherwise, they are text.
    • isLoaded

      public boolean isLoaded()
      Determines if this lexicon is loaded.
      Specified by:
      isLoaded in interface Lexicon
      Returns:
      true if the lexicon is loaded
    • load

      public void load() throws IOException
      Loads the data for this lexicon. If the
      Specified by:
      load in interface Lexicon
      Throws:
      IOException - if errors occur during loading
    • createLexicon

      protected Map createLexicon(InputStream is, boolean binary, int estimatedSize) throws IOException
      Reads the given input stream as lexicon data and returns the results in a Map.
      Parameters:
      is - the input stream
      binary - if true, the data is binary
      estimatedSize - the estimated size of the lexicon
      Throws:
      IOException - if errors are encountered while reading the data
    • loadTextLexicon

      protected Map loadTextLexicon(InputStream is, int estimatedSize) throws IOException
      Reads the given input stream as text lexicon data and returns the results in a Map.
      Parameters:
      is - the input stream
      estimatedSize - the estimated number of entries of the lexicon
      Throws:
      IOException - if errors are encountered while reading the data
    • parseAndAdd

      protected void parseAndAdd(Map lexicon, String line)
      Creates a word from the given input line and add it to the lexicon.
      Parameters:
      lexicon - the lexicon
      line - the input text
    • getPhones

      public String[] getPhones(String word, String partOfSpeech)
      Gets the phone list for a given word. If a phone list cannot be found, returns null. The format is lexicon dependent. If the part of speech does not matter, pass in null.
      Specified by:
      getPhones in interface Lexicon
      Parameters:
      word - the word to find
      partOfSpeech - the part of speech
      Returns:
      the list of phones for word or null
    • getPhones

      public String[] getPhones(String word, String partOfSpeech, boolean useLTS)
      Gets the phone list for a given word. If a phone list cannot be found, null is returned. The partOfSpeech is implementation dependent, but null always matches.
      Specified by:
      getPhones in interface Lexicon
      Parameters:
      word - the word to find
      partOfSpeech - the part of speech or null
      useLTS - whether to use the letter-to-sound rules when the word is not in the lexicon.
      Returns:
      the list of phones for word or null
    • getPhones

      protected String[] getPhones(Map lexicon, String word, String partOfSpeech)
      Gets a phone list for a word from a given lexicon. If a phone list cannot be found, returns null. The format is lexicon dependent. If the part of speech does not matter, pass in null.
      Parameters:
      lexicon - the lexicon
      word - the word to find
      partOfSpeech - the part of speech
      Returns:
      the list of phones for word or null
    • getPhones

      protected String[] getPhones(Map lexicon, String wordAndPartOfSpeech)
      Gets a phone list for a word from a given lexicon. If a phone list cannot be found, returns null.
      Parameters:
      lexicon - the lexicon
      wordAndPartOfSpeech - word and part of speech concatenated together
      Returns:
      the list of phones for word or null
    • getPhones

      protected String[] getPhones(String phones)
      Turns the phone String into a String[], using " " as the delimiter.
      Parameters:
      phones - the phones
      Returns:
      the phones split into an array
    • addAddendum

      public void addAddendum(String word, String partOfSpeech, String[] phones)
      Adds a word to the addenda.
      Specified by:
      addAddendum in interface Lexicon
      Parameters:
      word - the word to find
      partOfSpeech - the part of speech
      phones - the phones for the word
    • removeAddendum

      public void removeAddendum(String word, String partOfSpeech)
      Removes a word from the addenda.
      Specified by:
      removeAddendum in interface Lexicon
      Parameters:
      word - the word to remove
      partOfSpeech - the part of speech
    • dumpBinary

      public void dumpBinary(String path)
      Dumps this lexicon (just the compiled form). Lexicon will be dumped to two binary files PATH_compiled.bin and PATH_addenda.bin
      Parameters:
      path - the root path to dump it to
    • compare

      public boolean compare(LexiconImpl other)
      Tests to see if this lexicon is identical to the other for debugging purposes.
      Parameters:
      other - the other lexicon to compare to
      Returns:
      true if lexicons are identical
    • fixPartOfSpeech

      protected static String fixPartOfSpeech(String partOfSpeech)
      Fixes the part of speech if it is null. The default representation of a null part of speech is the number "0".