Package com.github.bibreen.mecab_ko_mecab_loader

Source Code of com.github.bibreen.mecab_ko_mecab_loader.MeCabLoader

/*******************************************************************************
* Copyright 2013 Yongwoon Lee, Yungho Yu
*
* 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 com.github.bibreen.mecab_ko_mecab_loader;

import org.chasen.mecab.Lattice;
import org.chasen.mecab.Model;
import org.chasen.mecab.Tagger;

public final class MeCabLoader {
  private volatile static MeCabLoader uniqueInstance;
  private static Model model;
  static {
    try {
      System.loadLibrary("MeCab");
    } catch (UnsatisfiedLinkError e) {
      System.err.println(
          "Cannot load the native code.\n"
          + "Make sure your LD_LIBRARY_PATH contains MeCab.so path.\n" + e);
      System.exit(1);
    }
  }
  public static MeCabLoader getInstance(String dicDir)
      throws NullPointerException, RuntimeException {
    // DCL(Double-checking Locking) Singleton. thread-safe
    if (uniqueInstance == null) {
      synchronized (MeCabLoader.class){
        uniqueInstance = new MeCabLoader(dicDir);
      }
    }
    return uniqueInstance;
  }
 
  private MeCabLoader(String dicDir) {
    model = new Model("-d " + dicDir);
  }

  public Tagger createTagger() {
    return model.createTagger();
  }
 
  public Lattice createLattice() {
    return model.createLattice();
  }
}
TOP

Related Classes of com.github.bibreen.mecab_ko_mecab_loader.MeCabLoader

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.