blob: c8d39ffc8e2b9eb216f151dae1f672756fae4012 [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.rat.analysis;
import org.apache.rat.api.Document;
import org.apache.rat.api.MetaData;
import org.apache.rat.document.IDocumentAnalyser;
import org.apache.rat.document.RatDocumentAnalysisException;
import org.apache.rat.document.impl.guesser.ArchiveGuesser;
import org.apache.rat.document.impl.guesser.BinaryGuesser;
import org.apache.rat.document.impl.guesser.NoteGuesser;
/**
* Creates default analysers.
*
*/
public class DefaultAnalyserFactory {
public static final IDocumentAnalyser createDefaultAnalyser(final IHeaderMatcher matcher) {
return new DefaultAnalyser(matcher);
}
private final static class DefaultAnalyser implements IDocumentAnalyser {
private final IHeaderMatcher matcher;
public DefaultAnalyser(final IHeaderMatcher matcher) {
super();
this.matcher = matcher;
}
public void analyse(Document subject) throws RatDocumentAnalysisException {
final MetaData.Datum documentCategory;
if (NoteGuesser.isNote(subject)) {
documentCategory = MetaData.RAT_DOCUMENT_CATEGORY_DATUM_NOTICE;
} else if (ArchiveGuesser.isArchive(subject)) {
documentCategory = MetaData.RAT_DOCUMENT_CATEGORY_DATUM_ARCHIVE;
} else if (BinaryGuesser.isBinary(subject)) {
documentCategory = MetaData.RAT_DOCUMENT_CATEGORY_DATUM_BINARY;
} else {
documentCategory = MetaData.RAT_DOCUMENT_CATEGORY_DATUM_STANDARD;
final DocumentHeaderAnalyser headerAnalyser = new DocumentHeaderAnalyser(matcher);
headerAnalyser.analyse(subject);
}
subject.getMetaData().set(documentCategory);
}
}
}