* Sone
*/
public Sone getSone(String id) {
- Sone sone = getRemoteSone(id);
- if (sone != null) {
- return sone;
+ if (isLocalSone(id)) {
+ return getLocalSone(id);
}
- sone = getLocalSone(id);
- return sone;
+ return getRemoteSone(id);
}
/**
}
/**
+ * Returns whether the given ID is the ID of a local Sone.
+ *
+ * @param id
+ * The Sone ID to check for its locality
+ * @return {@code true} if the given ID is a local Sone, {@code false}
+ * otherwise
+ */
+ public boolean isLocalSone(String id) {
+ synchronized (localSones) {
+ return localSones.containsKey(id);
+ }
+ }
+
+ /**
* Returns all local Sones.
*
* @return All local Sones
*
* @param id
* The ID of the Sone to get
- * @return The Sone, or {@code null} if there is no Sone with the given ID
+ * @return The Sone with the given ID
*/
public Sone getLocalSone(String id) {
synchronized (localSones) {
- return localSones.get(id);
+ Sone sone = localSones.get(id);
+ if (sone == null) {
+ sone = new Sone(id);
+ localSones.put(id, sone);
+ }
+ return sone;
}
}
*
* @param id
* The ID of the remote Sone to get
- * @return The Sone, or {@code null} if there is no such Sone
+ * @return The Sone with the given ID
*/
public Sone getRemoteSone(String id) {
synchronized (remoteSones) {
- return remoteSones.get(id);
+ Sone sone = remoteSones.get(id);
+ if (sone == null) {
+ sone = new Sone(id);
+ remoteSones.put(id, sone);
+ }
+ return sone;
}
}
}
final Sone sone;
try {
- sone = new Sone(ownIdentity).setInsertUri(new FreenetURI(ownIdentity.getInsertUri())).setRequestUri(new FreenetURI(ownIdentity.getRequestUri()));
+ sone = getLocalSone(ownIdentity.getId()).setIdentity(ownIdentity).setInsertUri(new FreenetURI(ownIdentity.getInsertUri())).setRequestUri(new FreenetURI(ownIdentity.getRequestUri()));
sone.setLatestEdition(Numbers.safeParseLong(ownIdentity.getProperty("Sone.LatestEdition"), (long) 0));
} catch (MalformedURLException mue1) {
logger.log(Level.SEVERE, "Could not convert the Identity’s URIs to Freenet URIs: " + ownIdentity.getInsertUri() + ", " + ownIdentity.getRequestUri(), mue1);
/** The logger. */
private static final Logger logger = Logging.getLogger(Sone.class);
+ /** The ID of this Sone. */
+ private final String id;
+
/** The identity of this Sone. */
- private final Identity identity;
+ private Identity identity;
/** The URI under which the Sone is stored in Freenet. */
private volatile FreenetURI requestUri;
/**
* Creates a new Sone.
*
- * @param identity
- * The identity of the Sone
+ * @param id
+ * The ID of the Sone
*/
- public Sone(Identity identity) {
- this.identity = identity;
+ public Sone(String id) {
+ this.id = id;
}
//
* @return The identity of this Sone
*/
public String getId() {
- return identity.getId();
+ return id;
}
/**
}
/**
+ * Sets the identity of this Sone. The {@link Identity#getId() ID} of the
+ * identity has to match this Sone’s {@link #getId()}.
+ *
+ * @param identity
+ * The identity of this Sone
+ * @return This Sone (for method chaining)
+ * @throws IllegalArgumentException
+ * if the ID of the identity does not match this Sone’s ID
+ */
+ public Sone setIdentity(Identity identity) throws IllegalArgumentException {
+ if (!identity.getId().equals(id)) {
+ throw new IllegalArgumentException("Identity’s ID does not match Sone’s ID!");
+ }
+ this.identity = identity;
+ return this;
+ }
+
+ /**
* Returns the name of this Sone.
*
* @return The name of this Sone
*/
public String getName() {
- return identity.getNickname();
+ return (identity != null) ? identity.getNickname() : null;
}
/**
*/
@Override
public int hashCode() {
- return identity.getId().hashCode();
+ return id.hashCode();
}
/**
if (!(object instanceof Sone)) {
return false;
}
- return ((Sone) object).identity.getId().equals(identity.getId());
+ return ((Sone) object).id.equals(id);
}
/**