blob: 41895ea8158bc0beefe84a6b27a5a16fb905cb8c [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.nutch.scoring.link;
import java.util.List;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.io.Text;
import org.apache.nutch.crawl.CrawlDatum;
import org.apache.nutch.crawl.Inlinks;
import org.apache.nutch.indexer.NutchDocument;
import org.apache.nutch.metadata.Nutch;
import org.apache.nutch.parse.Parse;
import org.apache.nutch.protocol.Content;
import org.apache.nutch.scoring.AbstractScoringFilter;
import org.apache.nutch.scoring.ScoringFilterException;
public class LinkAnalysisScoringFilter extends AbstractScoringFilter {
private float normalizedScore = 1.00f;
private float initialScore = 0.0f;
public LinkAnalysisScoringFilter() {
}
@Override
public void setConf(Configuration conf) {
super.setConf(conf);
normalizedScore = conf.getFloat("link.analyze.normalize.score", 1.00f);
}
@Override
public float generatorSortValue(Text url, CrawlDatum datum, float initSort)
throws ScoringFilterException {
return datum.getScore() * initSort;
}
@Override
public float indexerScore(Text url, NutchDocument doc, CrawlDatum dbDatum,
CrawlDatum fetchDatum, Parse parse, Inlinks inlinks, float initScore)
throws ScoringFilterException {
if (dbDatum == null) {
return initScore;
}
return (normalizedScore * dbDatum.getScore());
}
@Override
public void initialScore(Text url, CrawlDatum datum)
throws ScoringFilterException {
datum.setScore(initialScore);
}
@Override
public void passScoreAfterParsing(Text url, Content content, Parse parse)
throws ScoringFilterException {
parse.getData().getContentMeta()
.set(Nutch.SCORE_KEY, content.getMetadata().get(Nutch.SCORE_KEY));
}
@Override
public void passScoreBeforeParsing(Text url, CrawlDatum datum, Content content)
throws ScoringFilterException {
content.getMetadata().set(Nutch.SCORE_KEY, "" + datum.getScore());
}
}