386fe1d75e28077f72a48c430ae46c3f7b58e07c
[jSite.git] / src / main / java / de / todesbaum / util / freenet / fcp2 / ClientPutDir.java
1 /*
2  * jSite - ClientPutDir.java - Copyright © 2006–2012 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 2 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, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 package de.todesbaum.util.freenet.fcp2;
20
21 import java.io.IOException;
22 import java.io.Writer;
23
24 /**
25  * Abstract base class for all put requests that insert a directory.
26  *
27  * @param <C>
28  *            The type of the “ClientPutDir” command
29  * @author David Roden &lt;droden@gmail.com&gt;
30  */
31 public class ClientPutDir<C extends ClientPutDir<?>> extends ClientPut {
32
33         /**
34          * All possible manifest putters. Manifest putters are used to distribute
35          * files of a directory insert to different containers, depending on size,
36          * type, and other factors.
37          *
38          * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
39          */
40         public enum ManifestPutter {
41
42                 /**
43                  * Use the “simple” manifest putter. Despite its name this is currently
44                  * the default manifest putter.
45                  */
46                 SIMPLE("simple"),
47
48                 /** Use the “default” manifest putter. */
49                 DEFAULT("default");
50
51                 /** The name of the manifest putter. */
52                 private final String name;
53
54                 /**
55                  * Creates a new manifest putter.
56                  *
57                  * @param name
58                  *            The name of the manifest putter
59                  */
60                 private ManifestPutter(String name) {
61                         this.name = name;
62                 }
63
64                 /**
65                  * Returns the name of the manifest putter.
66                  *
67                  * @return The name of the manifest putter
68                  */
69                 public String getName() {
70                         return name;
71                 }
72
73                 //
74                 // OBJECT METHODS
75                 //
76
77                 /**
78                  * {@inheritDoc}
79                  */
80                 @Override
81                 public String toString() {
82                         return name.substring(0, 1).toUpperCase() + name.substring(1);
83                 }
84
85         }
86
87         /** The default file of the directory. */
88         protected String defaultName;
89
90         /** The manifest putter to use. */
91         private ManifestPutter manifestPutter;
92
93         /**
94          * Creates a new request with the specified name, identifier, and URI.
95          *
96          * @param name
97          *            The name of the request
98          * @param identifier
99          *            The identifier of the request
100          * @param uri
101          *            The URI of the request
102          */
103         public ClientPutDir(String name, String identifier, String uri) {
104                 super(name, identifier, uri);
105         }
106
107         /**
108          * Returns the default name of the directory.
109          *
110          * @return The default name of the directory
111          */
112         public String getDefaultName() {
113                 return defaultName;
114         }
115
116         /**
117          * Sets the default name of the directory. The default name of a directory
118          * is the name of the file that will be delivered if the directory was
119          * requested without a filename. It's about the same as the
120          * <code>index.html</code> file that gets delivered if you only request a
121          * directory from a webserver.
122          *
123          * @param defaultName
124          *            The default name of the directory
125          */
126         public void setDefaultName(String defaultName) {
127                 this.defaultName = defaultName;
128         }
129
130         /**
131          * Returns the current manifest putter.
132          *
133          * @return The current manifest putter (may be {@code null})
134          */
135         public ManifestPutter getManifestPutter() {
136                 return manifestPutter;
137         }
138
139         /**
140          * Sets the manifest putter for the “ClientPutDir” command. If {@code null}
141          * is given the node will choose a manifest putter.
142          *
143          * @param manifestPutter
144          *            The manifest putter to use for the command (may be
145          *            {@code null})
146          * @return This ClientPutDir command
147          */
148         @SuppressWarnings("unchecked")
149         public C setManifestPutter(ManifestPutter manifestPutter) {
150                 this.manifestPutter = manifestPutter;
151                 return (C) this;
152         }
153
154         /**
155          * {@inheritDoc}
156          */
157         @Override
158         protected void write(Writer writer) throws IOException {
159                 super.write(writer);
160                 if (defaultName != null)
161                         writer.write("DefaultName=" + defaultName + LINEFEED);
162                 if (manifestPutter != null) {
163                         writer.write("ManifestPutter=" + manifestPutter.getName() + LINEFEED);
164                 }
165         }
166
167 }