* DataHelper: Speed up and annotate sortStructures()
* RouterInfo: - Don't cache byteified data by default, to save ~1.5 MB - Don't create empty peers Set, to save ~100KB
This commit is contained in:
@ -31,6 +31,7 @@ import java.util.ArrayList;
|
|||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.Comparator;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -1040,25 +1041,45 @@ public class DataHelper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sort based on the Hash of the DataStructure
|
* Sort based on the Hash of the DataStructure.
|
||||||
* Warning - relatively slow.
|
* Warning - relatively slow.
|
||||||
* Only used by RouterInfo
|
* WARNING - this sort order must be consistent network-wide, so while the order is arbitrary,
|
||||||
* Why? Just because it has to be consistent so signing will work?
|
* it cannot be changed.
|
||||||
|
* Why? Just because it has to be consistent so signing will work.
|
||||||
* How to spec as returning the same type as the param?
|
* How to spec as returning the same type as the param?
|
||||||
|
* DEPRECATED - Only used by RouterInfo.
|
||||||
*/
|
*/
|
||||||
public static List<? extends DataStructure> sortStructures(Collection<? extends DataStructure> dataStructures) {
|
public static List<? extends DataStructure> sortStructures(Collection<? extends DataStructure> dataStructures) {
|
||||||
if (dataStructures == null) return Collections.EMPTY_LIST;
|
if (dataStructures == null) return Collections.EMPTY_LIST;
|
||||||
ArrayList<DataStructure> rv = new ArrayList(dataStructures.size());
|
|
||||||
TreeMap<String, DataStructure> tm = new TreeMap();
|
// This used to use Hash.toString(), which is insane, since a change to toString()
|
||||||
for (DataStructure struct : dataStructures) {
|
// would break the whole network. Now use Hash.toBase64().
|
||||||
tm.put(struct.calculateHash().toString(), struct);
|
// Note that the Base64 sort order is NOT the same as the raw byte sort order,
|
||||||
}
|
// despite what you may read elsewhere.
|
||||||
for (DataStructure struct : tm.values()) {
|
|
||||||
rv.add(struct);
|
//ArrayList<DataStructure> rv = new ArrayList(dataStructures.size());
|
||||||
}
|
//TreeMap<String, DataStructure> tm = new TreeMap();
|
||||||
|
//for (DataStructure struct : dataStructures) {
|
||||||
|
// tm.put(struct.calculateHash().toString(), struct);
|
||||||
|
//}
|
||||||
|
//for (DataStructure struct : tm.values()) {
|
||||||
|
// rv.add(struct);
|
||||||
|
//}
|
||||||
|
ArrayList<DataStructure> rv = new ArrayList(dataStructures);
|
||||||
|
Collections.sort(rv, new DataStructureComparator());
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* See sortStructures() comments.
|
||||||
|
* @since 0.8.3
|
||||||
|
*/
|
||||||
|
private static class DataStructureComparator implements Comparator<DataStructure> {
|
||||||
|
public int compare(DataStructure l, DataStructure r) {
|
||||||
|
return l.calculateHash().toBase64().compareTo(r.calculateHash().toBase64());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* NOTE: formatDuration2() recommended in most cases for readability
|
* NOTE: formatDuration2() recommended in most cases for readability
|
||||||
*/
|
*/
|
||||||
|
@ -131,10 +131,13 @@ public class RouterAddress extends DataStructureImpl {
|
|||||||
&& DataHelper.eq(_transportStyle, addr.getTransportStyle());
|
&& DataHelper.eq(_transportStyle, addr.getTransportStyle());
|
||||||
}
|
}
|
||||||
|
|
||||||
/** the style should be sufficient, for speed */
|
/**
|
||||||
|
* Just use style and hashCode for speed (expiration is always null).
|
||||||
|
* If we add multiple addresses of the same style, this may need to be changed.
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return DataHelper.hashCode(_transportStyle);
|
return DataHelper.hashCode(_transportStyle) ^ _cost;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@ import java.io.IOException;
|
|||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
@ -39,7 +40,8 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
private RouterIdentity _identity;
|
private RouterIdentity _identity;
|
||||||
private volatile long _published;
|
private volatile long _published;
|
||||||
private final Set<RouterAddress> _addresses;
|
private final Set<RouterAddress> _addresses;
|
||||||
private final Set<Hash> _peers;
|
/** may be null to save memory, no longer final */
|
||||||
|
private Set<Hash> _peers;
|
||||||
private /* FIXME final FIXME */ Properties _options;
|
private /* FIXME final FIXME */ Properties _options;
|
||||||
private volatile boolean _validated;
|
private volatile boolean _validated;
|
||||||
private volatile boolean _isValid;
|
private volatile boolean _isValid;
|
||||||
@ -47,6 +49,10 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
private volatile byte _byteified[];
|
private volatile byte _byteified[];
|
||||||
private volatile int _hashCode;
|
private volatile int _hashCode;
|
||||||
private volatile boolean _hashCodeInitialized;
|
private volatile boolean _hashCodeInitialized;
|
||||||
|
/** should we cache the byte and string versions _byteified ? **/
|
||||||
|
private boolean _shouldCache;
|
||||||
|
/** maybe we should check if we are floodfill? */
|
||||||
|
private static final boolean CACHE_ALL = Runtime.getRuntime().maxMemory() > 128*1024*1024l;
|
||||||
|
|
||||||
public static final String PROP_NETWORK_ID = "netId";
|
public static final String PROP_NETWORK_ID = "netId";
|
||||||
public static final String PROP_CAPABILITIES = "caps";
|
public static final String PROP_CAPABILITIES = "caps";
|
||||||
@ -58,7 +64,6 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
|
|
||||||
public RouterInfo() {
|
public RouterInfo() {
|
||||||
_addresses = new HashSet(2);
|
_addresses = new HashSet(2);
|
||||||
_peers = new HashSet(0);
|
|
||||||
_options = new OrderedProperties();
|
_options = new OrderedProperties();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,6 +75,7 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
setPeers(old.getPeers());
|
setPeers(old.getPeers());
|
||||||
setOptions(old.getOptions());
|
setOptions(old.getOptions());
|
||||||
setSignature(old.getSignature());
|
setSignature(old.getSignature());
|
||||||
|
// copy over _byteified?
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getDate() {
|
public long getDate() {
|
||||||
@ -105,6 +111,11 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
public void setIdentity(RouterIdentity ident) {
|
public void setIdentity(RouterIdentity ident) {
|
||||||
_identity = ident;
|
_identity = ident;
|
||||||
resetCache();
|
resetCache();
|
||||||
|
// We only want to cache the bytes for our own RI, which is frequently written.
|
||||||
|
// To cache for all RIs doubles the RI memory usage.
|
||||||
|
// setIdentity() is only called when we are creating our own RI.
|
||||||
|
// Otherwise, the data is populated with readBytes().
|
||||||
|
_shouldCache = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -159,6 +170,8 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
* @deprecated Implemented here but unused elsewhere
|
* @deprecated Implemented here but unused elsewhere
|
||||||
*/
|
*/
|
||||||
public Set<Hash> getPeers() {
|
public Set<Hash> getPeers() {
|
||||||
|
if (_peers == null)
|
||||||
|
return Collections.EMPTY_SET;
|
||||||
return _peers;
|
return _peers;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -169,9 +182,15 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
* @deprecated Implemented here but unused elsewhere
|
* @deprecated Implemented here but unused elsewhere
|
||||||
*/
|
*/
|
||||||
public void setPeers(Set<Hash> peers) {
|
public void setPeers(Set<Hash> peers) {
|
||||||
|
if (peers == null || peers.isEmpty()) {
|
||||||
|
_peers = null;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (_peers == null)
|
||||||
|
_peers = new HashSet(2);
|
||||||
synchronized (_peers) {
|
synchronized (_peers) {
|
||||||
_peers.clear();
|
_peers.clear();
|
||||||
if (peers != null) _peers.addAll(peers);
|
_peers.addAll(peers);
|
||||||
}
|
}
|
||||||
resetCache();
|
resetCache();
|
||||||
}
|
}
|
||||||
@ -223,7 +242,6 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
if (_byteified != null) return _byteified;
|
if (_byteified != null) return _byteified;
|
||||||
if (_identity == null) throw new DataFormatException("Router identity isn't set? wtf!");
|
if (_identity == null) throw new DataFormatException("Router identity isn't set? wtf!");
|
||||||
if (_addresses == null) throw new DataFormatException("Router addressess isn't set? wtf!");
|
if (_addresses == null) throw new DataFormatException("Router addressess isn't set? wtf!");
|
||||||
if (_peers == null) throw new DataFormatException("Router peers isn't set? wtf!");
|
|
||||||
if (_options == null) throw new DataFormatException("Router options isn't set? wtf!");
|
if (_options == null) throw new DataFormatException("Router options isn't set? wtf!");
|
||||||
|
|
||||||
long before = Clock.getInstance().now();
|
long before = Clock.getInstance().now();
|
||||||
@ -239,6 +257,9 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
DataHelper.writeLong(out, 1, sz);
|
DataHelper.writeLong(out, 1, sz);
|
||||||
Collection<RouterAddress> addresses = _addresses;
|
Collection<RouterAddress> addresses = _addresses;
|
||||||
if (sz > 1)
|
if (sz > 1)
|
||||||
|
// WARNING this sort algorithm cannot be changed, as it must be consistent
|
||||||
|
// network-wide. The signature is not checked at readin time, but only
|
||||||
|
// later, and the addresses are stored in a Set, not a List.
|
||||||
addresses = (Collection<RouterAddress>) DataHelper.sortStructures(addresses);
|
addresses = (Collection<RouterAddress>) DataHelper.sortStructures(addresses);
|
||||||
for (RouterAddress addr : addresses) {
|
for (RouterAddress addr : addresses) {
|
||||||
addr.writeBytes(out);
|
addr.writeBytes(out);
|
||||||
@ -248,12 +269,14 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
// answer: they're always empty... they're a placeholder for one particular
|
// answer: they're always empty... they're a placeholder for one particular
|
||||||
// method of trusted links, which isn't implemented in the router
|
// method of trusted links, which isn't implemented in the router
|
||||||
// at the moment, and may not be later.
|
// at the moment, and may not be later.
|
||||||
// fixme to reduce objects - allow _peers == null
|
int psz = _peers == null ? 0 : _peers.size();
|
||||||
int psz = _peers.size();
|
|
||||||
DataHelper.writeLong(out, 1, psz);
|
DataHelper.writeLong(out, 1, psz);
|
||||||
if (psz > 0) {
|
if (psz > 0) {
|
||||||
Collection<Hash> peers = _peers;
|
Collection<Hash> peers = _peers;
|
||||||
if (psz > 1)
|
if (psz > 1)
|
||||||
|
// WARNING this sort algorithm cannot be changed, as it must be consistent
|
||||||
|
// network-wide. The signature is not checked at readin time, but only
|
||||||
|
// later, and the hashes are stored in a Set, not a List.
|
||||||
peers = (Collection<Hash>) DataHelper.sortStructures(peers);
|
peers = (Collection<Hash>) DataHelper.sortStructures(peers);
|
||||||
for (Hash peerHash : peers) {
|
for (Hash peerHash : peers) {
|
||||||
peerHash.writeBytes(out);
|
peerHash.writeBytes(out);
|
||||||
@ -266,7 +289,8 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
byte data[] = out.toByteArray();
|
byte data[] = out.toByteArray();
|
||||||
long after = Clock.getInstance().now();
|
long after = Clock.getInstance().now();
|
||||||
_log.debug("getBytes() took " + (after - before) + "ms");
|
_log.debug("getBytes() took " + (after - before) + "ms");
|
||||||
_byteified = data;
|
if (CACHE_ALL || _shouldCache)
|
||||||
|
_byteified = data;
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -466,10 +490,15 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
_addresses.add(address);
|
_addresses.add(address);
|
||||||
}
|
}
|
||||||
int numPeers = (int) DataHelper.readLong(in, 1);
|
int numPeers = (int) DataHelper.readLong(in, 1);
|
||||||
for (int i = 0; i < numPeers; i++) {
|
if (numPeers == 0) {
|
||||||
Hash peerIdentityHash = new Hash();
|
_peers = null;
|
||||||
peerIdentityHash.readBytes(in);
|
} else {
|
||||||
_peers.add(peerIdentityHash);
|
_peers = new HashSet(numPeers);
|
||||||
|
for (int i = 0; i < numPeers; i++) {
|
||||||
|
Hash peerIdentityHash = new Hash();
|
||||||
|
peerIdentityHash.readBytes(in);
|
||||||
|
_peers.add(peerIdentityHash);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_options = DataHelper.readProperties(in);
|
_options = DataHelper.readProperties(in);
|
||||||
_signature = new Signature();
|
_signature = new Signature();
|
||||||
@ -504,7 +533,7 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
&& _published == info.getPublished()
|
&& _published == info.getPublished()
|
||||||
&& DataHelper.eq(_addresses, info.getAddresses())
|
&& DataHelper.eq(_addresses, info.getAddresses())
|
||||||
&& DataHelper.eq(_options, info.getOptions())
|
&& DataHelper.eq(_options, info.getOptions())
|
||||||
&& DataHelper.eq(_peers, info.getPeers());
|
&& DataHelper.eq(getPeers(), info.getPeers());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -530,7 +559,7 @@ public class RouterInfo extends DatabaseEntry {
|
|||||||
RouterAddress addr = (RouterAddress) iter.next();
|
RouterAddress addr = (RouterAddress) iter.next();
|
||||||
buf.append("\n\t\tAddress: ").append(addr);
|
buf.append("\n\t\tAddress: ").append(addr);
|
||||||
}
|
}
|
||||||
Set peers = _peers; // getPeers()
|
Set peers = getPeers();
|
||||||
buf.append("\n\tPeers: #: ").append(peers.size());
|
buf.append("\n\tPeers: #: ").append(peers.size());
|
||||||
for (Iterator iter = peers.iterator(); iter.hasNext();) {
|
for (Iterator iter = peers.iterator(); iter.hasNext();) {
|
||||||
Hash hash = (Hash) iter.next();
|
Hash hash = (Hash) iter.next();
|
||||||
|
Reference in New Issue
Block a user