2 * jSite2 - ProjectManager.java -
3 * Copyright © 2008 David Roden
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.
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.
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.
20 package net.pterodactylus.jsite.project;
22 import java.beans.PropertyChangeEvent;
23 import java.beans.PropertyChangeListener;
25 import java.io.FileInputStream;
26 import java.io.FileOutputStream;
27 import java.io.IOException;
28 import java.io.InputStream;
29 import java.io.OutputStream;
30 import java.util.ArrayList;
31 import java.util.Collections;
32 import java.util.List;
33 import java.util.Properties;
34 import java.util.Random;
35 import java.util.logging.Logger;
37 import net.pterodactylus.jsite.core.JSiteException;
38 import net.pterodactylus.jsite.core.NodeManager;
39 import net.pterodactylus.util.io.Closer;
40 import net.pterodactylus.util.logging.Logging;
41 import net.pterodactylus.util.number.Hex;
44 * Manages projects, taking care of persistence, lifetime statistics, and other
47 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
49 public class ProjectManager implements PropertyChangeListener {
52 private static final Logger logger = Logging.getLogger(ProjectManager.class.getName());
54 /** The RNG used to create project IDs. */
55 private static final Random random = new Random();
57 /** The directory the projects are stored in. */
58 private final String directory;
60 /** The node manager. */
61 private NodeManager nodeManager;
64 private final List<Project> projects = Collections.synchronizedList(new ArrayList<Project>());
67 * Creates a new project manager that saves and restores its state to/from
68 * the given directory.
71 * The directory to save and restore states to/from
73 public ProjectManager(String directory) {
74 this.directory = directory;
82 * Returns the directory the projects are loaded from and saved to.
84 * @return The directory for storing the projects
86 public String getDirectory() {
91 * Returns a list of all projects.
93 * @return A list of all projects
95 public List<Project> getProjects() {
96 return Collections.unmodifiableList(new ArrayList<Project>(projects));
100 * Sets the node manager to use.
103 * The node manager to use
105 public void setNodeManager(NodeManager nodeManager) {
106 this.nodeManager = nodeManager;
114 * Loads projects and statistics.
116 * @throws IOException
117 * if an I/O error occurs
119 public void load() throws IOException {
120 File directoryFile = new File(directory);
121 File projectFile = new File(directoryFile, "projects.properties");
122 if (!projectFile.exists() || !projectFile.isFile() || !projectFile.canRead()) {
125 Properties projectProperties = new Properties();
126 InputStream projectInputStream = null;
128 projectInputStream = new FileInputStream(projectFile);
129 projectProperties.load(projectInputStream);
131 Closer.close(projectInputStream);
133 int projectIndex = 0;
134 while (projectProperties.containsKey("projects." + projectIndex + ".name")) {
135 String projectPrefix = "projects." + projectIndex;
136 String projectId = projectProperties.getProperty(projectPrefix + ".id");
137 String projectName = projectProperties.getProperty(projectPrefix + ".name");
138 String projectDescription = projectProperties.getProperty(projectPrefix + ".description");
139 String projectPrivateKey = projectProperties.getProperty(projectPrefix + ".privateKey");
140 String projectPublicKey = projectProperties.getProperty(projectPrefix + ".publicKey");
141 String projectBasePath = projectProperties.getProperty(projectPrefix + ".basePath");
142 Project project = new Project();
143 project.setId(projectId);
144 project.setName(projectName);
145 project.setDescription(projectDescription);
146 project.setPrivateKey(projectPrivateKey);
147 project.setPublicKey(projectPublicKey);
148 project.setBasePath(projectBasePath);
149 project.rescanBasePath();
150 projects.add(project);
151 logger.fine("loaded project “" + project.getName() + "”.");
157 * Saves projects and statistics.
159 * @throws IOException
160 * if an I/O error occurs
162 public void save() throws IOException {
163 File directoryFile = new File(directory);
164 if (!directoryFile.exists()) {
165 if (!directoryFile.mkdirs()) {
166 throw new IOException("could not create directory: " + directory);
169 Properties projectProperties = new Properties();
170 int projectIndex = 0;
171 for (Project project: projects) {
172 String projectPrefix = "projects." + projectIndex;
173 projectProperties.setProperty(projectPrefix + ".id", project.getId());
174 projectProperties.setProperty(projectPrefix + ".name", project.getName());
175 projectProperties.setProperty(projectPrefix + ".description", project.getDescription());
176 projectProperties.setProperty(projectPrefix + ".privateKey", project.getPrivateKey());
177 projectProperties.setProperty(projectPrefix + ".publicKey", project.getPublicKey());
178 projectProperties.setProperty(projectPrefix + ".basePath", project.getBasePath());
181 File projectFile = new File(directoryFile, "projects.properties");
182 OutputStream projectOutputStream = null;
184 projectOutputStream = new FileOutputStream(projectFile);
185 projectProperties.store(projectOutputStream, "jSite projects");
187 Closer.close(projectOutputStream);
192 * Creates a new project. The returned {@link Project} will contain a newly
193 * generated key pair.
195 * @return A newly created project
196 * @throws IOException
197 * if an I/O error occured communicating with the node
198 * @throws JSiteException
199 * if there is a problem with the node
201 public Project createProject() throws IOException, JSiteException {
202 Project project = new Project();
203 String[] keyPair = nodeManager.generateKeyPair();
204 byte[] idBytes = new byte[16];
205 random.nextBytes(idBytes);
206 project.setId(Hex.toHex(idBytes));
208 project.setDescription("");
209 project.setPrivateKey(keyPair[0]);
210 project.setPublicKey(keyPair[1]);
211 project.setBasePath("");
212 projects.add(project);
213 project.addPropertyChangeListener(this);
216 } catch (IOException ioe1) {
223 // INTERFACE PropertyChangeListener
229 public void propertyChange(PropertyChangeEvent propertyChangeEvent) {
232 } catch (IOException ioe1) {