added features for specific repository types

This commit is contained in:
Sebastian Sdorra
2012-12-16 18:33:34 +01:00
parent 595e92c26d
commit 9b67423203
3 changed files with 93 additions and 2 deletions

View File

@@ -0,0 +1,48 @@
/**
* Copyright (c) 2010, Sebastian Sdorra All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer. 2. Redistributions in
* binary form must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other
* materials provided with the distribution. 3. Neither the name of SCM-Manager;
* nor the names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* http://bitbucket.org/sdorra/scm-manager
*
*/
package sonia.scm.repository;
/**
* Features which are supported by a {@link Repository}.
*
* @author Sebastian Sdorra
* @since 1.25
*/
public enum Feature
{
/**
* The default branch of the repository is a combined branch of all
* repository branches.
*/
COMBINED_DEFAULT_BRANCH
}

View File

@@ -30,6 +30,7 @@
*/ */
package sonia.scm.repository; package sonia.scm.repository;
//~--- non-JDK imports -------------------------------------------------------- //~--- non-JDK imports --------------------------------------------------------
@@ -39,6 +40,7 @@ import sonia.scm.repository.api.Command;
//~--- JDK imports ------------------------------------------------------------ //~--- JDK imports ------------------------------------------------------------
import java.util.Collections;
import java.util.Set; import java.util.Set;
/** /**
@@ -67,15 +69,33 @@ public class RepositoryType extends Type
*/ */
public RepositoryType(String name, String displayName, public RepositoryType(String name, String displayName,
Set<Command> supportedCommands) Set<Command> supportedCommands)
{
this(name, displayName, supportedCommands, Collections.EMPTY_SET);
}
/**
* Constructs a new {@link RepositoryType} object.
*
*
* @param name name of the type
* @param displayName display name of the type
* @param supportedCommands supported commands of the type
* @param supportedFeatures supported features of the type
*
* @since 1.25
*/
public RepositoryType(String name, String displayName,
Set<Command> supportedCommands, Set<Feature> supportedFeatures)
{ {
super(name, displayName); super(name, displayName);
this.supportedCommands = supportedCommands; this.supportedCommands = supportedCommands;
this.supportedFeatures = supportedFeatures;
} }
//~--- get methods ---------------------------------------------------------- //~--- get methods ----------------------------------------------------------
/** /**
* Returns a set of commands, which are supported of the repository type. * Returns a set of commands, which are supported by the repository type.
* *
* *
* @return set of supported commands * @return set of supported commands
@@ -85,8 +105,23 @@ public class RepositoryType extends Type
return supportedCommands; return supportedCommands;
} }
/**
* Returns a set of features, which are supported by the repository type.
*
*
* @return set of supported features
* @since 1.25
*/
public Set<Feature> getSupportedFeatures()
{
return supportedFeatures;
}
//~--- fields --------------------------------------------------------------- //~--- fields ---------------------------------------------------------------
/** set of supported commands */ /** set of supported commands */
private Set<Command> supportedCommands; private Set<Command> supportedCommands;
/** set of supported features */
private Set<Feature> supportedFeatures;
} }

View File

@@ -72,6 +72,9 @@ import java.io.OutputStream;
import java.text.MessageFormat; import java.text.MessageFormat;
import java.util.EnumSet;
import java.util.Set;
import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException; import javax.xml.bind.JAXBException;
@@ -98,10 +101,15 @@ public class HgRepositoryHandler
/** Field description */ /** Field description */
public static final String TYPE_NAME = "hg"; public static final String TYPE_NAME = "hg";
/** Field description */
private static final Set<Feature> SUPPORTED_FEATURES =
EnumSet.of(Feature.COMBINED_DEFAULT_BRANCH);
/** Field description */ /** Field description */
public static final Type TYPE = new RepositoryType(TYPE_NAME, public static final Type TYPE = new RepositoryType(TYPE_NAME,
TYPE_DISPLAYNAME, TYPE_DISPLAYNAME,
HgRepositoryServiceProvider.COMMANDS); HgRepositoryServiceProvider.COMMANDS,
SUPPORTED_FEATURES);
/** the logger for HgRepositoryHandler */ /** the logger for HgRepositoryHandler */
private static final Logger logger = private static final Logger logger =