2 * Sone - IdentityManagerImpl.java - Copyright © 2010–2016 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.freenet.wot;
20 import static java.util.logging.Logger.getLogger;
22 import java.util.Collection;
23 import java.util.HashMap;
24 import java.util.HashSet;
27 import java.util.logging.Level;
28 import java.util.logging.Logger;
30 import net.pterodactylus.sone.freenet.plugin.PluginException;
31 import net.pterodactylus.util.service.AbstractService;
33 import com.google.common.collect.Sets;
34 import com.google.common.eventbus.EventBus;
35 import com.google.inject.Inject;
36 import com.google.inject.Singleton;
39 * The identity manager takes care of loading and storing identities, their
40 * contexts, and properties. It does so in a way that does not expose errors via
41 * exceptions but it only logs them and tries to return sensible defaults.
43 * It is also responsible for polling identities from the Web of Trust plugin
44 * and sending events to the {@link EventBus} when {@link Identity}s and
45 * {@link OwnIdentity}s are discovered or disappearing.
47 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
50 public class IdentityManagerImpl extends AbstractService implements IdentityManager {
53 private static final Logger logger = getLogger(IdentityManagerImpl.class.getName());
56 private final EventBus eventBus;
58 private final IdentityLoader identityLoader;
60 /** The Web of Trust connector. */
61 private final WebOfTrustConnector webOfTrustConnector;
63 /** The currently known own identities. */
64 private final Set<OwnIdentity> currentOwnIdentities = Sets.newHashSet();
67 * Creates a new identity manager.
71 * @param webOfTrustConnector
72 * The Web of Trust connector
75 public IdentityManagerImpl(EventBus eventBus, WebOfTrustConnector webOfTrustConnector, IdentityLoader identityLoader) {
76 super("Sone Identity Manager", false);
77 this.eventBus = eventBus;
78 this.webOfTrustConnector = webOfTrustConnector;
79 this.identityLoader = identityLoader;
87 * Returns whether the Web of Trust plugin could be reached during the last
90 * @return {@code true} if the Web of Trust plugin is connected,
91 * {@code false} otherwise
94 public boolean isConnected() {
96 webOfTrustConnector.ping();
98 } catch (PluginException pe1) {
99 /* not connected, ignore. */
105 * Returns all own identities.
107 * @return All own identities
110 public Set<OwnIdentity> getAllOwnIdentities() {
111 synchronized (currentOwnIdentities) {
112 return new HashSet<OwnIdentity>(currentOwnIdentities);
124 protected void serviceRun() {
125 Map<OwnIdentity, Collection<Identity>> oldIdentities = new HashMap<OwnIdentity, Collection<Identity>>();
127 while (!shouldStop()) {
129 Map<OwnIdentity, Collection<Identity>> currentIdentities = identityLoader.loadIdentities();
131 IdentityChangeEventSender identityChangeEventSender = new IdentityChangeEventSender(eventBus, oldIdentities);
132 identityChangeEventSender.detectChanges(currentIdentities);
134 oldIdentities = currentIdentities;
136 synchronized (currentOwnIdentities) {
137 currentOwnIdentities.clear();
138 currentOwnIdentities.addAll(currentIdentities.keySet());
140 } catch (WebOfTrustException wote1) {
141 logger.log(Level.WARNING, "WoT has disappeared!", wote1);
144 /* wait a minute before checking again. */