mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 23:15:43 +01:00
improve mercurial command handling
This commit is contained in:
@@ -0,0 +1,402 @@
|
|||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
|
||||||
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import sonia.scm.util.IOUtil;
|
||||||
|
import sonia.scm.util.Util;
|
||||||
|
import sonia.scm.web.HgUtil;
|
||||||
|
|
||||||
|
//~--- JDK imports ------------------------------------------------------------
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.xml.bind.JAXBContext;
|
||||||
|
import javax.xml.bind.JAXBException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Sebastian Sdorra
|
||||||
|
*/
|
||||||
|
public class AbstractHgHandler
|
||||||
|
{
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
public static final String ENV_PATH = "SCM_PATH";
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
public static final String ENV_PENDING = "HG_PENDING";
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
public static final String ENV_PYTHON_PATH = "SCM_PYTHON_PATH";
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
public static final String ENV_REPOSITORY_PATH = "SCM_REPOSITORY_PATH";
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
public static final String ENV_REVISION = "SCM_REVISION";
|
||||||
|
|
||||||
|
/** the logger for AbstractHgHandler */
|
||||||
|
private static final Logger logger =
|
||||||
|
LoggerFactory.getLogger(AbstractHgHandler.class);
|
||||||
|
|
||||||
|
//~--- constructors ---------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs ...
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param handler
|
||||||
|
* @param context
|
||||||
|
* @param directory
|
||||||
|
*/
|
||||||
|
public AbstractHgHandler(HgRepositoryHandler handler, HgContext context,
|
||||||
|
File directory)
|
||||||
|
{
|
||||||
|
this(handler, null, context, directory);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs ...
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param handler
|
||||||
|
* @param context
|
||||||
|
* @param repository
|
||||||
|
*/
|
||||||
|
public AbstractHgHandler(HgRepositoryHandler handler, HgContext context,
|
||||||
|
Repository repository)
|
||||||
|
{
|
||||||
|
this(handler, null, context, handler.getDirectory(repository));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs ...
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param handler
|
||||||
|
* @param jaxbContext
|
||||||
|
* @param context
|
||||||
|
* @param directory
|
||||||
|
*/
|
||||||
|
public AbstractHgHandler(HgRepositoryHandler handler,
|
||||||
|
JAXBContext jaxbContext, HgContext context,
|
||||||
|
File directory)
|
||||||
|
{
|
||||||
|
this.handler = handler;
|
||||||
|
this.jaxbContext = jaxbContext;
|
||||||
|
this.context = context;
|
||||||
|
this.directory = directory;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs ...
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param handler
|
||||||
|
* @param jaxbContext
|
||||||
|
* @param context
|
||||||
|
* @param repository
|
||||||
|
*/
|
||||||
|
public AbstractHgHandler(HgRepositoryHandler handler,
|
||||||
|
JAXBContext jaxbContext, HgContext context,
|
||||||
|
Repository repository)
|
||||||
|
{
|
||||||
|
this(handler, jaxbContext, context, handler.getDirectory(repository));
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- methods --------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param revision
|
||||||
|
* @param path
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
protected Map<String, String> createEnvironment(String revision, String path)
|
||||||
|
{
|
||||||
|
Map<String, String> env = new HashMap<String, String>();
|
||||||
|
|
||||||
|
env.put(ENV_REVISION, Util.nonNull(revision));
|
||||||
|
env.put(ENV_PATH, Util.nonNull(path));
|
||||||
|
|
||||||
|
return env;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param args
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
protected Process createHgProcess(String... args) throws IOException
|
||||||
|
{
|
||||||
|
return createHgProcess(new HashMap<String, String>(), args);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param extraEnv
|
||||||
|
* @param args
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
protected Process createHgProcess(Map<String, String> extraEnv,
|
||||||
|
String... args)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
return createProcess(extraEnv, handler.getConfig().getHgBinary(), args);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param extraEnv
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
protected Process createPythonProcess(Map<String, String> extraEnv)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
return createProcess(extraEnv, handler.getConfig().getPythonBinary());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
protected Process createPythonProcess() throws IOException
|
||||||
|
{
|
||||||
|
return createPythonProcess(new HashMap<String, String>());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param errorStream
|
||||||
|
*/
|
||||||
|
protected void handleErrorStream(final InputStream errorStream)
|
||||||
|
{
|
||||||
|
if (errorStream != null)
|
||||||
|
{
|
||||||
|
new Thread(new Runnable()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public void run()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
String content = IOUtil.getContent(errorStream);
|
||||||
|
|
||||||
|
if (Util.isNotEmpty(content))
|
||||||
|
{
|
||||||
|
logger.error(content.trim());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (IOException ex)
|
||||||
|
{
|
||||||
|
logger.error("error during logging", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- get methods ----------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param resultType
|
||||||
|
* @param scriptResource
|
||||||
|
* @param <T>
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
protected <T> T getResultFromScript(Class<T> resultType,
|
||||||
|
String scriptResource)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
return getResultFromScript(resultType, scriptResource,
|
||||||
|
new HashMap<String, String>());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param resultType
|
||||||
|
* @param scriptResource
|
||||||
|
* @param extraEnv
|
||||||
|
* @param <T>
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
protected <T> T getResultFromScript(Class<T> resultType,
|
||||||
|
String scriptResource, Map<String, String> extraEnv)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
Process p = createPythonProcess(extraEnv);
|
||||||
|
T result = null;
|
||||||
|
InputStream resource = null;
|
||||||
|
InputStream input = null;
|
||||||
|
OutputStream output = null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
resource = HgUtil.class.getResourceAsStream(scriptResource);
|
||||||
|
output = p.getOutputStream();
|
||||||
|
IOUtil.copy(resource, output);
|
||||||
|
output.close();
|
||||||
|
handleErrorStream(p.getErrorStream());
|
||||||
|
input = p.getInputStream();
|
||||||
|
result = (T) jaxbContext.createUnmarshaller().unmarshal(input);
|
||||||
|
input.close();
|
||||||
|
}
|
||||||
|
catch (JAXBException ex)
|
||||||
|
{
|
||||||
|
logger.error("could not parse result", ex);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
IOUtil.close(resource);
|
||||||
|
IOUtil.close(input);
|
||||||
|
IOUtil.close(output);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- methods --------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param extraEnv
|
||||||
|
* @param cmd
|
||||||
|
* @param args
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
private Process createProcess(Map<String, String> extraEnv, String cmd,
|
||||||
|
String... args)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
HgConfig config = handler.getConfig();
|
||||||
|
List<String> cmdList = new ArrayList<String>();
|
||||||
|
|
||||||
|
cmdList.add(cmd);
|
||||||
|
|
||||||
|
if (Util.isNotEmpty(args))
|
||||||
|
{
|
||||||
|
cmdList.addAll(Arrays.asList(args));
|
||||||
|
}
|
||||||
|
|
||||||
|
ProcessBuilder pb = new ProcessBuilder(cmdList);
|
||||||
|
|
||||||
|
pb.directory(directory);
|
||||||
|
|
||||||
|
Map<String, String> env = pb.environment();
|
||||||
|
|
||||||
|
if (context.isSystemEnvironment())
|
||||||
|
{
|
||||||
|
env.putAll(System.getenv());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (context.isPending())
|
||||||
|
{
|
||||||
|
env.put(ENV_PENDING, directory.getAbsolutePath());
|
||||||
|
}
|
||||||
|
|
||||||
|
env.put(ENV_PYTHON_PATH, Util.nonNull(config.getPythonPath()));
|
||||||
|
env.put(ENV_REPOSITORY_PATH, directory.getAbsolutePath());
|
||||||
|
env.putAll(extraEnv);
|
||||||
|
|
||||||
|
return pb.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- fields ---------------------------------------------------------------
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private HgContext context;
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private File directory;
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private HgRepositoryHandler handler;
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private JAXBContext jaxbContext;
|
||||||
|
}
|
||||||
@@ -45,13 +45,15 @@ import sonia.scm.web.HgUtil;
|
|||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import javax.xml.bind.JAXBContext;
|
import javax.xml.bind.JAXBContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Sebastian Sdorra
|
* @author Sebastian Sdorra
|
||||||
*/
|
*/
|
||||||
public class HgBlameViewer implements BlameViewer
|
public class HgBlameViewer extends AbstractHgHandler implements BlameViewer
|
||||||
{
|
{
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
@@ -68,15 +70,15 @@ public class HgBlameViewer implements BlameViewer
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @param handler
|
* @param handler
|
||||||
|
* @param context
|
||||||
* @param repository
|
* @param repository
|
||||||
* @param blameResultContext
|
* @param blameResultContext
|
||||||
*/
|
*/
|
||||||
public HgBlameViewer(HgRepositoryHandler handler, Repository repository,
|
public HgBlameViewer(HgRepositoryHandler handler,
|
||||||
JAXBContext blameResultContext)
|
JAXBContext blameResultContext, HgContext context,
|
||||||
|
Repository repository)
|
||||||
{
|
{
|
||||||
this.handler = handler;
|
super(handler, blameResultContext, context, repository);
|
||||||
this.repository = repository;
|
|
||||||
this.blameResultContext = blameResultContext;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
@@ -103,19 +105,8 @@ public class HgBlameViewer implements BlameViewer
|
|||||||
HgUtil.getRevision(revision));
|
HgUtil.getRevision(revision));
|
||||||
}
|
}
|
||||||
|
|
||||||
return HgUtil.getResultFromScript(BlameResult.class, blameResultContext,
|
Map<String, String> env = createEnvironment(revision, path);
|
||||||
RESOURCE_BLAME, handler, repository,
|
|
||||||
revision, path);
|
return getResultFromScript(BlameResult.class, RESOURCE_BLAME, env);
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private JAXBContext blameResultContext;
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private HgRepositoryHandler handler;
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private Repository repository;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,238 +0,0 @@
|
|||||||
/**
|
|
||||||
* 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;
|
|
||||||
|
|
||||||
//~--- non-JDK imports --------------------------------------------------------
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import org.w3c.dom.Document;
|
|
||||||
import org.w3c.dom.Node;
|
|
||||||
import org.w3c.dom.NodeList;
|
|
||||||
|
|
||||||
import org.xml.sax.InputSource;
|
|
||||||
import org.xml.sax.SAXException;
|
|
||||||
|
|
||||||
import sonia.scm.util.Util;
|
|
||||||
|
|
||||||
//~--- JDK imports ------------------------------------------------------------
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import java.text.ParseException;
|
|
||||||
import java.text.SimpleDateFormat;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import javax.xml.parsers.DocumentBuilder;
|
|
||||||
import javax.xml.parsers.DocumentBuilderFactory;
|
|
||||||
import javax.xml.parsers.ParserConfigurationException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author Sebastian Sdorra
|
|
||||||
*/
|
|
||||||
public class HgChangesetParser
|
|
||||||
{
|
|
||||||
|
|
||||||
/** the logger for HgChangesetParser */
|
|
||||||
private static final Logger logger =
|
|
||||||
LoggerFactory.getLogger(HgChangesetParser.class);
|
|
||||||
|
|
||||||
//~--- methods --------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param in
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*
|
|
||||||
* @throws IOException
|
|
||||||
* @throws ParserConfigurationException
|
|
||||||
* @throws SAXException
|
|
||||||
*/
|
|
||||||
public List<Changeset> parse(InputSource in)
|
|
||||||
throws SAXException, IOException, ParserConfigurationException
|
|
||||||
{
|
|
||||||
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
|
|
||||||
DocumentBuilder builder = factory.newDocumentBuilder();
|
|
||||||
|
|
||||||
return parse(builder.parse(in));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param document
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private List<Changeset> parse(Document document)
|
|
||||||
{
|
|
||||||
List<Changeset> changesetList = new ArrayList<Changeset>();
|
|
||||||
NodeList changesetNodeList = document.getElementsByTagName("changeset");
|
|
||||||
|
|
||||||
if (changesetNodeList != null)
|
|
||||||
{
|
|
||||||
for (int i = 0; i < changesetNodeList.getLength(); i++)
|
|
||||||
{
|
|
||||||
Node changesetNode = changesetNodeList.item(i);
|
|
||||||
Changeset changeset = parseChangesetNode(changesetNode);
|
|
||||||
|
|
||||||
if ((changeset != null) && changeset.isValid())
|
|
||||||
{
|
|
||||||
changesetList.add(changeset);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return changesetList;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param changeset
|
|
||||||
* @param node
|
|
||||||
*/
|
|
||||||
private void parseChangesetChildNode(Changeset changeset, Node node)
|
|
||||||
{
|
|
||||||
String name = node.getNodeName();
|
|
||||||
String value = node.getTextContent();
|
|
||||||
|
|
||||||
if (Util.isNotEmpty(value))
|
|
||||||
{
|
|
||||||
if ("id".equals(name))
|
|
||||||
{
|
|
||||||
changeset.setId(value);
|
|
||||||
}
|
|
||||||
else if ("author".equals(name))
|
|
||||||
{
|
|
||||||
changeset.setAuthor(Person.toPerson(value));
|
|
||||||
}
|
|
||||||
else if ("description".equals(name))
|
|
||||||
{
|
|
||||||
changeset.setDescription(value);
|
|
||||||
}
|
|
||||||
else if ("date".equals(name))
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Date date = dateFormat.parse(value);
|
|
||||||
|
|
||||||
changeset.setDate(date.getTime());
|
|
||||||
}
|
|
||||||
catch (ParseException ex)
|
|
||||||
{
|
|
||||||
logger.warn("could not parse date", ex);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if ("tags".equals(name))
|
|
||||||
{
|
|
||||||
changeset.setTags(getList(value));
|
|
||||||
}
|
|
||||||
else if ("branches".equals(name))
|
|
||||||
{
|
|
||||||
changeset.setBranches(getList(value));
|
|
||||||
}
|
|
||||||
else if ("files-added".equals(name))
|
|
||||||
{
|
|
||||||
changeset.getModifications().setAdded(getList(value));
|
|
||||||
}
|
|
||||||
else if ("files-mods".equals(name))
|
|
||||||
{
|
|
||||||
changeset.getModifications().setModified(getList(value));
|
|
||||||
}
|
|
||||||
else if ("files-dels".equals(name))
|
|
||||||
{
|
|
||||||
changeset.getModifications().setRemoved(getList(value));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param changesetNode
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private Changeset parseChangesetNode(Node changesetNode)
|
|
||||||
{
|
|
||||||
Changeset changeset = new Changeset();
|
|
||||||
NodeList childrenNodeList = changesetNode.getChildNodes();
|
|
||||||
|
|
||||||
if (childrenNodeList != null)
|
|
||||||
{
|
|
||||||
for (int i = 0; i < childrenNodeList.getLength(); i++)
|
|
||||||
{
|
|
||||||
Node child = childrenNodeList.item(i);
|
|
||||||
|
|
||||||
parseChangesetChildNode(changeset, child);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return changeset;
|
|
||||||
}
|
|
||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private List<String> getList(String value)
|
|
||||||
{
|
|
||||||
return Arrays.asList(value.split(" "));
|
|
||||||
}
|
|
||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private SimpleDateFormat dateFormat =
|
|
||||||
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
|
|
||||||
}
|
|
||||||
@@ -35,15 +35,10 @@ package sonia.scm.repository;
|
|||||||
|
|
||||||
//~--- non-JDK imports --------------------------------------------------------
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import sonia.scm.util.Util;
|
import sonia.scm.util.Util;
|
||||||
import sonia.scm.web.HgUtil;
|
|
||||||
|
|
||||||
//~--- JDK imports ------------------------------------------------------------
|
//~--- JDK imports ------------------------------------------------------------
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
@@ -55,7 +50,8 @@ import javax.xml.bind.JAXBContext;
|
|||||||
*
|
*
|
||||||
* @author Sebastian Sdorra
|
* @author Sebastian Sdorra
|
||||||
*/
|
*/
|
||||||
public class HgChangesetViewer implements ChangesetViewer
|
public class HgChangesetViewer extends AbstractHgHandler
|
||||||
|
implements ChangesetViewer
|
||||||
{
|
{
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
@@ -64,9 +60,6 @@ public class HgChangesetViewer implements ChangesetViewer
|
|||||||
/** Field description */
|
/** Field description */
|
||||||
public static final String ENV_PAGE_START = "SCM_PAGE_START";
|
public static final String ENV_PAGE_START = "SCM_PAGE_START";
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String ENV_PENDING = "HG_PENDING";
|
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
public static final String ENV_REVISION_END = "SCM_REVISION_END";
|
public static final String ENV_REVISION_END = "SCM_REVISION_END";
|
||||||
|
|
||||||
@@ -76,10 +69,6 @@ public class HgChangesetViewer implements ChangesetViewer
|
|||||||
/** Field description */
|
/** Field description */
|
||||||
public static final String RESOURCE_LOG = "/sonia/scm/hglog.py";
|
public static final String RESOURCE_LOG = "/sonia/scm/hglog.py";
|
||||||
|
|
||||||
/** the logger for HgChangesetViewer */
|
|
||||||
private static final Logger logger =
|
|
||||||
LoggerFactory.getLogger(HgChangesetViewer.class);
|
|
||||||
|
|
||||||
//~--- constructors ---------------------------------------------------------
|
//~--- constructors ---------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -88,31 +77,15 @@ public class HgChangesetViewer implements ChangesetViewer
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @param handler
|
* @param handler
|
||||||
* @param repositoryDirectory
|
* @param context
|
||||||
* @param changesetPagingResultContext
|
* @param changesetPagingResultContext
|
||||||
|
* @param repository
|
||||||
*/
|
*/
|
||||||
public HgChangesetViewer(HgRepositoryHandler handler,
|
public HgChangesetViewer(HgRepositoryHandler handler,
|
||||||
File repositoryDirectory,
|
JAXBContext changesetPagingResultContext,
|
||||||
JAXBContext changesetPagingResultContext)
|
HgContext context, Repository repository)
|
||||||
{
|
{
|
||||||
this.handler = handler;
|
super(handler, changesetPagingResultContext, context, repository);
|
||||||
this.repositoryDirectory = repositoryDirectory;
|
|
||||||
this.changesetPagingResultContext = changesetPagingResultContext;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs ...
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param handler
|
|
||||||
* @param repository
|
|
||||||
* @param changesetPagingResultContext
|
|
||||||
*/
|
|
||||||
public HgChangesetViewer(HgRepositoryHandler handler, Repository repository,
|
|
||||||
JAXBContext changesetPagingResultContext)
|
|
||||||
{
|
|
||||||
this(handler, handler.getDirectory(repository),
|
|
||||||
changesetPagingResultContext);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
@@ -130,28 +103,9 @@ public class HgChangesetViewer implements ChangesetViewer
|
|||||||
@Override
|
@Override
|
||||||
public ChangesetPagingResult getChangesets(int start, int max)
|
public ChangesetPagingResult getChangesets(int start, int max)
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
|
||||||
return getChangesets(start, max, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param start
|
|
||||||
* @param max
|
|
||||||
* @param pending
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*
|
|
||||||
* @throws IOException
|
|
||||||
*/
|
|
||||||
public ChangesetPagingResult getChangesets(int start, int max,
|
|
||||||
boolean pending)
|
|
||||||
throws IOException
|
|
||||||
{
|
{
|
||||||
return getChangesets(String.valueOf(start), String.valueOf(max), null,
|
return getChangesets(String.valueOf(start), String.valueOf(max), null,
|
||||||
null, pending);
|
null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -162,58 +116,29 @@ public class HgChangesetViewer implements ChangesetViewer
|
|||||||
* @param pageLimit
|
* @param pageLimit
|
||||||
* @param revisionStart
|
* @param revisionStart
|
||||||
* @param revisionEnd
|
* @param revisionEnd
|
||||||
* @param pending
|
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*
|
*
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public ChangesetPagingResult getChangesets(String pageStart,
|
public ChangesetPagingResult getChangesets(String pageStart,
|
||||||
String pageLimit, String revisionStart, String revisionEnd,
|
String pageLimit, String revisionStart, String revisionEnd)
|
||||||
boolean pending)
|
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
if (logger.isDebugEnabled())
|
|
||||||
{
|
|
||||||
StringBuilder msg = new StringBuilder("get changesets");
|
|
||||||
|
|
||||||
if (pending)
|
|
||||||
{
|
|
||||||
msg.append(" (include pending)");
|
|
||||||
}
|
|
||||||
|
|
||||||
msg.append(" for repository ").append(repositoryDirectory.getName());
|
|
||||||
msg.append(":");
|
|
||||||
msg.append(" start: ").append(pageStart);
|
|
||||||
msg.append(" limit: ").append(pageLimit);
|
|
||||||
msg.append(" rev-start: ").append(revisionStart);
|
|
||||||
msg.append(" rev-limit: ").append(revisionEnd);
|
|
||||||
logger.debug(msg.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<String, String> env = new HashMap<String, String>();
|
Map<String, String> env = new HashMap<String, String>();
|
||||||
|
|
||||||
if (pending)
|
|
||||||
{
|
|
||||||
env.put(ENV_PENDING, repositoryDirectory.getAbsolutePath());
|
|
||||||
}
|
|
||||||
|
|
||||||
env.put(ENV_PAGE_START, Util.nonNull(pageStart));
|
env.put(ENV_PAGE_START, Util.nonNull(pageStart));
|
||||||
env.put(ENV_PAGE_LIMIT, Util.nonNull(pageLimit));
|
env.put(ENV_PAGE_LIMIT, Util.nonNull(pageLimit));
|
||||||
env.put(ENV_REVISION_START, Util.nonNull(revisionStart));
|
env.put(ENV_REVISION_START, Util.nonNull(revisionStart));
|
||||||
env.put(ENV_REVISION_END, Util.nonNull(revisionEnd));
|
env.put(ENV_REVISION_END, Util.nonNull(revisionEnd));
|
||||||
|
|
||||||
return HgUtil.getResultFromScript(ChangesetPagingResult.class,
|
return getResultFromScript(ChangesetPagingResult.class, RESOURCE_LOG, env);
|
||||||
changesetPagingResultContext,
|
|
||||||
RESOURCE_LOG, handler,
|
|
||||||
repositoryDirectory, env);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method description
|
* Method description
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* @param startNode
|
* @param startNode
|
||||||
* @param endNode
|
* @param endNode
|
||||||
*
|
*
|
||||||
@@ -224,36 +149,6 @@ public class HgChangesetViewer implements ChangesetViewer
|
|||||||
public ChangesetPagingResult getChangesets(String startNode, String endNode)
|
public ChangesetPagingResult getChangesets(String startNode, String endNode)
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
return getChangesets(startNode, endNode, false);
|
return getChangesets(null, null, startNode, endNode);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Method description
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param startNode
|
|
||||||
* @param endNode
|
|
||||||
* @param pending
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*
|
|
||||||
* @throws IOException
|
|
||||||
*/
|
|
||||||
public ChangesetPagingResult getChangesets(String startNode, String endNode,
|
|
||||||
boolean pending)
|
|
||||||
throws IOException
|
|
||||||
{
|
|
||||||
return getChangesets(null, null, startNode, endNode, pending);
|
|
||||||
}
|
|
||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private JAXBContext changesetPagingResultContext;
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private HgRepositoryHandler handler;
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private File repositoryDirectory;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,101 @@
|
|||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
|
||||||
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
|
import com.google.inject.servlet.RequestScoped;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Sebastian Sdorra
|
||||||
|
*/
|
||||||
|
@RequestScoped
|
||||||
|
public class HgContext
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public boolean isPending()
|
||||||
|
{
|
||||||
|
return pending;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public boolean isSystemEnvironment()
|
||||||
|
{
|
||||||
|
return systemEnvironment;
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- set methods ----------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param pending
|
||||||
|
*/
|
||||||
|
public void setPending(boolean pending)
|
||||||
|
{
|
||||||
|
this.pending = pending;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method description
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param systemEnvironment
|
||||||
|
*/
|
||||||
|
public void setSystemEnvironment(boolean systemEnvironment)
|
||||||
|
{
|
||||||
|
this.systemEnvironment = systemEnvironment;
|
||||||
|
}
|
||||||
|
|
||||||
|
//~--- fields ---------------------------------------------------------------
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private boolean pending = false;
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private boolean systemEnvironment = true;
|
||||||
|
}
|
||||||
@@ -35,16 +35,12 @@ package sonia.scm.repository;
|
|||||||
|
|
||||||
//~--- non-JDK imports --------------------------------------------------------
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import sonia.scm.util.AssertUtil;
|
import sonia.scm.util.AssertUtil;
|
||||||
import sonia.scm.util.IOUtil;
|
import sonia.scm.util.IOUtil;
|
||||||
import sonia.scm.util.Util;
|
import sonia.scm.util.Util;
|
||||||
|
|
||||||
//~--- JDK imports ------------------------------------------------------------
|
//~--- JDK imports ------------------------------------------------------------
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
@@ -53,38 +49,21 @@ import java.io.OutputStream;
|
|||||||
*
|
*
|
||||||
* @author Sebastian Sdorra
|
* @author Sebastian Sdorra
|
||||||
*/
|
*/
|
||||||
public class HgDiffViewer implements DiffViewer
|
public class HgDiffViewer extends AbstractHgHandler implements DiffViewer
|
||||||
{
|
{
|
||||||
|
|
||||||
/** the logger for HgDiffViewer */
|
|
||||||
private static final Logger logger =
|
|
||||||
LoggerFactory.getLogger(HgDiffViewer.class);
|
|
||||||
|
|
||||||
//~--- constructors ---------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs ...
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param handler
|
|
||||||
* @param repositoryDirectory
|
|
||||||
*/
|
|
||||||
public HgDiffViewer(HgRepositoryHandler handler, File repositoryDirectory)
|
|
||||||
{
|
|
||||||
this.handler = handler;
|
|
||||||
this.repositoryDirectory = repositoryDirectory;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs ...
|
* Constructs ...
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @param handler
|
* @param handler
|
||||||
|
* @param context
|
||||||
* @param repository
|
* @param repository
|
||||||
*/
|
*/
|
||||||
public HgDiffViewer(HgRepositoryHandler handler, Repository repository)
|
public HgDiffViewer(HgRepositoryHandler handler, HgContext context,
|
||||||
|
Repository repository)
|
||||||
{
|
{
|
||||||
this(handler, handler.getDirectory(repository));
|
super(handler, context, repository);
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
@@ -107,27 +86,12 @@ public class HgDiffViewer implements DiffViewer
|
|||||||
AssertUtil.assertIsNotEmpty(revision);
|
AssertUtil.assertIsNotEmpty(revision);
|
||||||
AssertUtil.assertIsNotNull(output);
|
AssertUtil.assertIsNotNull(output);
|
||||||
|
|
||||||
ProcessBuilder builder =
|
Process p = createHgProcess("diff", "-c", revision, Util.nonNull(path));
|
||||||
new ProcessBuilder(handler.getConfig().getHgBinary(), "diff", "-c",
|
|
||||||
revision, Util.nonNull(path));
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled())
|
|
||||||
{
|
|
||||||
StringBuilder msg = new StringBuilder();
|
|
||||||
|
|
||||||
for (String param : builder.command())
|
|
||||||
{
|
|
||||||
msg.append(param).append(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.debug(msg.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
Process p = builder.directory(repositoryDirectory).start();
|
|
||||||
InputStream input = null;
|
InputStream input = null;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
handleErrorStream(p.getErrorStream());
|
||||||
input = p.getInputStream();
|
input = p.getInputStream();
|
||||||
IOUtil.copy(input, output);
|
IOUtil.copy(input, output);
|
||||||
}
|
}
|
||||||
@@ -136,12 +100,4 @@ public class HgDiffViewer implements DiffViewer
|
|||||||
IOUtil.close(input);
|
IOUtil.close(input);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private HgRepositoryHandler handler;
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private File repositoryDirectory;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,51 +35,31 @@ package sonia.scm.repository;
|
|||||||
|
|
||||||
//~--- non-JDK imports --------------------------------------------------------
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import sonia.scm.util.IOUtil;
|
import sonia.scm.util.IOUtil;
|
||||||
import sonia.scm.util.Util;
|
import sonia.scm.util.Util;
|
||||||
import sonia.scm.web.HgUtil;
|
import sonia.scm.web.HgUtil;
|
||||||
|
|
||||||
//~--- JDK imports ------------------------------------------------------------
|
//~--- JDK imports ------------------------------------------------------------
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import javax.xml.bind.JAXBContext;
|
import javax.xml.bind.JAXBContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Sebastian Sdorra
|
* @author Sebastian Sdorra
|
||||||
*/
|
*/
|
||||||
public class HgRepositoryBrowser implements RepositoryBrowser
|
public class HgRepositoryBrowser extends AbstractHgHandler
|
||||||
|
implements RepositoryBrowser
|
||||||
{
|
{
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String DEFAULT_REVISION = "tip";
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String ENV_PATH = "SCM_PATH";
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String ENV_PYTHON_PATH = "SCM_PYTHON_PATH";
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String ENV_REPOSITORY_PATH = "SCM_REPOSITORY_PATH";
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
public static final String ENV_REVISION = "SCM_REVISION";
|
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
public static final String RESOURCE_BROWSE = "/sonia/scm/hgbrowse.py";
|
public static final String RESOURCE_BROWSE = "/sonia/scm/hgbrowse.py";
|
||||||
|
|
||||||
/** the logger for HgRepositoryBrowser */
|
|
||||||
private static final Logger logger =
|
|
||||||
LoggerFactory.getLogger(HgRepositoryBrowser.class);
|
|
||||||
|
|
||||||
//~--- constructors ---------------------------------------------------------
|
//~--- constructors ---------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -87,16 +67,15 @@ public class HgRepositoryBrowser implements RepositoryBrowser
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @param handler
|
* @param handler
|
||||||
|
* @param context
|
||||||
* @param repository
|
* @param repository
|
||||||
* @param browserResultContext
|
* @param browserResultContext
|
||||||
*/
|
*/
|
||||||
public HgRepositoryBrowser(HgRepositoryHandler handler,
|
public HgRepositoryBrowser(HgRepositoryHandler handler,
|
||||||
Repository repository,
|
JAXBContext browserResultContext,
|
||||||
JAXBContext browserResultContext)
|
HgContext context, Repository repository)
|
||||||
{
|
{
|
||||||
this.handler = handler;
|
super(handler, browserResultContext, context, repository);
|
||||||
this.repository = repository;
|
|
||||||
this.browserResultContext = browserResultContext;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
@@ -117,33 +96,14 @@ public class HgRepositoryBrowser implements RepositoryBrowser
|
|||||||
public void getContent(String revision, String path, OutputStream output)
|
public void getContent(String revision, String path, OutputStream output)
|
||||||
throws IOException, RepositoryException
|
throws IOException, RepositoryException
|
||||||
{
|
{
|
||||||
if (Util.isEmpty(revision))
|
revision = HgUtil.getRevision(revision);
|
||||||
{
|
|
||||||
revision = DEFAULT_REVISION;
|
|
||||||
}
|
|
||||||
|
|
||||||
File directory = handler.getDirectory(repository);
|
Process p = createHgProcess("cat", "-r", revision, Util.nonNull(path));
|
||||||
ProcessBuilder builder =
|
|
||||||
new ProcessBuilder(handler.getConfig().getHgBinary(), "cat", "-r",
|
|
||||||
revision, Util.nonNull(path));
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled())
|
|
||||||
{
|
|
||||||
StringBuilder msg = new StringBuilder();
|
|
||||||
|
|
||||||
for (String param : builder.command())
|
|
||||||
{
|
|
||||||
msg.append(param).append(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.debug(msg.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
Process p = builder.directory(directory).start();
|
|
||||||
InputStream input = null;
|
InputStream input = null;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
handleErrorStream(p.getErrorStream());
|
||||||
input = p.getInputStream();
|
input = p.getInputStream();
|
||||||
IOUtil.copy(input, output);
|
IOUtil.copy(input, output);
|
||||||
}
|
}
|
||||||
@@ -169,19 +129,8 @@ public class HgRepositoryBrowser implements RepositoryBrowser
|
|||||||
public BrowserResult getResult(String revision, String path)
|
public BrowserResult getResult(String revision, String path)
|
||||||
throws IOException, RepositoryException
|
throws IOException, RepositoryException
|
||||||
{
|
{
|
||||||
return HgUtil.getResultFromScript(BrowserResult.class,
|
Map<String, String> env = createEnvironment(revision, path);
|
||||||
browserResultContext, RESOURCE_BROWSE,
|
|
||||||
handler, repository, revision, path);
|
return getResultFromScript(BrowserResult.class, RESOURCE_BROWSE, env);
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private JAXBContext browserResultContext;
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private HgRepositoryHandler handler;
|
|
||||||
|
|
||||||
/** Field description */
|
|
||||||
private Repository repository;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ package sonia.scm.repository;
|
|||||||
//~--- non-JDK imports --------------------------------------------------------
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
|
import com.google.inject.Provider;
|
||||||
import com.google.inject.Singleton;
|
import com.google.inject.Singleton;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
@@ -105,11 +106,14 @@ public class HgRepositoryHandler
|
|||||||
*
|
*
|
||||||
* @param storeFactory
|
* @param storeFactory
|
||||||
* @param fileSystem
|
* @param fileSystem
|
||||||
|
* @param hgContextProvider
|
||||||
*/
|
*/
|
||||||
@Inject
|
@Inject
|
||||||
public HgRepositoryHandler(StoreFactory storeFactory, FileSystem fileSystem)
|
public HgRepositoryHandler(StoreFactory storeFactory, FileSystem fileSystem,
|
||||||
|
Provider<HgContext> hgContextProvider)
|
||||||
{
|
{
|
||||||
super(storeFactory, fileSystem);
|
super(storeFactory, fileSystem);
|
||||||
|
this.hgContextProvider = hgContextProvider;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -211,7 +215,8 @@ public class HgRepositoryHandler
|
|||||||
|
|
||||||
if (TYPE_NAME.equals(type))
|
if (TYPE_NAME.equals(type))
|
||||||
{
|
{
|
||||||
blameViewer = new HgBlameViewer(this, repository, blameResultContext);
|
blameViewer = new HgBlameViewer(this, blameResultContext,
|
||||||
|
hgContextProvider.get(), repository);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -242,8 +247,9 @@ public class HgRepositoryHandler
|
|||||||
|
|
||||||
if (TYPE_NAME.equals(type))
|
if (TYPE_NAME.equals(type))
|
||||||
{
|
{
|
||||||
changesetViewer = new HgChangesetViewer(this, repository,
|
changesetViewer = new HgChangesetViewer(this,
|
||||||
changesetPagingResultContext);
|
changesetPagingResultContext, hgContextProvider.get(),
|
||||||
|
repository);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -277,7 +283,7 @@ public class HgRepositoryHandler
|
|||||||
|
|
||||||
if (TYPE_NAME.equals(type))
|
if (TYPE_NAME.equals(type))
|
||||||
{
|
{
|
||||||
diffViewer = new HgDiffViewer(this, repository);
|
diffViewer = new HgDiffViewer(this, hgContextProvider.get(), repository);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -298,7 +304,8 @@ public class HgRepositoryHandler
|
|||||||
@Override
|
@Override
|
||||||
public RepositoryBrowser getRepositoryBrowser(Repository repository)
|
public RepositoryBrowser getRepositoryBrowser(Repository repository)
|
||||||
{
|
{
|
||||||
return new HgRepositoryBrowser(this, repository, browserResultContext);
|
return new HgRepositoryBrowser(this, browserResultContext,
|
||||||
|
hgContextProvider.get(), repository);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -330,8 +337,8 @@ public class HgRepositoryHandler
|
|||||||
throw new IllegalStateException("directory not found");
|
throw new IllegalStateException("directory not found");
|
||||||
}
|
}
|
||||||
|
|
||||||
return new HgChangesetViewer(this, repositoryDirectory,
|
return new HgChangesetViewer(this, changesetPagingResultContext, null,
|
||||||
changesetPagingResultContext);
|
null);
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- methods --------------------------------------------------------------
|
//~--- methods --------------------------------------------------------------
|
||||||
@@ -585,4 +592,7 @@ public class HgRepositoryHandler
|
|||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
private JAXBContext changesetPagingResultContext;
|
private JAXBContext changesetPagingResultContext;
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private Provider<HgContext> hgContextProvider;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -96,22 +96,8 @@ public class HgRepositoryHookEvent extends AbstractRepositoryHookEvent
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
boolean pending = type == RepositoryHookType.PRE_RECEIVE;
|
|
||||||
|
|
||||||
if (logger.isDebugEnabled())
|
|
||||||
{
|
|
||||||
String pendingString = "";
|
|
||||||
|
|
||||||
if (pending)
|
|
||||||
{
|
|
||||||
pendingString = "pending ";
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.debug("load {}changesets for hook {}", pendingString, type);
|
|
||||||
}
|
|
||||||
|
|
||||||
ChangesetPagingResult result =
|
ChangesetPagingResult result =
|
||||||
createChangesetViewer().getChangesets(startRev, REV_TIP, pending);
|
createChangesetViewer().getChangesets(startRev, REV_TIP);
|
||||||
|
|
||||||
if (result != null)
|
if (result != null)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -36,11 +36,13 @@ package sonia.scm.web;
|
|||||||
//~--- non-JDK imports --------------------------------------------------------
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
|
import com.google.inject.Provider;
|
||||||
import com.google.inject.Singleton;
|
import com.google.inject.Singleton;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import sonia.scm.repository.HgContext;
|
||||||
import sonia.scm.repository.HgHookManager;
|
import sonia.scm.repository.HgHookManager;
|
||||||
import sonia.scm.repository.HgRepositoryHandler;
|
import sonia.scm.repository.HgRepositoryHandler;
|
||||||
import sonia.scm.repository.HgRepositoryHookEvent;
|
import sonia.scm.repository.HgRepositoryHookEvent;
|
||||||
@@ -99,15 +101,18 @@ public class HgHookCallbackServlet extends HttpServlet
|
|||||||
* @param repositoryManager
|
* @param repositoryManager
|
||||||
* @param handler
|
* @param handler
|
||||||
* @param hookManager
|
* @param hookManager
|
||||||
|
* @param contextProvider
|
||||||
*/
|
*/
|
||||||
@Inject
|
@Inject
|
||||||
public HgHookCallbackServlet(RepositoryManager repositoryManager,
|
public HgHookCallbackServlet(RepositoryManager repositoryManager,
|
||||||
HgRepositoryHandler handler,
|
HgRepositoryHandler handler,
|
||||||
HgHookManager hookManager)
|
HgHookManager hookManager,
|
||||||
|
Provider<HgContext> contextProvider)
|
||||||
{
|
{
|
||||||
this.repositoryManager = repositoryManager;
|
this.repositoryManager = repositoryManager;
|
||||||
this.handler = handler;
|
this.handler = handler;
|
||||||
this.hookManager = hookManager;
|
this.hookManager = hookManager;
|
||||||
|
this.contextProvider = contextProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- methods --------------------------------------------------------------
|
//~--- methods --------------------------------------------------------------
|
||||||
@@ -182,6 +187,11 @@ public class HgHookCallbackServlet extends HttpServlet
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
if (type == RepositoryHookType.PRE_RECEIVE)
|
||||||
|
{
|
||||||
|
contextProvider.get().setPending(true);
|
||||||
|
}
|
||||||
|
|
||||||
repositoryManager.fireHookEvent(HgRepositoryHandler.TYPE_NAME,
|
repositoryManager.fireHookEvent(HgRepositoryHandler.TYPE_NAME,
|
||||||
repositoryName,
|
repositoryName,
|
||||||
new HgRepositoryHookEvent(handler,
|
new HgRepositoryHookEvent(handler,
|
||||||
@@ -260,6 +270,9 @@ public class HgHookCallbackServlet extends HttpServlet
|
|||||||
|
|
||||||
//~--- fields ---------------------------------------------------------------
|
//~--- fields ---------------------------------------------------------------
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private Provider<HgContext> contextProvider;
|
||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
private HgRepositoryHandler handler;
|
private HgRepositoryHandler handler;
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ package sonia.scm.web;
|
|||||||
import com.google.inject.servlet.ServletModule;
|
import com.google.inject.servlet.ServletModule;
|
||||||
|
|
||||||
import sonia.scm.plugin.ext.Extension;
|
import sonia.scm.plugin.ext.Extension;
|
||||||
|
import sonia.scm.repository.HgContext;
|
||||||
import sonia.scm.repository.HgHookManager;
|
import sonia.scm.repository.HgHookManager;
|
||||||
import sonia.scm.web.filter.BasicAuthenticationFilter;
|
import sonia.scm.web.filter.BasicAuthenticationFilter;
|
||||||
|
|
||||||
@@ -64,6 +65,7 @@ public class HgServletModule extends ServletModule
|
|||||||
@Override
|
@Override
|
||||||
protected void configureServlets()
|
protected void configureServlets()
|
||||||
{
|
{
|
||||||
|
bind(HgContext.class);
|
||||||
bind(HgHookManager.class);
|
bind(HgHookManager.class);
|
||||||
serve(MAPPING_HOOK).with(HgHookCallbackServlet.class);
|
serve(MAPPING_HOOK).with(HgHookCallbackServlet.class);
|
||||||
|
|
||||||
|
|||||||
@@ -35,6 +35,8 @@ package sonia.scm.repository;
|
|||||||
|
|
||||||
//~--- non-JDK imports --------------------------------------------------------
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
|
import com.google.inject.Provider;
|
||||||
|
|
||||||
import sonia.scm.io.DefaultFileSystem;
|
import sonia.scm.io.DefaultFileSystem;
|
||||||
import sonia.scm.store.StoreFactory;
|
import sonia.scm.store.StoreFactory;
|
||||||
|
|
||||||
@@ -87,13 +89,14 @@ public class HgRepositoryHandlerTest extends SimpleRepositoryHandlerTestBase
|
|||||||
File directory)
|
File directory)
|
||||||
{
|
{
|
||||||
HgRepositoryHandler handler = new HgRepositoryHandler(factory,
|
HgRepositoryHandler handler = new HgRepositoryHandler(factory,
|
||||||
new DefaultFileSystem());
|
new DefaultFileSystem(),
|
||||||
|
new HgContextProvider());
|
||||||
|
|
||||||
handler.init(contextProvider);
|
handler.init(contextProvider);
|
||||||
handler.getConfig().setRepositoryDirectory(directory);
|
handler.getConfig().setRepositoryDirectory(directory);
|
||||||
|
|
||||||
// skip tests if hg not in path
|
// skip tests if hg not in path
|
||||||
if (! handler.isConfigured())
|
if (!handler.isConfigured())
|
||||||
{
|
{
|
||||||
System.out.println("WARNING could not find hg, skipping test");
|
System.out.println("WARNING could not find hg, skipping test");
|
||||||
assumeTrue(false);
|
assumeTrue(false);
|
||||||
@@ -101,4 +104,28 @@ public class HgRepositoryHandlerTest extends SimpleRepositoryHandlerTestBase
|
|||||||
|
|
||||||
return handler;
|
return handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//~--- inner classes --------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dummy {@link Provider} for {@link HgContext}
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author Sebastian Sdorra
|
||||||
|
*/
|
||||||
|
private static class HgContextProvider implements Provider<HgContext>
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return context for mercurial
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return context for mercurial
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public HgContext get()
|
||||||
|
{
|
||||||
|
return new HgContext();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user