All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.analysis.ja.dict.TokenInfoDictionaryEntryWriter Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.lucene.analysis.ja.dict;

import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import org.apache.lucene.analysis.morph.DictionaryEntryWriter;
import org.apache.lucene.analysis.util.CSVUtil;
import org.apache.lucene.store.DataOutput;
import org.apache.lucene.util.ArrayUtil;

/** Writes system dictionary entries */
class TokenInfoDictionaryEntryWriter extends DictionaryEntryWriter {
  private static final int ID_LIMIT = 8192;

  TokenInfoDictionaryEntryWriter(int size) {
    super(size);
  }

  /**
   * put the entry in map
   *
   * 

mecab-ipadic features * *

   * 0   - surface
   * 1   - left cost
   * 2   - right cost
   * 3   - word cost
   * 4-9 - pos
   * 10  - base form
   * 11  - reading
   * 12  - pronounciation
   * 
*/ @Override protected int putEntry(String[] entry) { short leftId = Short.parseShort(entry[1]); short rightId = Short.parseShort(entry[2]); short wordCost = Short.parseShort(entry[3]); StringBuilder sb = new StringBuilder(); // build up the POS string for (int i = 4; i < 8; i++) { String part = entry[i]; assert part.length() > 0; if (!"*".equals(part)) { if (sb.length() > 0) { sb.append('-'); } sb.append(part); } } String posData = sb.toString(); if (posData.isEmpty()) { throw new IllegalArgumentException("POS fields are empty"); } sb.setLength(0); sb.append(CSVUtil.quoteEscape(posData)); sb.append(','); if (!"*".equals(entry[8])) { sb.append(CSVUtil.quoteEscape(entry[8])); } sb.append(','); if (!"*".equals(entry[9])) { sb.append(CSVUtil.quoteEscape(entry[9])); } String fullPOSData = sb.toString(); String baseForm = entry[10]; String reading = entry[11]; String pronunciation = entry[12]; // extend buffer if necessary int left = buffer.remaining(); // worst case: two short, 3 bytes, and features (all as utf-16) int worstCase = 4 + 3 + 2 * (baseForm.length() + reading.length() + pronunciation.length()); if (worstCase > left) { ByteBuffer newBuffer = ByteBuffer.allocateDirect(ArrayUtil.oversize(buffer.limit() + worstCase - left, 1)); buffer.flip(); newBuffer.put(buffer); buffer = newBuffer; } int flags = 0; if (baseForm.isEmpty()) { throw new IllegalArgumentException("base form is empty"); } if (!("*".equals(baseForm) || baseForm.equals(entry[0]))) { flags |= TokenInfoMorphData.HAS_BASEFORM; } if (!reading.equals(toKatakana(entry[0]))) { flags |= TokenInfoMorphData.HAS_READING; } if (!pronunciation.equals(reading)) { flags |= TokenInfoMorphData.HAS_PRONUNCIATION; } if (leftId != rightId) { throw new IllegalArgumentException("rightId != leftId: " + rightId + " " + leftId); } if (leftId >= ID_LIMIT) { throw new IllegalArgumentException("leftId >= " + ID_LIMIT + ": " + leftId); } // add pos mapping int toFill = 1 + leftId - posDict.size(); for (int i = 0; i < toFill; i++) { posDict.add(null); } String existing = posDict.get(leftId); if (existing != null && existing.equals(fullPOSData) == false) { // TODO: test me throw new IllegalArgumentException("Multiple entries found for leftID=" + leftId); } posDict.set(leftId, fullPOSData); buffer.putShort((short) (leftId << 3 | flags)); buffer.putShort(wordCost); if ((flags & TokenInfoMorphData.HAS_BASEFORM) != 0) { if (baseForm.length() >= 16) { throw new IllegalArgumentException("Length of base form " + baseForm + " is >= 16"); } int shared = sharedPrefix(entry[0], baseForm); int suffix = baseForm.length() - shared; buffer.put((byte) (shared << 4 | suffix)); for (int i = shared; i < baseForm.length(); i++) { buffer.putChar(baseForm.charAt(i)); } } if ((flags & TokenInfoMorphData.HAS_READING) != 0) { if (isKatakana(reading)) { buffer.put((byte) (reading.length() << 1 | 1)); writeKatakana(reading, buffer); } else { buffer.put((byte) (reading.length() << 1)); for (int i = 0; i < reading.length(); i++) { buffer.putChar(reading.charAt(i)); } } } if ((flags & TokenInfoMorphData.HAS_PRONUNCIATION) != 0) { // we can save 150KB here, but it makes the reader a little complicated. // int shared = sharedPrefix(reading, pronunciation); // buffer.put((byte) shared); // pronunciation = pronunciation.substring(shared); if (isKatakana(pronunciation)) { buffer.put((byte) (pronunciation.length() << 1 | 1)); writeKatakana(pronunciation, buffer); } else { buffer.put((byte) (pronunciation.length() << 1)); for (int i = 0; i < pronunciation.length(); i++) { buffer.putChar(pronunciation.charAt(i)); } } } return buffer.position(); } private boolean isKatakana(String s) { for (int i = 0; i < s.length(); i++) { char ch = s.charAt(i); if (ch < 0x30A0 || ch > 0x30FF) { return false; } } return true; } private void writeKatakana(String s, ByteBuffer buffer) { for (int i = 0; i < s.length(); i++) { buffer.put((byte) (s.charAt(i) - 0x30A0)); } } private String toKatakana(String s) { char[] text = new char[s.length()]; for (int i = 0; i < s.length(); i++) { char ch = s.charAt(i); if (ch > 0x3040 && ch < 0x3097) { text[i] = (char) (ch + 0x60); } else { text[i] = ch; } } return new String(text); } private static int sharedPrefix(String left, String right) { int len = left.length() < right.length() ? left.length() : right.length(); for (int i = 0; i < len; i++) if (left.charAt(i) != right.charAt(i)) return i; return len; } @Override protected void writePosDict(OutputStream bos, DataOutput out) throws IOException { out.writeVInt(posDict.size()); for (String s : posDict) { if (s == null) { out.writeByte((byte) 0); out.writeByte((byte) 0); out.writeByte((byte) 0); } else { String[] data = CSVUtil.parse(s); if (data.length != 3) { throw new IllegalArgumentException( "Malformed pos/inflection: " + s + "; expected 3 characters"); } out.writeString(data[0]); out.writeString(data[1]); out.writeString(data[2]); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy