831c9b3ff145ff4e35862086f4efc52dad8172d6
[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          * Generates a client token for the given project.
133          *
134          * @param project
135          *            The project to generate a client token for
136          * @return The generated client token
137          */
138         public String generateClientToken(Project project) {
139                 String clientToken = project.getId() + "." + System.currentTimeMillis();
140                 clientToken += "." + clientToken.hashCode();
141                 return clientToken;
142         }
143
144         /**
145          * Wraps the requests of the FCP API into jSite requests.
146          *
147          * @param requests
148          *            The requests to wrap
149          * @return The wrapped requests
150          */
151         private Collection<Request> wrapRequests(Collection<net.pterodactylus.fcp.highlevel.Request> requests) {
152                 Collection<Request> wrappedRequests = new HashSet<Request>();
153                 for (net.pterodactylus.fcp.highlevel.Request request : requests) {
154                         Request wrappedRequest = new Request(request.getIdentifier());
155                         wrappedRequest.setClientToken(request.getClientToken());
156                         wrappedRequests.add(wrappedRequest);
157                 }
158                 return wrappedRequests;
159         }
160
161         //
162         // INTERFACE NodeListener
163         //
164
165         /**
166          * {@inheritDoc}
167          */
168         public void nodeAdded(Node node) {
169                 /* ignore. */
170         }
171
172         /**
173          * {@inheritDoc}
174          */
175         public void nodeConnected(Node node) {
176                 FcpClient fcpClient = nodeManager.getFcpClient(node);
177                 if (fcpClient == null) {
178                         logger.log(Level.WARNING, "Got no FCP client for node (" + node + ")!");
179                         return;
180                 }
181                 try {
182                         Collection<Request> requests = wrapRequests(fcpClient.getRequests(true));
183                         for (Request request : requests) {
184                                 String clientToken = request.getClientToken();
185                                 if ((clientToken == null) || (clientToken.trim().length() == 0)) {
186                                         continue;
187                                 }
188                                 if (!isKnownClientToken(clientToken)) {
189                                         continue;
190                                 }
191                                 /* TODO - process request. */
192                         }
193                 } catch (IOException ioe1) {
194                         logger.log(Level.WARNING, "Could not get requests from node (" + node + ")!", ioe1);
195                 } catch (FcpException fe1) {
196                         logger.log(Level.WARNING, "Could not get requests from node (" + node + ")!", fe1);
197                 }
198         }
199
200         /**
201          * {@inheritDoc}
202          */
203         public void nodeConnectionFailed(Node node, Throwable cause) {
204                 /* ignore. */
205         }
206
207         /**
208          * {@inheritDoc}
209          */
210         public void nodeDisconnected(Node node, Throwable throwable) {
211                 /* TODO */
212         }
213
214         /**
215          * {@inheritDoc}
216          */
217         public void nodeRemoved(Node node) {
218                 /* ignore. */
219         }
220
221 }