org.apache.tika.eval.batch.ExtractComparerBuilder Maven / Gradle / Ivy
/*
* 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.tika.eval.batch;
import java.io.IOException;
import java.nio.file.Path;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.tika.batch.FileResourceConsumer;
import org.apache.tika.eval.AbstractProfiler;
import org.apache.tika.eval.ExtractComparer;
import org.apache.tika.eval.db.TableInfo;
import org.apache.tika.util.PropsUtil;
public class ExtractComparerBuilder extends EvalConsumerBuilder {
public final static String TABLE_PREFIX_A_KEY = "tablePrefixA";
public final static String TABLE_PREFIX_B_KEY = "tablePrefixB";
private final List tableInfosA;
private final List tableInfosB;
private final List tableInfosAandB;
private final List refTableInfos;
public ExtractComparerBuilder() {
List tableInfosA = new ArrayList<>();
List tableInfosB = new ArrayList<>();
List tableInfosAandB = new ArrayList<>();
tableInfosA.add(ExtractComparer.PROFILES_A);
tableInfosA.add(ExtractComparer.EXCEPTION_TABLE_A);
tableInfosA.add(ExtractComparer.TAGS_TABLE_A);
tableInfosA.add(ExtractComparer.CONTENTS_TABLE_A);
tableInfosA.add(ExtractComparer.EXTRACT_EXCEPTION_TABLE_A);
tableInfosA.add(ExtractComparer.EMBEDDED_FILE_PATH_TABLE_A);
tableInfosB.add(ExtractComparer.PROFILES_B);
tableInfosB.add(ExtractComparer.EXCEPTION_TABLE_B);
tableInfosB.add(ExtractComparer.EXTRACT_EXCEPTION_TABLE_B);
tableInfosB.add(ExtractComparer.TAGS_TABLE_B);
tableInfosB.add(ExtractComparer.CONTENTS_TABLE_B);
tableInfosB.add(ExtractComparer.EMBEDDED_FILE_PATH_TABLE_B);
tableInfosAandB.add(ExtractComparer.COMPARISON_CONTAINERS);
tableInfosAandB.add(ExtractComparer.CONTENT_COMPARISONS);
tableInfosAandB.add(AbstractProfiler.MIME_TABLE);
List refTableInfos = new ArrayList<>();
refTableInfos.add(ExtractComparer.REF_PAIR_NAMES);
refTableInfos.add(AbstractProfiler.REF_PARSE_ERROR_TYPES);
refTableInfos.add(AbstractProfiler.REF_PARSE_EXCEPTION_TYPES);
refTableInfos.add(AbstractProfiler.REF_EXTRACT_EXCEPTION_TYPES);
this.tableInfosA = Collections.unmodifiableList(tableInfosA);
this.tableInfosB = Collections.unmodifiableList(tableInfosB);
this.tableInfosAandB = Collections.unmodifiableList(tableInfosAandB);
this.refTableInfos = Collections.unmodifiableList(refTableInfos);
}
@Override
public FileResourceConsumer build() throws IOException, SQLException {
Path extractsA = PropsUtil.getPath(localAttrs.get("extractsA"), null);
if (extractsA == null) {
throw new RuntimeException("Must specify \"extractsA\" -- directory for 'A' extracts");
}
Path extractsB = PropsUtil.getPath(localAttrs.get("extractsB"), null);
if (extractsB == null) {
throw new RuntimeException("Must specify \"extractsB\" -- directory for 'B' extracts");
}
Path inputRootDir = PropsUtil.getPath(localAttrs.get("inputDir"), null);
if (inputRootDir == null) {
//this is for the sake of the crawler
throw new RuntimeException("Must specify an -inputDir");
}
return parameterizeProfiler(new ExtractComparer(queue, inputRootDir, extractsA, extractsB,
buildExtractReader(localAttrs),
getDBWriter(getNonRefTableInfos())));
}
@Override
protected void updateTableInfosWithPrefixes(Map attrs) {
String tablePrefixA = localAttrs.get(TABLE_PREFIX_A_KEY);
String tablePrefixB = localAttrs.get(TABLE_PREFIX_B_KEY);
tablePrefixA = (tablePrefixA == null || tablePrefixA.endsWith("_")) ? tablePrefixA : tablePrefixA+"_";
tablePrefixB = (tablePrefixB == null || tablePrefixB.endsWith("_")) ? tablePrefixB : tablePrefixB+"_";
if (tablePrefixA != null) {
for (TableInfo tableInfo : tableInfosA) {
tableInfo.setNamePrefix(tablePrefixA);
}
}
if (tablePrefixB != null) {
for (TableInfo tableInfo : tableInfosB) {
tableInfo.setNamePrefix(tablePrefixB);
}
}
if (tablePrefixA != null || tablePrefixB != null) {
String aAndB = (tablePrefixA == null) ? "" : tablePrefixA;
aAndB = (tablePrefixB == null) ? aAndB : aAndB+tablePrefixB;
for (TableInfo tableInfo : tableInfosAandB) {
tableInfo.setNamePrefix(aAndB);
}
}
}
@Override
protected List getRefTableInfos() {
return refTableInfos;
}
@Override
protected List getNonRefTableInfos() {
List allNonRefTables = new ArrayList<>();
allNonRefTables.addAll(tableInfosA);
allNonRefTables.addAll(tableInfosB);
allNonRefTables.addAll(tableInfosAandB);
return Collections.unmodifiableList(allNonRefTables);
}
@Override
protected void addErrorLogTablePairs(DBConsumersManager manager) {
Path errorLogA = PropsUtil.getPath(localAttrs.get("errorLogFileA"), null);
if (errorLogA == null) {
return;
}
manager.addErrorLogTablePair(errorLogA, ExtractComparer.EXTRACT_EXCEPTION_TABLE_A);
Path errorLogB = PropsUtil.getPath(localAttrs.get("errorLogFileB"), null);
if (errorLogB == null) {
return;
}
manager.addErrorLogTablePair(errorLogB, ExtractComparer.EXTRACT_EXCEPTION_TABLE_B);
}
}