Set modification counter of new Sones to 1 so that it is inserted automatically.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
index 7498356..e59c8e6 100644 (file)
@@ -19,8 +19,10 @@ package net.pterodactylus.sone.core;
 
 import java.net.MalformedURLException;
 import java.util.Collections;
+import java.util.HashMap;
 import java.util.HashSet;
 import java.util.List;
+import java.util.Map;
 import java.util.Set;
 import java.util.UUID;
 import java.util.logging.Level;
@@ -55,6 +57,9 @@ public class Core extends AbstractService {
        /** The local Sones. */
        private final Set<Sone> localSones = new HashSet<Sone>();
 
+       /** Sone inserters. */
+       private final Map<Sone, SoneInserter> soneInserters = new HashMap<Sone, SoneInserter>();
+
        /**
         * Creates a new core.
         */
@@ -95,8 +100,8 @@ public class Core extends AbstractService {
         *
         * @return The local Sones
         */
-       public Set<Sone> localSones() {
-               return localSones;
+       public Set<Sone> getSones() {
+               return Collections.unmodifiableSet(localSones);
        }
 
        //
@@ -104,6 +109,20 @@ public class Core extends AbstractService {
        //
 
        /**
+        * Adds the given Sone.
+        *
+        * @param sone
+        *            The Sone to add
+        */
+       public void addSone(Sone sone) {
+               if (localSones.add(sone)) {
+                       SoneInserter soneInserter = new SoneInserter(freenetInterface, sone);
+                       soneInserter.start();
+                       soneInserters.put(sone, soneInserter);
+               }
+       }
+
+       /**
         * Creates a new Sone at a random location.
         *
         * @param name
@@ -137,15 +156,23 @@ public class Core extends AbstractService {
                if ((name == null) || (name.trim().length() == 0)) {
                        throw new SoneException(Type.INVALID_SONE_NAME);
                }
+               String finalRequestUri;
+               String finalInsertUri;
                if ((requestUri == null) || (insertUri == null)) {
                        String[] keyPair = freenetInterface.generateKeyPair();
-                       requestUri = keyPair[0];
-                       insertUri = keyPair[1];
+                       finalRequestUri = keyPair[0];
+                       finalInsertUri = keyPair[1];
+               } else {
+                       finalRequestUri = requestUri;
+                       finalInsertUri = insertUri;
                }
                Sone sone;
                try {
-                       logger.log(Level.FINEST, "Creating new Sone “%s” at %s (%s)…", new Object[] { name, requestUri, insertUri });
-                       sone = new Sone(UUID.randomUUID(), name, new FreenetURI(requestUri), new FreenetURI(insertUri));
+                       logger.log(Level.FINEST, "Creating new Sone “%s” at %s (%s)…", new Object[] { name, finalRequestUri, finalInsertUri });
+                       sone = new Sone(UUID.randomUUID(), name, new FreenetURI(finalRequestUri), new FreenetURI(finalInsertUri));
+                       /* set modification counter to 1 so it is inserted immediately. */
+                       sone.setModificationCounter(1);
+                       addSone(sone);
                } catch (MalformedURLException mue1) {
                        throw new SoneException(Type.INVALID_URI);
                }
@@ -160,6 +187,8 @@ public class Core extends AbstractService {
         *            The sone to delete
         */
        public void deleteSone(Sone sone) {
+               SoneInserter soneInserter = soneInserters.remove(sone);
+               soneInserter.stop();
                localSones.remove(sone);
        }
 
@@ -180,6 +209,10 @@ public class Core extends AbstractService {
         */
        @Override
        protected void serviceStop() {
+               /* stop all Sone inserters. */
+               for (SoneInserter soneInserter : soneInserters.values()) {
+                       soneInserter.stop();
+               }
                saveConfiguration();
        }
 
@@ -212,8 +245,11 @@ public class Core extends AbstractService {
                        String id = configuration.getStringValue("Sone/Name." + soneName + "/ID").getValue(null);
                        String insertUri = configuration.getStringValue("Sone/Name." + soneName + "/InsertURI").getValue(null);
                        String requestUri = configuration.getStringValue("Sone/Name." + soneName + "/RequestURI").getValue(null);
+                       long modificationCounter = configuration.getLongValue("Sone/Name." + soneName + "/ModificationCounter").getValue((long) 0);
                        try {
-                               localSones.add(new Sone(UUID.fromString(id), soneName, new FreenetURI(requestUri), new FreenetURI(insertUri)));
+                               Sone sone = new Sone(UUID.fromString(id), soneName, new FreenetURI(requestUri), new FreenetURI(insertUri));
+                               sone.setModificationCounter(modificationCounter);
+                               addSone(sone);
                        } catch (MalformedURLException mue1) {
                                logger.log(Level.WARNING, "Could not create Sone from requestUri (“" + requestUri + "”) and insertUri (“" + insertUri + "”)!", mue1);
                        }
@@ -244,6 +280,7 @@ public class Core extends AbstractService {
                                configuration.getStringValue("Sone/Name." + sone.getName() + "/ID").setValue(sone.getId());
                                configuration.getStringValue("Sone/Name." + sone.getName() + "/RequestURI").setValue(sone.getRequestUri().toString());
                                configuration.getStringValue("Sone/Name." + sone.getName() + "/InsertURI").setValue(sone.getInsertUri().toString());
+                               configuration.getLongValue("Sone/Name." + sone.getName() + "/ModificationCounter").setValue(sone.getModificationCounter());
                        }
                } catch (ConfigurationException ce1) {
                        logger.log(Level.WARNING, "Could not store configuration!", ce1);