View Javadoc
1   package org.apache.maven.scm.provider.git.jgit.command.list;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.scm.ScmException;
23  import org.apache.maven.scm.ScmFile;
24  import org.apache.maven.scm.ScmFileSet;
25  import org.apache.maven.scm.ScmFileStatus;
26  import org.apache.maven.scm.ScmVersion;
27  import org.apache.maven.scm.command.list.AbstractListCommand;
28  import org.apache.maven.scm.command.list.ListScmResult;
29  import org.apache.maven.scm.provider.ScmProviderRepository;
30  import org.apache.maven.scm.provider.git.command.GitCommand;
31  import org.apache.maven.scm.provider.git.jgit.command.JGitUtils;
32  import org.apache.maven.scm.provider.git.repository.GitScmProviderRepository;
33  import org.eclipse.jgit.api.Git;
34  import org.eclipse.jgit.lib.Ref;
35  import org.eclipse.jgit.transport.CredentialsProvider;
36  
37  import java.util.ArrayList;
38  import java.util.Collection;
39  import java.util.List;
40  
41  /**
42   * @author Dominik Bartholdi (imod)
43   * @since 1.9
44   */
45  public class JGitListCommand
46      extends AbstractListCommand
47      implements GitCommand
48  {
49  
50      @Override
51      protected ListScmResult executeListCommand( ScmProviderRepository repo, ScmFileSet fileSet, boolean recursive,
52                                                  ScmVersion scmVersion )
53          throws ScmException
54      {
55  
56          Git git = null;
57          try
58          {
59              git = Git.open( fileSet.getBasedir() );
60              CredentialsProvider credentials =
61                  JGitUtils.prepareSession( getLogger(), git, (GitScmProviderRepository) repo );
62  
63              List<ScmFile> list = new ArrayList<ScmFile>();
64              Collection<Ref> lsResult = git.lsRemote().setCredentialsProvider( credentials ).call();
65              for ( Ref ref : lsResult )
66              {
67                  getLogger().debug( ref.getObjectId().getName() + "  " + ref.getTarget().getName() );
68                  list.add( new ScmFile( ref.getName(), ScmFileStatus.CHECKED_IN ) );
69              }
70  
71              return new ListScmResult( "JGit ls-remote", list );
72          }
73          catch ( Exception e )
74          {
75              throw new ScmException( "JGit ls-remote failure!", e );
76          }
77          finally
78          {
79              JGitUtils.closeRepo( git );
80          }
81      }
82  }