View Javadoc
1   package org.apache.maven.scm.provider.git.jgit.command.checkout;
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.ScmTag;
27  import org.apache.maven.scm.ScmVersion;
28  import org.apache.maven.scm.command.checkout.AbstractCheckOutCommand;
29  import org.apache.maven.scm.command.checkout.CheckOutScmResult;
30  import org.apache.maven.scm.command.remoteinfo.RemoteInfoScmResult;
31  import org.apache.maven.scm.provider.ScmProviderRepository;
32  import org.apache.maven.scm.provider.git.command.GitCommand;
33  import org.apache.maven.scm.provider.git.jgit.command.JGitUtils;
34  import org.apache.maven.scm.provider.git.jgit.command.branch.JGitBranchCommand;
35  import org.apache.maven.scm.provider.git.jgit.command.remoteinfo.JGitRemoteInfoCommand;
36  import org.apache.maven.scm.provider.git.repository.GitScmProviderRepository;
37  import org.codehaus.plexus.util.StringUtils;
38  import org.eclipse.jgit.api.CloneCommand;
39  import org.eclipse.jgit.api.Git;
40  import org.eclipse.jgit.lib.Constants;
41  import org.eclipse.jgit.lib.ProgressMonitor;
42  import org.eclipse.jgit.revwalk.RevCommit;
43  import org.eclipse.jgit.revwalk.RevWalk;
44  import org.eclipse.jgit.storage.file.WindowCacheConfig;
45  import org.eclipse.jgit.transport.CredentialsProvider;
46  import org.eclipse.jgit.treewalk.TreeWalk;
47  
48  import java.io.File;
49  import java.util.ArrayList;
50  import java.util.List;
51  import java.util.Set;
52  
53  /**
54   * @author <a href="mailto:struberg@yahoo.de">Mark Struberg</a>
55   * @author Dominik Bartholdi (imod)
56   * @since 1.9
57   */
58  public class JGitCheckOutCommand
59      extends AbstractCheckOutCommand
60      implements GitCommand
61  {
62      /**
63       * For git, the given repository is a remote one. We have to clone it first if the working directory does not
64       * contain a git repo yet, otherwise we have to git-pull it.
65       * <p/>
66       * {@inheritDoc}
67       */
68      protected CheckOutScmResult executeCheckOutCommand( ScmProviderRepository repo, ScmFileSet fileSet,
69                                                         ScmVersion version, boolean recursive, boolean shallow )
70          throws ScmException
71      {
72          GitScmProviderRepository repository = (GitScmProviderRepository) repo;
73  
74          if ( GitScmProviderRepository.PROTOCOL_FILE.equals( repository.getFetchInfo().getProtocol() )
75              && repository.getFetchInfo().getPath().indexOf( fileSet.getBasedir().getPath() ) >= 0 )
76          {
77              throw new ScmException( "remote repository must not be the working directory" );
78          }
79  
80          Git git = null;
81          try
82          {
83  
84              ProgressMonitor monitor = JGitUtils.getMonitor( getLogger() );
85  
86              String branch = version != null ? version.getName() : null;
87  
88              if ( StringUtils.isBlank( branch ) )
89              {
90                  branch = Constants.MASTER;
91              }
92  
93              getLogger().debug( "try checkout of branch: " + branch );
94  
95              if ( !fileSet.getBasedir().exists() || !( new File( fileSet.getBasedir(), ".git" ).exists() ) )
96              {
97                  if ( fileSet.getBasedir().exists() )
98                  {
99                      // git refuses to clone otherwise
100                     fileSet.getBasedir().delete();
101                 }
102 
103                 // FIXME only if windauze
104                 WindowCacheConfig cfg = new WindowCacheConfig();
105                 cfg.setPackedGitMMAP( false );
106                 cfg.install();
107 
108                 // no git repo seems to exist, let's clone the original repo
109                 CredentialsProvider credentials = JGitUtils.getCredentials( (GitScmProviderRepository) repo );
110                 getLogger().info( "cloning [" + branch + "] to " + fileSet.getBasedir() );
111                 CloneCommand command = Git.cloneRepository().setURI( repository.getFetchUrl() );
112                 command.setCredentialsProvider( credentials ).setBranch( branch ).setDirectory( fileSet.getBasedir() );
113                 command.setProgressMonitor( monitor );
114                 git = command.call();
115             }
116 
117             JGitRemoteInfoCommand remoteInfoCommand = new JGitRemoteInfoCommand();
118             remoteInfoCommand.setLogger( getLogger() );
119             RemoteInfoScmResult result = remoteInfoCommand.executeRemoteInfoCommand( repository, fileSet, null );
120 
121             if ( git == null )
122             {
123                 // deliberately not using JGitUtils.openRepo(), the caller told us exactly where to checkout
124                 git = Git.open( fileSet.getBasedir() );
125             }
126             
127             if ( fileSet.getBasedir().exists() && new File( fileSet.getBasedir(), ".git" ).exists()
128                 && result.getBranches().size() > 0 )
129             {
130                 // git repo exists, so we must git-pull the changes
131                 CredentialsProvider credentials = JGitUtils.prepareSession( getLogger(), git, repository );
132 
133                 if ( version != null && StringUtils.isNotEmpty( version.getName() ) && ( version instanceof ScmTag ) )
134                 {
135                     // A tag will not be pulled but we only fetch all the commits from the upstream repo
136                     // This is done because checking out a tag might not happen on the current branch
137                     // but create a 'detached HEAD'.
138                     // In fact, a tag in git may be in multiple branches. This occurs if
139                     // you create a branch after the tag has been created
140                     getLogger().debug( "fetch..." );
141                     git.fetch().setCredentialsProvider( credentials ).setProgressMonitor( monitor ).call();
142                 }
143                 else
144                 {
145                     getLogger().debug( "pull..." );
146                     git.pull().setCredentialsProvider( credentials ).setProgressMonitor( monitor ).call();
147                 }
148             }
149 
150             Set<String> localBranchNames = JGitBranchCommand.getShortLocalBranchNames( git );
151             if ( version instanceof ScmTag )
152             {
153                 getLogger().info( "checkout tag [" + branch + "] at " + fileSet.getBasedir() );
154                 git.checkout().setName( branch ).call();
155             }
156             else if ( localBranchNames.contains( branch ) )
157             {
158                 getLogger().info( "checkout [" + branch + "] at " + fileSet.getBasedir() );
159                 git.checkout().setName( branch ).call();
160             }
161             else
162             {
163                 getLogger().info( "checkout remote branch [" + branch + "] at " + fileSet.getBasedir() );
164                 git.checkout().setName( branch ).setCreateBranch( true ).setStartPoint( Constants.DEFAULT_REMOTE_NAME
165                                                                                             + "/" + branch ).call();
166             }
167 
168             RevWalk revWalk = new RevWalk( git.getRepository() );
169             RevCommit commit = revWalk.parseCommit( git.getRepository().resolve( Constants.HEAD ) );
170             revWalk.close();
171 
172             final TreeWalk walk = new TreeWalk( git.getRepository() );
173             walk.reset(); // drop the first empty tree, which we do not need here
174             walk.setRecursive( true );
175             walk.addTree( commit.getTree() );
176 
177             List<ScmFile> listedFiles = new ArrayList<ScmFile>();
178             while ( walk.next() )
179             {
180                 listedFiles.add( new ScmFile( walk.getPathString(), ScmFileStatus.CHECKED_OUT ) );
181             }
182             walk.close();
183 
184             getLogger().debug( "current branch: " + git.getRepository().getBranch() );
185 
186             return new CheckOutScmResult( "checkout via JGit", listedFiles );
187         }
188         catch ( Exception e )
189         {
190             throw new ScmException( "JGit checkout failure!", e );
191         }
192         finally
193         {
194             JGitUtils.closeRepo( git );
195         }
196     }
197 
198 }