From bb29e8bdcfb1a9be26bb6bb40d73f019dccfebaf Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 4 Nov 2010 22:43:12 +0100 Subject: [PATCH] Add method that loads and updates a local Sone. --- .../java/net/pterodactylus/sone/core/Core.java | 110 +++++++++++++++++++++ 1 file changed, 110 insertions(+) diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index 16d4a2c..e4814fe 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -577,6 +577,116 @@ public class Core implements IdentityListener { } /** + * Loads and updates the given Sone from the configuration. If any error is + * encountered, loading is aborted and the given Sone is not changed. + * + * @param sone + * The Sone to load and update + */ + public void loadSone(Sone sone) { + if (!isLocalSone(sone)) { + logger.log(Level.FINE, "Tried to load non-local Sone: %s", sone); + return; + } + + /* load Sone. */ + String sonePrefix = "Sone/" + sone.getId(); + long soneTime = configuration.getLongValue(sonePrefix + "/Time").getValue((long) 0); + long soneModificationCounter = configuration.getLongValue(sonePrefix + "/ModificationCounter").getValue((long) 0); + + /* load profile. */ + Profile profile = new Profile(); + profile.setFirstName(configuration.getStringValue(sonePrefix + "/Profile/FirstName").getValue(null)); + profile.setMiddleName(configuration.getStringValue(sonePrefix + "/Profile/MiddleName").getValue(null)); + profile.setLastName(configuration.getStringValue(sonePrefix + "/Profile/LastName").getValue(null)); + profile.setBirthDay(configuration.getIntValue(sonePrefix + "/Profile/BirthDay").getValue(null)); + profile.setBirthMonth(configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").getValue(null)); + profile.setBirthYear(configuration.getIntValue(sonePrefix + "/Profile/BirthYear").getValue(null)); + + /* load posts. */ + Set posts = new HashSet(); + while (true) { + String postPrefix = sonePrefix + "/Posts/" + posts.size(); + String postId = configuration.getStringValue(postPrefix + "/ID").getValue(null); + if (postId == null) { + break; + } + long postTime = configuration.getLongValue(postPrefix + "/Time").getValue((long) 0); + String postText = configuration.getStringValue(postPrefix + "/Text").getValue(null); + if ((postTime == 0) || (postText == null)) { + logger.log(Level.WARNING, "Invalid post found, aborting load!"); + return; + } + posts.add(getPost(postId).setSone(sone).setTime(postTime).setText(postText)); + } + + /* load replies. */ + Set replies = new HashSet(); + while (true) { + String replyPrefix = sonePrefix + "/Replies/" + replies.size(); + String replyId = configuration.getStringValue(replyPrefix + "/ID").getValue(null); + if (replyId == null) { + break; + } + String postId = configuration.getStringValue(replyPrefix + "/Post/ID").getValue(null); + long replyTime = configuration.getLongValue(replyPrefix + "/Time").getValue((long) 0); + String replyText = configuration.getStringValue(replyPrefix + "/Text").getValue(null); + if ((postId == null) || (replyTime == 0) || (replyText == null)) { + logger.log(Level.WARNING, "Invalid reply found, aborting load!"); + return; + } + replies.add(getReply(replyId).setSone(sone).setPost(getPost(postId)).setTime(replyTime).setText(replyText)); + } + + /* load post likes. */ + Set likedPostIds = new HashSet(); + while (true) { + String likedPostId = configuration.getStringValue(sonePrefix + "/Likes/Post/" + likedPostIds.size() + "/ID").getValue(null); + if (likedPostId == null) { + break; + } + likedPostIds.add(likedPostId); + } + + /* load reply likes. */ + Set likedReplyIds = new HashSet(); + while (true) { + String likedReplyId = configuration.getStringValue(sonePrefix + "/Likes/Reply/" + likedReplyIds.size() + "/ID").getValue(null); + if (likedReplyId == null) { + break; + } + likedReplyIds.add(likedReplyId); + } + + /* load friends. */ + Set friends = new HashSet(); + while (true) { + String friendId = configuration.getStringValue(sonePrefix + "/Friends/" + friends.size() + "/ID").getValue(null); + if (friendId == null) { + break; + } + Boolean friendLocal = configuration.getBooleanValue(sonePrefix + "/Friends/" + friends.size() + "/Local").getValue(null); + if (friendLocal == null) { + logger.log(Level.WARNING, "Invalid friend found, aborting load!"); + return; + } + friends.add(friendLocal ? getLocalSone(friendId) : getRemoteSone(friendId)); + } + + /* if we’re still here, Sone was loaded successfully. */ + synchronized (sone) { + sone.setTime(soneTime); + sone.setProfile(profile); + sone.setPosts(posts); + sone.setReplies(replies); + sone.setLikePostIds(likedPostIds); + sone.setLikeReplyIds(likedReplyIds); + sone.setFriends(friends); + sone.setModificationCounter(soneModificationCounter); + } + } + + /** * Saves the given Sone. This will persist all local settings for the given * Sone, such as the friends list and similar, private options. * -- 2.7.4