You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.9 KiB
71 lines
2.9 KiB
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
import net.yacy.cora.protocol.RequestHeader;
|
|
import net.yacy.kelondro.logging.Log;
|
|
import net.yacy.kelondro.rwi.ReferenceContainerCache;
|
|
import net.yacy.kelondro.util.MemoryControl;
|
|
import net.yacy.peers.graphics.WebStructureGraph.HostReference;
|
|
import net.yacy.search.Switchboard;
|
|
import net.yacy.search.index.Fulltext;
|
|
import net.yacy.search.index.Fulltext.HostStat;
|
|
import net.yacy.search.index.Segment;
|
|
import net.yacy.search.ranking.BlockRank;
|
|
import net.yacy.server.serverObjects;
|
|
import net.yacy.server.serverSwitch;
|
|
import net.yacy.server.servletProperties;
|
|
|
|
public class YBRFetch_p
|
|
{
|
|
|
|
public static servletProperties respond(
|
|
@SuppressWarnings("unused") final RequestHeader requestHeader,
|
|
final serverObjects post,
|
|
final serverSwitch env) {
|
|
final servletProperties prop = new servletProperties();
|
|
final Switchboard sb = (Switchboard) env;
|
|
|
|
if ( post == null || !post.containsKey("ghrt4") || MemoryControl.available() < 1024L * 1024L * 1024L ) {
|
|
return prop;
|
|
}
|
|
final File hostIndexFile = new File(sb.queuesRoot, "hostIndex.blob");
|
|
|
|
ReferenceContainerCache<HostReference> hostIndex; // this will get large, more than 0.5 million entries by now
|
|
if ( !hostIndexFile.exists() ) {
|
|
hostIndex = BlockRank.collect(sb.peers, sb.webStructure, Integer.MAX_VALUE);
|
|
BlockRank.saveHostIndex(hostIndex, hostIndexFile);
|
|
} else {
|
|
hostIndex = BlockRank.loadHostIndex(hostIndexFile);
|
|
}
|
|
|
|
// use an index segment to find hosts for given host hashes
|
|
final Segment segment = sb.index;
|
|
final Fulltext metadata = segment.fulltext();
|
|
Map<String, HostStat> hostHashResolver;
|
|
try {
|
|
hostHashResolver = metadata.domainHashResolver(metadata.domainSampleCollector());
|
|
} catch ( final IOException e ) {
|
|
hostHashResolver = new HashMap<String, HostStat>();
|
|
}
|
|
|
|
// recursively compute a new ranking table
|
|
Log.logInfo("BLOCK RANK", "computing new ranking tables...");
|
|
BlockRank.ybrTables = BlockRank.evaluate(hostIndex, hostHashResolver, null, 0);
|
|
hostIndex = null; // we don't need that here any more, so free the memory
|
|
|
|
// use the web structure and the hostHash resolver to analyse the ranking table
|
|
Log.logInfo("BLOCK RANK", "analysis of " + BlockRank.ybrTables.length + " tables...");
|
|
BlockRank.analyse(sb.webStructure, hostHashResolver);
|
|
// store the new table
|
|
Log.logInfo("BLOCK RANK", "storing fresh table...");
|
|
final File rankingPath = new File(sb.appPath, "ranking/YBR".replace('/', File.separatorChar));
|
|
BlockRank.storeBlockRankTable(rankingPath);
|
|
BlockRank.loadBlockRankTable(rankingPath, 16);
|
|
|
|
return prop;
|
|
}
|
|
|
|
}
|