use less ram on dht-URL transfer by not using a URIMetadataNode[]

pull/1/head
sixcooler 11 years ago
parent c87cdfca2e
commit 5a917e13c6

@ -1412,21 +1412,7 @@ public final class Protocol {
return null; return null;
} // all url's known } // all url's known
// extract the urlCache from the result; this is io-intensive; in = transferURL(targetSeed, uhs, urlRefs, segment, gzipBody, timeout);
// other transmissions should not be started as long as this is running
final URIMetadataNode[] urls = new URIMetadataNode[uhs.length];
byte[] key;
metadataRetrievalRunning.incrementAndGet();
for (int i = 0; i < uhs.length; i++) {
key = ASCII.getBytes(uhs[i]);
if (urlRefs.has(key)) urls[i] = segment.fulltext().getMetadata(key);
if (urls[i] == null) {
if (Network.log.isFine()) Network.log.fine("DEBUG transferIndex: requested url hash '" + uhs[i] + "', unknownURL='" + uhss + "'");
}
}
metadataRetrievalRunning.decrementAndGet();
in = transferURL(targetSeed, urls, gzipBody, timeout);
if ( in == null ) { if ( in == null ) {
return "no connection from transferURL"; return "no connection from transferURL";
@ -1520,7 +1506,9 @@ public final class Protocol {
private static Map<String, String> transferURL( private static Map<String, String> transferURL(
final Seed targetSeed, final Seed targetSeed,
final URIMetadataNode[] urls, final String[] uhs,
final HandleSet urlRefs,
final Segment segment,
boolean gzipBody, boolean gzipBody,
final int timeout) { final int timeout) {
// this post a message to the remote message board // this post a message to the remote message board
@ -1539,11 +1527,22 @@ public final class Protocol {
gzipBody = false; gzipBody = false;
} }
// extract the urlCache from the result; this is io-intensive;
// other transmissions should not be started as long as this is running
byte[] key;
URIMetadataNode url;
String resource; String resource;
int urlc = 0; int urlc = 0;
int urlPayloadSize = 0; int urlPayloadSize = 0;
for ( final URIMetadataNode url : urls ) { metadataRetrievalRunning.incrementAndGet();
if ( url != null ) { for (int i = 0; i < uhs.length; i++) {
key = ASCII.getBytes(uhs[i]);
if (urlRefs.has(key)) {
url = segment.fulltext().getMetadata(key);
if (url == null) {
if (Network.log.isFine()) Network.log.fine("DEBUG transferIndex: requested url hash '" + uhs[i] + "'");
continue;
}
resource = url.toString(); resource = url.toString();
//System.out.println("*** DEBUG resource = " + resource); //System.out.println("*** DEBUG resource = " + resource);
if ( resource != null && resource.indexOf(0) == -1 ) { if ( resource != null && resource.indexOf(0) == -1 ) {
@ -1553,6 +1552,8 @@ public final class Protocol {
} }
} }
} }
metadataRetrievalRunning.decrementAndGet();
try { try {
parts.put("urlc", UTF8.StringBody(Integer.toString(urlc))); parts.put("urlc", UTF8.StringBody(Integer.toString(urlc)));
// final byte[] content = HTTPConnector.getConnector(MultiProtocolURI.yacybotUserAgent).post(new MultiProtocolURI("http://" + address + "/yacy/transferURL.html"), timeout, targetSeed.getHexHash() + ".yacyh", parts, gzipBody); // final byte[] content = HTTPConnector.getConnector(MultiProtocolURI.yacybotUserAgent).post(new MultiProtocolURI("http://" + address + "/yacy/transferURL.html"), timeout, targetSeed.getHexHash() + ".yacyh", parts, gzipBody);

Loading…
Cancel
Save