|
|
|
@ -91,7 +91,8 @@ public final class yacySeedDB {
|
|
|
|
|
* these hashes all shall be generated by base64.enhancedCoder
|
|
|
|
|
*/
|
|
|
|
|
public static final int commonHashLength = 12;
|
|
|
|
|
|
|
|
|
|
public static final int dhtActivityMagic = 32;
|
|
|
|
|
|
|
|
|
|
public static final String[] sortFields = new String[] {yacySeed.LCOUNT, yacySeed.ICOUNT, yacySeed.UPTIME, yacySeed.VERSION, yacySeed.LASTSEEN};
|
|
|
|
|
public static final String[] longaccFields = new String[] {yacySeed.LCOUNT, yacySeed.ICOUNT, yacySeed.ISPEED};
|
|
|
|
|
public static final String[] doubleaccFields = new String[] {yacySeed.RSPEED};
|
|
|
|
@ -178,6 +179,11 @@ public final class yacySeedDB {
|
|
|
|
|
} catch (IOException e) {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean noDHTActivity() {
|
|
|
|
|
// for small networks, we don't perform DHT transmissions, because it is possible to search over all peers
|
|
|
|
|
return this.sizeConnected() <= dhtActivityMagic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private synchronized kelondroMapObjects openSeedTable(File seedDBFile) {
|
|
|
|
|
final boolean usetree = false;
|
|
|
|
|
new File(seedDBFile.getParent()).mkdirs();
|
|
|
|
@ -800,32 +806,6 @@ public final class yacySeedDB {
|
|
|
|
|
if (remote != null) try { httpc.returnInstance(remote); } catch (Exception e) {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @deprecated Function seems to be unused
|
|
|
|
|
*/
|
|
|
|
|
public String copyCache(File seedFile, URL seedURL) {
|
|
|
|
|
if (seedURL == null) return "COPY - Error: URL not given";
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
// getting the current list
|
|
|
|
|
ArrayList uv = storeCache(seedFile, true);
|
|
|
|
|
|
|
|
|
|
// test download
|
|
|
|
|
serverLog.logFine("YACY","Trying to download seed-file '" + seedURL + "'.");
|
|
|
|
|
ArrayList check = downloadSeedFile(seedURL);
|
|
|
|
|
|
|
|
|
|
// Comparing if local copy and uploaded copy are equal
|
|
|
|
|
String errorMsg = checkCache(uv, check);
|
|
|
|
|
if (errorMsg == null) {
|
|
|
|
|
return "COPY CHECK - Success: the result vectors are equal" + serverCore.crlfString;
|
|
|
|
|
} else {
|
|
|
|
|
return "COPY CHECK - Error: the result vector is different. " + errorMsg + serverCore.crlfString;
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
return "COPY CHECK - Error: IO problem " + e.getMessage() + serverCore.crlfString;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String checkCache(ArrayList uv, ArrayList check) {
|
|
|
|
|
if ((check == null) || (uv == null) || (uv.size() != check.size())) {
|
|
|
|
|