/* * Copyright 2016 * Ubiquitous Knowledge Processing (UKP) Lab and FG Language Technology * Technische Universität Darmstadt * * 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 de.tudarmstadt.ukp.clarin.webanno.diag.repairs; import static org.apache.uima.fit.util.CasUtil.getType; import static org.apache.uima.fit.util.CasUtil.select; import static org.apache.uima.fit.util.CasUtil.selectFS; import java.util.ArrayList; import java.util.List; import javax.annotation.Resource; import org.apache.uima.cas.CAS; import org.apache.uima.cas.FeatureStructure; import org.apache.uima.cas.text.AnnotationFS; import org.apache.uima.fit.util.FSUtil; import de.tudarmstadt.ukp.clarin.webanno.api.AnnotationSchemaService; import de.tudarmstadt.ukp.clarin.webanno.api.WebAnnoConst; import de.tudarmstadt.ukp.clarin.webanno.diag.CasDoctor.LogLevel; import de.tudarmstadt.ukp.clarin.webanno.diag.CasDoctor.LogMessage; import de.tudarmstadt.ukp.clarin.webanno.model.AnnotationLayer; import de.tudarmstadt.ukp.clarin.webanno.model.Project; public class RemoveDanglingChainLinksRepair implements Repair { @Resource(name = "annotationService") private AnnotationSchemaService annotationService; @Override public void repair(Project aProject, CAS aCas, List<LogMessage> aMessages) { for (AnnotationLayer layer : annotationService.listAnnotationLayer(aProject)) { if (!WebAnnoConst.CHAIN_TYPE.equals(layer.getType())) { continue; } List<FeatureStructure> chains = new ArrayList<>( selectFS(aCas, getType(aCas, layer.getName() + "Chain"))); List<AnnotationFS> links = new ArrayList<>( select(aCas, getType(aCas, layer.getName() + "Link"))); for (FeatureStructure chain : chains) { AnnotationFS link = FSUtil.getFeature(chain, "first", AnnotationFS.class); while (link != null) { links.remove(link); link = FSUtil.getFeature(link, "next", AnnotationFS.class); } } // Delete those relations that pointed to deleted spans if (!links.isEmpty()) { links.forEach(fs -> aCas.removeFsFromIndexes(fs)); aMessages.add(new LogMessage(this, LogLevel.INFO, "Removed [%d] dangling links in layer [" + layer.getName() + "].", links.size())); } } } }