blob: 1b08e428dafe5abfa62f632cd84e005ca85451cd [file] [log] [blame]
/*
* 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.uima.ruta.textruler.core;
import java.io.File;
import org.apache.uima.ruta.textruler.TextRulerPlugin;
import org.apache.uima.util.FileUtils;
/**
*
* TextRulerRule is the basic class for any kind of Ruta-Rule representation for any learning
* algorithm. A rule usually has a parent algorithm (that created it) and a learning target
* (TextRulerTarget).
*
* The subclasses TextRulerSingleSlotRule and TextRulerMultiSlotRule add slot specific issues to it
* and every algorithm then has to subclass on of those two and provide a class that implements
* TextRulerRuleItem.
*
*/
public abstract class TextRulerRule {
protected TextRulerBasicLearner algorithm;
protected boolean needsCompile = true;
protected String ruleString;
protected TextRulerTarget target;
protected TextRulerStatisticsCollector coveringStatistics;
// copy constructor:
public TextRulerRule(TextRulerRule copyFrom) {
algorithm = copyFrom.algorithm;
needsCompile = copyFrom.needsCompile;
ruleString = copyFrom.ruleString;
target = new TextRulerTarget(copyFrom.target, algorithm);
coveringStatistics = copyFrom.coveringStatistics != null ? copyFrom.coveringStatistics.copy()
: null;
}
public TextRulerRule(TextRulerBasicLearner parentAlgorithm, TextRulerTarget target) {
super();
algorithm = parentAlgorithm;
this.target = target;
}
public String getRuleString() {
if (needsCompile)
compileRuleString();
return ruleString;
}
public TextRulerTarget getTarget() {
return target;
}
public abstract void compileRuleString();
public void setNeedsCompile(boolean flag) {
needsCompile = flag;
}
public String getRulesFileContent() {
return algorithm.getFileHeaderString(false) + getRuleString() + "\n";
}
public void saveToRulesFile(String filename) {
File file = new File(filename);
String str = getRulesFileContent();
try {
FileUtils.saveString2File(str, file);
} catch (Exception e) {
TextRulerPlugin.error(e);
}
}
@Override
public boolean equals(Object obj) {
return this.getRuleString().equals(((TextRulerRule) obj).getRuleString());
}
@Override
public int hashCode() {
return this.getRuleString().hashCode();
}
public void setCoveringStatistics(TextRulerStatisticsCollector c) {
coveringStatistics = c.copy();
}
public TextRulerStatisticsCollector getCoveringStatistics() {
return coveringStatistics;
}
public abstract TextRulerRule copy();
@Override
public String toString() {
return ruleString == null ? "<not compiled>" : ruleString; // don't
// compile if
// neccessary!
// just
// return the
// current
// rulestring!
}
}