df7028f2f1843f2891ae429538f66e57f9cd6a19
[jSite2.git] / src / net / pterodactylus / jsite / core / RequestManager.java
1 /*
2  * jSite-next - RequestManager.java -
3  * Copyright © 2009 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jsite.core;
21
22 import java.io.IOException;
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.HashMap;
26 import java.util.HashSet;
27 import java.util.Map;
28 import java.util.logging.Level;
29 import java.util.logging.Logger;
30
31 import net.pterodactylus.fcp.highlevel.FcpClient;
32 import net.pterodactylus.fcp.highlevel.FcpException;
33 import net.pterodactylus.jsite.util.IdGenerator;
34 import net.pterodactylus.util.number.Hex;
35
36 /**
37  * Manages requests.
38  *
39  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
40  */
41 public class RequestManager implements NodeListener {
42
43         /** The logger. */
44         private static final Logger logger = Logger.getLogger(RequestManager.class.getName());
45
46         /** Request event manager. */
47         private final RequestListenerManager requestListenerManager = new RequestListenerManager();
48
49         /** The node manager. */
50         private final NodeManager nodeManager;
51
52         /** Maps request IDs to requests. */
53         private final Map<String, Request> idRequests = Collections.synchronizedMap(new HashMap<String, Request>());
54
55         /**
56          * Creates a new request manager.
57          *
58          * @param nodeManager
59          *            The node manager to utilize
60          */
61         public RequestManager(NodeManager nodeManager) {
62                 this.nodeManager = nodeManager;
63         }
64
65         //
66         // LISTENER MANAGEMENT
67         //
68
69         /**
70          * Adds the given request listener to the list of registered listeners.
71          *
72          * @see RequestListenerManager#addListener(RequestListener)
73          * @param requestListener
74          *            The request listener to add
75          */
76         public void addRequestListener(RequestListener requestListener) {
77                 requestListenerManager.addListener(requestListener);
78         }
79
80         /**
81          * Removes the given request listener from the list of registered listeners.
82          *
83          * @see RequestListenerManager#removeListener(RequestListener)
84          * @param requestListener
85          *            The request listener to remove
86          */
87         public void removeRequestListener(RequestListener requestListener) {
88                 requestListenerManager.removeListener(requestListener);
89         }
90
91         //
92         // ACTIONS
93         //
94
95         public void load() throws IOException {
96         }
97
98         public void save() throws IOException {
99         }
100
101         //
102         // PRIVATE METHODS
103         //
104
105         /**
106          * Checks whether the given client token is a client token created by this
107          * request manager.
108          *
109          * @param clientToken
110          *            The client token to check
111          * @return {@code true} if the client token was created by this request
112          *         manager, {@code false} otherwise
113          */
114         private boolean isKnownClientToken(String clientToken) {
115                 String[] clientTokenParts = clientToken.split("\\.");
116                 if (clientTokenParts.length != 3) {
117                         return false;
118                 }
119                 String projectIdString = clientTokenParts[0];
120                 if (projectIdString.length() != (IdGenerator.DEFAULT_LENGTH * 2)) {
121                         return false;
122                 }
123                 try {
124                         Hex.toByte(projectIdString);
125                 } catch (NumberFormatException nfe1) {
126                         return false;
127                 }
128                 return true;
129         }
130
131         /**
132          * Wraps the requests of the FCP API into jSite requests.
133          *
134          * @param requests
135          *            The requests to wrap
136          * @return The wrapped requests
137          */
138         private Collection<Request> wrapRequests(Collection<net.pterodactylus.fcp.highlevel.Request> requests) {
139                 Collection<Request> wrappedRequests = new HashSet<Request>();
140                 for (net.pterodactylus.fcp.highlevel.Request request : requests) {
141                         Request wrappedRequest = new Request(request.getIdentifier());
142                         wrappedRequest.setClientToken(request.getClientToken());
143                         wrappedRequests.add(wrappedRequest);
144                 }
145                 return wrappedRequests;
146         }
147
148         //
149         // INTERFACE NodeListener
150         //
151
152         /**
153          * {@inheritDoc}
154          */
155         public void nodeAdded(Node node) {
156                 /* ignore. */
157         }
158
159         /**
160          * {@inheritDoc}
161          */
162         public void nodeConnected(Node node) {
163                 FcpClient fcpClient = nodeManager.getFcpClient(node);
164                 if (fcpClient == null) {
165                         logger.log(Level.WARNING, "Got no FCP client for node (" + node + ")!");
166                         return;
167                 }
168                 try {
169                         Collection<Request> requests = wrapRequests(fcpClient.getRequests(true));
170                         for (Request request : requests) {
171                                 String clientToken = request.getClientToken();
172                                 if ((clientToken == null) || (clientToken.trim().length() == 0)) {
173                                         continue;
174                                 }
175                                 if (!isKnownClientToken(clientToken)) {
176                                         continue;
177                                 }
178                                 /* TODO - process request. */
179                         }
180                 } catch (IOException ioe1) {
181                         logger.log(Level.WARNING, "Could not get requests from node (" + node + ")!", ioe1);
182                 } catch (FcpException fe1) {
183                         logger.log(Level.WARNING, "Could not get requests from node (" + node + ")!", fe1);
184                 }
185         }
186
187         /**
188          * {@inheritDoc}
189          */
190         public void nodeConnectionFailed(Node node, Throwable cause) {
191                 /* ignore. */
192         }
193
194         /**
195          * {@inheritDoc}
196          */
197         public void nodeDisconnected(Node node, Throwable throwable) {
198                 /* TODO */
199         }
200
201         /**
202          * {@inheritDoc}
203          */
204         public void nodeRemoved(Node node) {
205                 /* ignore. */
206         }
207
208 }