Add method to reload a known Sone.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
1 /*
2  * FreenetSone - Core.java - Copyright © 2010 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.core;
19
20 import java.net.MalformedURLException;
21 import java.util.ArrayList;
22 import java.util.Collection;
23 import java.util.Collections;
24 import java.util.Comparator;
25 import java.util.HashMap;
26 import java.util.HashSet;
27 import java.util.List;
28 import java.util.Map;
29 import java.util.Set;
30 import java.util.UUID;
31 import java.util.logging.Level;
32 import java.util.logging.Logger;
33
34 import net.pterodactylus.sone.core.SoneException.Type;
35 import net.pterodactylus.sone.data.Post;
36 import net.pterodactylus.sone.data.Profile;
37 import net.pterodactylus.sone.data.Reply;
38 import net.pterodactylus.sone.data.Sone;
39 import net.pterodactylus.util.config.Configuration;
40 import net.pterodactylus.util.config.ConfigurationException;
41 import net.pterodactylus.util.filter.Filter;
42 import net.pterodactylus.util.filter.Filters;
43 import net.pterodactylus.util.logging.Logging;
44 import net.pterodactylus.util.service.AbstractService;
45 import freenet.client.FetchResult;
46 import freenet.keys.FreenetURI;
47
48 /**
49  * The Sone core.
50  *
51  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
52  */
53 public class Core extends AbstractService {
54
55         /** The logger. */
56         private static final Logger logger = Logging.getLogger(Core.class);
57
58         /** The configuration. */
59         private Configuration configuration;
60
61         /** Interface to freenet. */
62         private FreenetInterface freenetInterface;
63
64         /** The Sone downloader. */
65         private SoneDownloader soneDownloader;
66
67         /** The local Sones. */
68         private final Set<Sone> localSones = new HashSet<Sone>();
69
70         /** Sone inserters. */
71         private final Map<Sone, SoneInserter> soneInserters = new HashMap<Sone, SoneInserter>();
72
73         /* various caches follow here. */
74
75         /** Cache for all known Sones. */
76         private final Map<String, Sone> soneCache = new HashMap<String, Sone>();
77
78         /** Cache for all known posts. */
79         private final Map<String, Post> postCache = new HashMap<String, Post>();
80
81         /** Cache for all known replies. */
82         private final Map<String, Reply> replyCache = new HashMap<String, Reply>();
83
84         /**
85          * Creates a new core.
86          */
87         public Core() {
88                 super("Sone Core");
89         }
90
91         //
92         // ACCESSORS
93         //
94
95         /**
96          * Sets the configuration of the core.
97          *
98          * @param configuration
99          *            The configuration of the core
100          * @return This core (for method chaining)
101          */
102         public Core configuration(Configuration configuration) {
103                 this.configuration = configuration;
104                 return this;
105         }
106
107         /**
108          * Sets the Freenet interface to use.
109          *
110          * @param freenetInterface
111          *            The Freenet interface to use
112          * @return This core (for method chaining)
113          */
114         public Core freenetInterface(FreenetInterface freenetInterface) {
115                 this.freenetInterface = freenetInterface;
116                 soneDownloader = new SoneDownloader(this, freenetInterface);
117                 soneDownloader.start();
118                 return this;
119         }
120
121         /**
122          * Returns the local Sones.
123          *
124          * @return The local Sones
125          */
126         public Set<Sone> getSones() {
127                 return Collections.unmodifiableSet(localSones);
128         }
129
130         /**
131          * Returns the Sone with the given ID, or an empty Sone that has been
132          * initialized with the given ID.
133          *
134          * @param soneId
135          *            The ID of the Sone
136          * @return The Sone
137          */
138         public Sone getSone(String soneId) {
139                 if (!soneCache.containsKey(soneId)) {
140                         Sone sone = new Sone(soneId);
141                         soneCache.put(soneId, sone);
142                 }
143                 return soneCache.get(soneId);
144         }
145
146         /**
147          * Returns all known sones.
148          *
149          * @return All known sones
150          */
151         public Collection<Sone> getKnownSones() {
152                 return soneCache.values();
153         }
154
155         /**
156          * Gets all known Sones that are not local Sones.
157          *
158          * @return All remote Sones
159          */
160         public Collection<Sone> getRemoteSones() {
161                 return Filters.filteredCollection(getKnownSones(), new Filter<Sone>() {
162
163                         @Override
164                         @SuppressWarnings("synthetic-access")
165                         public boolean filterObject(Sone object) {
166                                 return !localSones.contains(object);
167                         }
168                 });
169         }
170
171         /**
172          * Creates a new post and adds it to the given Sone.
173          *
174          * @param sone
175          *            The sone that creates the post
176          * @param text
177          *            The text of the post
178          * @return The created post
179          */
180         public Post createPost(Sone sone, String text) {
181                 return createPost(sone, System.currentTimeMillis(), text);
182         }
183
184         /**
185          * Creates a new post and adds it to the given Sone.
186          *
187          * @param sone
188          *            The Sone that creates the post
189          * @param time
190          *            The time of the post
191          * @param text
192          *            The text of the post
193          * @return The created post
194          */
195         public Post createPost(Sone sone, long time, String text) {
196                 Post post = getPost(UUID.randomUUID().toString()).setSone(sone).setTime(time).setText(text);
197                 sone.addPost(post);
198                 return post;
199         }
200
201         /**
202          * Creates a reply.
203          *
204          * @param sone
205          *            The Sone that posts the reply
206          * @param post
207          *            The post the reply refers to
208          * @param text
209          *            The text of the reply
210          * @return The created reply
211          */
212         public Reply createReply(Sone sone, Post post, String text) {
213                 return createReply(sone, post, System.currentTimeMillis(), text);
214         }
215
216         /**
217          * Creates a reply.
218          *
219          * @param sone
220          *            The Sone that posts the reply
221          * @param post
222          *            The post the reply refers to
223          * @param time
224          *            The time of the post
225          * @param text
226          *            The text of the reply
227          * @return The created reply
228          */
229         public Reply createReply(Sone sone, Post post, long time, String text) {
230                 Reply reply = getReply(UUID.randomUUID().toString()).setSone(sone).setPost(post).setTime(time).setText(text);
231                 sone.addReply(reply);
232                 return reply;
233         }
234
235         //
236         // ACTIONS
237         //
238
239         /**
240          * Adds a Sone to watch for updates. The Sone needs to be completely
241          * initialized.
242          *
243          * @param sone
244          *            The Sone to watch for updates
245          */
246         public void addSone(Sone sone) {
247                 soneCache.put(sone.getId(), sone);
248                 if (!localSones.contains(sone)) {
249                         soneDownloader.addSone(sone);
250                 }
251         }
252
253         /**
254          * Adds the given Sone.
255          *
256          * @param sone
257          *            The Sone to add
258          */
259         public void addLocalSone(Sone sone) {
260                 if (localSones.add(sone)) {
261                         SoneInserter soneInserter = new SoneInserter(freenetInterface, sone);
262                         soneInserter.start();
263                         soneInserters.put(sone, soneInserter);
264                 }
265         }
266
267         /**
268          * Creates a new Sone at a random location.
269          *
270          * @param name
271          *            The name of the Sone
272          * @return The created Sone
273          * @throws SoneException
274          *             if a Sone error occurs
275          */
276         public Sone createSone(String name) throws SoneException {
277                 return createSone(name, null, null);
278         }
279
280         /**
281          * Creates a new Sone at the given location. If one of {@code requestUri} or
282          * {@code insertUrI} is {@code null}, the Sone is created at a random
283          * location.
284          *
285          * @param name
286          *            The name of the Sone
287          * @param requestUri
288          *            The request URI of the Sone, or {@link NullPointerException}
289          *            to create a Sone at a random location
290          * @param insertUri
291          *            The insert URI of the Sone, or {@code null} to create a Sone
292          *            at a random location
293          * @return The created Sone
294          * @throws SoneException
295          *             if a Sone error occurs
296          */
297         public Sone createSone(String name, String requestUri, String insertUri) throws SoneException {
298                 if ((name == null) || (name.trim().length() == 0)) {
299                         throw new SoneException(Type.INVALID_SONE_NAME);
300                 }
301                 String finalRequestUri;
302                 String finalInsertUri;
303                 if ((requestUri == null) || (insertUri == null)) {
304                         String[] keyPair = freenetInterface.generateKeyPair();
305                         finalRequestUri = keyPair[0];
306                         finalInsertUri = keyPair[1];
307                 } else {
308                         finalRequestUri = requestUri;
309                         finalInsertUri = insertUri;
310                 }
311                 Sone sone;
312                 try {
313                         logger.log(Level.FINEST, "Creating new Sone “%s” at %s (%s)…", new Object[] { name, finalRequestUri, finalInsertUri });
314                         sone = getSone(UUID.randomUUID().toString()).setName(name).setRequestUri(new FreenetURI(finalRequestUri).setKeyType("USK").setDocName("Sone-" + name)).setInsertUri(new FreenetURI(finalInsertUri).setKeyType("USK").setDocName("Sone-" + name));
315                         sone.setProfile(new Profile());
316                         /* set modification counter to 1 so it is inserted immediately. */
317                         sone.setModificationCounter(1);
318                         addLocalSone(sone);
319                 } catch (MalformedURLException mue1) {
320                         throw new SoneException(Type.INVALID_URI);
321                 }
322                 return sone;
323         }
324
325         /**
326          * Loads the Sone from the given request URI. The fetching of the data is
327          * performed in a new thread so this method returns immediately.
328          *
329          * @param requestUri
330          *            The request URI to load the Sone from
331          */
332         public void loadSone(final String requestUri) {
333                 new Thread(new Runnable() {
334
335                         @Override
336                         @SuppressWarnings("synthetic-access")
337                         public void run() {
338                                 try {
339                                         FreenetURI realRequestUri = new FreenetURI(requestUri).setMetaString(new String[] { "sone.xml" });
340                                         FetchResult fetchResult = freenetInterface.fetchUri(realRequestUri);
341                                         Sone parsedSone = soneDownloader.parseSone(null, fetchResult, realRequestUri);
342                                         if (parsedSone != null) {
343                                                 addSone(parsedSone);
344                                         }
345                                 } catch (MalformedURLException mue1) {
346                                         logger.log(Level.INFO, "Could not create URI from “" + requestUri + "”.", mue1);
347                                 }
348                         }
349                 }, "Sone Downloader").start();
350         }
351
352         /**
353          * Loads and updates the given Sone.
354          *
355          * @param sone
356          *            The Sone to load
357          */
358         public void loadSone(final Sone sone) {
359                 new Thread(new Runnable() {
360
361                         @Override
362                         @SuppressWarnings("synthetic-access")
363                         public void run() {
364                                 FreenetURI realRequestUri = sone.getRequestUri().setMetaString(new String[] { "sone.xml" });
365                                 FetchResult fetchResult = freenetInterface.fetchUri(realRequestUri);
366                                 Sone parsedSone = soneDownloader.parseSone(sone, fetchResult, realRequestUri);
367                                 if (parsedSone != null) {
368                                         addSone(parsedSone);
369                                 }
370                         }
371                 }, "Sone Downloader").start();
372         }
373
374         /**
375          * Deletes the given Sone from this plugin instance.
376          *
377          * @param sone
378          *            The sone to delete
379          */
380         public void deleteSone(Sone sone) {
381                 SoneInserter soneInserter = soneInserters.remove(sone);
382                 soneInserter.stop();
383                 localSones.remove(sone);
384         }
385
386         /**
387          * Returns the post with the given ID. If no post exists yet with the given
388          * ID, a new post is returned.
389          *
390          * @param postId
391          *            The ID of the post
392          * @return The post
393          */
394         public Post getPost(String postId) {
395                 if (!postCache.containsKey(postId)) {
396                         postCache.put(postId, new Post(postId));
397                 }
398                 return postCache.get(postId);
399         }
400
401         /**
402          * Returns the reply with the given ID. If no reply exists yet with the
403          * given ID, a new reply is returned.
404          *
405          * @param replyId
406          *            The ID of the reply
407          * @return The reply
408          */
409         public Reply getReply(String replyId) {
410                 if (!replyCache.containsKey(replyId)) {
411                         replyCache.put(replyId, new Reply(replyId));
412                 }
413                 return replyCache.get(replyId);
414         }
415
416         /**
417          * Gets all replies to the given post, sorted by date, oldest first.
418          *
419          * @param post
420          *            The post the replies refer to
421          * @return The sorted list of replies for the post
422          */
423         public List<Reply> getReplies(Post post) {
424                 List<Reply> replies = new ArrayList<Reply>();
425                 for (Reply reply : replyCache.values()) {
426                         if (reply.getPost().equals(post)) {
427                                 replies.add(reply);
428                         }
429                 }
430                 Collections.sort(replies, new Comparator<Reply>() {
431
432                         /**
433                          * {@inheritDoc}
434                          */
435                         @Override
436                         public int compare(Reply leftReply, Reply rightReply) {
437                                 return (int) Math.max(Integer.MIN_VALUE, Math.min(Integer.MAX_VALUE, leftReply.getTime() - rightReply.getTime()));
438                         }
439                 });
440                 return replies;
441         }
442
443         //
444         // SERVICE METHODS
445         //
446
447         /**
448          * {@inheritDoc}
449          */
450         @Override
451         protected void serviceStart() {
452                 loadConfiguration();
453         }
454
455         /**
456          * {@inheritDoc}
457          */
458         @Override
459         protected void serviceStop() {
460                 soneDownloader.stop();
461                 /* stop all Sone inserters. */
462                 for (SoneInserter soneInserter : soneInserters.values()) {
463                         soneInserter.stop();
464                 }
465                 saveConfiguration();
466         }
467
468         //
469         // PRIVATE METHODS
470         //
471
472         /**
473          * Loads the configuration.
474          */
475         private void loadConfiguration() {
476                 logger.entering(Core.class.getName(), "loadConfiguration()");
477
478                 /* parse local Sones. */
479                 logger.log(Level.INFO, "Loading Sones…");
480                 int soneId = 0;
481                 do {
482                         String sonePrefix = "Sone/Sone." + soneId++;
483                         String id = configuration.getStringValue(sonePrefix + "/ID").getValue(null);
484                         if (id == null) {
485                                 break;
486                         }
487                         String name = configuration.getStringValue(sonePrefix + "/Name").getValue(null);
488                         String insertUri = configuration.getStringValue(sonePrefix + "/InsertURI").getValue(null);
489                         String requestUri = configuration.getStringValue(sonePrefix + "/RequestURI").getValue(null);
490                         long modificationCounter = configuration.getLongValue(sonePrefix + "/ModificationCounter").getValue((long) 0);
491                         String firstName = configuration.getStringValue(sonePrefix + "/Profile/FirstName").getValue(null);
492                         String middleName = configuration.getStringValue(sonePrefix + "/Profile/MiddleName").getValue(null);
493                         String lastName = configuration.getStringValue(sonePrefix + "/Profile/LastName").getValue(null);
494                         try {
495                                 Profile profile = new Profile();
496                                 profile.setFirstName(firstName);
497                                 profile.setMiddleName(middleName);
498                                 profile.setLastName(lastName);
499                                 Sone sone = getSone(id).setName(name).setRequestUri(new FreenetURI(requestUri)).setInsertUri(new FreenetURI(insertUri));
500                                 sone.setProfile(profile);
501                                 int postId = 0;
502                                 do {
503                                         String postPrefix = sonePrefix + "/Post." + postId++;
504                                         id = configuration.getStringValue(postPrefix + "/ID").getValue(null);
505                                         if (id == null) {
506                                                 break;
507                                         }
508                                         long time = configuration.getLongValue(postPrefix + "/Time").getValue(null);
509                                         String text = configuration.getStringValue(postPrefix + "/Text").getValue(null);
510                                         Post post = getPost(id).setSone(sone).setTime(time).setText(text);
511                                         sone.addPost(post);
512                                 } while (true);
513                                 int replyCounter = 0;
514                                 do {
515                                         String replyPrefix = sonePrefix + "/Reply." + replyCounter++;
516                                         String replyId = configuration.getStringValue(replyPrefix + "/ID").getValue(null);
517                                         if (replyId == null) {
518                                                 break;
519                                         }
520                                         Post replyPost = getPost(configuration.getStringValue(replyPrefix + "/Post").getValue(null));
521                                         long replyTime = configuration.getLongValue(replyPrefix + "/Time").getValue(null);
522                                         String replyText = configuration.getStringValue(replyPrefix + "/Text").getValue(null);
523                                         Reply reply = getReply(replyId).setSone(sone).setPost(replyPost).setTime(replyTime).setText(replyText);
524                                         sone.addReply(reply);
525                                 } while (true);
526
527                                 /* load friends. */
528                                 int friendCounter = 0;
529                                 while (true) {
530                                         String friendPrefix = sonePrefix + "/Friend." + friendCounter++;
531                                         String friendId = configuration.getStringValue(friendPrefix + "/ID").getValue(null);
532                                         if (friendId == null) {
533                                                 break;
534                                         }
535                                         Sone friendSone = getSone(friendId);
536                                         String friendKey = configuration.getStringValue(friendPrefix + "/Key").getValue(null);
537                                         String friendName = configuration.getStringValue(friendPrefix + "/Name").getValue(null);
538                                         friendSone.setRequestUri(new FreenetURI(friendKey)).setName(friendName);
539                                         loadSone(friendKey);
540                                         sone.addFriend(friendSone);
541                                 }
542
543                                 sone.setModificationCounter(modificationCounter);
544                                 addLocalSone(sone);
545                         } catch (MalformedURLException mue1) {
546                                 logger.log(Level.WARNING, "Could not create Sone from requestUri (“" + requestUri + "”) and insertUri (“" + insertUri + "”)!", mue1);
547                         }
548                 } while (true);
549                 logger.log(Level.INFO, "Loaded %d Sones.", getSones().size());
550
551                 logger.exiting(Core.class.getName(), "loadConfiguration()");
552         }
553
554         /**
555          * Saves the configuraiton.
556          */
557         private void saveConfiguration() {
558                 Set<Sone> sones = getSones();
559                 logger.log(Level.INFO, "Storing %d Sones…", sones.size());
560                 try {
561                         /* store all Sones. */
562                         int soneId = 0;
563                         for (Sone sone : localSones) {
564                                 String sonePrefix = "Sone/Sone." + soneId++;
565                                 configuration.getStringValue(sonePrefix + "/ID").setValue(sone.getId());
566                                 configuration.getStringValue(sonePrefix + "/Name").setValue(sone.getName());
567                                 configuration.getStringValue(sonePrefix + "/RequestURI").setValue(sone.getRequestUri().toString());
568                                 configuration.getStringValue(sonePrefix + "/InsertURI").setValue(sone.getInsertUri().toString());
569                                 configuration.getLongValue(sonePrefix + "/ModificationCounter").setValue(sone.getModificationCounter());
570                                 Profile profile = sone.getProfile();
571                                 configuration.getStringValue(sonePrefix + "/Profile/FirstName").setValue(profile.getFirstName());
572                                 configuration.getStringValue(sonePrefix + "/Profile/MiddleName").setValue(profile.getMiddleName());
573                                 configuration.getStringValue(sonePrefix + "/Profile/LastName").setValue(profile.getLastName());
574                                 int postId = 0;
575                                 for (Post post : sone.getPosts()) {
576                                         String postPrefix = sonePrefix + "/Post." + postId++;
577                                         configuration.getStringValue(postPrefix + "/ID").setValue(post.getId());
578                                         configuration.getLongValue(postPrefix + "/Time").setValue(post.getTime());
579                                         configuration.getStringValue(postPrefix + "/Text").setValue(post.getText());
580                                 }
581                                 /* write null ID as terminator. */
582                                 configuration.getStringValue(sonePrefix + "/Post." + postId + "/ID").setValue(null);
583
584                                 int replyId = 0;
585                                 for (Reply reply : sone.getReplies()) {
586                                         String replyPrefix = sonePrefix + "/Reply." + replyId++;
587                                         configuration.getStringValue(replyPrefix + "/ID").setValue(reply.getId());
588                                         configuration.getStringValue(replyPrefix + "/Post").setValue(reply.getPost().getId());
589                                         configuration.getLongValue(replyPrefix + "/Time").setValue(reply.getTime());
590                                         configuration.getStringValue(replyPrefix + "/Text").setValue(reply.getText());
591                                 }
592                                 /* write null ID as terminator. */
593                                 configuration.getStringValue(sonePrefix + "/Reply." + replyId + "/ID").setValue(null);
594
595                                 int friendId = 0;
596                                 for (Sone friend : sone.getFriends()) {
597                                         String friendPrefix = sonePrefix + "/Friend." + friendId++;
598                                         configuration.getStringValue(friendPrefix + "/ID").setValue(friend.getId());
599                                         configuration.getStringValue(friendPrefix + "/Key").setValue(friend.getRequestUri().toString());
600                                         configuration.getStringValue(friendPrefix + "/Name").setValue(friend.getName());
601                                 }
602                                 /* write null ID as terminator. */
603                                 configuration.getStringValue(sonePrefix + "/Friend." + friendId + "/ID").setValue(null);
604
605                         }
606                         /* write null ID as terminator. */
607                         configuration.getStringValue("Sone/Sone." + soneId + "/ID").setValue(null);
608
609                 } catch (ConfigurationException ce1) {
610                         logger.log(Level.WARNING, "Could not store configuration!", ce1);
611                 }
612         }
613
614 }