Package org.apache.ctakes.smokingstatus.lookup.ae

Source Code of org.apache.ctakes.smokingstatus.lookup.ae.UnknownSmokerNamedEntityLookupConsumerImpl

/**
* 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.ctakes.smokingstatus.lookup.ae;

import java.util.Collection;
import java.util.Iterator;
import java.util.Properties;

import org.apache.uima.UimaContext;
import org.apache.uima.analysis_engine.AnalysisEngineProcessException;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.cas.FSArray;

import org.apache.ctakes.smokingstatus.type.UnknownSmokerNamedEntityAnnotation;

import org.apache.ctakes.dictionary.lookup.MetaDataHit;
import org.apache.ctakes.dictionary.lookup.ae.BaseLookupConsumerImpl;
import org.apache.ctakes.dictionary.lookup.ae.LookupConsumer;
import org.apache.ctakes.dictionary.lookup.vo.LookupHit;
import org.apache.ctakes.typesystem.type.refsem.OntologyConcept;
import org.apache.ctakes.typesystem.type.constants.CONST;

/**
* copied from edu.may.bmi.uima.lookup.ae.NamedEntityLookupConsumerImpl in the "Dictionary Lookup" project
*/
public class UnknownSmokerNamedEntityLookupConsumerImpl extends BaseLookupConsumerImpl
    implements LookupConsumer
{

  private final String CODE_MF_PRP_KEY = "codeMetaField";

  private final String CODING_SCHEME_PRP_KEY = "codingScheme";

  private Properties iv_props;

  public UnknownSmokerNamedEntityLookupConsumerImpl(UimaContext aCtx, Properties props)
  {
    // TODO property validation
    iv_props = props;
  }

  public void consumeHits(JCas jcas, Iterator lhItr)
      throws AnalysisEngineProcessException
  {
    Iterator hitsByOffsetItr = organizeByOffset(lhItr);
    while (hitsByOffsetItr.hasNext())
    {
      Collection hitsAtOffsetCol = (Collection) hitsByOffsetItr.next();

      FSArray ocArr = new FSArray(jcas, hitsAtOffsetCol.size());
      int ocArrIdx = 0;

      // iterate over the LookupHit objects and create
      // a corresponding JCas OntologyConcept object that will
      // be placed in a FSArray
      Iterator lhAtOffsetItr = hitsAtOffsetCol.iterator();
      int neBegin = -1;
      int neEnd = -1;
      while (lhAtOffsetItr.hasNext())
      {
        LookupHit lh = (LookupHit) lhAtOffsetItr.next();
        neBegin = lh.getStartOffset();
        neEnd = lh.getEndOffset();
        //MetaDataHit mdh = lh.getGazMetaDataHit();
        MetaDataHit mdh = lh.getDictMetaDataHit();

        OntologyConcept oc = new OntologyConcept(jcas);
        oc.setCode(mdh.getMetaFieldValue(iv_props.getProperty(CODE_MF_PRP_KEY)));
        oc.setCodingScheme(iv_props.getProperty(CODING_SCHEME_PRP_KEY));

        ocArr.set(ocArrIdx, oc);
        ocArrIdx++;
      }

      UnknownSmokerNamedEntityAnnotation neAnnot = new UnknownSmokerNamedEntityAnnotation(jcas); //modification
      neAnnot.setBegin(neBegin);
      neAnnot.setEnd(neEnd);
      neAnnot.setDiscoveryTechnique(CONST.NE_DISCOVERY_TECH_DICT_LOOKUP);
      neAnnot.setOntologyConceptArr(ocArr);
      neAnnot.addToIndexes();
    }
  }
}
TOP

Related Classes of org.apache.ctakes.smokingstatus.lookup.ae.UnknownSmokerNamedEntityLookupConsumerImpl

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.