|
|
|
@ -439,7 +439,7 @@ public final class yacySeedDB implements httpdAlternativeDomainNames {
|
|
|
|
|
public long countPotentialRWI() { return seedPotentialDB.getLongAcc(yacySeed.ICOUNT); }
|
|
|
|
|
|
|
|
|
|
public synchronized void addConnected(final yacySeed seed) {
|
|
|
|
|
if ((seed == null) || (seed.isProper(false) != null)) return;
|
|
|
|
|
if (seed.isProper(false) != null) return;
|
|
|
|
|
//seed.put(yacySeed.LASTSEEN, yacyCore.shortFormatter.format(new Date(yacyCore.universalTime())));
|
|
|
|
|
try {
|
|
|
|
|
nameLookupCache.put(seed.getName(), seed);
|
|
|
|
@ -462,7 +462,7 @@ public final class yacySeedDB implements httpdAlternativeDomainNames {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public synchronized void addDisconnected(final yacySeed seed) {
|
|
|
|
|
if (seed == null) return;
|
|
|
|
|
if (seed.isProper(false) != null) return;
|
|
|
|
|
try {
|
|
|
|
|
nameLookupCache.remove(seed.getName());
|
|
|
|
|
seedActiveDB.remove(seed.hash);
|
|
|
|
@ -487,13 +487,12 @@ public final class yacySeedDB implements httpdAlternativeDomainNames {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public synchronized void addPotential(final yacySeed seed) {
|
|
|
|
|
if (seed == null) return;
|
|
|
|
|
if (seed.isProper(false) != null) return;
|
|
|
|
|
try {
|
|
|
|
|
nameLookupCache.remove(seed.getName());
|
|
|
|
|
seedActiveDB.remove(seed.hash);
|
|
|
|
|
seedPassiveDB.remove(seed.hash);
|
|
|
|
|
} catch (final Exception e) { serverLog.logWarning("yacySeedDB", "could not remove hash ("+ e.getClass() +"): "+ e.getMessage()); }
|
|
|
|
|
if (seed.isProper(false) != null) return;
|
|
|
|
|
//seed.put(yacySeed.LASTSEEN, yacyCore.shortFormatter.format(new Date(yacyCore.universalTime())));
|
|
|
|
|
try {
|
|
|
|
|
final HashMap<String, String> seedPropMap = seed.getMap();
|
|
|
|
|