001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *   http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied.  See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019package org.apache.maven.scm.provider.git.jgit.command.add;
020
021import java.util.List;
022
023import org.apache.maven.scm.ScmException;
024import org.apache.maven.scm.ScmFile;
025import org.apache.maven.scm.ScmFileSet;
026import org.apache.maven.scm.ScmResult;
027import org.apache.maven.scm.command.add.AbstractAddCommand;
028import org.apache.maven.scm.command.add.AddScmResult;
029import org.apache.maven.scm.provider.ScmProviderRepository;
030import org.apache.maven.scm.provider.git.command.GitCommand;
031import org.apache.maven.scm.provider.git.jgit.command.JGitUtils;
032import org.eclipse.jgit.api.Git;
033
034/**
035 * @author <a href="mailto:struberg@yahoo.de">Mark Struberg</a>
036 * @author Dominik Bartholdi (imod)
037 * @since 1.9
038 */
039public class JGitAddCommand extends AbstractAddCommand implements GitCommand {
040    /**
041     * {@inheritDoc}
042     */
043    protected ScmResult executeAddCommand(
044            ScmProviderRepository repo, ScmFileSet fileSet, String message, boolean binary) throws ScmException {
045
046        if (fileSet.getFileList().isEmpty()) {
047            throw new ScmException("You must provide at least one file/directory to add (e.g. -Dincludes=...)");
048        }
049        Git git = null;
050        try {
051            git = JGitUtils.openRepo(fileSet.getBasedir());
052
053            List<ScmFile> addedFiles = JGitUtils.addAllFiles(git, fileSet);
054
055            if (logger.isDebugEnabled()) {
056                for (ScmFile scmFile : addedFiles) {
057                    logger.info("added file: " + scmFile);
058                }
059            }
060
061            return new AddScmResult("JGit add", addedFiles);
062
063        } catch (Exception e) {
064            throw new ScmException("JGit add failure!", e);
065        } finally {
066            JGitUtils.closeRepo(git);
067        }
068    }
069}