X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FClientPutDir.java;h=e3396bd673e761f4fec924f5aaecceb5c025ddd9;hb=4aa8626a4290644be70b2fe35de7c9d392d4574f;hp=1181e113f528ece797c19bd984d060262816e758;hpb=6f1a8216cfba28add0ef365b46a08d16d4eb87fe;p=jSite.git diff --git a/src/de/todesbaum/util/freenet/fcp2/ClientPutDir.java b/src/de/todesbaum/util/freenet/fcp2/ClientPutDir.java index 1181e11..e3396bd 100644 --- a/src/de/todesbaum/util/freenet/fcp2/ClientPutDir.java +++ b/src/de/todesbaum/util/freenet/fcp2/ClientPutDir.java @@ -1,5 +1,5 @@ /* - * todesbaum-lib - + * todesbaum-lib - * Copyright (C) 2006 David Roden * * This program is free software; you can redistribute it and/or modify @@ -24,18 +24,64 @@ import java.io.Writer; /** * Abstract base class for all put requests that insert a directory. - * + * + * @param + * The type of the “ClientPutDir” command * @author David Roden <droden@gmail.com> - * @version $Id: ClientPutDir.java 356 2006-03-24 15:13:38Z bombe $ */ -public class ClientPutDir extends ClientPut { +public class ClientPutDir> extends ClientPut { + + /** + * All possible manifest putters. Manifest putters are used to distribute + * files of a directory insert to different containers, depending on size, + * type, and other factors. + * + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> + */ + public enum ManifestPutter { + + /** + * Use the “simple” manifest putter. Despite its name this is currently + * the default manifest putter. + */ + SIMPLE("simple"), + + /** Use the “default” manifest putter. */ + DEFAULT("default"); + + /** The name of the manifest putter. */ + private final String name; + + /** + * Creates a new manifest putter. + * + * @param name + * The name of the manifest putter + */ + private ManifestPutter(String name) { + this.name = name; + } + + /** + * Returns the name of the manifest putter. + * + * @return The name of the manifest putter + */ + public String getName() { + return name; + } + + } /** The default file of the directory. */ protected String defaultName; + /** The manifest putter to use. */ + private ManifestPutter manifestPutter; + /** * Creates a new request with the specified name, identifier, and URI. - * + * * @param name * The name of the request * @param identifier @@ -49,7 +95,7 @@ public class ClientPutDir extends ClientPut { /** * Returns the default name of the directory. - * + * * @return The default name of the directory */ public String getDefaultName() { @@ -62,7 +108,7 @@ public class ClientPutDir extends ClientPut { * requested without a filename. It's about the same as the * index.html file that gets delivered if you only request a * directory from a webserver. - * + * * @param defaultName * The default name of the directory */ @@ -71,6 +117,30 @@ public class ClientPutDir extends ClientPut { } /** + * Returns the current manifest putter. + * + * @return The current manifest putter (may be {@code null}) + */ + public ManifestPutter getManifestPutter() { + return manifestPutter; + } + + /** + * Sets the manifest putter for the “ClientPutDir” command. If {@code null} + * is given the node will choose a manifest putter. + * + * @param manifestPutter + * The manifest putter to use for the command (may be + * {@code null}) + * @return This ClientPutDir command + */ + @SuppressWarnings("unchecked") + public C setManifestPutter(ManifestPutter manifestPutter) { + this.manifestPutter = manifestPutter; + return (C) this; + } + + /** * {@inheritDoc} */ @Override @@ -78,6 +148,9 @@ public class ClientPutDir extends ClientPut { super.write(writer); if (defaultName != null) writer.write("DefaultName=" + defaultName + LINEFEED); + if (manifestPutter != null) { + writer.write("ManifestPutter=" + manifestPutter.getName() + LINEFEED); + } } }