Merge branch 'release-0.0.4'
[WoTNS.git] / src / main / java / net / pterodactylus / wotns / freenet / wot / IdentityManager.java
1 /*
2  * Sone - IdentityManager.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.wotns.freenet.wot;
19
20 import java.util.Collection;
21 import java.util.Collections;
22 import java.util.HashMap;
23 import java.util.HashSet;
24 import java.util.Map;
25 import java.util.Set;
26 import java.util.Map.Entry;
27 import java.util.logging.Level;
28 import java.util.logging.Logger;
29
30 import net.pterodactylus.util.logging.Logging;
31 import net.pterodactylus.util.service.AbstractService;
32 import net.pterodactylus.wotns.freenet.plugin.PluginException;
33
34 /**
35  * The identity manager takes care of loading and storing identities, their
36  * contexts, and properties. It does so in a way that does not expose errors via
37  * exceptions but it only logs them and tries to return sensible defaults.
38  * <p>
39  * It is also responsible for polling identities from the Web of Trust plugin
40  * and notifying registered {@link IdentityListener}s when {@link Identity}s and
41  * {@link OwnIdentity}s are discovered or disappearing.
42  *
43  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44  */
45 public class IdentityManager extends AbstractService {
46
47         /** Object used for synchronization. */
48         private final Object syncObject = new Object() {
49                 /* inner class for better lock names. */
50         };
51
52         /** The logger. */
53         private static final Logger logger = Logging.getLogger(IdentityManager.class);
54
55         /** The event manager. */
56         private final IdentityListenerManager identityListenerManager = new IdentityListenerManager();
57
58         /** The Web of Trust connector. */
59         private final WebOfTrustConnector webOfTrustConnector;
60
61         /** The context to filter for. */
62         private volatile String context;
63
64         /** The currently known own identities. */
65         /* synchronize access on syncObject. */
66         private Map<String, OwnIdentity> currentOwnIdentities = new HashMap<String, OwnIdentity>();
67
68         /** The currently trusted identities. */
69         private Map<OwnIdentity, Collection<Identity>> currentTrustedIdentities = new HashMap<OwnIdentity, Collection<Identity>>();
70
71         /**
72          * Creates a new identity manager.
73          *
74          * @param webOfTrustConnector
75          *            The Web of Trust connector
76          */
77         public IdentityManager(WebOfTrustConnector webOfTrustConnector) {
78                 super("Sone Identity Manager", false);
79                 this.webOfTrustConnector = webOfTrustConnector;
80         }
81
82         //
83         // LISTENER MANAGEMENT
84         //
85
86         /**
87          * Adds a listener for identity events.
88          *
89          * @param identityListener
90          *            The listener to add
91          */
92         public void addIdentityListener(IdentityListener identityListener) {
93                 identityListenerManager.addListener(identityListener);
94         }
95
96         /**
97          * Removes a listener for identity events.
98          *
99          * @param identityListener
100          *            The listener to remove
101          */
102         public void removeIdentityListener(IdentityListener identityListener) {
103                 identityListenerManager.removeListener(identityListener);
104         }
105
106         //
107         // ACCESSORS
108         //
109
110         /**
111          * Sets the context to filter own identities and trusted identities for.
112          *
113          * @param context
114          *            The context to filter for, or {@code null} to not filter
115          */
116         public void setContext(String context) {
117                 this.context = context;
118         }
119
120         /**
121          * Returns whether the Web of Trust plugin could be reached during the last
122          * try.
123          *
124          * @return {@code true} if the Web of Trust plugin is connected, {@code
125          *         false} otherwise
126          */
127         public boolean isConnected() {
128                 try {
129                         webOfTrustConnector.ping();
130                         return true;
131                 } catch (PluginException pe1) {
132                         /* not connected, ignore. */
133                         return false;
134                 }
135         }
136
137         /**
138          * Returns the own identity with the given ID.
139          *
140          * @param id
141          *            The ID of the own identity
142          * @return The own identity, or {@code null} if there is no such identity
143          */
144         public OwnIdentity getOwnIdentity(String id) {
145                 Set<OwnIdentity> allOwnIdentities = getAllOwnIdentities();
146                 for (OwnIdentity ownIdentity : allOwnIdentities) {
147                         if (ownIdentity.getId().equals(id)) {
148                                 return ownIdentity;
149                         }
150                 }
151                 return null;
152         }
153
154         /**
155          * Returns all own identities.
156          *
157          * @return All own identities
158          */
159         public Set<OwnIdentity> getAllOwnIdentities() {
160                 try {
161                         Set<OwnIdentity> ownIdentities = webOfTrustConnector.loadAllOwnIdentities();
162                         Map<String, OwnIdentity> newOwnIdentities = new HashMap<String, OwnIdentity>();
163                         for (OwnIdentity ownIdentity : ownIdentities) {
164                                 newOwnIdentities.put(ownIdentity.getId(), ownIdentity);
165                         }
166                         checkOwnIdentities(newOwnIdentities);
167                         return ownIdentities;
168                 } catch (WebOfTrustException wote1) {
169                         logger.log(Level.WARNING, "Could not load all own identities!", wote1);
170                         return Collections.emptySet();
171                 }
172         }
173
174         /**
175          * Returns all identities that are trusted by the given own identity. In
176          * addition to all non-own identities the given own identity is also
177          * returned.
178          *
179          * @param ownIdentity
180          *            The own identity to get the trusted identities for
181          * @return The identities trusted by the given own identity
182          */
183         public Set<Identity> getTrustedIdentities(OwnIdentity ownIdentity) {
184                 Set<Identity> identities = new HashSet<Identity>();
185                 if ((context == null) || ownIdentity.getContexts().contains(context)) {
186                         identities.add(ownIdentity);
187                 }
188                 try {
189                         Set<Identity> trustedIdentities = webOfTrustConnector.loadTrustedIdentities(ownIdentity, context);
190                         Map<String, Identity> newTrustedIdentities = new HashMap<String, Identity>();
191                         for (Identity trustedIdentity : trustedIdentities) {
192                                 newTrustedIdentities.put(trustedIdentity.getId(), trustedIdentity);
193                         }
194                         checkTrustedIdentities(ownIdentity, newTrustedIdentities);
195                         identities.addAll(trustedIdentities);
196                 } catch (WebOfTrustException wote1) {
197                         logger.log(Level.WARNING, String.format("Could not load all trusted identities for %s.", ownIdentity), wote1);
198                 }
199                 return identities;
200         }
201
202         //
203         // SERVICE METHODS
204         //
205
206         /**
207          * {@inheritDoc}
208          */
209         @Override
210         protected void serviceRun() {
211                 while (!shouldStop()) {
212                         Map<OwnIdentity, Map<String, Identity>> currentIdentities = new HashMap<OwnIdentity, Map<String, Identity>>();
213                         @SuppressWarnings("hiding")
214                         Map<String, OwnIdentity> currentOwnIdentities = new HashMap<String, OwnIdentity>();
215
216                         Set<OwnIdentity> ownIdentities = null;
217                         boolean identitiesLoaded = false;
218                         try {
219                                 /* get all identities with the wanted context from WoT. */
220                                 ownIdentities = webOfTrustConnector.loadAllOwnIdentities();
221
222                                 /* load trusted identities. */
223                                 for (OwnIdentity ownIdentity : ownIdentities) {
224                                         if ((context != null) && !ownIdentity.hasContext(context)) {
225                                                 continue;
226                                         }
227                                         currentOwnIdentities.put(ownIdentity.getId(), ownIdentity);
228
229                                         Set<Identity> trustedIdentities = webOfTrustConnector.loadTrustedIdentities(ownIdentity, context);
230                                         Map<String, Identity> identities = new HashMap<String, Identity>();
231                                         currentIdentities.put(ownIdentity, identities);
232                                         for (Identity identity : trustedIdentities) {
233                                                 identities.put(identity.getId(), identity);
234                                         }
235
236                                         /*
237                                          * add own identities, too, as long as the WoT doesn’t do
238                                          * that.
239                                          */
240                                         for (OwnIdentity additionalOwnIdentity : ownIdentities) {
241                                                 if (additionalOwnIdentity == ownIdentity) {
242                                                         continue;
243                                                 }
244                                                 if ((context != null) && !additionalOwnIdentity.hasContext(context)) {
245                                                         continue;
246                                                 }
247                                                 identities.put(additionalOwnIdentity.getId(), additionalOwnIdentity);
248                                         }
249                                 }
250                                 identitiesLoaded = true;
251                         } catch (WebOfTrustException wote1) {
252                                 logger.log(Level.WARNING, "WoT has disappeared!", wote1);
253                         }
254
255                         if (identitiesLoaded) {
256
257                                 /* check for changes. */
258                                 checkOwnIdentities(currentOwnIdentities);
259
260                                 /* now check for changes in remote identities. */
261                                 for (OwnIdentity ownIdentity : currentOwnIdentities.values()) {
262                                         checkTrustedIdentities(ownIdentity, currentIdentities.get(ownIdentity));
263                                 }
264                         }
265
266                         /* wait a minute before checking again. */
267                         sleep(60 * 1000);
268                 }
269         }
270
271         //
272         // PRIVATE METHODS
273         //
274
275         /**
276          * Checks the given new list of own identities for added or removed own
277          * identities, as compared to {@link #currentOwnIdentities}.
278          *
279          * @param newOwnIdentities
280          *            The new own identities
281          */
282         private void checkOwnIdentities(Map<String, OwnIdentity> newOwnIdentities) {
283                 synchronized (syncObject) {
284
285                         /* find removed own identities: */
286                         for (OwnIdentity oldOwnIdentity : currentOwnIdentities.values()) {
287                                 if (!newOwnIdentities.containsKey(oldOwnIdentity.getId())) {
288                                         identityListenerManager.fireOwnIdentityRemoved(oldOwnIdentity);
289                                         currentTrustedIdentities.remove(oldOwnIdentity);
290                                 }
291                         }
292
293                         /* find added own identities. */
294                         for (OwnIdentity currentOwnIdentity : newOwnIdentities.values()) {
295                                 if (!currentOwnIdentities.containsKey(currentOwnIdentity.getId())) {
296                                         identityListenerManager.fireOwnIdentityAdded(currentOwnIdentity);
297                                 }
298                         }
299
300                         currentOwnIdentities.clear();
301                         currentOwnIdentities.putAll(newOwnIdentities);
302                 }
303         }
304
305         /**
306          * Checks the given identities for changes since the last check.
307          *
308          * @param ownIdentity
309          *            The own identity trusting the given identities
310          * @param trustedIdentities
311          *            The trusted identities
312          */
313         private void checkTrustedIdentities(OwnIdentity ownIdentity, Map<String, Identity> trustedIdentities) {
314
315                 @SuppressWarnings("hiding")
316                 Map<String, Identity> currentTrustedIdentities = new HashMap<String, Identity>();
317                 synchronized (syncObject) {
318                         if (this.currentTrustedIdentities.containsKey(ownIdentity)) {
319                                 for (Identity identity : this.currentTrustedIdentities.get(ownIdentity)) {
320                                         currentTrustedIdentities.put(identity.getId(), identity);
321                                 }
322                         }
323                 }
324
325                 /* find new identities. */
326                 for (Identity currentIdentity : trustedIdentities.values()) {
327                         if (!currentTrustedIdentities.containsKey(currentIdentity.getId())) {
328                                 identityListenerManager.fireIdentityAdded(ownIdentity, currentIdentity);
329                         }
330                 }
331
332                 /* find removed identities. */
333                 for (Identity oldIdentity : currentTrustedIdentities.values()) {
334                         if (!trustedIdentities.containsKey(oldIdentity.getId())) {
335                                 identityListenerManager.fireIdentityRemoved(ownIdentity, oldIdentity);
336                         }
337                 }
338
339                 /* check for changes in the contexts. */
340                 for (Identity oldIdentity : currentTrustedIdentities.values()) {
341                         if (!trustedIdentities.containsKey(oldIdentity.getId())) {
342                                 continue;
343                         }
344                         Identity newIdentity = trustedIdentities.get(oldIdentity.getId());
345                         Set<String> oldContexts = oldIdentity.getContexts();
346                         Set<String> newContexts = newIdentity.getContexts();
347                         if (oldContexts.size() != newContexts.size()) {
348                                 identityListenerManager.fireIdentityUpdated(ownIdentity, newIdentity);
349                                 continue;
350                         }
351                         boolean changed = false;
352                         for (String oldContext : oldContexts) {
353                                 if (!newContexts.contains(oldContext)) {
354                                         identityListenerManager.fireIdentityUpdated(ownIdentity, newIdentity);
355                                         changed = true;
356                                         break;
357                                 }
358                         }
359                         if (changed) {
360                                 continue;
361                         }
362                         Map<String, String> oldProperties = oldIdentity.getProperties();
363                         Map<String, String> newProperties = newIdentity.getProperties();
364                         if (oldProperties.size() != newProperties.size()) {
365                                 identityListenerManager.fireIdentityUpdated(ownIdentity, newIdentity);
366                                 continue;
367                         }
368                         for (Entry<String, String> oldProperty : oldProperties.entrySet()) {
369                                 if (!newProperties.containsKey(oldProperty.getKey()) || !newProperties.get(oldProperty.getKey()).equals(oldProperty.getValue())) {
370                                         identityListenerManager.fireIdentityUpdated(ownIdentity, newIdentity);
371                                         break;
372                                 }
373                         }
374                 }
375
376                 synchronized (syncObject) {
377                         this.currentTrustedIdentities.put(ownIdentity, trustedIdentities.values());
378                 }
379
380         }
381
382 }